-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChup8.cs
459 lines (362 loc) · 12.5 KB
/
Chup8.cs
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
using Chup_OGL;
using System;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Threading;
namespace Chup_8
{
public class Chup8
{
Random rnd = new Random();
Stopwatch sw = new Stopwatch();
private ushort PC;
private byte[] Memory;
private byte[] V;
private ushort I;
private ushort StackPointer;
private ushort[] Stack;
public ulong[] Display;
private int DisplayMode;
private int DisplayWidth, DisplayHeight;
private bool[] keys;
private byte DelayTimer;
private byte SoundTimer;
private long lastTime, lastStep;
private WindowManager wm;
private bool redrawNeeded = true;
private bool RendorToConsole = false;
public Chup8(string FilePath, int displayMode)
{
if (RendorToConsole)
Console.OutputEncoding = Encoding.UTF8;
else
wm = new WindowManager();
// Init variables
PC = 0x200;
Memory = new byte[4096];
V = new byte[16];
// Stack
StackPointer = 0;
Stack = new ushort[16];
// Init display
DisplayMode = displayMode;
if (displayMode == 0)
{
DisplayWidth = 64;
DisplayHeight = 32;
Display = new ulong[DisplayHeight];
}
else
throw new Exception($"Unsupported Display Mode {displayMode}");
// Init Timers
DelayTimer = 0;
SoundTimer = 0;
lastTime = 0;
lastStep = 0;
sw.Start();
//Load the ROM
byte[] FileData = File.ReadAllBytes(FilePath);
for (int Index = 0; Index < FileData.Length; ++Index)
Memory[Index + 0x200] = FileData[Index];
// Load fonts
Fonts.LoadFonts(ref Memory);
}
public void Run(int frequency)
{
while (true)
{
if (sw.ElapsedMilliseconds - lastStep > 1000.0 / frequency)
{
keys = wm.GetKeys();
Step();
lastStep = sw.ElapsedMilliseconds;
}
if (sw.ElapsedMilliseconds - lastTime > 1000.0 / 60)
{
if (DelayTimer > 0)
DelayTimer--;
if (SoundTimer > 0)
SoundTimer--;
lastTime = sw.ElapsedMilliseconds;
}
if (redrawNeeded)
{
if (RendorToConsole)
DrawDisplay();
else
wm.DrawFrame(Display);
redrawNeeded = false;
}
}
}
private void Push(ushort value)
{
Stack[StackPointer++] = value;
}
public ushort Pop()
{
return Stack[--StackPointer];
}
private void DrawDisplay()
{
string output = "";
for (int i = 0; i < 32; i++)
{
ulong mask = (ulong)1 << 63;
for (int x = 0; x < 64; x++)
{
output += ((Display[i] & mask) == 0) ? " " : "\u2588";
mask >>= 1;
}
output += '\n';
}
Console.SetCursorPosition(0, 0);
Console.Clear();
Console.Write(output);
}
private bool DrawByte(int x, int y, byte draw)
{
bool collision = false;
for (int i = 0; i < 8; i++)
{
if ((draw & (1 << (8 - i - 1))) == 0)
continue;
int destX = (x + i) % DisplayWidth;
ulong bitmask = ((ulong)1) << (DisplayWidth - destX - 1);
// Get current displayed pixel
if ((Display[y] & bitmask) != 0)
collision = true;
Display[y] ^= bitmask;
}
redrawNeeded = true;
return collision;
}
public void Step()
{
ushort instruction = (ushort)(Memory[PC] << 8 | Memory[PC + 1]);
PC += 2;
// Complete instructions
switch ((OpCode)instruction)
{
case OpCode.Clear:
for (int i = 0; i < Display.Length; i++)
Display[i] = 0;
return;
case OpCode.RET:
PC = Pop();
return;
}
// Opcodes
switch ((OpCode)(instruction & 0xF000))
{
// 1nnn
case OpCode.JP:
PC = (ushort)(instruction & 0xFFF);
break;
// 2nnn
case OpCode.CALL:
Push((ushort)(PC));
PC = (ushort)(instruction & 0xFFF);
break;
// 3xkk
case OpCode.SKIP:
if (V[(instruction & 0x0F00) >> 8] == (byte)instruction)
PC += 2;
break;
// 4xkk
case OpCode.NSKIP:
if (V[(instruction & 0x0F00) >> 8] != (byte)instruction)
PC += 2;
break;
// 5xy0
case OpCode.SKIPR:
if (V[(instruction & 0x0F00) >> 8] == V[(instruction & 0x00F0) >> 4])
PC += 2;
break;
// 6xkk
case OpCode.LDRC:
V[(instruction & 0x0F00) >> 8] = (byte)instruction;
break;
// 7xkk
case OpCode.ADDRC:
V[(instruction & 0x0F00) >> 8] += (byte)instruction;
break;
case OpCode.HEX8:
Run8(instruction);
break;
// 9xy0
case OpCode.NSKIPR:
if (V[(instruction & 0x0F00) >> 8] != V[(instruction & 0x0F0) >> 4])
PC += 2;
break;
// Annn
case OpCode.LDI:
I = (ushort)(instruction & 0x0FFF);
break;
// Bnnn
case OpCode.JUMPO:
PC = (ushort)((ushort)(instruction & 0xFFF) + V[0]);
break;
// Cxkk
case OpCode.RND:
V[(instruction & 0x0F00) >> 8] = (byte)(rnd.Next() & instruction);
break;
// Dxyn
case OpCode.DRAW:
byte x = V[(instruction & 0xF00) >> 8];
byte y = V[(instruction & 0x0F0) >> 4];
byte len = (byte)(instruction & 0x00F);
int end = I + len;
// Set collision to 0
byte vf = 0;
for (int pos = I; pos < end; pos++)
{
if (DrawByte(x, y++ % DisplayHeight, Memory[pos]))
vf = 1;
}
V[0xF] = vf;
break;
// Ex9E
// ExA1 NOT skip
case OpCode.SKIPKEY:
bool state = keys[V[(instruction & 0x0F00) >> 8]];
if ((byte)instruction == 0xA1)
state = !state;
if (state)
PC += 2;
break;
case OpCode.F:
RunF(instruction);
break;
default:
throw new Exception($"Instruction [0x{instruction:X4}] is unknown!");
}
}
private void Run8(ushort instruction)
{
byte vf;
int x = (instruction & 0x0F00) >> 8;
int y = (instruction & 0x00F0) >> 4;
switch ((OpCode)(instruction & 0xF))
{
// 8xy0
case OpCode.LDRR:
V[x] = V[y];
break;
// 8xy1
case OpCode.ORRR:
V[x] |= V[y];
break;
// 8xy2
case OpCode.ANDRR:
V[x] &= V[y];
break;
// 8xy3
case OpCode.XORRR:
V[x] ^= V[y];
break;
// 8xy4
case OpCode.ADDRR:
int temp = V[x] + V[y];
vf = (byte)((temp >> 8) & 1);
V[x] = (byte)temp;
V[0xF] = vf;
break;
// 8xy5
case OpCode.SUBRR:
vf = (byte)((V[x] > V[y]) ? 1 : 0);
V[x] -= V[y];
V[0xF] = vf;
break;
// 8x06
case OpCode.SHR:
vf = (byte)(V[x] & 1);
V[x] >>= 1;
V[0xF] = vf;
break;
// 8xy7
case OpCode.SUBRRN:
vf = (byte)((V[y] > V[x]) ? 1 : 0);
V[x] -= V[y];
V[0xF] = vf;
break;
// 8x0E
case OpCode.SHL:
vf = (byte)((V[x] >> 7) & 1);
V[x] <<= 1;
V[0xF] = vf;
break;
default:
throw new Exception($"Instruction [0x{instruction:X4}] is unknown!");
}
}
private void RunF(ushort instruction)
{
int count;
switch ((OpCode) (instruction & 0xFF))
{
// 0xFx07
case OpCode.GETDELAY:
V[(instruction & 0x0F00) >> 8] = DelayTimer;
break;
// 0xFx0A
case OpCode.WAITKEY:
byte key = 0xFF;
while (key == 0xFF)
{
bool[] keys = wm.GetKeys();
for (byte i = 0; i < 16; i++)
{
if (keys[i])
{
key = i;
break;
}
}
if (key == 0xFF)
Thread.Sleep(1);
}
V[(instruction & 0x0F00) >> 8] = key;
break;
// Fx15
case OpCode.SETDELAY:
DelayTimer = V[(instruction & 0x0F00) >> 8];
break;
// Fx18
case OpCode.SETSOUND:
SoundTimer = V[(instruction & 0x0F00) >> 8];
break;
// Fx1E
case OpCode.ADDIR:
I += V[(instruction & 0x0F00) >> 8];
break;
// Fx29
case OpCode.LDFT:
I = (ushort)(V[(instruction & 0x0F00) >> 8] * 5);
break;
// Fx33
case OpCode.LDBCD:
byte value = V[(instruction & 0x0F00) >> 8];
Memory[I] = (byte)((value / 100) % 10);
Memory[I + 1] = (byte)((value / 10) % 10);
Memory[I + 2] = (byte)(value % 10);
break;
// Fx55
case OpCode.LDRANGE:
count = ((instruction & 0x0F00) >> 8) + 1;
for (int i = 0; i < count; i++)
Memory[I + i] = V[i];
break;
// Fx65
case OpCode.RDRANGE:
count = ((instruction & 0x0F00) >> 8) + 1;
for (int i = 0; i < count; i++)
V[i] = Memory[I + i];
break;
default:
throw new Exception($"Instruction [0x{instruction:X4}] is unknown!");
}
}
}
}