File: sdl2.cpp

package info (click to toggle)
mrboom 5.2%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 34,372 kB
  • sloc: cpp: 106,150; ansic: 59,845; makefile: 1,033; python: 322; asm: 125; xml: 60; sh: 1
file content (1413 lines) | stat: -rw-r--r-- 40,169 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
#include <stdlib.h>
#include <stdio.h>
#ifdef __EMSCRIPTEN__
#include <emscripten/emscripten.h>
#endif
#include <SDL.h>
#include <time.h>
#include <unistd.h>
#include <getopt.h>
#include "mrboom.h"
#include "common.hpp"
#include "MrboomHelper.hpp"
#include "xbrz.h"

#define IFTRACES               (traceMask & DEBUG_SDL2)

#ifdef DEBUG
#define XBRZ_DEFAULT_FACTOR    1
#else
#define XBRZ_DEFAULT_FACTOR    2
#endif
#ifdef __ARM_ARCH_6__
#define XBRZ_DEFAULT_FACTOR    1
#endif
#ifdef __ARM_ARCH_7__
#define XBRZ_DEFAULT_FACTOR    1
#endif

int xbrzFactor    = XBRZ_DEFAULT_FACTOR;
int widthTexture  = 0;
int heightTexture = 0;

#define BEEING_PLAYING_BUFFER    60
int beeingPlaying = 0;

SDL_Renderer *renderer;
SDL_Texture * texture;
SDL_bool      done  = SDL_FALSE;
SDL_bool      noVGA = SDL_FALSE;

SDL_Joystick *joysticks[nb_dyna] = { 0 };
int           joysticksInstance[nb_dyna];

static clock_t begin;
unsigned int   nbFrames = 0;
int            testAI   = 0;
bool           slowMode = false;
#define MAX_TURBO    32
int turboMode                 = 0;
int anyButtonPushedMask       = 0;
int anyStartButtonPushedMask  = 0;
int anySelectButtonPushedMask = 0;
int framesPlayed              = 0;
bool checkDemoMode = false;

void quit(int rc)
{
   SDL_Quit();
   exit(rc);
}

void printJoystick()
{
   int i;

   for (i = 0; i < nb_dyna; i++)
   {
      if (joysticks[i] != 0)
      {
         log_debug("Joystick instance %d: (index:%d)\n", joysticksInstance[i], i);
      }
   }
}

void removeJoystick(int instance)
{
   int i;

   if (IFTRACES)
   {
      log_debug("Joystick instance %d removed.\n", (int)instance);
   }
   for (i = 0; i < nb_dyna; i++)
   {
      if (joysticks[i] != 0)
      {
         if (joysticksInstance[i] == instance)
         {
            joysticks[i] = 0;
            if (IFTRACES)
            {
               log_debug("Joystick index/player %d removed.\n", i);
            }
         }
      }
   }
}

void updateInput(int keyid, int playerNumber, int state, bool isIA) {
   if (!checkDemoMode) {
      mrboom_update_input(keyid, playerNumber, state, isIA);
   }
}


void addJoystick(int index)
{
   if (IFTRACES)
   {
      log_debug("Add Joystick index %d \n", index);
   }
   SDL_Joystick *joystick = SDL_JoystickOpen(index);
   if (joystick == NULL)
   {
      log_error("SDL_JoystickOpen(%d) failed: %s\n", index,
                SDL_GetError());
   }
   else
   {
      int noFreePlayer = 1;
      for (int i = 0; i < nb_dyna; i++)
      {
         if (joysticks[i] == 0)
         {
            joysticks[i]         = joystick;
            joysticksInstance[i] = SDL_JoystickInstanceID(joystick);
            if (IFTRACES)
            {
               log_debug("Joystick instance %d added for player %d\n", joysticksInstance[i], i);
            }
            noFreePlayer = 0;
            return;
         }
      }

      if (noFreePlayer)
      {
         if (IFTRACES)
         {
            log_debug("Joystick cant be added\n");
         }
      }
   }
}

#define NB_SCREENS_BLURRING    8

