Skip to content

Commit 8ac8c88

Browse files
hozlucas28GuidolinarestefhuergoTiagoGiannotti
committed
feature: complete todos
Co-authored-by: Guidolinares <[email protected]> Co-authored-by: tefhuergo <[email protected]> Co-authored-by: Tiago Giannotti <[email protected]>
1 parent 6c3fae3 commit 8ac8c88

File tree

3 files changed

+74
-45
lines changed

3 files changed

+74
-45
lines changed

libs/utilities.c

+66-41
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,46 @@ void fillDashboard(TGame* pGame, char with) {
108108
}
109109
}
110110

111+
void generateNextGeneration(TGame* pGame) {
112+
int i;
113+
int j;
114+
115+
int aliveNeighbors;
116+
117+
for (i = 0; i < pGame->rows; i++) {
118+
for (j = 0; j < pGame->cols; j++) {
119+
aliveNeighbors = countAliveNeighbors(pGame, i, j, NEIGHBORHOOD_RADIUS);
120+
121+
if (pGame->dashboard[i][j] == DEAD_CELL) {
122+
if (aliveNeighbors == 3) {
123+
pGame->cellsDead--;
124+
pGame->cellsAlive++;
125+
pGame->dashboard[i][j] = ALIVE_CELL_NG;
126+
};
127+
128+
continue;
129+
}
130+
131+
if (aliveNeighbors < 2 || aliveNeighbors > 3) {
132+
pGame->cellsAlive--;
133+
pGame->cellsDead++;
134+
pGame->dashboard[i][j] = DEAD_CELL_NG;
135+
};
136+
}
137+
}
138+
139+
for (i = 0; i < pGame->rows; i++) {
140+
for (j = 0; j < pGame->cols; j++) {
141+
if (pGame->dashboard[i][j] == DEAD_CELL_NG) {
142+
pGame->dashboard[i][j] = DEAD_CELL;
143+
continue;
144+
}
145+
146+
if (pGame->dashboard[i][j] == ALIVE_CELL_NG) pGame->dashboard[i][j] = ALIVE_CELL;
147+
}
148+
}
149+
}
150+
111151
char* getUserInputStr(char* message, char* onInvalidMessage, int strLength,
112152
int (*validator)(char* userInput)) {
113153
char* userInput = malloc(strLength * sizeof(char));
@@ -146,15 +186,34 @@ void printDashboardByConsole(TGame* pGame) {
146186
int i;
147187
int j;
148188

189+
for (i = 0; i < pGame->cols + 2; i++) printf("-");
190+
printf("\n");
191+
149192
for (i = 0; i < pGame->rows; i++) {
193+
printf("|");
150194
for (j = 0; j < pGame->cols; j++) {
151195
printf("%c", pGame->dashboard[i][j]);
152196
}
153197

154-
printf("\n");
198+
printf("|\n");
155199
}
200+
201+
for (i = 0; i < pGame->cols + 2; i++) printf("-");
156202
}
157203

204+
void printGame(TGame* pGame) {
205+
int i;
206+
for (i = 0; i < pGame->cols + 2; i++) printf("-");
207+
208+
printf("\n| Cells alive: %*d |", pGame->cols - 17 + 2, pGame->cellsAlive);
209+
printf("\n| Cells dead: %*d |", pGame->cols - 16 + 2, pGame->cellsDead);
210+
printf("\n| Generation: %*d |", pGame->cols - 16 + 2, pGame->generation);
211+
printf("\n| Maximum generation: %*d |", pGame->cols - 25 + 3, pGame->maximumGeneration);
212+
printf("\n| Delay between generations: %*d |\n", pGame->cols - 32 + 3,
213+
pGame->delayBetweenGenerations);
214+
215+
printDashboardByConsole(pGame);
216+
}
158217
void setDashboardCenter(TGame* pGame) {
159218
int row = pGame->rows / 2;
160219
int col = pGame->cols / 2;
@@ -165,64 +224,30 @@ void setDashboardCenter(TGame* pGame) {
165224

166225
void sleep(int miliseconds) {
167226
clock_t startTime = clock();
168-
while (clock() < (startTime + miliseconds))
169-
;
227+
while (clock() < (startTime + miliseconds));
170228
}
171229

172230
void startGameByConsole(TGame* pGame, int maxGeneration, int delayBetweenGenerations) {
173-
int i;
174-
int j;
175-
176231
int generation = 0;
177-
int aliveNeighbors;
178232

179233
pGame->generation = 0;
234+
pGame->maximumGeneration = maxGeneration;
235+
pGame->delayBetweenGenerations = delayBetweenGenerations;
180236

181237
system("cls");
182-
printDashboardByConsole(pGame);
238+
printGame(pGame);
183239
if (generation == maxGeneration) return;
184240
sleep(delayBetweenGenerations);
185241

186242
while (generation < maxGeneration) {
187-
for (i = 0; i < pGame->rows; i++) {
188-
for (j = 0; j < pGame->cols; j++) {
189-
aliveNeighbors = countAliveNeighbors(pGame, i, j, NEIGHBORHOOD_RADIUS);
190-
191-
if (pGame->dashboard[i][j] == DEAD_CELL) {
192-
if (aliveNeighbors == 3) {
193-
pGame->cellsDead--;
194-
pGame->cellsAlive++;
195-
pGame->dashboard[i][j] = ALIVE_CELL_NG;
196-
};
197-
198-
continue;
199-
}
200-
201-
if (aliveNeighbors < 2 || aliveNeighbors > 3) {
202-
pGame->cellsAlive--;
203-
pGame->cellsDead++;
204-
pGame->dashboard[i][j] = DEAD_CELL_NG;
205-
};
206-
}
207-
}
208-
209-
for (i = 0; i < pGame->rows; i++) {
210-
for (j = 0; j < pGame->cols; j++) {
211-
if (pGame->dashboard[i][j] == DEAD_CELL_NG) {
212-
pGame->dashboard[i][j] = DEAD_CELL;
213-
continue;
214-
}
215-
216-
if (pGame->dashboard[i][j] == ALIVE_CELL_NG) pGame->dashboard[i][j] = ALIVE_CELL;
217-
}
218-
}
243+
generateNextGeneration(pGame);
219244

220245
generation++;
221246

222247
pGame->generation = generation;
223248

224249
system("cls");
225-
printDashboardByConsole(pGame);
250+
printGame(pGame);
226251
if (generation != maxGeneration) sleep(delayBetweenGenerations);
227252
}
228253
}

libs/utilities.h

+8
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ typedef struct {
2424
int cellsAlive; /** Number of alive cells. */
2525
int cellsDead; /** Number of dead cells. */
2626
int generation; /** Represents the generation number. */
27+
int maximumGeneration; /** TODO: Documentation */
28+
int delayBetweenGenerations; /** TODO: Documentation */
2729
} TGame;
2830

2931
/**
@@ -77,6 +79,9 @@ void drawPatternInDashboard(TGame* pGame, TPattern* pPattern);
7779
*/
7880
void fillDashboard(TGame* pGame, char with);
7981

82+
// TODO: Documentation
83+
void generateNextGeneration(TGame* pGame);
84+
8085
/**
8186
* @brief Gets user input as a string.
8287
*
@@ -118,6 +123,9 @@ int isStrIn(char* str, char* arr[], int arrLength);
118123
*/
119124
void printDashboardByConsole(TGame* pGame);
120125

126+
// TODO: Documentation
127+
void printGame(TGame* pGame);
128+
121129
/**
122130
* @brief Sets the center of a Conway's Game of Life structure.
123131
*

todos.md

-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Falta
22

3-
- Añadir un campo de delay entre generaciones (`delayBetweenGenerations`) a la estructura `TGame`.
4-
- Añadir un campo de máximas generaciones (`maximumGeneration`) a la estructura `TGame`.
53
- Colocar las macros donde corresponden.
6-
- Crear una función dedicada a imprimir una estructura `TGame` por consola.
74
- Crear una función para mostrar el juego en _Simple DirectMedia Layer (SDL)_.
85
- Mover las funciones y métodos dedicados a actuar sobre una estructura `TGame` a una carpeta propia para asi separar responsabilidades.
9-
- Separar en funciones la lógica presente en la función `startGameByConsole` para facilitar el uso de otras plataformas de salida (según las preferencias del usuario).

0 commit comments

Comments
 (0)