|
1 | 1 | #ifndef UTILITIES_H_INCLUDED
|
2 | 2 | #define UTILITIES_H_INCLUDED
|
3 | 3 |
|
4 |
| -#define ROWS 100 |
5 |
| -#define COLS 100 |
| 4 | +#include "macros.h" |
6 | 5 |
|
| 6 | +/** |
| 7 | + * @struct TGame |
| 8 | + * @brief Represents a game structure. |
| 9 | + * |
| 10 | + * This structure represents a game in which the player's moves are |
| 11 | + * recorded. It contains a dashboard, which is a 2D array representing the |
| 12 | + * game board, as well as other properties such as the number of rows and |
| 13 | + * columns in the dashboard, and the values to represent alive and dead cells. |
| 14 | + */ |
7 | 15 | typedef struct {
|
8 |
| - int dashboard[ROWS][COLS]; |
9 |
| - int rows; |
10 |
| - int cols; |
11 |
| - int cellAlive; |
12 |
| - int cellDead; |
13 |
| - |
| 16 | + int (*dashboard)[COLS]; /** The game board represented as a 2D array. */ |
| 17 | + int rows; /** The number of rows in the game board. */ |
| 18 | + int cols; /** The number of columns in the game board. */ |
| 19 | + int cellsAlive; /** The value representing an alive cell. */ |
| 20 | + int cellsDead; /** The value representing a dead cell. */ |
14 | 21 | } TGame;
|
15 | 22 |
|
16 | 23 | /**
|
17 |
| - * @brief Calculates the length of a string. |
| 24 | + * @brief Fills the dashboard of a game with a specified value. |
| 25 | + * |
| 26 | + * This function fills the dashboard of a game with a specified value. The |
| 27 | + * dashboard represents the game board where the player's moves are recorded. |
| 28 | + * |
| 29 | + * @param pGame A pointer to the game structure. |
| 30 | + * @param with The value to fill the dashboard with. |
| 31 | + * |
| 32 | + * @warning This function assumes that the game structure (`pGame`) has been |
| 33 | + * properly initialized. |
| 34 | + */ |
| 35 | +void fillDashboard(TGame* pGame, int with); |
| 36 | + |
| 37 | +/** |
| 38 | + * @brief Gets user input as a string. |
18 | 39 | *
|
19 |
| - * This function takes a null-terminated string as input and returns the number |
20 |
| - * of characters in the string, excluding the null character. |
| 40 | + * This function prompts the user with a message and retrieves their input as a |
| 41 | + * string. The user's input is validated using the provided validator function. |
21 | 42 | *
|
22 |
| - * @param str The null-terminated string for which the length needs to be |
23 |
| - * calculated. |
| 43 | + * @param message The message to display as a prompt to the user. |
| 44 | + * @param strLength The maximum length of the string to be inputted by the user. |
| 45 | + * @param validator A function pointer to a validator function that takes a |
| 46 | + * string as input and returns an integer. The validator function should return |
| 47 | + * 1 if the input is valid, and 0 otherwise. |
24 | 48 | *
|
25 |
| - * @return The length of the string. |
| 49 | + * @return A pointer to the string entered by the user. |
26 | 50 | *
|
27 |
| - * @warning The input string must be null-terminated, otherwise the behavior is |
28 |
| - * undefined. |
| 51 | + * @warning The returned string may be longer than the specified strLength if |
| 52 | + * the user enters more characters. |
29 | 53 | */
|
30 |
| -int getStrLength(char* str); |
| 54 | +char* getUserInputStr(char* message, int strLength, |
| 55 | + int (*validator)(char* userInput)); |
31 | 56 |
|
| 57 | +/** |
| 58 | + * @brief Checks if a string is present in an array of strings. |
| 59 | + * |
| 60 | + * This function checks if a given string is present in an array of strings. |
| 61 | + * |
| 62 | + * @param str The string to search for. |
| 63 | + * @param arr The array of strings to search in. |
| 64 | + * @param size The size of the array. |
| 65 | + * |
| 66 | + * @return 1 if the string is found in the array, 0 otherwise. |
| 67 | + */ |
| 68 | +int isStrIn(char* str, char* arr[], int size); |
| 69 | + |
| 70 | +/** |
| 71 | + * @brief Prints the dashboard of a game. |
| 72 | + * |
| 73 | + * This function prints the dashboard of a game, which represents the game board |
| 74 | + * where the player's moves are recorded. |
| 75 | + * |
| 76 | + * @param pGame A pointer to the game structure. |
| 77 | + * |
| 78 | + * @warning This function assumes that the game structure (`pGame`) has been |
| 79 | + * properly initialized and the dashboard has been filled with values. |
| 80 | + */ |
32 | 81 | void printDashboard(TGame* pGame);
|
33 | 82 |
|
| 83 | +/** |
| 84 | + * @brief Compares two strings case-insensitively. |
| 85 | + * |
| 86 | + * This function compares two strings case-insensitively and returns an integer |
| 87 | + * indicating their relative order. The comparison is based on the ASCII values |
| 88 | + * of the characters in the strings. |
| 89 | + * |
| 90 | + * @param str01 The first string to compare. |
| 91 | + * @param str02 The second string to compare. |
| 92 | + * |
| 93 | + * @return An integer less than, equal to, or greater than zero if str01 is |
| 94 | + * found, respectively, to be less than, to match, or be greater than str02. |
| 95 | + * |
| 96 | + * @warning This function assumes that the input strings are null-terminated. |
| 97 | + */ |
| 98 | +int strcmpi(const char* str01, const char* str02); |
| 99 | + |
| 100 | +/** |
| 101 | + * @brief Trims leading and trailing whitespace characters from a string. |
| 102 | + * |
| 103 | + * This function trims leading and trailing whitespace characters from a string |
| 104 | + * by modifying the string in-place. The trimmed string will have no leading or |
| 105 | + * trailing whitespace characters. |
| 106 | + * |
| 107 | + * @param str The string to trim. |
| 108 | + * |
| 109 | + * @warning This function assumes that the input string is null-terminated. |
| 110 | + */ |
| 111 | +void trimStr(char* str); |
| 112 | + |
| 113 | +/** |
| 114 | + * @brief Trims leading whitespace characters from a string. |
| 115 | + * |
| 116 | + * This function trims leading whitespace characters from a string by modifying |
| 117 | + * the string in-place. The trimmed string will have no leading whitespace |
| 118 | + * characters. |
| 119 | + * |
| 120 | + * @param str The string to trim. |
| 121 | + * |
| 122 | + * @warning This function assumes that the input string is null-terminated. |
| 123 | + */ |
| 124 | +void trimLeftStr(char* str); |
| 125 | + |
| 126 | +/** |
| 127 | + * @brief Trims trailing whitespace characters from a string. |
| 128 | + * |
| 129 | + * This function trims trailing whitespace characters from a string by modifying |
| 130 | + * the string in-place. The trimmed string will have no trailing whitespace |
| 131 | + * characters. |
| 132 | + * |
| 133 | + * @param str The string to trim. |
| 134 | + * |
| 135 | + * @warning This function assumes that the input string is null-terminated. |
| 136 | + */ |
| 137 | +void trimRightStr(char* str); |
| 138 | + |
34 | 139 | #endif // UTILITIES_H_INCLUDED
|
0 commit comments