Skip to content

Commit 45b721a

Browse files
committed
todo: add new todos
1 parent 1ed22ab commit 45b721a

File tree

3 files changed

+31
-23
lines changed

3 files changed

+31
-23
lines changed

libs/utilities.c

+10
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@
55
#include <stdlib.h>
66
#include <string.h>
77

8+
// TODO
9+
void drawPattern(TGame* pGame, char* pattern) {
10+
printf("%s pattern was drawn!", pattern);
11+
}
12+
13+
// TODO
14+
void drawPatternInDashboard(TGame* pGame, TPattern* pattern) {
15+
printf("%s pattern was injected!", pattern);
16+
}
17+
818
void fillDashboard(TGame* pGame, int with) {
919
int i;
1020
int j;

libs/utilities.h

+14
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,20 @@ typedef struct {
2020
int cellsDead; /** Number of dead cells. */
2121
} TGame;
2222

23+
// TODO
24+
typedef struct {
25+
int (*dashboard)[COLS];
26+
int rows;
27+
int cols;
28+
int center[2];
29+
} TPattern;
30+
31+
// TODO
32+
void drawPattern(TGame* pGame, char* pattern);
33+
34+
// TODO
35+
void drawPatternInDashboard(TGame* pGame, TPattern* pattern);
36+
2337
/**
2438
* @brief Fills the dashboard of a Conway's Game of Life structure with a
2539
* specified value.

src/main.c

+7-23
Original file line numberDiff line numberDiff line change
@@ -22,29 +22,13 @@ int main() {
2222

2323
fillDashboard(&game, 0);
2424

25-
do {
26-
requestedPattern = getUserInputStr(
27-
"> Which pattern do you want "
28-
"('Glider','Toad', 'Press', or 'Glider cannon')? ",
29-
"> Invalid pattern! Try again...", 50, &validatePattern);
30-
printf("> Pattern received: '%s'", requestedPattern);
31-
32-
invalidPattern = 0;
33-
34-
if (strcmpi(requestedPattern, "GLIDER") == 0)
35-
gliderPattern(dashboard);
36-
else if (strcmpi(requestedPattern, "TOAD") == 0)
37-
toadPattern(dashboard);
38-
else if (strcmpi(requestedPattern, "PRESS") == 0)
39-
pressPattern(dashboard);
40-
else if (strcmpi(requestedPattern, "GLIDER CANNON") == 0)
41-
gliderCannonPattern(dashboard);
42-
else {
43-
puts("INVALID PATTERN, try again... :");
44-
invalidPattern = 1;
45-
}
46-
47-
} while (invalidPattern);
25+
requestedPattern = getUserInputStr(
26+
"> Which pattern do you want "
27+
"('Glider','Toad', 'Press', or 'Glider cannon')? ",
28+
"> Invalid pattern! Try again...", 50, &validatePattern);
29+
printf("> Pattern received: '%s'", requestedPattern);
30+
31+
drawPattern(&game, requestedPattern);
4832

4933
return 0;
5034
}

0 commit comments

Comments
 (0)