aboutsummaryrefslogtreecommitdiffstats
path: root/src/video.adb
blob: 657d28540d34d1bb226fb781d40b50888e80a36e (plain)
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
with Sf.Window;
with Sf.Window.Event;
with Sf.Window.Keyboard;
with Sf.Graphics.Color;
with Sf.Graphics.Image;
with Sf.Graphics.RenderWindow;
with Sf.Graphics.Texture;

package body Video is
   procedure Clear_Screen is
   begin
      for X in 0 .. Width - 1 loop
         for Y in 0 .. Height - 1 loop
            Image.setPixel (Pixels, X, Y, Color.sfBlack);
         end loop;
      end loop;
   end Clear_Screen;

   procedure Scroll_Right is
      use Sf.Graphics.Color;

      SS  : constant sfUint32 := 4;
      Tmp : array (0 .. SS - 1) of sfColor;
   begin
      for J in 0 .. Height - 1 loop
         for I in 0 .. SS - 1 loop
            Tmp (I) := Image.getPixel (Pixels, Width - SS + I, J);
         end loop;
         for I in 0 .. Width - 5 loop
            Image.setPixel (Pixels, I + SS, J, Image.getPixel (Pixels, I, J));
         end loop;
         for I in 0 .. SS - 1 loop
            Image.setPixel (Pixels, I, J, Tmp (I));
         end loop;
      end loop;
   end Scroll_Right;

   procedure Scroll_Left is
      use Sf.Graphics.Color;

      SS  : constant sfUint32 := 4;
      Tmp : array (0 .. SS - 1) of sfColor;
   begin
      for J in 0 .. Height - 1 loop
         for I in 0 .. SS - 1 loop
            Tmp (I) := Image.getPixel (Pixels, I, J);
         end loop;
         for I in SS .. Width - 1 loop
            Image.setPixel (Pixels, I - SS, J, Image.getPixel (Pixels, I, J));
         end loop;
         for I in 0 .. SS - 1 loop
            Image.setPixel (Pixels, Width - SS + I, J, Tmp (I));
         end loop;
      end loop;
   end Scroll_Left;

   procedure Low_Res is
   begin
      Video.Width := 64;
      Video.Height := 32;
      Video.Scale := 10;
      Sprite.setScale (Pixels_Sprite, (Float (Scale), Float (Scale)));
   end Low_Res;

   procedure High_Res is
   begin
      Video.Width := 128;
      Video.Height := 64;
      Video.Scale := 5;
      Sprite.setScale (Pixels_Sprite, (Float (Scale), Float (Scale)));
   end High_Res;

   procedure Initialize (M : Model) is
   begin
      case M is
         when Chip_8 =>
            Width  := 64;
            Height := 32;
            Scale  := 10;
         when Super_Chip_10 =>
            Width  := 128;
            Height := 64;
            Scale  := 5;
      end case;

      app := RenderWindow.create ((Width * Scale, Height * Scale, 32), Title);
      Pixels := Image.create (Width, Height);
      Pixels_Texture := Texture.createFromImage (Pixels);

      Sprite.setTexture (Pixels_Sprite, Pixels_Texture);
      Sprite.setPosition (Pixels_Sprite, (Float (0), Float (0)));
      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;