void UpdateTexture(SDL_Texture *texture, bool skipRendering)
{
   static uint32_t matrixPalette[NB_COLORS_PALETTE];
   static uint32_t previousScreen[WIDTH][HEIGHT][NB_SCREENS_BLURRING];
   static int      numberOfScreenToMelt = 1;

   Uint32 *         dst;
   uint32_t         src[WIDTH * HEIGHT];
   static uint32_t *trg = NULL;

   if (trg == NULL)
   {
      trg = (uint32_t *)malloc(widthTexture * heightTexture * sizeof(uint32_t));
   }
   int   row, col;
   void *pixels;
   int   pitch;

   if (SDL_LockTexture(texture, NULL, &pixels, &pitch) < 0)
   {
      log_error("Couldn't lock texture: %s\n", SDL_GetError());
      quit(5);
   }
   int z = 0;
   do
   {
      matrixPalette[z / 3]  = ((m.vgaPalette[z+0] << 2) | (m.vgaPalette[z+0] >> 4)) << 16;
	  matrixPalette[z / 3] |= ((m.vgaPalette[z+1] << 2) | (m.vgaPalette[z+1] >> 4)) << 8;
	  matrixPalette[z / 3] |= ((m.vgaPalette[z+2] << 2) | (m.vgaPalette[z+2] >> 4)) << 0;
      z += 3;
   } while (z != NB_COLORS_PALETTE * 3);

   for (row = 0; row < HEIGHT; ++row)
   {
      dst = (Uint32 *)((Uint8 *)pixels + row * pitch);
      for (col = 0; col < WIDTH; ++col)
      {
         uint32_t color;
         if (m.affiche_pal != 1)
         {
            color = matrixPalette[m.buffer[col + row * WIDTH]];
            m.vgaRam[col + row * WIDTH] = m.buffer[col + row * WIDTH];
         }
         else
         {
            color = matrixPalette[m.vgaRam[col + row * WIDTH]];
         }
         previousScreen[col][row][frameNumber() % NB_SCREENS_BLURRING] = color;
         //uint32_t color = matrixPalette[m.vgaRam[col + row * WIDTH]];
         //previousScreen[col][row][frameNumber() % NB_SCREENS_BLURRING] = color;
         if (skipRendering)
         {
            uint32_t b = 0;
            uint32_t r = 0;
            uint32_t g = 0;
            for (int z = 0; z < numberOfScreenToMelt; z++)
            {
               uint32_t prevColor = previousScreen[col][row][(NB_SCREENS_BLURRING - z + frameNumber()) % NB_SCREENS_BLURRING];
               b += prevColor & 255;
               r += (prevColor >> 8) & 255;
               g += (prevColor >> 16) & 255;
            }
            b     = b / (numberOfScreenToMelt);
            r     = r / (numberOfScreenToMelt);
            g     = g / (numberOfScreenToMelt);
            color = (g << 16) | (r << 8) | b;
            if (numberOfScreenToMelt < NB_SCREENS_BLURRING - 1)
            {
               numberOfScreenToMelt += 2;
            }
         }
         else
         {
            numberOfScreenToMelt = 1;
         }
         if (xbrzFactor != 1)
         {
            src[col + row * WIDTH] = color;
         }
         else
         {
            *dst++ = color;
         }
      }
   }

   if (xbrzFactor != 1)
   {
      scale(xbrzFactor,                   //valid range: 2 - 6
            (uint32_t *)src, trg, WIDTH, HEIGHT,
            xbrz::ColorFormat::RGB);

      for (row = 0; row < heightTexture; ++row)
      {
         dst = (Uint32 *)((Uint8 *)pixels + row * pitch);
         for (col = 0; col < widthTexture; ++col)
         {
            *dst++ = trg[row * widthTexture + col];
         }
      }
   }

   SDL_UnlockTexture(texture);
}

int getPlayerFromJoystickPort(int instance)
{
   int i;

   for (i = 0; i < nb_dyna; i++)
   {
      if (joysticks[i] != 0)
      {
         if (joysticksInstance[i] == instance)
         {
            return(i);
         }
      }
   }
   log_error("Error getPlayerFromJoystickPort %d\n", instance);
   return(0);
}

void  updateKeyboard(Uint8 scancode, int state)
{
   if (IFTRACES)
   {
      log_debug("updateKeyboard %d", scancode);
   }
   if (state)
   {
      anyButtonPushedMask = anyButtonPushedMask | (1 << (scancode & 31));
   }
   else
   {
      anyButtonPushedMask = anyButtonPushedMask & ~(1 << (scancode & 31));
   }
   switch (scancode)
   {
   case SDL_SCANCODE_W:
      updateInput(button_up, nb_dyna - 2, state, false);
      break;

   case SDL_SCANCODE_S:
      updateInput(button_down, nb_dyna - 2, state, false);
      break;

   case SDL_SCANCODE_A:
      updateInput(button_left, nb_dyna - 2, state, false);
      break;

   case SDL_SCANCODE_D:
      updateInput(button_right, nb_dyna - 2, state, false);
      break;

   case SDL_SCANCODE_LALT:
      updateInput(button_a, nb_dyna - 2, state, false);
      break;

   case SDL_SCANCODE_LCTRL:
   case SDL_SCANCODE_LGUI:
      updateInput(button_b, nb_dyna - 2, state, false);
      break;

   case SDL_SCANCODE_LSHIFT:
      updateInput(button_x, nb_dyna - 2, state, false);
      break;

   case SDL_SCANCODE_SPACE:
      updateInput(button_select, nb_dyna - 2, state, false);
      break;

   case SDL_SCANCODE_RETURN:
      updateInput(button_start, nb_dyna - 2, state, false);
      updateInput(button_start, nb_dyna - 1, state, false);
      break;

   case SDL_SCANCODE_KP_ENTER:
      updateInput(button_start, nb_dyna - 2, state, false);
      updateInput(button_start, nb_dyna - 1, state, false);
      updateInput(button_x, nb_dyna - 1, state, false);      // also jump 1st player
      break;

   case SDL_SCANCODE_UP:
      updateInput(button_up, nb_dyna - 1, state, false);
      break;

   case SDL_SCANCODE_DOWN:
      updateInput(button_down, nb_dyna - 1, state, false);
      break;

   case SDL_SCANCODE_LEFT:
      updateInput(button_left, nb_dyna - 1, state, false);
      break;

   case SDL_SCANCODE_RIGHT:
      updateInput(button_right, nb_dyna - 1, state, false);
      break;
   case SDL_SCANCODE_F1:
      updateInput(button_l, nb_dyna - 1, state, false);
      break;
   case SDL_SCANCODE_F2:
      updateInput(button_r, nb_dyna - 1, state, false);
      break;
   case SDL_SCANCODE_PAGEDOWN:
   case SDL_SCANCODE_RALT:
   case SDL_SCANCODE_KP_PERIOD:
      updateInput(button_a, nb_dyna - 1, state, false);
      break;

   case SDL_SCANCODE_END:
   case SDL_SCANCODE_RCTRL:
   case SDL_SCANCODE_RGUI:
   case SDL_SCANCODE_KP_0:
      log_debug("button_b %d i:%d\n", state, nb_dyna - 1);
      updateInput(button_b, nb_dyna - 1, state, false);
      break;

   case SDL_SCANCODE_HOME:
   case SDL_SCANCODE_RSHIFT:
      updateInput(button_x, nb_dyna - 1, state, false);
      break;

   case SDL_SCANCODE_ESCAPE:
      if (state)
      {
         if ((beeingPlaying > BEEING_PLAYING_BUFFER) || !isGameActive())
         {
            pressESC();
         }
         if (inTheMenu())
         {
            done = SDL_TRUE;
         }
      }
      break;

   case SDL_SCANCODE_PAUSE:
   case SDL_SCANCODE_P:
      if (state)
      {
         pauseGameButton();
      }
      break;

   default:
      if (IFTRACES)
      {
         log_debug("updateKeyboard not handled %d %d\n", scancode, state);
      }
      break;
   }
}

