quest/timer.c

417 lines
9.7 KiB
C
Raw Normal View History

2021-09-03 13:41:23 +10:00
#include "timer.h"
2021-08-18 16:56:42 +10:00
2021-09-05 02:50:19 +10:00
//Timekeeping
struct timespec timestart, finish;
int currentMS = 0;
bool timerActive;
//Global hotkeys
2021-08-18 16:56:42 +10:00
char buf;
int pipefd[2];
struct keymap km;
2021-09-05 02:50:19 +10:00
//UI
2021-08-28 01:43:33 +10:00
int h, w;
2021-09-05 02:50:19 +10:00
int deltasEnabled = 1;
int sgmtdurEnabled = 1;
int pbEnabled = 1;
bool resized = false;
//Run data
const char *schemaver = "v1.0.1";
const char *timersname = "quest";
const char *timerlname = "Quinn's Utterly Elegant Speedrun Timer";
const char *timerver = "v0.4.0";
const char *timerlink = "https://github.com/SilentFungus/quest";
2021-09-03 13:41:23 +10:00
char *gameTitle = "title not loaded";
char *categoryTitle = "category not loaded";
int attempts = 0;
struct segment *segments;
int segmentCount;
2021-09-05 02:50:19 +10:00
int currentSegment = -1;
2021-09-03 13:41:23 +10:00
char currentTime[10];
2021-08-18 16:56:42 +10:00
void sub_timespec(struct timespec t1, struct timespec t2, struct timespec* td)
{
td->tv_nsec = t2.tv_nsec - t1.tv_nsec;
td->tv_sec = t2.tv_sec - t1.tv_sec;
if (td->tv_sec > 0 && td->tv_nsec < 0) {
td->tv_nsec += NS_PER_S;
td->tv_sec--;
} else if (td->tv_sec < 0 && td->tv_nsec > 0) {
td->tv_nsec -= NS_PER_S;
td->tv_sec++;
}
}
void add_timespec(struct timespec t1, struct timespec t2, struct timespec* td)
{
td->tv_nsec = t2.tv_nsec + t1.tv_nsec;
td->tv_sec = t2.tv_sec + t1.tv_sec;
if (td->tv_nsec < 0) {
td->tv_nsec += NS_PER_S;
td->tv_sec++;
}
}
bool logger_proc(unsigned int level, const char *format, ...) {
return 0;
}
void dispatch_proc(uiohook_event * const event) {
switch (event->type) {
case EVENT_KEY_PRESSED:
2021-08-28 01:43:33 +10:00
if (event->data.keyboard.keycode == km.START)
2021-08-18 16:56:42 +10:00
buf = K_START;
2021-08-28 01:43:33 +10:00
if (event->data.keyboard.keycode == km.STOP)
2021-08-18 16:56:42 +10:00
buf = K_STOP;
2021-08-28 01:43:33 +10:00
if (event->data.keyboard.keycode == km.PAUSE)
2021-08-18 16:56:42 +10:00
buf = K_PAUSE;
2021-08-28 01:43:33 +10:00
if (event->data.keyboard.keycode == km.SPLIT)
2021-08-18 16:56:42 +10:00
buf = K_SPLIT;
2021-08-28 01:43:33 +10:00
if (event->data.keyboard.keycode == km.CLOSE)
buf = K_CLOSE;
2021-08-18 16:56:42 +10:00
write(pipefd[1], &buf, 1);
default:
break;
}
}
2021-08-28 01:43:33 +10:00
int handleInput()
2021-08-18 16:56:42 +10:00
{
if (read(pipefd[0], &buf, 1) == -1)
2021-08-28 01:43:33 +10:00
return 0;
if (buf == K_SPLIT)
split();
if (buf == K_START)
start();
if (buf == K_STOP)
stop();
if (buf == K_PAUSE)
tpause();
if (buf == K_CLOSE)
return 1;
return 0;
2021-08-18 16:56:42 +10:00
}
2021-08-28 01:43:33 +10:00
void start()
2021-08-18 16:56:42 +10:00
{
if (timerActive)
return;
2021-08-28 01:43:33 +10:00
clock_gettime(CLOCK_REALTIME, &timestart);
2021-08-18 16:56:42 +10:00
timerActive = true;
2021-09-05 02:50:19 +10:00
currentSegment = 0;
2021-08-18 16:56:42 +10:00
}
2021-08-28 01:43:33 +10:00
void stop()
2021-08-18 16:56:42 +10:00
{
if (!timerActive)
return;
timerActive = false;
2021-09-05 02:50:19 +10:00
currentSegment = -1;
2021-08-18 16:56:42 +10:00
}
2021-08-28 01:43:33 +10:00
void split()
{
2021-09-05 02:50:19 +10:00
if (!timerActive)
return;
segments[currentSegment].realtimeMS = currentMS;
segments[currentSegment].gametimeMS = currentMS;
currentSegment++;
if (currentSegment >= segmentCount)
stop();
2021-09-03 13:41:23 +10:00
/*
struct timespec *temp = malloc(sizeof(struct timespec) * (splitCount + 1));
for (int i = 0; i < splitCount; i++) {
temp[i] = splits[i];
}
clock_gettime(CLOCK_REALTIME, &temp[splitCount]);
free(splits);
splits = temp;
splitCount++;
*/
2021-08-28 01:43:33 +10:00
}
void tpause()
2021-08-18 16:56:42 +10:00
{
}
void loadKeymap()
{
km.START = VC_R;
km.STOP = VC_F;
km.PAUSE = VC_D;
km.SPLIT = VC_E;
2021-08-28 01:43:33 +10:00
km.CLOSE = VC_C;
//char path[256];
//strcat(strcpy(path, getenv("HOME")), "/.config/qtimer");
//mkdir(path, 0777);
//strcat(strcpy(path, getenv("HOME")), "/.config/qtimer/keymaps");
//mkdir(path, 0777);
//strcat(strcpy(path, getenv("HOME")), "/.config/qtimer/keymaps/default");
//FILE* fp = fopen(path, "r");
//if (fp == NULL) {
//km.START = VC_R;
//km.STOP = VC_F;
//km.PAUSE = VC_D;
//km.SPLIT = VC_E;
//fp = fopen(path, "w");
//fprintf(fp, "START = R\n");
//fprintf(fp, "STOP = F\n");
//fprintf(fp, "PAUSE = D\n");
//fprintf(fp, "SPLIT = E\n");
//fclose(fp);
//} else {
//}
//fclose(fp);
}
2021-09-05 02:50:19 +10:00
void ftime(char *timestr, bool withMS, int ms)
2021-08-28 01:43:33 +10:00
{
2021-09-05 02:50:19 +10:00
int seconds = ms / 1000;
int minutes = seconds / 60;
int hours = minutes / 60;
//A few better formatted variables for displaying these numbers
int tms = (ms % 1000) / 10;
int oms = tms / 10;
int s = seconds % 60;
int m = minutes % 60;
int h = hours;
2021-08-28 01:43:33 +10:00
2021-09-05 02:50:19 +10:00
if (hours) {
if (withMS)
sprintf(timestr, fulltime, h, abs(h), abs(m), abs(s), abs(tms));
else
sprintf(timestr, hourstime, h, abs(m), abs(s));
} else if (minutes) {
if (withMS)
sprintf(timestr, sfulltime, m, abs(s), abs(tms));
else
sprintf(timestr, minutestime, m, abs(s));
} else {
if (withMS)
sprintf(timestr, secondstime, s, abs(tms));
else
sprintf(timestr, millitime, s, abs(oms));
}
2021-09-03 13:41:23 +10:00
}
int timespecToMS(struct timespec t)
{
int ms = t.tv_nsec / 1000000;
ms += t.tv_sec * 1000;
return ms;
}
void drawSegments()
{
char data[(deltasEnabled * 10) + (sgmtdurEnabled * 10) + (pbEnabled * 10) + 11];
2021-09-05 02:50:19 +10:00
char segmentTime[11];
char zeroStr[11];
char deltaTime[11];
char sgmtTime[11];
char segTime[11];
ftime(zeroStr, false, 0);
2021-09-03 13:41:23 +10:00
for(int i = 0; i < segmentCount; i++) {
2021-09-05 02:50:19 +10:00
ftime(segmentTime, true, segments[i].pbrealtimeMS);
if (i >= currentSegment) {
2021-09-03 13:41:23 +10:00
sprintf(data, "%10s%10s%10s%10s", zeroStr, zeroStr, zeroStr, segmentTime);
} else {
2021-09-05 02:50:19 +10:00
ftime(deltaTime, false, segments[i].realtimeMS - segments[i].pbrealtimeMS);
ftime(sgmtTime, false, segments[i].realtimeMS - segments[i - 1].realtimeMS);
ftime(segTime, false, segments[i].realtimeMS);
sprintf(data, "%10s%10s%10s%10s", deltaTime, sgmtTime, segTime, segmentTime);
2021-09-03 13:41:23 +10:00
}
rghtPrint(6 + i, w, data);
leftPrint(6 + i, w, segments[i].name);
}
2021-08-28 01:43:33 +10:00
}
2021-09-05 02:50:19 +10:00
void drawCurrentSegment()
{
char data[(deltasEnabled * 10) + (sgmtdurEnabled * 10) + (pbEnabled * 10) + 11];
strcpy(data, "");
char pbTime[11];
char deltaTime[11];
char sgmtTime[11];
char segTime[11];
if (deltasEnabled) {
ftime(deltaTime, false, currentMS - segments[currentSegment].pbrealtimeMS);
strcat(data, deltaTime);
}
if (sgmtdurEnabled) {
if (currentSegment == 0)
ftime(sgmtTime, false, currentMS);
else
ftime(sgmtTime, false, currentMS - segments[currentSegment - 1].realtimeMS);
strcat(data, sgmtTime);
}
ftime(segTime, false, currentMS);
strcat(data, segTime);
if (pbEnabled) {
ftime(pbTime, true, segments[currentSegment].pbrealtimeMS);
strcat(data, pbTime);
}
data[(deltasEnabled * 10) + (sgmtdurEnabled * 10) + (pbEnabled * 10) + 11] = '\0';
rghtPrint(6 + currentSegment, w, data);
leftPrint(6 + currentSegment, w, segments[currentSegment].name);
}
2021-08-28 01:43:33 +10:00
void drawDisplay()
{
2021-09-05 02:50:19 +10:00
if (resized) {
clrScreen();
resized = false;
}
2021-09-03 13:41:23 +10:00
rghtPrint(1, w, "Attempts");
char atmpt[10];
sprintf(atmpt, "%9d", attempts);
rghtPrint(2, w, atmpt);
cntrPrint(1, w / 2, w, gameTitle);
cntrPrint(2, w / 2, w, categoryTitle);
2021-08-28 01:43:33 +10:00
char cols[41];
sprintf(cols, "%10s%10s%10s%10s", "Delta", "Sgmt", "Time", "PB");
rghtPrint(4, w, cols);
2021-09-05 02:50:19 +10:00
drawHLine(5, w);
printf("\033[5;3H[dsp]");
2021-09-03 13:41:23 +10:00
drawSegments();
2021-09-05 02:50:19 +10:00
if (timerActive) {
drawCurrentSegment();
struct timespec delta;
sub_timespec(timestart, finish, &delta);
currentMS = timespecToMS(delta);
}
drawHLine(segmentCount + 6, w);
ftime(currentTime, true, currentMS);
2021-09-03 13:41:23 +10:00
rghtPrint(segmentCount + 7, w, currentTime);
2021-08-28 01:43:33 +10:00
fflush(stdout);
}
void resize(int i)
{
struct winsize ws;
ioctl(1, TIOCGWINSZ, &ws);
w = ws.ws_col;
h = ws.ws_row;
2021-09-05 02:50:19 +10:00
resized = true;
2021-08-18 16:56:42 +10:00
}
2021-09-03 13:41:23 +10:00
void loadFile(char *path)
{
char *buffer = NULL;
long length;
FILE *f = fopen(path, "rb");
if (f == NULL)
return;
fseek(f, 0, SEEK_END);
length = ftell(f);
fseek(f, 0, SEEK_SET);
buffer = malloc(length + 1);
if (buffer != NULL) {
fread(buffer, 1, length, f);
}
fclose(f);
buffer[length] = '\0';
cJSON *splitfile = cJSON_Parse(buffer);
cJSON *game = NULL;
cJSON *category = NULL;
cJSON *attempt = NULL;
cJSON *segs = NULL;
game = cJSON_GetObjectItemCaseSensitive(splitfile, "game");
category = cJSON_GetObjectItemCaseSensitive(splitfile, "category");
attempt = cJSON_GetObjectItemCaseSensitive(splitfile, "attempts");
segs = cJSON_GetObjectItemCaseSensitive(splitfile, "segments");
if (game) {
cJSON *title = cJSON_GetObjectItemCaseSensitive(game, "longname");
if (cJSON_IsString(title) && (title->valuestring != NULL)) {
gameTitle = malloc(strlen(title->valuestring));
strcpy(gameTitle, title->valuestring);
}
}
if (category) {
cJSON *title = cJSON_GetObjectItemCaseSensitive(category, "longname");
if (cJSON_IsString(title) && (title->valuestring != NULL)) {
categoryTitle = malloc(strlen(title->valuestring));
strcpy(categoryTitle, title->valuestring);
}
}
if (attempt) {
cJSON *total = cJSON_GetObjectItemCaseSensitive(attempt, "total");
if (cJSON_IsNumber(total))
attempts = total->valueint;
}
if (segs) {
int segm = cJSON_GetArraySize(segs);
segmentCount = segm;
segments = malloc(segmentCount * sizeof(struct segment));
int it = 0;
cJSON *iterator = NULL;
cJSON *segname = NULL;
cJSON *segtime = NULL;
cJSON_ArrayForEach(iterator, segs) {
segname = cJSON_GetObjectItemCaseSensitive(iterator, "name");
if (cJSON_IsString(segname) && (segname->valuestring != NULL)) {
segments[it].name = malloc(strlen(segname->valuestring));
strcpy(segments[it].name, segname->valuestring);
}
segtime = cJSON_GetObjectItemCaseSensitive(iterator, "endedAt");
if (segtime) {
cJSON *time = cJSON_GetObjectItemCaseSensitive(segtime, "realtimeMS");
cJSON *gtime = cJSON_GetObjectItemCaseSensitive(segtime, "gametimeMS");
if (cJSON_IsNumber(time))
2021-09-05 02:50:19 +10:00
segments[it].pbrealtimeMS = time->valueint;
2021-09-03 13:41:23 +10:00
if (cJSON_IsNumber(gtime))
2021-09-05 02:50:19 +10:00
segments[it].pbgametimeMS = gtime->valueint;
2021-09-03 13:41:23 +10:00
}
it++;
}
}
cJSON_Delete(splitfile);
}
2021-08-28 01:43:33 +10:00
int main(int argc, char **argv)
2021-08-18 16:56:42 +10:00
{
timerActive = false;
hook_set_logger_proc(&logger_proc);
hook_set_dispatch_proc(&dispatch_proc);
//IPC pipe
pid_t cpid;
pipe(pipefd);
fcntl(pipefd[0], F_SETFL, O_NONBLOCK);
loadKeymap();
cpid = fork();
if (cpid == 0) {
close(pipefd[0]);
hook_run();
} else {
close(pipefd[1]);
2021-08-28 01:43:33 +10:00
signal(SIGWINCH, resize);
resize(0);
struct color bg = { 47, 53, 66};
struct color fg = {247, 248, 242};
initScreen(bg, fg);
2021-09-03 13:41:23 +10:00
loadFile(argv[1]);
2021-08-28 01:43:33 +10:00
while(!handleInput()) {
drawDisplay();
2021-08-18 16:56:42 +10:00
if (timerActive) {
clock_gettime(CLOCK_REALTIME, &finish);
}
2021-09-05 02:50:19 +10:00
usleep(5000);
2021-08-18 16:56:42 +10:00
}
2021-08-28 01:43:33 +10:00
resetScreen();
kill(cpid, SIGTERM);
2021-08-18 16:56:42 +10:00
}
2021-08-11 23:50:59 +10:00
return 0;
}
2021-09-03 13:41:23 +10:00