1
1
#include "../libs/main.h"
2
2
3
- #include "stdio.h"
3
+ #include <limits.h>
4
+ #include <stdio.h>
4
5
5
6
int main () {
6
7
TGame game ;
@@ -10,6 +11,11 @@ int main() {
10
11
int cols = DASHBOARD_COLS ;
11
12
12
13
char * requestedPattern ;
14
+ char * maxGenerations ;
15
+ char * delayBetweenGenerations ;
16
+
17
+ int maxGenerationsInt ;
18
+ int delayBetweenGenerationsInt ;
13
19
14
20
game .dashboard = dashboard ;
15
21
game .rows = rows ;
@@ -23,9 +29,23 @@ int main() {
23
29
requestedPattern = getUserInputStr (
24
30
"> Which pattern do you want ('Glider','Toad', 'Press', or 'Glider cannon')? " ,
25
31
"> Invalid pattern! Try again..." , 50 , & validatePattern );
32
+
26
33
printf ("> Pattern received: '%s'" , requestedPattern );
27
34
28
35
drawPattern (& game , requestedPattern );
29
36
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
+
30
50
return 0 ;
31
51
}
0 commit comments