#define DEFAULT_DEAD_ZONE    8000

int                joystickDeadZone            = DEFAULT_DEAD_ZONE;
int                anyStartButtonPushedCounter = 0;
uint32_t           windowID;
static const float ASPECT_RATIO = float(WIDTH) / float(HEIGHT);


bool        resizeDone = false;
SDL_Rect    screen;
SDL_Window *window;
int         width  = 0;
int         height = 0;

#define NB_STICKS_MAX_PER_PAD    2

int axis[NB_STICKS_MAX_PER_PAD * 2] = { 0, 0, 0, 0 };


void pollEvent() {
   SDL_Event e;

   while (SDL_PollEvent(&e))
   {
      switch (e.type)
      {
      case SDL_WINDOWEVENT:
         if (e.window.windowID == windowID)
         {
            switch (e.window.event)
            {
            case SDL_WINDOWEVENT_RESIZED: {
               width  = e.window.data1;
               height = e.window.data2;
               float aspectRatio = (float)width / (float)height;
               if (abs(aspectRatio - ASPECT_RATIO) > 0.1)
               {
                  if (aspectRatio < ASPECT_RATIO)
                  {
                     height = (1.f / ASPECT_RATIO) * width;
                  }
                  else
                  {
                     width = ASPECT_RATIO * height;
                  }
                  log_debug("Setting window size to %d, %d, aspect ratio: %f\n",
                            width, height, (float)width / (float)height);
               }
               else
               {
                  log_debug("skip resize %f %f\n", aspectRatio, ASPECT_RATIO);
                  break;
               }
               screen.w   = width;
               screen.h   = height;
               resizeDone = true;
               break;
            }
            }
         }
         break;

      case SDL_JOYDEVICEADDED:
         addJoystick(e.jdevice.which);
         break;

      case SDL_JOYDEVICEREMOVED:
         removeJoystick(e.jdevice.which);
         break;

      case SDL_JOYAXISMOTION:

         if (e.jaxis.axis >= NB_STICKS_MAX_PER_PAD * 2)
         {
            if (IFTRACES)
            {
               log_debug("ignoring e.jaxis.axis=%d e.jaxis.value=%d player=%d\n", e.jaxis.axis, e.jaxis.value, getPlayerFromJoystickPort(e.jaxis.which));
            }
            break;
         }

         if (e.jaxis.value < -joystickDeadZone)
         {
            axis[e.jaxis.axis] = -1;
         }
         else if (e.jaxis.value > joystickDeadZone)
         {
            axis[e.jaxis.axis] = 1;
         }
         else
         {
            axis[e.jaxis.axis] = 0;
         }

         if (IFTRACES)
         {
            log_debug("e.jaxis.axis=%d e.jaxis.value=%d player=%d\n", e.jaxis.axis, e.jaxis.value, getPlayerFromJoystickPort(e.jaxis.which));
         }
         if ((e.jaxis.axis == 0) || (e.jaxis.axis == 2))
         {
            if ((axis[0] == 1) || (axis[2] == 1))
            {
               updateInput(button_right, getPlayerFromJoystickPort(e.jaxis.which), 1, false);
               updateInput(button_left, getPlayerFromJoystickPort(e.jaxis.which), 0, false);
            }
            else if ((axis[0] == -1) || (axis[2] == -1))
            {
               updateInput(button_left, getPlayerFromJoystickPort(e.jaxis.which), 1, false);
               updateInput(button_right, getPlayerFromJoystickPort(e.jaxis.which), 0, false);
            }
            else
            {
               updateInput(button_left, getPlayerFromJoystickPort(e.jaxis.which), 0, false);
               updateInput(button_right, getPlayerFromJoystickPort(e.jaxis.which), 0, false);
            }
         }
         if ((e.jaxis.axis == 1) || (e.jaxis.axis == 3))
         {
            if ((axis[1] == 1) || (axis[3] == 1))
            {
               updateInput(button_down, getPlayerFromJoystickPort(e.jaxis.which), 1, false);
               updateInput(button_up, getPlayerFromJoystickPort(e.jaxis.which), 0, false);
            }
            else if ((axis[1] == -1) || (axis[3] == -1))
            {
               updateInput(button_up, getPlayerFromJoystickPort(e.jaxis.which), 1, false);
               updateInput(button_down, getPlayerFromJoystickPort(e.jaxis.which), 0, false);
            }
            else
            {
               updateInput(button_up, getPlayerFromJoystickPort(e.jaxis.which), 0, false);
               updateInput(button_down, getPlayerFromJoystickPort(e.jaxis.which), 0, false);
            }
         }
         break;

      case SDL_JOYHATMOTION:
      {
         int player = getPlayerFromJoystickPort(e.jhat.which);
         if (IFTRACES)
         {
            log_debug("SDL_JOYHATMOTION: .jhat=%d which=%d player=%d\n", e.jhat.value, e.jhat.which, getPlayerFromJoystickPort(e.jhat.which));
         }

         switch (e.jhat.value)
         {
         case SDL_HAT_CENTERED:
            updateInput(button_up, player, 0, false);
            updateInput(button_down, player, 0, false);
            updateInput(button_left, player, 0, false);
            updateInput(button_right, player, 0, false);
            break;

         case SDL_HAT_UP:
            updateInput(button_up, player, 1, false);
            updateInput(button_down, player, 0, false);
            updateInput(button_left, player, 0, false);
            updateInput(button_right, player, 0, false);
            break;

         case SDL_HAT_DOWN:
            updateInput(button_up, player, 0, false);
            updateInput(button_down, player, 1, false);
            updateInput(button_left, player, 0, false);
            updateInput(button_right, player, 0, false);
            break;

         case SDL_HAT_LEFT:
            updateInput(button_up, player, 0, false);
            updateInput(button_down, player, 0, false);
            updateInput(button_left, player, 1, false);
            updateInput(button_right, player, 0, false);
            break;

         case SDL_HAT_RIGHT:
            updateInput(button_up, player, 0, false);
            updateInput(button_down, player, 0, false);
            updateInput(button_left, player, 0, false);
            updateInput(button_right, player, 1, false);
            break;

         case SDL_HAT_RIGHTDOWN:
            updateInput(button_up, player, 0, false);
            updateInput(button_down, player, 1, false);
            updateInput(button_left, player, 0, false);
            updateInput(button_right, player, 1, false);
            break;

         case SDL_HAT_RIGHTUP:
            updateInput(button_up, player, 1, false);
            updateInput(button_down, player, 0, false);
            updateInput(button_left, player, 0, false);
            updateInput(button_right, player, 1, false);
            break;

         case SDL_HAT_LEFTUP:
            updateInput(button_up, player, 1, false);
            updateInput(button_down, player, 0, false);
            updateInput(button_left, player, 1, false);
            updateInput(button_right, player, 0, false);
            break;

         case SDL_HAT_LEFTDOWN:
            updateInput(button_up, player, 0, false);
            updateInput(button_down, player, 1, false);
            updateInput(button_left, player, 1, false);
            updateInput(button_right, player, 0, false);
            break;
         }
      }
      break;

      case SDL_JOYBUTTONDOWN:
         if (IFTRACES)
         {
            log_debug("Joystick %d button %d down\n",
                      e.jbutton.which, e.jbutton.button);
         }
         switch (e.jbutton.button)
         {
         case 0:
            updateInput(button_a, getPlayerFromJoystickPort(e.jbutton.which), 1, false);
            break;

         case 1:
            updateInput(button_b, getPlayerFromJoystickPort(e.jbutton.which), 1, false);
            break;

         case 2:
            updateInput(button_x, getPlayerFromJoystickPort(e.jbutton.which), 1, false);
            break;

         case 3:
            updateInput(button_y, getPlayerFromJoystickPort(e.jbutton.which), 1, false);
            break;

         case 4:
            updateInput(button_l, getPlayerFromJoystickPort(e.jbutton.which), 1, false);
            break;

         case 5:
            updateInput(button_r, getPlayerFromJoystickPort(e.jbutton.which), 1, false);
            break;

         case 6:
         case 8:
            updateInput(button_select, getPlayerFromJoystickPort(e.jbutton.which), 1, false);
            anySelectButtonPushedMask = anySelectButtonPushedMask | (1 << e.jbutton.which);
            break;

         case 7:
         case 9:
            updateInput(button_start, getPlayerFromJoystickPort(e.jbutton.which), 1, false);
            anyStartButtonPushedMask = anyStartButtonPushedMask | (1 << e.jbutton.which);
            break;

         case 10:
            updateInput(button_up, getPlayerFromJoystickPort(e.jbutton.which), 1, false);
            anyStartButtonPushedMask = anyStartButtonPushedMask & ~(1 << e.jbutton.which);
            break;

         case 11:
            updateInput(button_down, getPlayerFromJoystickPort(e.jbutton.which), 1, false);
            anyStartButtonPushedMask = anyStartButtonPushedMask & ~(1 << e.jbutton.which);
            break;

         case 12:
            updateInput(button_left, getPlayerFromJoystickPort(e.jbutton.which), 1, false);
            anyStartButtonPushedMask = anyStartButtonPushedMask & ~(1 << e.jbutton.which);
            break;

         case 13:
            updateInput(button_right, getPlayerFromJoystickPort(e.jbutton.which), 1, false);
            anyStartButtonPushedMask = anyStartButtonPushedMask & ~(1 << e.jbutton.which);
            break;
         }
         anyButtonPushedMask = anyButtonPushedMask | (1 << e.jbutton.button);
         break;

      case SDL_JOYBUTTONUP:
         if (IFTRACES)
         {
            log_debug("Joystick %d button %d up\n",
                      e.jbutton.which, e.jbutton.button);
         }
         switch (e.jbutton.button)
         {
         case 0:
            updateInput(button_a, getPlayerFromJoystickPort(e.jbutton.which), 0, false);
            break;

         case 1:
            updateInput(button_b, getPlayerFromJoystickPort(e.jbutton.which), 0, false);
            break;

         case 2:
            updateInput(button_x, getPlayerFromJoystickPort(e.jbutton.which), 0, false);
            break;

         case 3:
            updateInput(button_y, getPlayerFromJoystickPort(e.jbutton.which), 0, false);
            break;

         case 4:
            updateInput(button_l, getPlayerFromJoystickPort(e.jbutton.which), 0, false);
            break;

         case 5:
            updateInput(button_r, getPlayerFromJoystickPort(e.jbutton.which), 0, false);
            break;

         case 6:
         case 8:
            updateInput(button_select, getPlayerFromJoystickPort(e.jbutton.which), 0, false);
            anySelectButtonPushedMask = anySelectButtonPushedMask & ~(1 << e.jbutton.which);
            break;

         case 7:
         case 9:
            updateInput(button_start, getPlayerFromJoystickPort(e.jbutton.which), 0, false);
            anyStartButtonPushedMask = anyStartButtonPushedMask & ~(1 << e.jbutton.which);
            break;

         case 10:
            updateInput(button_up, getPlayerFromJoystickPort(e.jbutton.which), 0, false);
            anyStartButtonPushedMask = anyStartButtonPushedMask & ~(1 << e.jbutton.which);
            break;

         case 11:
            updateInput(button_down, getPlayerFromJoystickPort(e.jbutton.which), 0, false);
            anyStartButtonPushedMask = anyStartButtonPushedMask & ~(1 << e.jbutton.which);
            break;

         case 12:
            updateInput(button_left, getPlayerFromJoystickPort(e.jbutton.which), 0, false);
            anyStartButtonPushedMask = anyStartButtonPushedMask & ~(1 << e.jbutton.which);
            break;

         case 13:
            updateInput(button_right, getPlayerFromJoystickPort(e.jbutton.which), 0, false);
            anyStartButtonPushedMask = anyStartButtonPushedMask & ~(1 << e.jbutton.which);
            break;
         }
         anyButtonPushedMask = anyButtonPushedMask & ~(1 << e.jbutton.button);
         break;

      case SDL_KEYDOWN:
         updateKeyboard(e.key.keysym.scancode, 1);
         break;

      case SDL_KEYUP:
         updateKeyboard(e.key.keysym.scancode, 0);
         break;

      case SDL_FINGERDOWN:
      case SDL_MOUSEBUTTONDOWN:
         break;

      case SDL_QUIT:
         done = SDL_TRUE;
         break;

      default:
         break;
      }
   }
}
void
loop()
{

   if (isGameActive())
   {
      beeingPlaying++;
      if (beeingPlaying > BEEING_PLAYING_BUFFER)
      {
         if (anyStartButtonPushedMask && anySelectButtonPushedMask)
         {
            pressESC();
         }
         else
         {
            if (anyStartButtonPushedMask)
            {
               anyStartButtonPushedCounter++;
               if (anyStartButtonPushedCounter == 1)
               {
                  pauseGameButton();
               }
            }
            else
            {
               anyStartButtonPushedCounter = 0;
            }
         }
      }
   }
   else
   {
      beeingPlaying = 0;
   }

   if (checkDemoMode) {
      static int zz = 0;
      static int frameResult[16] = {
         195663,60551,77663,53283,45147,79144,75015,149583,65639,142559,182999,132883,172439,123599,202267,112111
      };
      static bool isActive = false;
      bool currentActive = !inTheMenu();

      if (!currentActive && isActive) {
         int fn = frameNumber();
         if (frameResult[zz] != fn) {
            log_error("Failed check on demo %d\n", zz+1);
            exit(1);
         } else {
            log_info("Checked demo %d/16 %d:OK\n", zz+1, fn);
         }
         zz++;
         if ( zz == 16 ) {
            log_info("SUCCESS check demos\n");
            exit(0);
         }
      }
      isActive = currentActive;
      turboMode = MAX_TURBO;
   } 
      
   pollEvent();
   

   mrboom_deal_with_autofire();
   mrboom_loop();

#ifdef DEBUG
   if (mrboom_debug_state_failed())
   {
      log_error("mrboom_debug_state_failed!\n");
      exit(1);
   }
#endif

   if (m.executionFinished)
   {
      done = SDL_TRUE;
   }

   mrboom_sound();

   bool        skipRendering = false;
   static bool showFrame[MAX_TURBO][MAX_TURBO];
   static bool calculateShowFrame = true;
   int         counter            = 0;

#define INT_SCALING    100000
   if (calculateShowFrame)
   {
      for (int i = 0; i < MAX_TURBO; i++)
      {
         int delta = ((MAX_TURBO - i) * INT_SCALING) / MAX_TURBO;        // between 100 and 0
         for (int j = 0; j < MAX_TURBO; j++)
         {
            counter += delta;
            if (counter >= INT_SCALING)
            {
               counter        -= INT_SCALING;
               showFrame[i][j] = true;
            }
            else
            {
               showFrame[i][j] = false;
            }
         }
      }
      calculateShowFrame = false;
   }

   static int anyButtonPushedMaskSave = 0;
   bool       goTurbo = false;
   if (!anyButtonPushedMask)
   {
      anyButtonPushedMaskSave = 0;
   }
   if (someHumanPlayersNotDead())
   {
      anyButtonPushedMaskSave = anyButtonPushedMask;
   }
   else
   {
      if (!isAboutToWin() && isGameActive())
      {
         if (anyButtonPushedMaskSave != anyButtonPushedMask)                   // to avoid speeding straight away when still holding current keys
         {
            goTurbo = true;
         }
      }
   }
   if (goTurbo)
   {
      if (!turboMode)
      {
         turboMode = 1;
      }
      if (!(frameNumber() % 32) && (turboMode < MAX_TURBO / 2))
      {
         turboMode++;
      }
   }
   else
   {
      if (!(frameNumber() % 32) && (turboMode))
      {
         turboMode--;
      }
   }

   int phaseShowFrame = turboMode ? turboMode + MAX_TURBO / 2 : 0;
   if (phaseShowFrame > MAX_TURBO - 1)
   {
      phaseShowFrame = MAX_TURBO - 1;
   }
   if (showFrame[phaseShowFrame][frameNumber() % MAX_TURBO])
   {
      skipRendering = false;
   }
   else
   {
      skipRendering = true;
   }
   static bool previousSkipRendering = false;

   if ((isGameActive() == false) || isGamePaused())
   {
      previousSkipRendering = false;
      turboMode             = 0;
   }
   if (noVGA == SDL_FALSE)
   {
      UpdateTexture(texture, previousSkipRendering);
      previousSkipRendering = skipRendering;
   }
   if ((noVGA == SDL_FALSE) && skipRendering == false)
   {
      SDL_RenderClear(renderer);
      SDL_RenderCopy(renderer, texture, NULL, NULL);
      SDL_RenderPresent(renderer);
   }

#ifdef __EMSCRIPTEN__
   if (done)
   {
      emscripten_cancel_main_loop();
   }
#endif
}

