Skip to content

Commit f8bd1e6

Browse files
authored
Merge develop branch into Master branch - Release v1.2.0 (#6)
2 parents b9b7d36 + 591f1da commit f8bd1e6

File tree

8 files changed

+70
-15
lines changed

8 files changed

+70
-15
lines changed

libs/game/methods.c

+1-4
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,6 @@ int countAliveNeighbors(TGame* pGame, int cellRow, int cellCol, int radius) {
4141
void drawPattern(TGame* pGame, char* pattern) {
4242
TPattern SPattern;
4343

44-
char arr[PATTERN_ROWS][PATTERN_COLS];
45-
46-
SPattern.arr = arr;
47-
4844
fillDashboard(pGame, DEAD_CELL);
4945

5046
if (strcmpi(pattern, "glider") == 0) {
@@ -67,6 +63,7 @@ void drawPattern(TGame* pGame, char* pattern) {
6763
pGame->generation = 0;
6864

6965
drawPatternInDashboard(pGame, &SPattern);
66+
destroy2DArray(SPattern.arr, SPattern.rows, SPattern.cols);
7067
}
7168

7269
void drawPatternInDashboard(TGame* pGame, TPattern* pPattern) {

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/patterns/constructors.c

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ void newGliderPattern(TPattern* pattern) {
99
pattern->rows = 3;
1010
pattern->cols = 3;
1111

12+
pattern->arr = new2DArray(pattern->rows, pattern->cols);
13+
1214
setPatternCenter(pattern);
1315

1416
fillPattern(pattern, DEAD_CELL);
@@ -23,6 +25,7 @@ void newGliderPattern(TPattern* pattern) {
2325
void newGliderCannonPattern(TPattern* pattern) {
2426
pattern->rows = 9;
2527
pattern->cols = 36;
28+
pattern->arr = new2DArray(pattern->rows, pattern->cols);
2629

2730
setPatternCenter(pattern);
2831

@@ -71,6 +74,7 @@ void newGliderCannonPattern(TPattern* pattern) {
7174
void newPressPattern(TPattern* pattern) {
7275
pattern->rows = 13;
7376
pattern->cols = 13;
77+
pattern->arr = new2DArray(pattern->rows, pattern->cols);
7478

7579
setPatternCenter(pattern);
7680

@@ -138,6 +142,7 @@ void newPressPattern(TPattern* pattern) {
138142
void newToadPattern(TPattern* pattern) {
139143
pattern->rows = 2;
140144
pattern->cols = 4;
145+
pattern->arr = new2DArray(pattern->rows, pattern->cols);
141146

142147
setPatternCenter(pattern);
143148

libs/patterns/structs.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
* the pattern, as well as other properties such as the number of rows and columns of the pattern.
1313
*/
1414
typedef struct {
15-
char (*arr)[PATTERN_COLS]; /** 2D array representing the pattern. */
16-
int rows; /** Number of rows of the pattern. */
17-
int cols; /** Number of columns of the pattern. */
15+
char** arr; /** 2D array representing the pattern. */
16+
int rows; /** Number of rows of the pattern. */
17+
int cols; /** Number of columns of the pattern. */
1818
int center[2]; /** Array (row, and column) representing the center of the pattern. */
1919
} TPattern;
2020

libs/utilities.c

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

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

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

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

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 destroy2DArray(char** arr, 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** new2DArray(int rows, int cols);
47+
4248
/**
4349
* @brief Pauses the execution of the program.
4450
*

src/main.c

+13-1
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22

33
#include <limits.h>
44
#include <stdio.h>
5+
#include <stdlib.h>
56

67
#include "./sdl/main.h"
78

89
int main() {
910
TGame game;
1011

11-
char dashboard[DASHBOARD_ROWS][DASHBOARD_COLS];
1212
int rows = DASHBOARD_ROWS;
1313
int cols = DASHBOARD_COLS;
14+
char** dashboard = new2DArray(rows, cols);
1415

1516
char* requestedPattern;
1617
char* maxGeneration;
@@ -42,6 +43,8 @@ int main() {
4243

4344
drawPattern(&game, requestedPattern);
4445

46+
free(requestedPattern);
47+
4548
/* ----------------------- Request Maximum Generation ----------------------- */
4649

4750
maxGeneration = getUserInputStr(
@@ -51,12 +54,15 @@ int main() {
5154
sscanf(maxGeneration, "%d", &maxGenerationInt);
5255

5356
if (maxGenerationInt < 0) {
57+
free(maxGeneration);
5458
maxGeneration = "infinity";
5559
maxGenerationInt = INT_MAX;
5660
};
5761

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

64+
if (maxGenerationInt != INT_MAX) free(maxGeneration);
65+
6066
/* ------------------------------ Request Delay ----------------------------- */
6167

6268
sprintf(delayBetweenGenerationsMsg,
@@ -71,6 +77,8 @@ int main() {
7177

7278
printf("> Delay received: %s milliseconds.\n\n", delayBetweenGenerations);
7379

80+
free(delayBetweenGenerations);
81+
7482
/* ---------------------------- Request Platform ---------------------------- */
7583

7684
platformSelected = getUserInputStr(
@@ -81,11 +89,15 @@ int main() {
8189
printf("> Platform selected: '%s'.\n", platformSelected);
8290

8391
if (strcmpi(platformSelected, "console") == 0) {
92+
free(platformSelected);
8493
startGameByConsole(&game, maxGenerationInt, delayBetweenGenerationsInt);
94+
destroy2DArray(game.dashboard, game.rows, game.cols);
8595
return 0;
8696
}
8797

98+
free(platformSelected);
8899
startGameBySDL(&game, maxGenerationInt, delayBetweenGenerationsInt);
100+
destroy2DArray(game.dashboard, game.rows, game.cols);
89101

90102
return 0;
91103
}

todo.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Falta
2+
3+
- Documentar necesidad de hacer free() luego de utilizar el retorno de la función `getUserInputStr`.
4+
- Documentar nuevas funciones (marcadas como `TODO: Documentation`).

0 commit comments

Comments
 (0)