Skip to content

Commit 850d406

Browse files
committed
feature: request delay
1 parent d19ca8f commit 850d406

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

src/main.c

+18-5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ int main() {
1313
char* requestedPattern;
1414
char* maxGenerations;
1515
char* delayBetweenGenerations;
16+
char delayBetweenGenerationsMsg[120];
1617

1718
int maxGenerationsInt;
1819
int delayBetweenGenerationsInt;
@@ -30,22 +31,34 @@ int main() {
3031
"> Which pattern do you want ('Glider','Toad', 'Press', or 'Glider cannon')? ",
3132
"> Invalid pattern! Try again...", 50, &validatePattern);
3233

33-
printf("> Pattern received: '%s'", requestedPattern);
34+
printf("> Pattern received: '%s'.\n\n", requestedPattern);
3435

3536
drawPattern(&game, requestedPattern);
3637

3738
maxGenerations = getUserInputStr(
38-
"\n> Which is maximum generation do you want? (a negative number is equal to infinity): ",
39-
"> Invalid number! Try again...", 10, &validateGeneration);
39+
"> Which is maximum generation do you want? (a negative number is equal to infinity): ",
40+
"> Invalid generation! Try again...", 10, &validateGeneration);
4041

4142
sscanf(maxGenerations, "%d", &maxGenerationsInt);
4243

4344
if (maxGenerationsInt < 0) {
44-
maxGenerations = "infinity";
45+
maxGenerations = "'infinity'";
4546
maxGenerationsInt = INT_MAX;
4647
};
4748

48-
printf("\n> Maximum generation received: '%s'", maxGenerations);
49+
printf("> Maximum generation received: %s.\n\n", maxGenerations);
50+
51+
sprintf(delayBetweenGenerationsMsg,
52+
"> What should be the miliseconds delay between generations? (must be between %d "
53+
"and %d, both included): ",
54+
MINIMUM_DELAY, MAXIMUM_DELAY);
55+
56+
delayBetweenGenerations = getUserInputStr(delayBetweenGenerationsMsg,
57+
"> Invalid delay! Try again...", 5, &validateDelay);
58+
59+
sscanf(delayBetweenGenerations, "%d", &delayBetweenGenerationsInt);
60+
61+
printf("> Delay received: %s miliseconds.\n", delayBetweenGenerations);
4962

5063
return 0;
5164
}

0 commit comments

Comments
 (0)