static void fps()
{
   nbFrames++;
   if (!(nbFrames % 600) && (IFTRACES))
   {
      clock_t end        = clock();
      double  time_spent = (double)(end - begin) / CLOCKS_PER_SEC;
      log_debug("x time_spent=%f %d\n", time_spent, nbFrames);
      log_debug("x fps=%f\n", nbFrames / time_spent);
   }
}

void printKeys()
{
   log_info("Keys   Space - Add a bomberman bot\n");
   log_info("       Return - Start a game\n");
   log_info("       P or Pause/Break - Pause\n");
   log_info("       ESC - Quit\n");
   log_info("1st player\n");
   log_info("       Left - Left\n");
   log_info("       Right - Right\n");
   log_info("       Up - Up\n");
   log_info("       Down - Down\n");
#ifdef __APPLE__
   log_info("       Right Ctrl, End, Keypad 0 or Right Command - Lay bomb\n");
#else
   log_info("       Right Ctrl, End, Keypad 0 or Right GUI - Lay bomb\n");
#endif
   log_info("       Right Alt, Keypad Dot or PageDown - Ignite bomb\n");
   log_info("       Right Shift, Keypad Enter or Home - Jump\n");
   log_info("2nd player\n");
   log_info("       A - Left\n");
   log_info("       D - Right\n");
   log_info("       W - Up\n");
   log_info("       S - Down\n");
#ifdef __APPLE__
   log_info("       Left Ctrl or Left Command - Lay bomb\n");
#else
   log_info("       Left Ctrl or Left GUI - Lay bomb\n");
#endif
   log_info("       Left Alt - Ignite bomb\n");
   log_info("       Left Shift - Jump\n\n");
   log_info("run with -h to list options\n");
}

