-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphics.cpp
230 lines (209 loc) · 6.96 KB
/
graphics.cpp
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
#include "graphics.h"
Graphics::Graphics(Chip8 *system)
{
init_allegro();
redraw = true;
fps = 30;
chip8 = system;
screen_width = al_get_display_width(display_pnt);
screen_height = al_get_display_height(display_pnt);
cell_width = screen_width / 64;
cell_height = screen_height / 32;
if (screen_width % 64 != 0 || screen_height % 32 != 0)
{
cout << "[Graphics] Display size is not optimal for this emulation. Expect issues." << endl;
}
cout << "[Graphics] Loaded correctly. Block size is: " << cell_width * cell_height << endl;
}
void Graphics::init_allegro()
{
if (display_pnt != NULL)
{
al_destroy_display(display_pnt);
}
if (!al_init())
{
fprintf(stderr, "failed to initialize allegro!\n");
}
display_pnt = al_create_display(1024, 768);
if (!display_pnt)
{
fprintf(stderr, "failed to create display!\n");
}
timer = al_create_timer(1.0 / 200);
if (!timer)
{
fprintf(stderr, "failed to create timer!\n");
}
event_queue = al_create_event_queue();
if (!event_queue)
{
fprintf(stderr, "failed to create event_queue!\n");
al_destroy_display(display_pnt);
al_destroy_timer(timer);
}
if (!al_install_keyboard())
{
fprintf(stderr, "failed to initialize the keyboard!\n");
}
}
void Graphics::draw()
{
al_register_event_source(event_queue, al_get_display_event_source(display_pnt));
al_register_event_source(event_queue, al_get_timer_event_source(timer));
al_register_event_source(event_queue, al_get_keyboard_event_source());
al_flip_display();
al_start_timer(timer);
while (1)
{
ALLEGRO_EVENT ev;
al_wait_for_event(event_queue, &ev);
chip8->emulate_cycle();
if (chip8->getDrawFlag())
{
chip8->resetDrawFlag();
uint32_t pixels[2048];
for (int i = 0; i < 2048; ++i)
{
uint8_t pixel = chip8->getGFX()[i];
//RGB Colors: 00 - Transparency; FF = R FF = G FF = B
pixels[i] = (0x00FFFFFF * pixel) | 0xFF000000;
}
float x1 = 0;
float x2 = cell_width;
float y1 = 0;
float y2 = cell_height;
unsigned pixel_count = 0;
for (unsigned y_index = 0; y_index < screen_height; y_index += cell_height)
{
for (unsigned x_index = 0; x_index < screen_width; x_index += cell_width)
{
//Kinda shitty conversion, will get better via bit shifting and stuff idk
int current = (int)pixels[pixel_count];
if (current == -1)
{
al_draw_filled_rectangle(x_index, y_index, x_index + cell_width, y_index + cell_height, al_map_rgb(255, 255, 255));
}
else
{
al_draw_filled_rectangle(x_index, y_index, x_index + cell_width, y_index + cell_height, al_map_rgb(0, 0, 0));
}
pixel_count += 1;
}
}
al_flip_display();
}
if (ev.type == ALLEGRO_EVENT_DISPLAY_CLOSE)
{
return;
}
if(ev.type == ALLEGRO_EVENT_KEY_DOWN)
{
switch(ev.keyboard.keycode)
{
case ALLEGRO_KEY_X:
chip8->getKey()[0] = 1;
break;
case ALLEGRO_KEY_1:
chip8->getKey()[1] = 1;
break;
case ALLEGRO_KEY_2:
chip8->getKey()[2] = 1;
break;
case ALLEGRO_KEY_3:
chip8->getKey()[3] = 1;
break;
case ALLEGRO_KEY_Q:
chip8->getKey()[4] = 1;
break;
case ALLEGRO_KEY_W:
chip8->getKey()[5] = 1;
break;
case ALLEGRO_KEY_E:
chip8->getKey()[6] = 1;
break;
case ALLEGRO_KEY_A:
chip8->getKey()[7] = 1;
break;
case ALLEGRO_KEY_S:
chip8->getKey()[8] = 1;
break;
case ALLEGRO_KEY_D:
chip8->getKey()[9] = 1;
break;
case ALLEGRO_KEY_Z:
chip8->getKey()[10] = 1;
break;
case ALLEGRO_KEY_C:
chip8->getKey()[11] = 1;
break;
case ALLEGRO_KEY_4:
chip8->getKey()[12] = 1;
break;
case ALLEGRO_KEY_R:
chip8->getKey()[13] = 1;
break;
case ALLEGRO_KEY_F:
chip8->getKey()[14] = 1;
break;
case ALLEGRO_KEY_V:
chip8->getKey()[15] = 1;
break;
}
}
if(ev.type == ALLEGRO_EVENT_KEY_UP)
{
switch(ev.keyboard.keycode)
{
case ALLEGRO_KEY_X:
chip8->getKey()[0] = 0;
break;
case ALLEGRO_KEY_1:
chip8->getKey()[1] = 0;
break;
case ALLEGRO_KEY_2:
chip8->getKey()[2] = 0;
break;
case ALLEGRO_KEY_3:
chip8->getKey()[3] = 0;
break;
case ALLEGRO_KEY_Q:
chip8->getKey()[4] = 0;
break;
case ALLEGRO_KEY_W:
chip8->getKey()[5] = 0;
break;
case ALLEGRO_KEY_E:
chip8->getKey()[6] = 0;
break;
case ALLEGRO_KEY_A:
chip8->getKey()[7] = 0;
break;
case ALLEGRO_KEY_S:
chip8->getKey()[8] = 0;
break;
case ALLEGRO_KEY_D:
chip8->getKey()[9] = 0;
break;
case ALLEGRO_KEY_Z:
chip8->getKey()[10] = 0;
break;
case ALLEGRO_KEY_C:
chip8->getKey()[11] = 0;
break;
case ALLEGRO_KEY_4:
chip8->getKey()[12] = 0;
break;
case ALLEGRO_KEY_R:
chip8->getKey()[13] = 0;
break;
case ALLEGRO_KEY_F:
chip8->getKey()[14] = 0;
break;
case ALLEGRO_KEY_V:
chip8->getKey()[15] = 0;
break;
}
}
}
}