@@ -13,6 +13,7 @@ int main() {
13
13
char * requestedPattern ;
14
14
char * maxGenerations ;
15
15
char * delayBetweenGenerations ;
16
+ char delayBetweenGenerationsMsg [120 ];
16
17
17
18
int maxGenerationsInt ;
18
19
int delayBetweenGenerationsInt ;
@@ -30,22 +31,34 @@ int main() {
30
31
"> Which pattern do you want ('Glider','Toad', 'Press', or 'Glider cannon')? " ,
31
32
"> Invalid pattern! Try again..." , 50 , & validatePattern );
32
33
33
- printf ("> Pattern received: '%s'" , requestedPattern );
34
+ printf ("> Pattern received: '%s'.\n\n " , requestedPattern );
34
35
35
36
drawPattern (& game , requestedPattern );
36
37
37
38
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 );
39
+ "> Which is maximum generation do you want? (a negative number is equal to infinity): " ,
40
+ "> Invalid generation ! Try again..." , 10 , & validateGeneration );
40
41
41
42
sscanf (maxGenerations , "%d" , & maxGenerationsInt );
42
43
43
44
if (maxGenerationsInt < 0 ) {
44
- maxGenerations = "infinity" ;
45
+ maxGenerations = "' infinity' " ;
45
46
maxGenerationsInt = INT_MAX ;
46
47
};
47
48
48
- printf ("\n> Maximum generation received: '%s'" , maxGenerations );
49
+ printf ("> Maximum generation received: %s.\n\n" , maxGenerations );
50
+
51
+ sprintf (delayBetweenGenerationsMsg ,
52
+ "> What should be the miliseconds delay between generations? (must be between %d "
53
+ "and %d, both included): " ,
54
+ MINIMUM_DELAY , MAXIMUM_DELAY );
55
+
56
+ delayBetweenGenerations = getUserInputStr (delayBetweenGenerationsMsg ,
57
+ "> Invalid delay! Try again..." , 5 , & validateDelay );
58
+
59
+ sscanf (delayBetweenGenerations , "%d" , & delayBetweenGenerationsInt );
60
+
61
+ printf ("> Delay received: %s miliseconds.\n" , delayBetweenGenerations );
49
62
50
63
return 0 ;
51
64
}
0 commit comments