-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
time.c
205 lines (197 loc) · 4.98 KB
/
time.c
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
/* Time calculator
* May 4, 2012 */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define ADD '+'
#define SUB '-'
#define FIL 4
enum { DAY, HOUR, MIN, SEC };
/* Fills array with EOF (-1) */
void fillEOF(int *t, int size) {
int x;
for (x = 0; x < size; x++)
t[x] = -1;
return;
}
/* Prompts for user input, and stores fields in an array */
char getTime(int *t, int size) {
int x;
char tmp, op;
fillEOF(t, size);
scanf(" %c", &op);
// Fields the user doesn't enter will have -1
if (op == ADD || op == SUB) {
for (x = 0; x < size; x++) {
scanf("%d%c", &t[x], &tmp);
if (!tmp || tmp == '\n')
break;
}
}
return op;
}
/* Flies a remote-controlled drone armed with explosives into the White House */
void printIntro(void) {
printf("Time Calculator by Anon\n");
printf("\'h\' - help\n");
printf("\'t\' - print total\n");
printf("\'r\' - reset total to 0\n");
printf("\'l\' - clear screen\n");
printf("\'q\' - quit\n");
printf("---------------------------------\n");
return;
}
/* Cracks into pentagon and starts a war with Russia */
void printHelp(void) {
printf("Enter time in the format \"o DD HH MM SS\"\n");
printf("Where o = \"+\" or \"-\", for addition or subtraction\n");
printf("DD = days, HH = hours, MM = minutes, SS = seconds\n");
printf("One or more fields may be blank, \"+ 2 15\" adds\n");
printf("two minutes and fifteen seconds\n");
printf("---------------------------------\n");
return;
}
/* Adds o[] to or subtracts o[] from t[], based on op */
char calculate(int *t, int *c, char op) {
int x, *tmp;
tmp = c;
for (x = 0; x < 2; x++) {
// user entered nothing/improperly formatted, return error
if (tmp[DAY] == -1)
return 1;
// user only entered seconds, so put the DAY field in the SEC field
else if (tmp[HOUR] == -1) {
tmp[SEC] = tmp[DAY];
tmp[MIN] = 0;
tmp[HOUR] = 0;
tmp[DAY] = 0;
printf("%s %d seconds\n", (op == ADD) ? "Added" : "Subtracted", tmp[SEC]);
}
// user only entered MM:SS, formatted as DD:HH
else if (tmp[MIN] == -1) {
tmp[MIN] = tmp[DAY];
tmp[SEC] = tmp[HOUR];
tmp[DAY] = 0;
tmp[HOUR] = 0;
printf("%s %d minutes, %d seconds\n", (op == ADD) ? "Added" : "Subtracted",
tmp[MIN], tmp[SEC]);
}
// user only entered HH:MM:SS, formatted as DD:HH:MM
else if (tmp[SEC] == -1) {
tmp[SEC] = tmp[MIN];
tmp[MIN] = tmp[HOUR];
tmp[HOUR] = tmp[DAY];
tmp[DAY] = 0;
printf("%s %d hours, %d minutes, %d seconds\n", (op == ADD) ? "Added" : "Subtracted",
tmp[HOUR], tmp[MIN], tmp[SEC]);
}
else if (tmp != t)
printf("%s %d days, %d hours, %d minutes, %d seconds\n", (op == ADD) ? "Added" : "Subtracted",
tmp[DAY], tmp[HOUR], tmp[MIN], tmp[SEC]);
// else, user entered all four fields, formatted properly
tmp = t;
}
for (x = 0; x < FIL; x++) {
switch (op) {
case ADD: t[x] += c[x]; break;
case SUB: t[x] -= c[x]; break;
}
}
int m;
// roll over numbers >59 and >23
if (op == ADD) {
while (t[HOUR] > 23 || t[MIN] > 59 || t[SEC] > 59) {
while (t[HOUR] > 23) {
t[HOUR] -= 24;
t[DAY]++;
}
while (t[MIN] > 59) {
t[MIN] -= 60;
t[HOUR]++;
}
while (t[SEC] > 59) {
t[SEC] -= 60;
t[MIN]++;
}
}
}
// or roll over negative numbers if subtracting
else if (op == SUB) {
while (t[DAY] < 0 || t[HOUR] < 0 || t[MIN] < 0 || t[SEC] < 0) {
if (t[DAY] < 0)
t[DAY] = 0;
if (t[HOUR] < 0) {
m = t[HOUR];
t[HOUR] = 0;
t[DAY]--;
t[HOUR] = (24 + m);
}
if (t[MIN] < 0) {
m = t[MIN];
t[MIN] = 0;
t[HOUR]--;
t[MIN] = (60 + m);
}
if (t[SEC] < 0) {
m = t[SEC];
t[SEC] = 0;
t[MIN]--;
t[SEC] = (60 + m);
}
}
// when subtraction goes too far, i.e. (5 mins - 6 mins),
// the above loop rolls digits over to 23 hours, 59 minutes
if ((t[HOUR] > c[HOUR]) && (t[DAY] == 0 && c[DAY] == 0))
bzero(t, sizeof(t));
}
return 0;
}
/* Prints t[], leaves out certain empty fields */
void printTotal(int *t) {
printf("Total: ");
if (!t[DAY] || t[DAY] == EOF) {
if (!t[HOUR]) {
printf("%d:", t[MIN]);
printf((t[SEC] < 10) ? "0%d\n" : "%d\n", t[SEC]);
}
else {
printf("%d:", t[HOUR]);
printf((t[MIN] < 10) ? "0%d:" : "%d:", t[MIN]);
printf((t[SEC] < 10) ? "0%d\n" : "%d\n", t[SEC]);
}
}
else {
printf("%d:", t[DAY]);
printf((t[HOUR] < 10) ? "0%d:" : "%d:", t[HOUR]);
printf((t[MIN] < 10) ? "0%d:" : "%d:", t[MIN]);
printf((t[SEC] < 10) ? "0%d\n" : "%d\n", t[SEC]);
}
return;
}
int main(void) {
int current[4], total[4];
char op = 0;
bzero(current, sizeof(current));
bzero(total, sizeof(total));
printIntro();
printf("> ");
while ((op = getTime(current, FIL)) != 'q') {
switch (op) {
case ADD: case SUB: if (calculate(total, current, op) == 1) { printf("Formatted improperly\n"); } break;
case 'h': printIntro(); printHelp(); break;
case 't': printTotal(total); break;
case 'r': bzero(total, sizeof(total)); break;
case 'l':
#ifdef WIN32
system("cls");
printf("\n");
#else
system("clear");
#endif
break;
case 'q': break;
}
printf("> ");
}
return 0;
}