Compare commits

...

3 Commits

3 changed files with 63 additions and 131 deletions

View File

@ -47,51 +47,10 @@ int main(int argc, char *argv[]) {
exit(1);
}
if (!strcmp(argv[1], "time")) {
strcpy(buffer, "current_time");
} else if (!strcmp(argv[1], "start")) {
strcpy(buffer, "start");
} else if (!strcmp(argv[1], "stop")) {
strcpy(buffer, "stop");
} else if (!strcmp(argv[1], "kill")) {
strcpy(buffer, "kill");
} else if (!strcmp(argv[1], "split")) {
strcpy(buffer, "split");
} else if (!strcmp(argv[1], "skip")) {
strcpy(buffer, "skip");
} else if (!strcmp(argv[1], "pause")) {
strcpy(buffer, "pause");
} else if (!strcmp(argv[1], "resume")) {
strcpy(buffer, "resume");
} else if (!strcmp(argv[1], "undo")) {
strcpy(buffer, "undo");
} else if (!strcmp(argv[1], "redo")) {
strcpy(buffer, "redo");
} else if (!strcmp(argv[1], "foreground")) {
strcpy(buffer, "Foreground-Color");
} else if (!strcmp(argv[1], "background")) {
strcpy(buffer, "Background-Color");
} else if (!strcmp(argv[1], "save")) {
strcpy(buffer, "save");
} else if (!strcmp(argv[1], "runs")) {
strcpy(buffer, "run_count");
} else if (!strcmp(argv[1], "segments")) {
strcpy(buffer, "segment_count");
} else if (!strcmp(argv[1], "start-split-stop")) {
strcpy(buffer, "start-split-stop");
} else if (!strcmp(argv[1], "pause-resume")) {
strcpy(buffer, "pause-resume");
} else if (!strcmp(argv[1], "start-stop")) {
strcpy(buffer, "start-stop");
} else if (!strcmp(argv[1], "start-split")) {
strcpy(buffer, "start-split");
} else if (!strcmp(argv[1], "split-stop")) {
strcpy(buffer, "split-stop");
} else if (!strcmp(argv[1], "undo-redo")) {
strcpy(buffer, "undo-redo");
} else {
perror("No valid command given");
exit(1);
bzero(buffer, 256);
for (int i = 1; i < argc; i++) {
strcat(buffer, argv[i]);
strcat(buffer, " ");
}
/* Send message to the server */
@ -104,26 +63,11 @@ int main(int argc, char *argv[]) {
/* Now read server response */
bzero(buffer,256);
n = read(sockfd, &buffer, 256);
//read an int response
if (!strcmp(argv[1], "time") || !strcmp(argv[1], "runs") || !strcmp(argv[1], "segments")) {
int x = -1;
x = *(int*)&buffer;
if (n < 0) {
perror("ERROR reading from socket");
exit(1);
}
if (x != -1)
printf("%d\n",x);
}
//read a string response
else {
if (n < 0) {
perror("ERROR reading from socket");
exit(1);
}
if (buffer != NULL)
printf("%s", buffer);
if (n < 0) {
perror("ERROR reading from socket");
exit(1);
}
if (buffer != NULL)
printf("%s\n", buffer);
return 0;
}

View File

@ -72,8 +72,9 @@ void timespecToRFC3339(struct timespec t, char buf[]);
void loadFiles();
void add_segment(char *sname, char *lname, char *desc);
void addFile(char *path);
void sendValue(int sock, char* name);
void sendInt(int sock, int value);
void sendValue(int sock, char* name);
void sendString(int sock, char* str);
void doprocessing (int sock);
void addPauseTime();
void subtractPauseTime();
@ -148,6 +149,7 @@ void add_event(enum event_type t)
offset_timespec(timerOffset, &run[runMarker].time);
runMarker++;
runMarker2 = runMarker;
hasUndoneAtLeastOnce = false;
}
void reset_timer()
@ -250,11 +252,12 @@ void subtractPauseTime()
void undo()
{
if (!timerActive) return;
if (runMarker > 0) {
runMarker--;
if (run[runMarker].type == STOP)
if (run[runMarker].type == STOP) {
timerActive = true;
runUnsaved = false;
}
if (run[runMarker].type == START)
timerActive = false;
if (run[runMarker].type == PAUSE)
@ -272,8 +275,11 @@ void redo()
if (!timerActive) return;
if (runMarker < runMarker2) {
runMarker++;
if (run[runMarker - 1].type == STOP)
if (run[runMarker - 1].type == STOP) {
timerActive = false;
runUnsaved = true;
finish = run[runMarker - 1].time;
}
if (run[runMarker - 1].type == START)
timerActive = true;
if (run[runMarker - 1].type == PAUSE)
@ -282,7 +288,8 @@ void redo()
paused = false;
addPauseTime();
}
} else {
}
if (runMarker == runMarker2) {
hasUndoneAtLeastOnce = false;
}
}
@ -397,7 +404,6 @@ void loadFiles()
char buff2[255];
for (int i = 0; i < files; i++) {
printf("loading file: \"%s\"\n", filePaths[i]);
fp = fopen(filePaths[i], "r+");
while(1) {
if (!fgets(buff, 255, fp))
@ -459,17 +465,6 @@ void loadFiles()
fclose(fp);
}
//Print metadata arrays
for (int i = 0; i < valuecount; i++) {
printf("%s | %s", names[i], values[i]);
}
//Print segments
for (int i = 0; i < segment_count; i++) {
printf("Segment %d: %s\n", i, segments[i].shortname);
}
//Print run count
printf("%d\n", run_count);
}
void add_segment(char *sname, char *lname, char *desc)
@ -505,7 +500,7 @@ int current_ms()
void sendInt(int sock, int value)
{
char buffer[256];
strncpy(buffer, (char*)&value, sizeof(int));
sprintf(buffer, "%d", value);
int n = write(sock, &buffer, 256);
if (n < 0) {
perror("ERROR writing to socket");
@ -535,79 +530,72 @@ void sendValue(int sock, char* name)
}
}
void sendString(int sock, char* str)
{
char buffer[256];
strcpy(buffer, str);
int n = write(sock, &buffer, 256);
if (n < 0) {
perror("ERROR writing to socket");
exit(1);
}
}
void doprocessing (int sock)
{
int n;
char buffer[256];
n = read(sock, &buffer, 256);
char *token = strtok(buffer, " ");
if (n < 0) {
perror("ERROR reading from socket");
exit(1);
}
if (!strcmp(buffer, "current_time")) {
//printf("Recieved time command\n");
if (!strcmp(token, "current_time")) {
sendInt(sock, current_ms());
} else if (!strcmp(buffer, "start")) {
printf("Recieved start command\n");
} else if (!strcmp(token, "start")) {
start();
} else if (!strcmp(buffer, "stop")) {
printf("Recieved stop command\n");
} else if (!strcmp(token, "stop")) {
stop();
} else if (!strcmp(buffer, "kill")) {
printf("Recieved kill command\n");
} else if (!strcmp(token, "kill")) {
alive = false;
} else if (!strcmp(buffer, "split")) {
printf("Recieved split command\n");
} else if (!strcmp(token, "split")) {
split();
} else if (!strcmp(buffer, "skip")) {
printf("Recieved skip command\n");
} else if (!strcmp(token, "skip")) {
skip();
} else if (!strcmp(buffer, "pause")) {
printf("Recieved pause command\n");
} else if (!strcmp(token, "pause")) {
pause_timer();
} else if (!strcmp(buffer, "resume")) {
printf("Recieved resume command\n");
} else if (!strcmp(token, "resume")) {
resume();
} else if (!strcmp(buffer, "undo")) {
printf("Recieved undo command\n");
} else if (!strcmp(token, "undo")) {
undo();
} else if (!strcmp(buffer, "redo")) {
printf("Recieved redo command\n");
} else if (!strcmp(token, "redo")) {
redo();
} else if (!strcmp(buffer, "Foreground-Color")) {
printf("Recieved request for foreground color\n");
sendValue(sock, "Foreground-Color");
} else if (!strcmp(buffer, "Background-Color")) {
printf("Recieved request for background color\n");
sendValue(sock, "Background-Color");
} else if (!strcmp(buffer, "save")) {
printf("Recieved save command\n");
} else if (!strcmp(token, "save")) {
appendRunToFile();
} else if (!strcmp(buffer, "run_count")) {
printf("Recieved request for run count\n");
} else if (!strcmp(token, "run_count")) {
sendInt(sock, run_count);
} else if (!strcmp(buffer, "segment_count")) {
printf("Recieved request for segment count\n");
} else if (!strcmp(token, "segment_count")) {
sendInt(sock, segment_count);
} else if (!strcmp(buffer, "start_split_stop")) {
printf("Recieved start_split_stop command\n");
} else if (!strcmp(token, "start-split-stop")) {
start_split_stop();
} else if (!strcmp(buffer, "pause_resume")) {
printf("Recieved pause_resume command\n");
} else if (!strcmp(token, "pause-resume")) {
pause_resume();
} else if (!strcmp(buffer, "start-stop")) {
printf("Recieved start-stop command\n");
} else if (!strcmp(token, "start-stop")) {
start_stop();
} else if (!strcmp(buffer, "start-split")) {
printf("Recieved start-split command\n");
} else if (!strcmp(token, "start-split")) {
start_split();
} else if (!strcmp(buffer, "split-stop")) {
printf("Recieved split-stop command\n");
} else if (!strcmp(token, "split-stop")) {
split_stop();
} else if (!strcmp(buffer, "undo-redo")) {
printf("Recieved undo-redo command\n");
} else if (!strcmp(token, "undo-redo")) {
undo_redo();
} else if (!strcmp(token, "segment_name")) {
token = strtok(NULL, " ");
int x = atoi(token);
sendString(sock, segments[x].shortname);
} else if (!strcmp(token, "meta")) {
token = strtok(NULL, " ");
sendValue(sock, token);
} else {
printf("Recieved invalid command, ignoring...\n");
}

View File

@ -193,7 +193,7 @@ int main (int argc, char *argv[])
char ti[13];
//Request foreground color from config file
fp = popen("./result/bin/quest-log foreground", "r");
fp = popen("./result/bin/quest-log Foreground-Color", "r");
if (fgets(path, sizeof(path), fp)) {
if (strcmp(path, "DATA NOT PRESENT"))
processColorString(&f, path);
@ -202,7 +202,7 @@ int main (int argc, char *argv[])
pclose(fp);
//Request background color from config file
fp = popen("./result/bin/quest-log background", "r");
fp = popen("./result/bin/quest-log Background-Color", "r");
if (fgets(path, sizeof(path), fp)) {
if (strcmp(path, "DATA NOT PRESENT"))
processColorString(&b, path);
@ -217,7 +217,7 @@ int main (int argc, char *argv[])
}
while (1) {
int time = 0;
fp = popen("./result/bin/quest-log time", "r");
fp = popen("./result/bin/quest-log current_time", "r");
if (fp == NULL) {
printf("Failed to run command\n");
exit(1);