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
|
/*
* Copyright (C) 2024 Tristan Riehs
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <raylib.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "disp.h"
#include "calc_data.h"
#include "input.h"
#define DEFAULT_HEIGHT 200
#define DEFAULT_WIDTH (DEFAULT_HEIGHT*16/9)
#define MAX_FONTSIZE 100
static struct calc_data calcs[CALC_COUNT] = {0};
static int current_idx = 0;
void
init(void)
{
#ifndef NDEBUG
SetTraceLogLevel(LOG_DEBUG);
#else
SetTraceLogLevel(LOG_ERROR);
#endif
InitWindow(DEFAULT_WIDTH, DEFAULT_HEIGHT, "calculer");
if (!IsWindowReady())
{
fprintf(stderr, "calculer: error initialiazing Raylib \
window\n");
exit(1);
}
SetTargetFPS(60);
SetWindowState(FLAG_WINDOW_RESIZABLE);
BeginDrawing();
ClearBackground(RAYWHITE);
EndDrawing();
current_idx = 0;
TraceLog(LOG_INFO, "window successfully initialized");
}
static int
min(int x, int y)
{
if (x < y)
return x;
else
return y;
}
static void
draw_calc(void)
{
char txt[64] = {0};
int win_width, win_height;
int txt_width;
int font_size;
sprintf(txt, "%d + %d", calcs[current_idx].x, calcs[current_idx].y);
win_width = GetScreenWidth();
win_height = GetScreenHeight();
font_size = min(win_height/3, MAX_FONTSIZE);
txt_width = MeasureText(txt, font_size);
TraceLog(LOG_DEBUG, "win_width = %d", win_width);
TraceLog(LOG_DEBUG, "win_height = %d", win_height);
TraceLog(LOG_DEBUG, "txt_width = %d", txt_width);
TraceLog(LOG_DEBUG, "font_size = %d", font_size);
int max_txt_width = win_width*3/4/2;
if (txt_width > max_txt_width)
{
float scale = ((float) txt_width)/max_txt_width;
font_size = font_size/scale;
txt_width = MeasureText(txt, font_size);
}
DrawText(txt, (win_width/4)-(txt_width/2),
win_height/6, font_size, GRAY);
TraceLog(LOG_INFO, "calulation %d + %d successfully drawn",
calcs[current_idx].x, calcs[current_idx].y);
}
static void
draw_input(void)
{
char txt[64] = {0};
int win_width, win_height;
int txt_width;
int font_size;
sprintf(txt, "%d", calcs[current_idx].input);
win_width = GetScreenWidth();
win_height = GetScreenHeight();
font_size = min(win_height/4, 3*MAX_FONTSIZE/4);
txt_width = MeasureText(txt, font_size);
if (txt_width > win_width)
{
float scale = txt_width/win_width;
font_size = font_size/scale;
txt_width = MeasureText(txt, font_size);
}
DrawText(txt, (win_width/4)-(txt_width/2),
win_height*4/6, font_size, DARKGRAY);
TraceLog(LOG_INFO, "input successfully drawn");
}
static void
draw_res(void)
{
char txt[64] = {0};
Color col;
int win_width, win_height;
int txt_width;
int font_size;
win_width = GetScreenWidth();
win_height = GetScreenHeight();
font_size = min(win_height/CALC_COUNT, MAX_FONTSIZE/2);
txt_width = MeasureText("60 + 60 = 120 10000ms", font_size);
if (txt_width > win_width/2)
{
float scale = ((float) txt_width)/(win_width/2);
font_size = font_size/scale;
}
int j = loop_backwards(current_idx);
int line = 0;
while ((calcs[j].ms != 0) && (line < CALC_COUNT))
{
if (calcs[j].right)
col = GREEN;
else
col = RED;
sprintf(txt, "%d + %d = %d %dms",
calcs[j].x, calcs[j].y,
calcs[j].input, calcs[j].ms);
txt_width = MeasureText(txt, font_size);
DrawText(txt, win_width-txt_width,
(int) font_size*1.2*line, font_size, col);
j = loop_backwards(j);
line++;
}
}
static void
redraw(void)
{
BeginDrawing();
ClearBackground(RAYWHITE);
draw_calc();
draw_input();
draw_res();
EndDrawing();
}
void
display_calc(int x, int y)
{
current_idx = (current_idx + 1)%CALC_COUNT;
calcs[current_idx].x = x;
calcs[current_idx].y = y;
calcs[current_idx].ms = 0;
calcs[current_idx].input = 0;
redraw();
}
static void
check_digit(int digit)
{
if (IsKeyPressed(KEY_ZERO + digit))
{
calcs[current_idx].input =
add_input_digit(calcs[current_idx].input, digit);
TraceLog(LOG_INFO, "digit %d added to input", digit);
TraceLog(LOG_INFO, "input is now %d", calcs[current_idx].input);
redraw();
}
}
static void
check_digits(void)
{
for (int i = 0; i < 10; i++)
check_digit(i);
}
int
read_input(void)
{
TraceLog(LOG_INFO, "waiting for user input");
calcs[current_idx].input = 0;
while (!WindowShouldClose())
{
PollInputEvents();
if (IsWindowResized())
redraw();
if (IsKeyPressed(KEY_ENTER))
return calcs[current_idx].input;
if (IsKeyPressed(KEY_Q) || IsKeyPressed(KEY_A))
return DISP_QUIT;
#ifndef NDEBUG
if (IsKeyPressed(KEY_R) || IsKeyPressed(KEY_G))
return DISP_RELOAD;
#endif
if (IsKeyPressed(KEY_BACKSPACE))
{
calcs[current_idx].input =
rm_input_digit(calcs[current_idx].input);
redraw();
}
check_digits();
}
return DISP_QUIT;
}
void
display_res(bool right, int ms)
{
calcs[current_idx].right = right;
calcs[current_idx].ms = ms;
redraw();
}
void
destroy(void)
{
CloseWindow();
}
#ifndef NDEBUG
void *
pre_reload(void)
{
char *data = malloc(sizeof(calcs) + sizeof(current_idx));
memcpy(data, &calcs, sizeof(calcs));
memcpy(data + sizeof(calcs), ¤t_idx, sizeof(current_idx));
TraceLog(LOG_INFO, "pre-reload actions done");
return data;
}
void
post_reload(void *state)
{
char *data = state;
memcpy(&calcs, data, sizeof(calcs));
memcpy(¤t_idx, data + sizeof(calcs), sizeof(current_idx));
free(data);
TraceLog(LOG_INFO, "post-reload actions done");
}
#endif
|