Blame view

ui.c 3.21 KB
ea1218f1   henyxia   UI finished
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
  #include <stdio.h>
  #include <sys/types.h>
  #include <unistd.h>
  #include <string.h>
  #include <time.h>
  #include "ui.h"
  
  #define	TIME_LENGTH			24
  #define	HEADER_TEXT_LENGTH	24
  #define	LOG_LINES			25
  #define	LOG_LENGTH			69
  
  char	tmpretheader[HEADER_TEXT_LENGTH+1];
  char	tmpretlog[HEADER_TEXT_LENGTH+1];
  char	uilog[LOG_LINES][LOG_LENGTH];
  char	started[TIME_LENGTH];
  char	uid[HEADER_TEXT_LENGTH];
  char	uidDate[HEADER_TEXT_LENGTH];
  
  void initUILog()
  {
  	uid[0]='\0';
  	uidDate[0]='\0';
  	for(int i=0; i<LOG_LINES; i++)
  		uilog[i][0] = '\0';
  }
  
  char* fillHeaderWithSpaces(char* text)
  {
  	strcpy(tmpretheader, text);
  	while(strlen(tmpretheader) < HEADER_TEXT_LENGTH)
  		strcat(tmpretheader, " ");
  
  	return tmpretheader;
  }
  
  void addToLog(char* newStr)
  {
  	for(int i=0; i<(LOG_LINES-1); i++)
  		strcpy(uilog[i+1], uilog[i]);
  	strcpy(uilog[0], newStr);
  }
  
  char* fillLogWithSpaces(char* text)
  {
  	strcpy(tmpretlog, text);
  	if(strlen(text) > 0)
  		while((strlen(tmpretlog)-12) < LOG_LENGTH)
  			strcat(tmpretlog, " ");
  	else
  		while(strlen(tmpretlog) < LOG_LENGTH)
  			strcat(tmpretlog, " ");
  
  	return tmpretlog;
  }
  
  
  void setStartTime(char* sT)
  {
  	strcpy(started, sT);
  }
  
  void displayUI()
  {
  	char	buffer[HEADER_TEXT_LENGTH];
  	//header
  	printf("\u250F\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n");
  	printf("\u2503 %s \u2503      T H E      \u2503", fillHeaderWithSpaces("Started since"));
     	printf(" %s \u2503\n", fillHeaderWithSpaces("No Tag Detected"));
  	printf("\u2503 %s \u2503    T W E E K    \u2503 ", fillHeaderWithSpaces(started));
  	sprintf(buffer, "%s", strlen(uidDate) > 0 ? uidDate : "Waiting for a tag");
  	printf("%s \u2503\n", fillHeaderWithSpaces(buffer));
  	sprintf(buffer, "PID %d", getpid());
  	printf("\u2503 %s \u2503  P R O J E C T  \u2503 ", fillHeaderWithSpaces(buffer));
  	sprintf(buffer, "UID : %s", strlen(uid) > 0 ? uid : "Nope");
  	printf("%s \u2503\n", fillHeaderWithSpaces(buffer));
  	printf("\u2523\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u253B\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u253B\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u252B\n");
  	//body
  	for(int i=0; i<LOG_LINES; i++)
  		printf("\u2503 %s \u2503\n", fillLogWithSpaces(uilog[i]));
  	printf("\u2517\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u251B\n");
  }