void manageTestAI()
{
   static bool doItOnce  = true;
   static bool doItOnce2 = true;

   if (isGameActive() == false)
   {
      if (numberOfPlayers() != testAI)
      {
         addOneAIPlayer();
      }
      else
      {
         if (doItOnce)
         {
            pressStart();
            doItOnce = false;
         }
      }
   }
   else
   {
      if (cheatMode && doItOnce2)
      {
         activeCheatMode();
         doItOnce2 = false;
      }
   }
}

int  exitAtFrameNumber = 0;
bool exitAtFrame       = false;
int
main(int argc, char **argv)
{
   bool showVersion = false;
   int  c;

   while (1)
   {
      static struct option long_options[] =
      {
         { "fx",          required_argument, 0, 'f' },
         { "help",        no_argument,       0, 'h' },
         { "level",       required_argument, 0, 'l' },
         { "nomonster",   no_argument,       0, 'm' },
         { "sex",         no_argument,       0, 's' },
         { "color",       no_argument,       0, 'c' },
         { "noautofire",  no_argument,       0, 'n' },
         { "version",     no_argument,       0, 'v' },
         { "debugtraces", required_argument, 0, 'd' },
         { "cheat",       no_argument,       0, '1' },
         { "slow",        no_argument,       0, '2' },
         { "frame",       required_argument, 0, '3' },
         { "exit",        required_argument, 0, '4' },
         { "tracemask",   required_argument, 0, 't' },
         { "aitest",      required_argument, 0, 'a' },
         { "nomusic",     no_argument,       0, 'z' },
         { "xbrz",        required_argument, 0, 'x' },
         { "skynet",      no_argument,       0, 'k' },
         { "deadzone",    required_argument, 0, 'd' },
         { "checkDemoMode",      no_argument,       0, 'e' },
         {             0,                 0, 0,   0 }
      };
      /* getopt_long stores the option index here. */
      int option_index = 0;

      c = getopt_long(argc, argv, "hl:mscv123:4:t:f:o:a:nzx:kd:e",
                      long_options, &option_index);

      /* Detect the end of the options. */
      if (c == -1)
      {
         break;
      }
      switch (c)
      {
      case 'h':
         log_info("Usage: mrboom [options]\n");
         log_info("Options:\n");
         log_info("  -f <x>, --fx <x>\t\tFX volume: from 0 to 10\n");
         log_info("  -h, --help     \t\tShow summary of options\n");
         log_info("  -l <x>, --level <x>\t\tStart in level 0:Candy 1:Pinguine 2:Pink\n");
         log_info("                     \t\t3:Jungle 4:Board 5:Soccer 6:Sky 7:Aliens\n");
         log_info("  -m, --nomonster\t\tNo monster mode\n");
         log_info("  -s, --sex     \t\tSex team mode\n");
         log_info("  -c, --color     \t\tColor team mode\n");
         log_info("  -k, --skynet     \t\tHumans vs. machines mode\n");
//         log_info("  -n, --noautofire     \t\tNo autofire for bomb drop\n");
         log_info("  -d <x>, --deadzone <x>\tSet joysticks dead zone, default is %d\n", DEFAULT_DEAD_ZONE);
         log_info("  -z, --nomusic     \t\tNo music\n");
         log_info("  -v, --version  \t\tDisplay version\n");
#ifdef DEBUG
         log_info("Debugging options:\n");
         log_info("  -x <x>, --xbrz <x>\t\tSet xBRZ shader factor: from 1 to 6 (default is %d, 1 is off)\n", XBRZ_DEFAULT_FACTOR);
         log_info("  -o <x>, --output <x>\t\tDebug traces to <x> file\n");
         log_info("  -t <x>, --tracemask <x>\tDebug traces mask <x>:\n");
         log_info("                  \t\t1 to 128 player selection bit\n");
         log_info("                  \t\t256 Grids\n");
         log_info("                  \t\t512 Bot tree decisions\n");
         log_info("                  \t\t1024 SDL2 stuff\n");

         for (int i = 0; i < nb_dyna; i++)
         {
            const char *desc[nb_dyna] = { "white male", "white female", "red male", "red female", "blue male", "blue female", "green male", "green female" };

            log_info("                  \t\t%d all traces %s (#%d)\n", 256 + 512 + (1 << i), desc[i], i);
         }

         log_info("  -1, --cheat    \t\tActivate F1/F2 and L1/L2 pad key for debugging\n");
         log_info("  -2, --slow    \t\tSlow motion for AI debugging\n");
         log_info("  -3 <x>, --frame <x>    \tSet frame for randomness debugging\n");
         log_info("  -4 <x>, --exit <x>    \tExit at frame <x> use x = -1 to exit after one game\n");
         log_info("  -a <x>, --aitest <x>    \tTest <x> AI players\n");
#endif
         exit(0);
         break;

      case 't':
         traceMask = atoi(optarg);
         log_info("-t option given. Set tracemask to %d.\n", traceMask);
         break;

      case 'f':
         sdl2_fx_volume = atoi(optarg);
         if ((sdl2_fx_volume < 0) || (sdl2_fx_volume > 10))
         {
            sdl2_fx_volume = DEFAULT_SDL2_FX_VOLUME;
         }
         log_info("-f option given. Set fx volume to %d.\n", sdl2_fx_volume);
         break;

      case 'n':
         log_info("-n option given. No autofire\n");
         setAutofire(false);
         break;

      case 'v':
         log_info("%s %s\n", GAME_NAME, GAME_VERSION);
         showVersion = true;
         break;

      case 'l':
#define NB_LEVELS    8
         log_info("-l option given. choosing level %s.\n", optarg);
         chooseLevel(atoi(optarg) % NB_LEVELS);
         break;

      case 'm':
         log_info("-m option given. No monster mode.\n");
         setNoMonsterMode(true);
         break;

      case 'o':
         log_info("logging to file %s\n", optarg);
         logDebug = fopen(optarg, "w");
         break;

      case '1':
         log_info("-1 option given. Activate F1/F2 and L1/L2 pad key for debugging.\n");
         cheatMode = true;
         break;

      case '3':
         log_info("-3 option given. Set frame to %s.\n", optarg);
         setFrameNumber(atoi(optarg));
         break;

      case '4':
         log_info("-4 option given. Exit at frame %s.\n", optarg);
         exitAtFrameNumber = atoi(optarg);
         exitAtFrame       = true;
         break;

      case 'a':
         log_info("-a option given. Test mode for %s AI players.\n", optarg);
         testAI = atoi(optarg);
         break;

      case 'c':
         setTeamMode(1);
         log_info("-c option given. Color team mode.\n");
         break;

      case 's':
         setTeamMode(2);
         log_info("-s option given. Sex team mode.\n");
         break;

      case 'k':
         setTeamMode(4);
         log_info("-k option given. Skynet team mode.\n");
         break;

      case '2':
         log_info("-2 option given. Slow motion for AI debugging.\n");
         slowMode = true;
         break;

      case 'z':
         music = false;
         break;

      case 'x':
         log_info("-x xBRZ shader factor to %s.\n", optarg);
         xbrzFactor = atoi(optarg);
         if (xbrzFactor < 1)
         {
            xbrzFactor = 1;
         }
         if (xbrzFactor > 6)
         {
            xbrzFactor = 6;
         }
         break;

      case 'd':
         joystickDeadZone = atoi(optarg);
         log_info("-d Joystick deadzone to %d.\n", joystickDeadZone);
         break;
      case 'e':
         log_info("-e Check Demo Mode.\n");
         checkDemoMode = true;
        // m.temps_avant_demo = 10;
         break;

      default:
         exit(1);
      }
   }
#if 0
   logDebug = fopen("/tmp/mrboom.log", "w");
#endif
   /* Enable standard application logging */
   SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
   SDL_EventState(SDL_JOYAXISMOTION, SDL_ENABLE);
   SDL_EventState(SDL_JOYBALLMOTION, SDL_ENABLE);
   SDL_EventState(SDL_JOYHATMOTION, SDL_ENABLE);
   SDL_EventState(SDL_JOYBUTTONDOWN, SDL_ENABLE);
   SDL_EventState(SDL_JOYBUTTONUP, SDL_ENABLE);

   SDL_JoystickEventState(SDL_ENABLE);

   if ((exitAtFrame) && (exitAtFrameNumber == -1))
   {
      log_info("No VGA\n");
      noVGA = SDL_TRUE;
   }

   if ((noVGA == SDL_FALSE) && (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK) < 0))
   {
      log_error("Couldn't initialize SDL: %s\n", SDL_GetError());
      noVGA = SDL_TRUE;
      if (SDL_Init(SDL_INIT_JOYSTICK) < 0)
      {
         log_error("Couldn't initialize SDL_INIT_JOYSTICK: %s\n", SDL_GetError());
         return(1);
      }
   }

   if (!mrboom_init())
   {
      log_error("Error in init.\n");
      quit(1);
   }
   if (showVersion)
   {
      quit(0);
   }
   printKeys();
