@@ -150,33 +150,50 @@ void printDashboardByConsole(TGame* pGame) {
150
150
int i ;
151
151
int j ;
152
152
153
- for (i = 0 ; i < pGame -> cols + 2 ; i ++ ) printf ("-" );
154
- printf ("\n" );
155
-
156
153
for (i = 0 ; i < pGame -> rows ; i ++ ) {
157
- printf ("|" );
154
+ printf ("\n" );
155
+
158
156
for (j = 0 ; j < pGame -> cols ; j ++ ) {
159
157
printf ("%c" , pGame -> dashboard [i ][j ]);
160
158
}
161
-
162
- printf ("|\n" );
163
159
}
164
-
165
- for (i = 0 ; i < pGame -> cols + 2 ; i ++ ) printf ("-" );
166
160
}
167
161
168
- void printGame (TGame * pGame ) {
162
+ void printGameByConsole (TGame * pGame ) {
169
163
int i ;
164
+ int j ;
165
+
166
+ // Print header
170
167
for (i = 0 ; i < pGame -> cols + 2 ; i ++ ) printf ("-" );
171
168
172
169
printf ("\n| Cells alive: %*d |" , pGame -> cols - 17 + 2 , pGame -> cellsAlive );
173
170
printf ("\n| Cells dead: %*d |" , pGame -> cols - 16 + 2 , pGame -> cellsDead );
174
171
printf ("\n| Generation: %*d |" , pGame -> cols - 16 + 2 , pGame -> generation );
175
- printf ("\n| Maximum generation: %*d |" , pGame -> cols - 25 + 3 , pGame -> maximumGeneration );
176
- printf ("\n| Delay between generations: %*d |\n" , pGame -> cols - 32 + 3 ,
172
+
173
+ if (pGame -> maximumGeneration == INT_MAX ) {
174
+ printf ("\n| Maximum generation: %*s |" , pGame -> cols - 25 + 3 , "infinity" );
175
+ } else {
176
+ printf ("\n| Maximum generation: %*d |" , pGame -> cols - 25 + 3 , pGame -> maximumGeneration );
177
+ }
178
+
179
+ printf ("\n| Delay between generations: %*d ms |\n" , pGame -> cols - 35 + 3 ,
177
180
pGame -> delayBetweenGenerations );
178
181
179
- printDashboardByConsole (pGame );
182
+ // Print dashboard
183
+ for (i = 0 ; i < pGame -> cols + 2 ; i ++ ) printf ("-" );
184
+
185
+ for (i = 0 ; i < pGame -> rows ; i ++ ) {
186
+ printf ("\n|" );
187
+
188
+ for (j = 0 ; j < pGame -> cols ; j ++ ) {
189
+ printf ("%c" , pGame -> dashboard [i ][j ]);
190
+ }
191
+
192
+ printf ("|" );
193
+ }
194
+
195
+ printf ("\n" );
196
+ for (i = 0 ; i < pGame -> cols + 2 ; i ++ ) printf ("-" );
180
197
}
181
198
182
199
void setDashboardCenter (TGame * pGame ) {
@@ -189,25 +206,25 @@ void setDashboardCenter(TGame* pGame) {
189
206
190
207
void startGameByConsole (TGame * pGame , int maxGeneration , int delayBetweenGenerations ) {
191
208
int generation = 0 ;
209
+ int isToInfinity = maxGeneration == INT_MAX ;
192
210
193
211
pGame -> generation = 0 ;
194
212
pGame -> maximumGeneration = maxGeneration ;
195
213
pGame -> delayBetweenGenerations = delayBetweenGenerations ;
196
214
197
215
system ("cls" );
198
- printGame (pGame );
216
+ printGameByConsole (pGame );
199
217
if (generation == maxGeneration ) return ;
200
218
sleep (delayBetweenGenerations );
201
219
202
- while (generation < maxGeneration ) {
220
+ while (isToInfinity || generation < maxGeneration ) {
203
221
generateNextGeneration (pGame );
204
222
205
- generation ++ ;
206
-
223
+ if (generation + 1 != INT_MAX ) generation ++ ;
207
224
pGame -> generation = generation ;
208
225
209
226
system ("cls" );
210
- printGame (pGame );
227
+ printGameByConsole (pGame );
211
228
if (generation != maxGeneration ) sleep (delayBetweenGenerations );
212
229
}
213
230
}
0 commit comments