2
2
3
3
#include <limits.h>
4
4
#include <stdio.h>
5
+ #include <stdlib.h>
5
6
6
7
#include "./sdl/main.h"
7
8
8
9
int main () {
9
10
TGame game ;
10
11
11
- char dashboard [DASHBOARD_ROWS ][DASHBOARD_COLS ];
12
12
int rows = DASHBOARD_ROWS ;
13
13
int cols = DASHBOARD_COLS ;
14
+ char * * dashboard = new2DArray (rows , cols );
14
15
15
16
char * requestedPattern ;
16
17
char * maxGeneration ;
@@ -42,6 +43,8 @@ int main() {
42
43
43
44
drawPattern (& game , requestedPattern );
44
45
46
+ free (requestedPattern );
47
+
45
48
/* ----------------------- Request Maximum Generation ----------------------- */
46
49
47
50
maxGeneration = getUserInputStr (
@@ -51,12 +54,15 @@ int main() {
51
54
sscanf (maxGeneration , "%d" , & maxGenerationInt );
52
55
53
56
if (maxGenerationInt < 0 ) {
57
+ free (maxGeneration );
54
58
maxGeneration = "infinity" ;
55
59
maxGenerationInt = INT_MAX ;
56
60
};
57
61
58
62
printf ("> Maximum generation received: %s.\n\n" , maxGeneration );
59
63
64
+ if (maxGenerationInt != INT_MAX ) free (maxGeneration );
65
+
60
66
/* ------------------------------ Request Delay ----------------------------- */
61
67
62
68
sprintf (delayBetweenGenerationsMsg ,
@@ -71,6 +77,8 @@ int main() {
71
77
72
78
printf ("> Delay received: %s milliseconds.\n\n" , delayBetweenGenerations );
73
79
80
+ free (delayBetweenGenerations );
81
+
74
82
/* ---------------------------- Request Platform ---------------------------- */
75
83
76
84
platformSelected = getUserInputStr (
@@ -81,11 +89,15 @@ int main() {
81
89
printf ("> Platform selected: '%s'.\n" , platformSelected );
82
90
83
91
if (strcmpi (platformSelected , "console" ) == 0 ) {
92
+ free (platformSelected );
84
93
startGameByConsole (& game , maxGenerationInt , delayBetweenGenerationsInt );
94
+ destroy2DArray (game .dashboard , game .rows , game .cols );
85
95
return 0 ;
86
96
}
87
97
98
+ free (platformSelected );
88
99
startGameBySDL (& game , maxGenerationInt , delayBetweenGenerationsInt );
100
+ destroy2DArray (game .dashboard , game .rows , game .cols );
89
101
90
102
return 0 ;
91
103
}
0 commit comments