#define RESIZABLE
   if (noVGA == SDL_FALSE)
   {
      /* Create the window and renderer */
#ifndef FULLSCREEN
#ifdef RESIZABLE
      window = SDL_CreateWindow(GAME_NAME,
                                SDL_WINDOWPOS_UNDEFINED,
                                SDL_WINDOWPOS_UNDEFINED,
                                WIDTH * 3, HEIGHT * 3,
                                SDL_WINDOW_RESIZABLE
                                );
      windowID = SDL_GetWindowID(window);
#else
      SDL_DisplayMode DM;
      SDL_GetCurrentDisplayMode(0, &DM);
      int displayWidth  = DM.w;
      int displayHeight = DM.h;

      float aspectRatio = (float)displayWidth / (float)displayHeight;
      float height;
      float width;
      if (aspectRatio < ASPECT_RATIO)
      {
         width  = displayWidth;
         height = (1.f / ASPECT_RATIO) * displayWidth;
      }
      else
      {
         width  = ASPECT_RATIO * displayHeight;
         height = displayHeight;
      }

      window = SDL_CreateWindow(GAME_NAME,
                                SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED,
                                width, height,
                                SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN
                                );
#endif
#else
// FULLSCREEN
      window = SDL_CreateWindow(GAME_NAME,
                                SDL_WINDOWPOS_CENTERED,
                                SDL_WINDOWPOS_CENTERED,
                                WIDTH, HEIGHT,
                                SDL_WINDOW_FULLSCREEN | SDL_WINDOW_SHOWN | SDL_WINDOW_BORDERLESS | SDL_WINDOW_INPUT_GRABBED
                                );
#endif


      if (!window)
      {
         log_error("Couldn't set create window: %s\n", SDL_GetError());
         quit(3);
      }
      SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, "best");

      renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_PRESENTVSYNC);
      if (!renderer)
      {
         log_error("Couldn't set create renderer: %s\n", SDL_GetError());
         quit(4);
      }

      widthTexture  = WIDTH * xbrzFactor;
      heightTexture = HEIGHT * xbrzFactor;
      texture       = SDL_CreateTexture(renderer, SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STREAMING, widthTexture, heightTexture);
      if (!texture)
      {
         log_error("Couldn't set create texture: %s\n", SDL_GetError());
         quit(5);
      }
   }

   /* Loop, waiting for QUIT or the escape key */

