Skip to content

Commit d17284c

Browse files
hozlucas28tefhuergoFerny1011GuidolinaresTiagoGiannotti
committed
feature: add heap memory
Co-authored-by: EstefaniaHuergo <[email protected]> Co-authored-by: Ferney Santiago Quiroga <[email protected]> Co-authored-by: Guidolinares <[email protected]> Co-authored-by: Tiago Giannotti <[email protected]>
1 parent 3305584 commit d17284c

File tree

4 files changed

+50
-11
lines changed

4 files changed

+50
-11
lines changed

libs/game/structs.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
* columns in the dashboard, and the values to represent alive and dead cells.
1515
*/
1616
typedef struct {
17-
char (*dashboard)[DASHBOARD_COLS]; /** Board (2D array) in which the cells moves. */
18-
int rows; /** Number of rows in `dashboard`. */
19-
int cols; /** Number of columns in `dashboard`. */
20-
int center[2]; /** Array (row, and column) representing the center of the `dashboard`. */
21-
int cellsAlive; /** Number of alive cells. */
22-
int cellsDead; /** Number of dead cells. */
23-
int generation; /** Represents the generation number. */
17+
char **dashboard; /** Board (2D array) in which the cells moves. */
18+
int rows; /** Number of rows in `dashboard`. */
19+
int cols; /** Number of columns in `dashboard`. */
20+
int center[2]; /** Array (row, and column) representing the center of the `dashboard`. */
21+
int cellsAlive; /** Number of alive cells. */
22+
int cellsDead; /** Number of dead cells. */
23+
int generation; /** Represents the generation number. */
2424
int maximumGeneration; /** Maximum number of generations to be processed. */
2525
int delayBetweenGenerations; /** Delay time in milliseconds for processed the next generation.*/
2626
} TGame;

libs/utilities.c

+32-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@
99

1010
#include "./patterns/main.h"
1111

12+
void destroyMatrix(char** matrix, int rows, int cols) {
13+
int i;
14+
15+
for (i = 0; i < rows; i++) {
16+
free(*(matrix + i));
17+
}
18+
19+
free(matrix);
20+
}
21+
1222
char* getUserInputStr(char* message, char* onInvalidMessage, int strLength,
1323
int (*validator)(char* userInput)) {
1424
char* userInput = malloc(strLength * sizeof(char));
@@ -43,10 +53,30 @@ int isStrIn(char* str, char* arr[], int size) {
4353
return 0;
4454
}
4555

56+
char** newMatrix(int rows, int cols) {
57+
char** matrixRows;
58+
int i;
59+
60+
matrixRows = malloc(rows * sizeof(char*));
61+
if (matrixRows == NULL) {
62+
printf("Memory allocation failed!\n");
63+
exit(EXIT_FAILURE);
64+
}
65+
66+
for (i = 0; i < rows; i++) {
67+
*(matrixRows + i) = malloc(cols * sizeof(char));
68+
if (*(matrixRows + i) == NULL) {
69+
printf("Memory allocation failed!\n");
70+
exit(EXIT_FAILURE);
71+
}
72+
}
73+
74+
return matrixRows;
75+
}
76+
4677
void sleep(int miliseconds) {
4778
clock_t startTime = clock();
48-
while (clock() < (startTime + miliseconds))
49-
;
79+
while (clock() < (startTime + miliseconds));
5080
}
5181

5282
int strcmpi(const char* str01, const char* str02) {

libs/utilities.h

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#include "./macros.h"
88
#include "./patterns/main.h"
99

10+
// TODO: Documentation
11+
void destroyMatrix(char** matrix, int rows, int cols);
12+
1013
/**
1114
* @brief Gets user input as a string.
1215
*
@@ -39,6 +42,9 @@ char* getUserInputStr(char* message, char* onInvalidMessage, int strLength,
3942
*/
4043
int isStrIn(char* str, char* arr[], int arrLength);
4144

45+
// TODO: Documentation
46+
char** newMatrix(int rows, int cols);
47+
4248
/**
4349
* @brief Pauses the execution of the program.
4450
*

src/main.c

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
int main() {
1010
TGame game;
1111

12-
char dashboard[DASHBOARD_ROWS][DASHBOARD_COLS];
1312
int rows = DASHBOARD_ROWS;
1413
int cols = DASHBOARD_COLS;
14+
char** dashboard = newMatrix(rows, cols);
1515

1616
char* requestedPattern;
1717
char* maxGeneration;
@@ -54,13 +54,14 @@ int main() {
5454
sscanf(maxGeneration, "%d", &maxGenerationInt);
5555

5656
if (maxGenerationInt < 0) {
57+
free(maxGeneration);
5758
maxGeneration = "infinity";
5859
maxGenerationInt = INT_MAX;
5960
};
6061

6162
printf("> Maximum generation received: %s.\n\n", maxGeneration);
6263

63-
free(maxGeneration);
64+
if (maxGenerationInt != INT_MAX) free(maxGeneration);
6465

6566
/* ------------------------------ Request Delay ----------------------------- */
6667

@@ -90,11 +91,13 @@ int main() {
9091
if (strcmpi(platformSelected, "console") == 0) {
9192
free(platformSelected);
9293
startGameByConsole(&game, maxGenerationInt, delayBetweenGenerationsInt);
94+
destroyMatrix(game.dashboard, game.rows, game.cols);
9395
return 0;
9496
}
9597

9698
free(platformSelected);
9799
startGameBySDL(&game, maxGenerationInt, delayBetweenGenerationsInt);
100+
destroyMatrix(game.dashboard, game.rows, game.cols);
98101

99102
return 0;
100103
}

0 commit comments

Comments
 (0)