blob: f74713dba462dff8399b01dc992612963f3676cb (
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
|
// Project: Salis
// Author: Paul Oliver
// Email: contact@pauloliver.dev
/*
* Implements a minimal UI for the Salis simulator with minimal output and
* interruptible via OS signals. Ideal for running Salis in the background.
*/
#include <signal.h>
#include <unistd.h>
volatile bool g_running;
u64 g_step_block;
void sig_handler(int signo) {
switch (signo) {
case SIGINT:
case SIGTERM:
printf("signal received, stopping simulator...\n");
g_running = false;
break;
}
}
void step_block() {
clock_t beg = clock();
salis_step(g_step_block - (g_steps % g_step_block));
clock_t end = clock();
if ((end - beg) < (CLOCKS_PER_SEC * 4)) {
g_step_block <<= 1;
}
if ((end - beg) >= (CLOCKS_PER_SEC * 2) && g_step_block != 1) {
g_step_block >>= 1;
}
printf("simulator running on step '%#lx'\n", g_steps);
}
int main() {
#if ACTION == ACT_NEW
salis_init();
#elif ACTION == ACT_LOAD
salis_load();
#endif
g_running = true;
g_step_block = 1;
signal(SIGINT, sig_handler);
signal(SIGTERM, sig_handler);
while (g_running) {
step_block();
}
salis_save(SIM_PATH);
salis_free();
return 0;
}
|