#ifdef __EMSCRIPTEN__
   emscripten_set_main_loop(loop, 0, 1);
#else
   begin = clock();
   while (!done)
   {
      if (resizeDone)
      {
         SDL_SetWindowSize(window, width, height);
         resizeDone = false;
      }
      loop();
#ifdef DEBUG
      fps();
      if (testAI)
      {
         manageTestAI();
      }
      if (slowMode)
      {
         usleep(100000);
      }
      if ((exitAtFrame) && (frameNumber() == exitAtFrameNumber))
      {
         log_info("Exit at frame\n");
         exit(0);
      }
      if ((exitAtFrame) && (exitAtFrameNumber == -1))
      {
         static bool first = false;
         if (isGameActive() == true)
         {
            first = true;
         }
         else
         {
            if (first)
            {
               log_info("Exit at frame\n");
               for (int i = 0; i < nb_dyna; i++)
               {
                  if (victories(i))
                  {
                     log_info("team %d won\n", teamOfPlayer(i));
                     exit(i);
                  }
               }
               log_info("draw game\n");
               exit(nb_dyna);
            }
         }
      }
#endif
   }
#endif

   if (noVGA == SDL_FALSE)
   {
      SDL_DestroyRenderer(renderer);
   }
   fps();
   log_debug("quit(0)\n");
   quit(0);
   return 0;
}