Skip to content

Commit f20fc5b

Browse files
committed
fix: rename functions and params
1 parent 825e23d commit f20fc5b

File tree

5 files changed

+21
-22
lines changed

5 files changed

+21
-22
lines changed

libs/game/methods.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void drawPattern(TGame* pGame, char* pattern) {
6363
pGame->generation = 0;
6464

6565
drawPatternInDashboard(pGame, &SPattern);
66-
destroyMatrix(SPattern.arr, SPattern.rows, SPattern.cols);
66+
destroy2DArray(SPattern.arr, SPattern.rows, SPattern.cols);
6767
}
6868

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

libs/patterns/constructors.c

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

12-
pattern->arr = newMatrix(pattern->rows, pattern->cols);
12+
pattern->arr = new2DArray(pattern->rows, pattern->cols);
1313

1414
setPatternCenter(pattern);
1515

@@ -25,7 +25,7 @@ void newGliderPattern(TPattern* pattern) {
2525
void newGliderCannonPattern(TPattern* pattern) {
2626
pattern->rows = 9;
2727
pattern->cols = 36;
28-
pattern->arr = newMatrix(pattern->rows, pattern->cols);
28+
pattern->arr = new2DArray(pattern->rows, pattern->cols);
2929

3030
setPatternCenter(pattern);
3131

@@ -74,7 +74,7 @@ void newGliderCannonPattern(TPattern* pattern) {
7474
void newPressPattern(TPattern* pattern) {
7575
pattern->rows = 13;
7676
pattern->cols = 13;
77-
pattern->arr = newMatrix(pattern->rows, pattern->cols);
77+
pattern->arr = new2DArray(pattern->rows, pattern->cols);
7878

7979
setPatternCenter(pattern);
8080

@@ -142,7 +142,7 @@ void newPressPattern(TPattern* pattern) {
142142
void newToadPattern(TPattern* pattern) {
143143
pattern->rows = 2;
144144
pattern->cols = 4;
145-
pattern->arr = newMatrix(pattern->rows, pattern->cols);
145+
pattern->arr = new2DArray(pattern->rows, pattern->cols);
146146

147147
setPatternCenter(pattern);
148148

libs/utilities.c

+11-12
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99

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

12-
void destroyMatrix(char** matrix, int rows, int cols) {
12+
void destroy2DArray(char** arr, int rows, int cols) {
1313
int i;
1414

1515
for (i = 0; i < rows; i++) {
16-
free(*(matrix + i));
16+
free(*(arr + i));
1717
}
1818

19-
free(matrix);
19+
free(arr);
2020
}
2121

2222
char* getUserInputStr(char* message, char* onInvalidMessage, int strLength,
@@ -53,31 +53,30 @@ int isStrIn(char* str, char* arr[], int size) {
5353
return 0;
5454
}
5555

56-
char** newMatrix(int rows, int cols) {
57-
char** matrixRows;
56+
char** new2DArray(int rows, int cols) {
57+
char** bidimensionalArr;
5858
int i;
5959

60-
matrixRows = malloc(rows * sizeof(char*));
61-
if (matrixRows == NULL) {
60+
bidimensionalArr = malloc(rows * sizeof(char*));
61+
if (bidimensionalArr == NULL) {
6262
printf("Memory allocation failed!\n");
6363
exit(EXIT_FAILURE);
6464
}
6565

6666
for (i = 0; i < rows; i++) {
67-
*(matrixRows + i) = malloc(cols * sizeof(char));
68-
if (*(matrixRows + i) == NULL) {
67+
*(bidimensionalArr + i) = malloc(cols * sizeof(char));
68+
if (*(bidimensionalArr + i) == NULL) {
6969
printf("Memory allocation failed!\n");
7070
exit(EXIT_FAILURE);
7171
}
7272
}
7373

74-
return matrixRows;
74+
return bidimensionalArr;
7575
}
7676

7777
void sleep(int miliseconds) {
7878
clock_t startTime = clock();
79-
while (clock() < (startTime + miliseconds))
80-
;
79+
while (clock() < (startTime + miliseconds));
8180
}
8281

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

libs/utilities.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "./patterns/main.h"
99

1010
// TODO: Documentation
11-
void destroyMatrix(char** matrix, int rows, int cols);
11+
void destroy2DArray(char** arr, int rows, int cols);
1212

1313
/**
1414
* @brief Gets user input as a string.
@@ -43,7 +43,7 @@ char* getUserInputStr(char* message, char* onInvalidMessage, int strLength,
4343
int isStrIn(char* str, char* arr[], int arrLength);
4444

4545
// TODO: Documentation
46-
char** newMatrix(int rows, int cols);
46+
char** new2DArray(int rows, int cols);
4747

4848
/**
4949
* @brief Pauses the execution of the program.

src/main.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ int main() {
1111

1212
int rows = DASHBOARD_ROWS;
1313
int cols = DASHBOARD_COLS;
14-
char** dashboard = newMatrix(rows, cols);
14+
char** dashboard = new2DArray(rows, cols);
1515

1616
char* requestedPattern;
1717
char* maxGeneration;
@@ -91,13 +91,13 @@ int main() {
9191
if (strcmpi(platformSelected, "console") == 0) {
9292
free(platformSelected);
9393
startGameByConsole(&game, maxGenerationInt, delayBetweenGenerationsInt);
94-
destroyMatrix(game.dashboard, game.rows, game.cols);
94+
destroy2DArray(game.dashboard, game.rows, game.cols);
9595
return 0;
9696
}
9797

9898
free(platformSelected);
9999
startGameBySDL(&game, maxGenerationInt, delayBetweenGenerationsInt);
100-
destroyMatrix(game.dashboard, game.rows, game.cols);
100+
destroy2DArray(game.dashboard, game.rows, game.cols);
101101

102102
return 0;
103103
}

0 commit comments

Comments
 (0)