aboutsummaryrefslogtreecommitdiffstats
path: root/src/ada_chip.adb
blob: cd156f760bd505fe63e700e592f62e09c206ce19 (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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
with Ada.Command_Line;
with Ada.Numerics.Discrete_Random;
with Ada.Text_IO;
with Sf;
with Sf.Audio;
with Sf.Audio.Sound;
with Sf.Audio.SoundBuffer;

with ISA;
with CPU;
with Video;

procedure Ada_Chip is
   package Random_Byte is new Ada.Numerics.Discrete_Random (ISA.Byte);

   Random_Generator : Random_Byte.Generator;
   State            : CPU.Instance;
   Delay_Timer      : Natural := 0;
   Sound_Timer      : Natural := 0;
   Model            : Video.Model := Video.Chip_8;
   Steps_Per_Frame  : Natural := 8;

   procedure Draw_Sprite (VX, VY : ISA.Register_Index; N : ISA.Byte) is
      use ISA;
      use Sf;
      use Video;

      X          : constant Byte := State.Registers (VX);
      Y          : constant Byte := State.Registers (VY);
      Row        : aliased Byte;
      Row_Pixels : Pixel with Address => Row'Address;
      VF         : Byte := 0;
   begin
      if Model = Super_Chip_10 and then N = 0 then
         for I in 0 .. Byte (15) loop
            Row := State.Memory (State.Address_Register + Address (I * 2));

            for J in 0 .. 7 loop
               if Row_Pixels (7 - J) then
                  if Video.Toggle_Pixel
                     (sfUint32 (X + Byte (J)) mod Video.Width,
                        sfUint32 (Y + I) mod Video.Height)
                  then
                     VF := 1;
                  end if;
               end if;
            end loop;

            Row := State.Memory (State.Address_Register + Address (I * 2 + 1));

            for J in 0 .. 7 loop
               if Row_Pixels (7 - J) then
                  if Video.Toggle_Pixel
                     (sfUint32 (8 + X + Byte (J)) mod Video.Width,
                        sfUint32 (Y + I) mod Video.Height)
                  then
                     VF := 1;
                  end if;
               end if;
            end loop;
         end loop;

         State.Registers (15) := VF;
      else
         for I in 0 .. N - 1 loop
            Row := State.Memory (State.Address_Register + Address (I));

            for J in 0 .. 7 loop
               if Row_Pixels (7 - J) then
                  if Video.Toggle_Pixel
                     (sfUint32 (X + Byte (J)) mod Video.Width,
                        sfUint32 (Y + I) mod Video.Height)
                  then
                     VF := 1;
                  end if;
               end if;
            end loop;
         end loop;

         State.Registers (15) := VF;
      end if;
   end Draw_Sprite;

   procedure Run_Flow (ins : ISA.Opcode) is
      use ISA;
   begin
      case Flow_Class'Enum_Val (ins.Value) is
         when Scroll_Down_0 .. Scroll_Down_15 =>
            null;
         when Scroll_Right => Video.Scroll_Right;
         when Scroll_Left => Video.Scroll_Left;
         when Exit_Interpreter =>
            Ada.Text_IO.Put_Line ("Exit interpreter not supported!");
            Video.Finish;
         when Clear_Screen => Video.Clear_Screen;
         when Ret => CPU.Ret (State);
         when Low_Res => Video.Low_Res;
         when High_Res => Video.High_Res;
      end case;
   end Run_Flow;

   procedure Run_Input (ins : ISA.Opcode) is
      use ISA;
      Key : constant Video.Key := Video.Key
         (State.Registers (X_Register (ins)) mod 16);
   begin
      case Input_Class'Enum_Val (To_Byte (ins)) is
         when Key_Down =>
            if Video.Key_Down (Key) then
               CPU.Skip (State);
            end if;
         when Key_Up =>
            if Video.Key_Up (Key) then
               CPU.Skip (State);
            end if;
      end case;
   end Run_Input;

   procedure Run_Misc (ins : ISA.Opcode) is
      use ISA;
      X : constant Register_Index := X_Register (ins);
   begin
      case Misc_Class'Enum_Val (To_Byte (ins)) is
         when Get_Delay => State.Registers (X) := Byte (Delay_Timer);
         when Get_Key   => State.Registers (X) := Byte (Video.Next_Key);
         when Set_Delay => Delay_Timer := Natural (State.Registers (X));
         when Set_Sound => Sound_Timer := Natural (State.Registers (X));
         when Reg_Store => CPU.Reg_Store (State, X);
         when Reg_Load  => CPU.Reg_Load (State, X);
         when Reg_Store_X => declare
            I : constant Address := State.Address_Register;
         begin
            State.Address_Register := CPU.RPL_Stash;
            CPU.Reg_Store (State, X);
            State.Address_Register := I;
         end;
         when Reg_Load_X  => declare
            I : constant Address := State.Address_Register;
         begin
            State.Address_Register := CPU.RPL_Stash;
            CPU.Reg_Load (State, X);
            State.Address_Register := I;
         end;
         when Add_Address => State.Address_Register :=
            State.Address_Register + Address (State.Registers (X));
         when Get_Font => declare
            use Video;
            VX : constant Byte := State.Registers (X);
         begin
            if Model = Video.Super_Chip_10 and then VX > 15 then
               State.Address_Register := Address (VX mod 16) * 10 + 80;
            else
               State.Address_Register := Address (VX mod 16) * 5;
            end if;
         end;
         when Get_Font_10 =>
            State.Address_Register := Address (State.Registers (X) mod 16)
               * 10 + 80;
         when Get_BCD =>
            State.Memory (State.Address_Register) :=
               State.Registers (X) / 100;
            State.Memory (State.Address_Register + 1) :=
               State.Registers (X) / 10 mod 10;
            State.Memory (State.Address_Register + 2) :=
               State.Registers (X) mod 10;
      end case;
   end Run_Misc;

   procedure Run_Step is
      use ISA;
      ins : constant Opcode := CPU.Get_Opcode (State);
      XI  : constant Register_Index := X_Register (ins);
      YI  : constant Register_Index := Y_Register (ins);
      X   : constant Byte := State.Registers (XI);
      Y   : constant Byte := State.Registers (YI);
   begin
      case ins.Class is
         when Flow => Run_Flow (ins);
         when Jump => CPU.Jump (State, Address (ins.Value));
         when Call => CPU.Call (State, Address (ins.Value));
         when Set_Register => State.Registers (XI) := To_Byte (ins);
         when Add => State.Registers (XI) := X + To_Byte (ins);
         when Math => CPU.Math (State, XI, YI, To_Byte (ins) mod 16);
         when Set_Address => State.Address_Register := Address (ins.Value);
         when Draw_Sprite => Draw_Sprite (XI, YI, To_Byte (ins) mod 16);
         when Input => Run_Input (ins);
         when Misc => Run_Misc (ins);
         when Jump_Relative =>
            CPU.Jump (State,
               Address (State.Registers (0)) + Address (ins.Value));
         when Equal =>
            if X = To_Byte (ins) then
               CPU.Skip (State);
            end if;
         when Not_Equal =>
            if X /= To_Byte (ins) then
               CPU.Skip (State);
            end if;
         when Compare =>
            if X = Y then
               CPU.Skip (State);
            end if;
         when Not_Compare =>
            if X /= Y then
               CPU.Skip (State);
            end if;
         when Random =>
            State.Registers (XI) :=
               Random_Byte.Random (Random_Generator) mod To_Byte (ins);
      end case;
   end Run_Step;

   Beep_Sound        : constant Sf.Audio.sfSound_Ptr := Sf.Audio.Sound.create;
   Beep_Sound_Buffer : constant Sf.Audio.sfSoundBuffer_Ptr :=
      Sf.Audio.SoundBuffer.createFromFile ("beep.ogg");

   File_Loaded : Boolean := False;
begin
   for I in 1 .. Ada.Command_Line.Argument_Count loop
      declare
         Arg : constant String := Ada.Command_Line.Argument (I);
      begin
         if Arg = "--schip" then
            Ada.Text_IO.Put_Line ("Super-CHIP model selected.");
            Model := Video.Super_Chip_10;
         else
            if Arg'Length > 6
               and then Arg (1 .. 6) = "--spf="
            then
               Steps_Per_Frame := Natural'Value (Arg (7 .. Arg'Length));
            else
               if File_Loaded then
                  Ada.Text_IO.Put_Line ("More than one ROM specified!");
                  File_Loaded := False;
                  exit;
               else
                  Ada.Text_IO.Put_Line ("Loading ROM: " &
                     Ada.Command_Line.Argument (I));
                  CPU.Load_File (State, Ada.Command_Line.Argument (I));
                  File_Loaded := True;
               end if;
            end if;
         end if;
      end;
   end loop;

   if not File_Loaded then
      Ada.Text_IO.Put_Line ("usage: adachip [flags] <.c8 file>");
   else
      Video.Initialize (Model);
      Video.Low_Res;
      Random_Byte.Reset (Random_Generator);
      Sf.Audio.Sound.setBuffer (Beep_Sound, Beep_Sound_Buffer);

      while Video.Is_Running loop
         Video.Display;
         Video.Poll_Events;

         if Delay_Timer > 0 then
            Delay_Timer := Delay_Timer - 1;
         end if;

         if Sound_Timer > 0 then
            Sf.Audio.Sound.play (Beep_Sound);
            Sound_Timer := Sound_Timer - 1;
         end if;

         for I in 0 .. Steps_Per_Frame loop
            Run_Step;
         end loop;
      end loop;

      Sf.Audio.Sound.destroy (Beep_Sound);
   end if;
end Ada_Chip;