@@ -27,6 +27,8 @@ int main() {
27
27
28
28
fillDashboard (& game , DEAD_CELL );
29
29
30
+ /* ----------------------------- Request Pattern ---------------------------- */
31
+
30
32
requestedPattern = getUserInputStr (
31
33
"> Which pattern do you want ('Glider','Toad', 'Press', or 'Glider cannon')? " ,
32
34
"> Invalid pattern! Try again..." , 50 , & validatePattern );
@@ -35,6 +37,8 @@ int main() {
35
37
36
38
drawPattern (& game , requestedPattern );
37
39
40
+ /* ----------------------- Request Maximum Generation ----------------------- */
41
+
38
42
maxGenerations = getUserInputStr (
39
43
"> Which is maximum generation do you want? (a negative number is equal to infinity): " ,
40
44
"> Invalid generation! Try again..." , 10 , & validateGeneration );
@@ -48,6 +52,8 @@ int main() {
48
52
49
53
printf ("> Maximum generation received: %s.\n\n" , maxGenerations );
50
54
55
+ /* ------------------------------ Request Delay ----------------------------- */
56
+
51
57
sprintf (delayBetweenGenerationsMsg ,
52
58
"> What should be the miliseconds delay between generations? (must be between %d "
53
59
"and %d, both included): " ,
0 commit comments