1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
with Sf.Window;
with Sf.Window.Event;
with Sf.Window.Keyboard;
with Sf.Graphics.Color;
package body Video is
procedure Clear_Screen is
begin
for X in 0 .. sfUint32 (Width) - 1 loop
for Y in 0 .. sfUint32 (Height) - 1 loop
Image.setPixel (Pixels, X, Y, Color.sfBlack);
end loop;
end loop;
end Clear_Screen;
procedure Initialize is
begin
Sprite.setTexture (Pixels_Sprite, Pixels_Texture);
Sprite.setPosition (Pixels_Sprite, (Float (0), Float (0)));
Sprite.setScale (Pixels_Sprite, (Float (Scale), Float (Scale)));
RenderWindow.setFramerateLimit (app, 60);
end Initialize;
function Is_Running return Boolean is
begin
return RenderWindow.isOpen (app) = sfTrue;
end Is_Running;
function Next_Key return Key is
begin
while Is_Running loop
Poll_Events;
for I in Key'First .. Key'Last loop
if Keys (I) then
return I;
end if;
end loop;
delay 0.016;
end loop;
return 0; -- Only get here on program exit
end Next_Key;
procedure Poll_Events is
use Sf.Window.Event;
use Sf.Window.Keyboard;
e : sfEvent;
begin
while RenderWindow.pollEvent (app, event => e) = sfTrue loop
case e.eventType is
when sfEvtClosed =>
RenderWindow.close (app);
when sfEvtKeyPressed => case e.key.code is
when sfKeyNum0 => Keys (0) := True;
when sfKeyNum1 => Keys (1) := True;
when sfKeyNum2 => Keys (2) := True;
when sfKeyNum3 => Keys (3) := True;
when sfKeyNum4 => Keys (4) := True;
when sfKeyNum5 => Keys (5) := True;
when sfKeyNum6 => Keys (6) := True;
when sfKeyNum7 => Keys (7) := True;
when sfKeyNum8 => Keys (8) := True;
when sfKeyNum9 => Keys (9) := True;
when sfKeyA => Keys (10) := True;
when sfKeyB => Keys (11) := True;
when sfKeyC => Keys (12) := True;
when sfKeyD => Keys (13) := True;
when sfKeyE => Keys (14) := True;
when sfKeyF => Keys (15) := True;
when others => null;
end case;
when sfEvtKeyReleased => case e.key.code is
when sfKeyNum0 => Keys (0) := False;
when sfKeyNum1 => Keys (1) := False;
when sfKeyNum2 => Keys (2) := False;
when sfKeyNum3 => Keys (3) := False;
when sfKeyNum4 => Keys (4) := False;
when sfKeyNum5 => Keys (5) := False;
when sfKeyNum6 => Keys (6) := False;
when sfKeyNum7 => Keys (7) := False;
when sfKeyNum8 => Keys (8) := False;
when sfKeyNum9 => Keys (9) := False;
when sfKeyA => Keys (10) := False;
when sfKeyB => Keys (11) := False;
when sfKeyC => Keys (12) := False;
when sfKeyD => Keys (13) := False;
when sfKeyE => Keys (14) := False;
when sfKeyF => Keys (15) := False;
when others => null;
end case;
when others => null;
end case;
end loop;
end Poll_Events;
procedure Display is
begin
RenderWindow.clear (app, Color.sfWhite);
Texture.updateFromImage (Pixels_Texture, Pixels, 0, 0);
RenderWindow.drawSprite (app, Pixels_Sprite);
RenderWindow.display (app);
end Display;
function Toggle_Pixel (X, Y : sfUint32) return Boolean is
use Color;
P : sfColor;
R : Boolean;
begin
P := Image.getPixel (Pixels, X, Y);
R := P = sfWhite;
Image.setPixel (Pixels, X, Y, (if R then sfBlack else sfWhite));
return R;
end Toggle_Pixel;
procedure Finish is
begin
RenderWindow.close (app);
end Finish;
function Key_Down (K : Key) return Boolean is
begin
return Keys (K);
end Key_Down;
function Key_Up (K : Key) return Boolean is
begin
return not Keys (K);
end Key_Up;
end Video;
|