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
|
#include <SDL2/SDL.h>
#include <SDL2/SDL_opengl.h>
#include <assert.h>
#include "renderer.h"
#include "atlas.inl"
#define BUFFER_SIZE 16384
enum window {
WIDTH = 800,
HEIGHT = 600,
};
static const mu_Color COLOR_BG = {0, 0, 0, 255};
static const char button_map[256] = {
[ SDL_BUTTON_LEFT & 0xff ] = MU_MOUSE_LEFT,
[ SDL_BUTTON_RIGHT & 0xff ] = MU_MOUSE_RIGHT,
[ SDL_BUTTON_MIDDLE & 0xff ] = MU_MOUSE_MIDDLE,
};
static const char key_map[256] = {
[ SDLK_LSHIFT & 0xff ] = MU_KEY_SHIFT,
[ SDLK_RSHIFT & 0xff ] = MU_KEY_SHIFT,
[ SDLK_LCTRL & 0xff ] = MU_KEY_CTRL,
[ SDLK_RCTRL & 0xff ] = MU_KEY_CTRL,
[ SDLK_LALT & 0xff ] = MU_KEY_ALT,
[ SDLK_RALT & 0xff ] = MU_KEY_ALT,
[ SDLK_RETURN & 0xff ] = MU_KEY_RETURN,
[ SDLK_BACKSPACE & 0xff ] = MU_KEY_BACKSPACE,
};
static GLfloat tex_buf[BUFFER_SIZE * 8];
static GLfloat vert_buf[BUFFER_SIZE * 8];
static GLubyte color_buf[BUFFER_SIZE * 16];
static GLuint index_buf[BUFFER_SIZE * 6];
static int buf_idx;
static SDL_Window *window;
void r_init(void) {
/* init SDL window */
SDL_Init(SDL_INIT_EVERYTHING);
window = SDL_CreateWindow(
NULL, SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
WIDTH, HEIGHT, SDL_WINDOW_OPENGL);
SDL_GL_CreateContext(window);
/* init gl */
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glDisable(GL_CULL_FACE);
glDisable(GL_DEPTH_TEST);
glEnable(GL_SCISSOR_TEST);
glEnable(GL_TEXTURE_2D);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
glEnableClientState(GL_COLOR_ARRAY);
/* init texture */
GLuint id;
glGenTextures(1, &id);
glBindTexture(GL_TEXTURE_2D, id);
glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, ATLAS_WIDTH, ATLAS_HEIGHT, 0,
GL_ALPHA, GL_UNSIGNED_BYTE, atlas_texture);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
assert(glGetError() == 0);
}
static void handle_event(SDL_Event e, mu_Context *ctx) {
switch (e.type) {
case SDL_QUIT: {
exit(EXIT_SUCCESS);
}
break; case SDL_MOUSEMOTION: {
mu_input_mousemove(ctx, e.motion.x, e.motion.y);
}
break; case SDL_MOUSEWHEEL: {
mu_input_scroll(ctx, 0, e.wheel.y * -30);
}
break; case SDL_TEXTINPUT: {
mu_input_text(ctx, e.text.text);
}
break; case SDL_MOUSEBUTTONDOWN: case SDL_MOUSEBUTTONUP: {
int b = button_map[e.button.button & 0xff];
if (b && e.type == SDL_MOUSEBUTTONDOWN) {
mu_input_mousedown(ctx, e.button.x, e.button.y, b);
}
if (b && e.type == SDL_MOUSEBUTTONUP) {
mu_input_mouseup(ctx, e.button.x, e.button.y, b);
}
}
break; case SDL_KEYDOWN: case SDL_KEYUP: {
int c = key_map[e.key.keysym.sym & 0xff];
if (c && e.type == SDL_KEYDOWN) {
mu_input_keydown(ctx, c);
}
if (c && e.type == SDL_KEYUP) {
mu_input_keyup(ctx, c);
}
}
}
}
void r_handle_input(mu_Context *ctx) {
SDL_Event e;
while (SDL_PollEvent(&e)) {
handle_event(e, ctx);
}
}
static void flush(void) {
if (buf_idx == 0) { return; }
glViewport(0, 0, WIDTH, HEIGHT);
glMatrixMode(GL_PROJECTION);
glPushMatrix();
glLoadIdentity();
glOrtho(0.0f, WIDTH, HEIGHT, 0.0f, -1.0f, +1.0f);
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
glLoadIdentity();
glTexCoordPointer(2, GL_FLOAT, 0, tex_buf);
glVertexPointer(2, GL_FLOAT, 0, vert_buf);
glColorPointer(4, GL_UNSIGNED_BYTE, 0, color_buf);
glDrawElements(GL_TRIANGLES, buf_idx * 6, GL_UNSIGNED_INT, index_buf);
glMatrixMode(GL_MODELVIEW);
glPopMatrix();
glMatrixMode(GL_PROJECTION);
glPopMatrix();
buf_idx = 0;
}
static void push_quad(mu_Rect dst, mu_Rect src, mu_Color color) {
if (buf_idx == BUFFER_SIZE) { flush(); }
int texvert_idx = buf_idx * 8;
int color_idx = buf_idx * 16;
int element_idx = buf_idx * 4;
int index_idx = buf_idx * 6;
buf_idx++;
/* update texture buffer */
float x = src.x / (float) ATLAS_WIDTH;
float y = src.y / (float) ATLAS_HEIGHT;
float w = src.w / (float) ATLAS_WIDTH;
float h = src.h / (float) ATLAS_HEIGHT;
tex_buf[texvert_idx + 0] = x;
tex_buf[texvert_idx + 1] = y;
tex_buf[texvert_idx + 2] = x + w;
tex_buf[texvert_idx + 3] = y;
tex_buf[texvert_idx + 4] = x;
tex_buf[texvert_idx + 5] = y + h;
tex_buf[texvert_idx + 6] = x + w;
tex_buf[texvert_idx + 7] = y + h;
/* update vertex buffer */
vert_buf[texvert_idx + 0] = dst.x;
vert_buf[texvert_idx + 1] = dst.y;
vert_buf[texvert_idx + 2] = dst.x + dst.w;
vert_buf[texvert_idx + 3] = dst.y;
vert_buf[texvert_idx + 4] = dst.x;
vert_buf[texvert_idx + 5] = dst.y + dst.h;
vert_buf[texvert_idx + 6] = dst.x + dst.w;
vert_buf[texvert_idx + 7] = dst.y + dst.h;
/* update color buffer */
memcpy(color_buf + color_idx + 0, &color, 4);
memcpy(color_buf + color_idx + 4, &color, 4);
memcpy(color_buf + color_idx + 8, &color, 4);
memcpy(color_buf + color_idx + 12, &color, 4);
/* update index buffer */
index_buf[index_idx + 0] = element_idx + 0;
index_buf[index_idx + 1] = element_idx + 1;
index_buf[index_idx + 2] = element_idx + 2;
index_buf[index_idx + 3] = element_idx + 2;
index_buf[index_idx + 4] = element_idx + 3;
index_buf[index_idx + 5] = element_idx + 1;
}
static void draw_rect(mu_Rect rect, mu_Color color) {
push_quad(rect, atlas[ATLAS_WHITE], color);
}
static void draw_text(const char *text, mu_Vec2 pos, mu_Color color) {
mu_Rect dst = { pos.x, pos.y, 0, 0 };
for (const char *p = text; *p; p++) {
if ((*p & 0xc0) == 0x80) { continue; }
int chr = mu_min((unsigned char) *p, 127);
mu_Rect src = atlas[ATLAS_FONT + chr];
dst.w = src.w;
dst.h = src.h;
push_quad(dst, src, color);
dst.x += dst.w;
}
}
static void draw_icon(int id, mu_Rect rect, mu_Color color) {
mu_Rect src = atlas[id];
int x = rect.x + (rect.w - src.w) / 2;
int y = rect.y + (rect.h - src.h) / 2;
push_quad(mu_rect(x, y, src.w, src.h), src, color);
}
static void set_clip_rect(mu_Rect rect) {
flush();
glScissor(rect.x, HEIGHT - (rect.y + rect.h), rect.w, rect.h);
}
static void render_command(mu_Command *cmd) {
switch (cmd->type) {
case MU_COMMAND_TEXT: {
draw_text(cmd->text.str, cmd->text.pos, cmd->text.color);
}
break; case MU_COMMAND_RECT: {
draw_rect(cmd->rect.rect, cmd->rect.color);
}
break; case MU_COMMAND_ICON: {
draw_icon(cmd->icon.id, cmd->icon.rect, cmd->icon.color);
}
break; case MU_COMMAND_CLIP: {
set_clip_rect(cmd->clip.rect);
}
}
}
static void clear(mu_Color clr) {
flush();
glClearColor(clr.r / 255., clr.g / 255., clr.b / 255., clr.a / 255.);
glClear(GL_COLOR_BUFFER_BIT);
}
void r_render(mu_Context *ctx) {
clear(COLOR_BG);
mu_Command *cmd = NULL;
while (mu_next_command(ctx, &cmd)) {
render_command(cmd);
}
r_present();
}
int r_get_text_width(const char *text, int len) {
int res = 0;
for (const char *p = text; *p && len--; p++) {
if ((*p & 0xc0) == 0x80) { continue; }
int chr = mu_min((unsigned char) *p, 127);
res += atlas[ATLAS_FONT + chr].w;
}
return res;
}
int r_get_text_height(void) {
return 18;
}
void r_get_window_size(int *w, int *h) {
SDL_GetWindowSize(window, w, h);
}
void r_present(void) {
flush();
SDL_GL_SwapWindow(window);
}
|