Skip to content

Commit dd94d66

Browse files
committed
feature(getUserInputStr): add onInvalidMessage parameter
1 parent 7adbfa9 commit dd94d66

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

libs/utilities.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@ void fillDashboard(TGame* pGame, int with) {
1616
}
1717
}
1818

19-
char* getUserInputStr(char* message, int strLength,
19+
char* getUserInputStr(char* message, char* onInvalidMessage, int strLength,
2020
int (*validator)(char* userInput)) {
2121
char* userInput = malloc(strLength * sizeof(char));
2222
if (userInput == NULL) {
2323
printf("Memory allocation failed!\n");
2424
exit(EXIT_FAILURE);
2525
}
2626

27-
printf("%s", message);
27+
printf(message);
2828
fflush(stdin);
2929
fgets(userInput, strLength, stdin);
3030
trimStr(userInput);
3131

3232
while (!(*validator)(userInput)) {
33-
printf("Invalid input! Try again...\n");
34-
printf("%s", message);
33+
puts(onInvalidMessage);
34+
printf(message);
3535
fflush(stdin);
3636
fgets(userInput, strLength, stdin);
3737
trimStr(userInput);

libs/utilities.h

+1-3
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,9 @@ void fillDashboard(TGame* pGame, int with);
4646
*
4747
* @return A pointer to the string entered by the user.
4848
*/
49-
char* getUserInputStr(char* message, int strLength,
49+
char* getUserInputStr(char* message, char* onInvalidMessage, int strLength,
5050
int (*validator)(char* userInput));
5151

52-
// TODO: Receive an `onInvalidMessage` parameter in `getUserInputStr` function.
53-
5452
/**
5553
* @brief Checks if a string is present in an array of strings.
5654
*

src/main.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// TODO: Convert `options` variable into a global variable.
66
int validatePattern(char* userInput) {
77
char* options[] = {"glider", "toad", "press", "glider cannon"};
8-
return isStrIn(userInput, options, 2);
8+
return isStrIn(userInput, options, 4);
99
}
1010

1111
int main() {
@@ -29,9 +29,9 @@ int main() {
2929

3030
// TODO: Replace `XXX` with a formatted version of `options` (global...
3131
// variable).
32-
// TODO: Add `onInvalidMessage` argument.
33-
requestedPattern = getUserInputStr("Which pattern do you want (XXX)? ", 50,
34-
&validatePattern);
32+
requestedPattern =
33+
getUserInputStr("Which pattern do you want (XXX)? ",
34+
"Invalid input! Try again...", 50, &validatePattern);
3535
printf("\n'%s'", requestedPattern);
3636
return 0;
3737
}

0 commit comments

Comments
 (0)