Skip to content

Commit 8f9830c

Browse files
committed
feature: request maximum generation
1 parent 6e9ce6e commit 8f9830c

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

src/main.c

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#include "../libs/main.h"
22

3-
#include "stdio.h"
3+
#include <limits.h>
4+
#include <stdio.h>
45

56
int main() {
67
TGame game;
@@ -10,6 +11,11 @@ int main() {
1011
int cols = DASHBOARD_COLS;
1112

1213
char* requestedPattern;
14+
char* maxGenerations;
15+
char* delayBetweenGenerations;
16+
17+
int maxGenerationsInt;
18+
int delayBetweenGenerationsInt;
1319

1420
game.dashboard = dashboard;
1521
game.rows = rows;
@@ -23,9 +29,23 @@ int main() {
2329
requestedPattern = getUserInputStr(
2430
"> Which pattern do you want ('Glider','Toad', 'Press', or 'Glider cannon')? ",
2531
"> Invalid pattern! Try again...", 50, &validatePattern);
32+
2633
printf("> Pattern received: '%s'", requestedPattern);
2734

2835
drawPattern(&game, requestedPattern);
2936

37+
maxGenerations = getUserInputStr(
38+
"\n> Which is maximum generation do you want? (a negative number is equal to infinity): ",
39+
"> Invalid number! Try again...", 10, &validateGeneration);
40+
41+
sscanf(maxGenerations, "%d", &maxGenerationsInt);
42+
43+
if (maxGenerationsInt < 0) {
44+
maxGenerations = "infinity";
45+
maxGenerationsInt = INT_MAX;
46+
};
47+
48+
printf("\n> Maximum generation received: '%s'", maxGenerations);
49+
3050
return 0;
3151
}

0 commit comments

Comments
 (0)