6a0920abc33d31c726d73e5c90ba3b151478166e
[rocksndiamonds.git] / src / screens.c
1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
5 //                  Holger Schemel
6 //                  info@artsoft.org
7 //                  https://www.artsoft.org/
8 // ----------------------------------------------------------------------------
9 // screens.c
10 // ============================================================================
11
12 #include "libgame/libgame.h"
13
14 #include "screens.h"
15 #include "events.h"
16 #include "game.h"
17 #include "tools.h"
18 #include "editor.h"
19 #include "files.h"
20 #include "tape.h"
21 #include "anim.h"
22 #include "network.h"
23 #include "init.h"
24 #include "config.h"
25 #include "api.h"
26
27
28 #define DEBUG_JOYSTICKS         0
29
30
31 // screens on the info screen
32 #define INFO_MODE_MAIN                  0
33 #define INFO_MODE_TITLE                 1
34 #define INFO_MODE_ELEMENTS              2
35 #define INFO_MODE_MUSIC                 3
36 #define INFO_MODE_CREDITS               4
37 #define INFO_MODE_PROGRAM               5
38 #define INFO_MODE_VERSION               6
39 #define INFO_MODE_LEVELSET              7
40
41 #define MAX_INFO_MODES                  8
42
43 // screens on the setup screen
44 // (must match GFX_SPECIAL_ARG_SETUP_* values as defined in src/main.h)
45 // (should also match corresponding entries in src/conf_gfx.c)
46 #define SETUP_MODE_MAIN                 0
47 #define SETUP_MODE_GAME                 1
48 #define SETUP_MODE_ENGINES              2
49 #define SETUP_MODE_EDITOR               3
50 #define SETUP_MODE_GRAPHICS             4
51 #define SETUP_MODE_SOUND                5
52 #define SETUP_MODE_ARTWORK              6
53 #define SETUP_MODE_INPUT                7
54 #define SETUP_MODE_TOUCH                8
55 #define SETUP_MODE_SHORTCUTS            9
56 #define SETUP_MODE_SHORTCUTS_1          10
57 #define SETUP_MODE_SHORTCUTS_2          11
58 #define SETUP_MODE_SHORTCUTS_3          12
59 #define SETUP_MODE_SHORTCUTS_4          13
60 #define SETUP_MODE_SHORTCUTS_5          14
61
62 // sub-screens on the setup screen (generic)
63 #define SETUP_MODE_CHOOSE_ARTWORK       15
64 #define SETUP_MODE_CHOOSE_OTHER         16
65
66 // sub-screens on the setup screen (specific)
67 #define SETUP_MODE_CHOOSE_SCORES_TYPE   17
68 #define SETUP_MODE_CHOOSE_GAME_SPEED    18
69 #define SETUP_MODE_CHOOSE_SCROLL_DELAY  19
70 #define SETUP_MODE_CHOOSE_SNAPSHOT_MODE 20
71 #define SETUP_MODE_CHOOSE_WINDOW_SIZE   21
72 #define SETUP_MODE_CHOOSE_SCALING_TYPE  22
73 #define SETUP_MODE_CHOOSE_RENDERING     23
74 #define SETUP_MODE_CHOOSE_VSYNC         24
75 #define SETUP_MODE_CHOOSE_GRAPHICS      25
76 #define SETUP_MODE_CHOOSE_SOUNDS        26
77 #define SETUP_MODE_CHOOSE_MUSIC         27
78 #define SETUP_MODE_CHOOSE_VOLUME_SIMPLE 28
79 #define SETUP_MODE_CHOOSE_VOLUME_LOOPS  29
80 #define SETUP_MODE_CHOOSE_VOLUME_MUSIC  30
81 #define SETUP_MODE_CHOOSE_TOUCH_CONTROL 31
82 #define SETUP_MODE_CHOOSE_MOVE_DISTANCE 32
83 #define SETUP_MODE_CHOOSE_DROP_DISTANCE 33
84 #define SETUP_MODE_CHOOSE_TRANSPARENCY  34
85 #define SETUP_MODE_CHOOSE_GRID_XSIZE_0  35
86 #define SETUP_MODE_CHOOSE_GRID_YSIZE_0  36
87 #define SETUP_MODE_CHOOSE_GRID_XSIZE_1  37
88 #define SETUP_MODE_CHOOSE_GRID_YSIZE_1  38
89 #define SETUP_MODE_CONFIG_VIRT_BUTTONS  39
90
91 #define MAX_SETUP_MODES                 40
92
93 #define MAX_MENU_MODES                  MAX(MAX_INFO_MODES, MAX_SETUP_MODES)
94
95 // setup screen titles
96 #define STR_SETUP_MAIN                  "Setup"
97 #define STR_SETUP_GAME                  "Game & Menu"
98 #define STR_SETUP_ENGINES               "Game Engines"
99 #define STR_SETUP_EDITOR                "Editor"
100 #define STR_SETUP_GRAPHICS              "Graphics"
101 #define STR_SETUP_SOUND                 "Sound & Music"
102 #define STR_SETUP_ARTWORK               "Custom Artwork"
103 #define STR_SETUP_INPUT                 "Input Devices"
104 #define STR_SETUP_TOUCH                 "Touch Controls"
105 #define STR_SETUP_SHORTCUTS             "Key Shortcuts"
106 #define STR_SETUP_EXIT                  "Exit"
107 #define STR_SETUP_SAVE_AND_EXIT         "Save and Exit"
108
109 #define STR_SETUP_CHOOSE_SCORES_TYPE    "Scores Type"
110 #define STR_SETUP_CHOOSE_GAME_SPEED     "Game Speed"
111 #define STR_SETUP_CHOOSE_SCROLL_DELAY   "Scroll Delay"
112 #define STR_SETUP_CHOOSE_SNAPSHOT_MODE  "Snapshot Mode"
113 #define STR_SETUP_CHOOSE_WINDOW_SIZE    "Window Scaling"
114 #define STR_SETUP_CHOOSE_SCALING_TYPE   "Anti-Aliasing"
115 #define STR_SETUP_CHOOSE_RENDERING      "Rendering Mode"
116 #define STR_SETUP_CHOOSE_VSYNC          "VSync Mode"
117 #define STR_SETUP_CHOOSE_VOLUME_SIMPLE  "Sound Volume"
118 #define STR_SETUP_CHOOSE_VOLUME_LOOPS   "Loops Volume"
119 #define STR_SETUP_CHOOSE_VOLUME_MUSIC   "Music Volume"
120 #define STR_SETUP_CHOOSE_TOUCH_CONTROL  "Control Type"
121 #define STR_SETUP_CHOOSE_MOVE_DISTANCE  "Move Distance"
122 #define STR_SETUP_CHOOSE_DROP_DISTANCE  "Drop Distance"
123 #define STR_SETUP_CHOOSE_TRANSPARENCY   "Transparency"
124 #define STR_SETUP_CHOOSE_GRID_XSIZE_0   "Horiz. Buttons"
125 #define STR_SETUP_CHOOSE_GRID_YSIZE_0   "Vert. Buttons"
126 #define STR_SETUP_CHOOSE_GRID_XSIZE_1   "Horiz. Buttons"
127 #define STR_SETUP_CHOOSE_GRID_YSIZE_1   "Vert. Buttons"
128
129 // other screen text constants
130 #define STR_CHOOSE_TREE_EDIT            "Edit"
131 #define MENU_CHOOSE_TREE_FONT(x)        (FONT_TEXT_1 + (x))
132 #define MENU_CHOOSE_TREE_COLOR(ti, a)   TREE_COLOR(ti, a)
133
134 #define TEXT_NEXT_PAGE                  "Press any key or button for next page"
135 #define TEXT_INFO_MENU                  "Press any key or button for info menu"
136
137 // for input setup functions
138 #define SETUPINPUT_SCREEN_POS_START     0
139 #define SETUPINPUT_SCREEN_POS_EMPTY1    3
140 #define SETUPINPUT_SCREEN_POS_EMPTY2    12
141 #define SETUPINPUT_SCREEN_POS_END       13
142
143 #define MENU_SETUP_FONT_TITLE           FONT_TEXT_1
144 #define MENU_SETUP_FONT_TEXT            FONT_TITLE_2
145
146 #define MAX_SETUP_TEXT_INPUT_LEN        28
147
148 // for various menu stuff
149 #define MENU_SCREEN_START_XPOS          1
150 #define MENU_SCREEN_START_YPOS          2
151 #define MENU_SCREEN_VALUE_XPOS          (SCR_FIELDX - 3)
152 #define MENU_SCREEN_TEXT2_XPOS          (SCR_FIELDX - 2)
153 #define MENU_SCREEN_MAX_XPOS            (SCR_FIELDX - 1)
154 #define MENU_TITLE1_YPOS                8
155 #define MENU_TITLE2_YPOS                46
156 #define MENU_INFO_FONT_TITLE            FONT_TEXT_1
157 #define MENU_INFO_FONT_HEAD             FONT_TEXT_2
158 #define MENU_INFO_FONT_TEXT             FONT_TEXT_3
159 #define MENU_INFO_FONT_FOOT             FONT_TEXT_4
160 #define MENU_INFO_SPACE_HEAD            (menu.headline2_spacing_info[info_mode])
161 #define MENU_SCREEN_INFO_SPACE_LEFT     (menu.left_spacing_info[info_mode])
162 #define MENU_SCREEN_INFO_SPACE_RIGHT    (menu.right_spacing_info[info_mode])
163 #define MENU_SCREEN_INFO_SPACE_TOP      (menu.top_spacing_info[info_mode])
164 #define MENU_SCREEN_INFO_SPACE_BOTTOM   (menu.bottom_spacing_info[info_mode])
165 #define MENU_SCREEN_INFO_YSTART1        MENU_SCREEN_INFO_SPACE_TOP
166 #define MENU_SCREEN_INFO_YSTART2        (MENU_SCREEN_INFO_YSTART1 +            \
167                                          getMenuTextStep(MENU_INFO_SPACE_HEAD, \
168                                                          MENU_INFO_FONT_TITLE))
169 #define MENU_SCREEN_INFO_YSTEP          (TILEY + 4)
170 #define MENU_SCREEN_INFO_YBOTTOM        (SYSIZE - MENU_SCREEN_INFO_SPACE_BOTTOM)
171 #define MENU_SCREEN_INFO_YSIZE          (MENU_SCREEN_INFO_YBOTTOM -     \
172                                          MENU_SCREEN_INFO_YSTART2 -     \
173                                          TILEY / 2)
174 #define MAX_INFO_ELEMENTS_ON_SCREEN     128
175 #define STD_INFO_ELEMENTS_ON_SCREEN     (MENU_SCREEN_INFO_YSIZE /       \
176                                          MENU_SCREEN_INFO_YSTEP)
177 #define NUM_INFO_ELEMENTS_FROM_CONF     \
178   (menu.list_size_info[GFX_SPECIAL_ARG_INFO_ELEMENTS] > 0 ?             \
179    menu.list_size_info[GFX_SPECIAL_ARG_INFO_ELEMENTS] :                 \
180    MAX_MENU_ENTRIES_ON_SCREEN)
181 #define NUM_INFO_ELEMENTS_ON_SCREEN     MIN(MIN(STD_INFO_ELEMENTS_ON_SCREEN, \
182                                                 MAX_INFO_ELEMENTS_ON_SCREEN), \
183                                             NUM_INFO_ELEMENTS_FROM_CONF)
184 #define MAX_MENU_ENTRIES_ON_SCREEN      (SCR_FIELDY - MENU_SCREEN_START_YPOS)
185 #define MAX_MENU_TEXT_LENGTH_BIG        13
186 #define MAX_MENU_TEXT_LENGTH_MEDIUM     (MAX_MENU_TEXT_LENGTH_BIG * 2)
187
188 // screen gadget identifiers
189 #define SCREEN_CTRL_ID_PREV_LEVEL       0
190 #define SCREEN_CTRL_ID_NEXT_LEVEL       1
191 #define SCREEN_CTRL_ID_PREV_LEVEL2      2
192 #define SCREEN_CTRL_ID_NEXT_LEVEL2      3
193 #define SCREEN_CTRL_ID_PREV_SCORE       4
194 #define SCREEN_CTRL_ID_NEXT_SCORE       5
195 #define SCREEN_CTRL_ID_PLAY_TAPE        6
196 #define SCREEN_CTRL_ID_FIRST_LEVEL      7
197 #define SCREEN_CTRL_ID_LAST_LEVEL       8
198 #define SCREEN_CTRL_ID_LEVEL_NUMBER     9
199 #define SCREEN_CTRL_ID_PREV_PLAYER      10
200 #define SCREEN_CTRL_ID_NEXT_PLAYER      11
201 #define SCREEN_CTRL_ID_INSERT_SOLUTION  12
202 #define SCREEN_CTRL_ID_PLAY_SOLUTION    13
203 #define SCREEN_CTRL_ID_SWITCH_ECS_AGA   14
204 #define SCREEN_CTRL_ID_TOUCH_PREV_PAGE  15
205 #define SCREEN_CTRL_ID_TOUCH_NEXT_PAGE  16
206 #define SCREEN_CTRL_ID_TOUCH_PREV_PAGE2 17
207 #define SCREEN_CTRL_ID_TOUCH_NEXT_PAGE2 18
208
209 #define NUM_SCREEN_MENUBUTTONS          19
210
211 #define SCREEN_CTRL_ID_SCROLL_UP        19
212 #define SCREEN_CTRL_ID_SCROLL_DOWN      20
213 #define SCREEN_CTRL_ID_SCROLL_VERTICAL  21
214 #define SCREEN_CTRL_ID_NETWORK_SERVER   22
215
216 #define NUM_SCREEN_GADGETS              23
217
218 #define NUM_SCREEN_SCROLLBUTTONS        2
219 #define NUM_SCREEN_SCROLLBARS           1
220 #define NUM_SCREEN_TEXTINPUT            1
221
222 #define SCREEN_MASK_MAIN                (1 << 0)
223 #define SCREEN_MASK_MAIN_HAS_SOLUTION   (1 << 1)
224 #define SCREEN_MASK_INPUT               (1 << 2)
225 #define SCREEN_MASK_TOUCH               (1 << 3)
226 #define SCREEN_MASK_TOUCH2              (1 << 4)
227 #define SCREEN_MASK_SCORES              (1 << 5)
228 #define SCREEN_MASK_SCORES_INFO         (1 << 6)
229
230 // graphic position and size values for buttons and scrollbars
231 #define SC_MENUBUTTON_XSIZE             TILEX
232 #define SC_MENUBUTTON_YSIZE             TILEY
233
234 #define SC_SCROLLBUTTON_XSIZE           TILEX
235 #define SC_SCROLLBUTTON_YSIZE           TILEY
236
237 #define SC_SCROLLBAR_XPOS               (SXSIZE - SC_SCROLLBUTTON_XSIZE)
238
239 #define SC_SCROLL_VERTICAL_XSIZE        SC_SCROLLBUTTON_XSIZE
240 #define SC_SCROLL_VERTICAL_YSIZE        ((MAX_MENU_ENTRIES_ON_SCREEN - 2) * \
241                                          SC_SCROLLBUTTON_YSIZE)
242
243 #define SC_SCROLL_UP_XPOS               SC_SCROLLBAR_XPOS
244 #define SC_SCROLL_UP_YPOS               (2 * SC_SCROLLBUTTON_YSIZE)
245
246 #define SC_SCROLL_VERTICAL_XPOS         SC_SCROLLBAR_XPOS
247 #define SC_SCROLL_VERTICAL_YPOS         (SC_SCROLL_UP_YPOS + \
248                                          SC_SCROLLBUTTON_YSIZE)
249
250 #define SC_SCROLL_DOWN_XPOS             SC_SCROLLBAR_XPOS
251 #define SC_SCROLL_DOWN_YPOS             (SC_SCROLL_VERTICAL_YPOS + \
252                                          SC_SCROLL_VERTICAL_YSIZE)
253
254 #define SC_BORDER_SIZE                  14
255
256
257 // forward declarations of internal functions
258 static void HandleScreenGadgets(struct GadgetInfo *);
259 static void HandleSetupScreen_Generic(int, int, int, int, int);
260 static void HandleSetupScreen_Input(int, int, int, int, int);
261 static void CustomizeKeyboard(int);
262 static void ConfigureJoystick(int);
263 static void ConfigureVirtualButtons(void);
264 static void execSetupGame(void);
265 static void execSetupEngines(void);
266 static void execSetupGraphics(void);
267 static void execSetupSound(void);
268 static void execSetupTouch(void);
269 static void execSetupArtwork(void);
270 static void HandleChooseTree(int, int, int, int, int, TreeInfo **);
271
272 static void DrawChoosePlayerName(void);
273 static void DrawChooseLevelSet(void);
274 static void DrawChooseLevelNr(void);
275 static void DrawScoreInfo(int);
276 static void DrawScoreInfo_Content(int);
277 static void DrawInfoScreen(void);
278 static void DrawSetupScreen(void);
279 static void DrawTypeName(void);
280
281 static void DrawInfoScreen_NotAvailable(char *, char *);
282 static void DrawInfoScreen_HelpAnim(int, int, boolean);
283 static void DrawInfoScreen_HelpText(int, int, int, int);
284 static void HandleInfoScreen_Main(int, int, int, int, int);
285 static void HandleInfoScreen_TitleScreen(int, int, int);
286 static void HandleInfoScreen_Elements(int, int, int);
287 static void HandleInfoScreen_Music(int, int, int);
288 static void HandleInfoScreen_Credits(int, int, int);
289 static void HandleInfoScreen_Program(int, int, int);
290 static void HandleInfoScreen_Version(int);
291
292 static void ModifyGameSpeedIfNeeded(void);
293 static void DisableVsyncIfNeeded(void);
294
295 static void RedrawScreenMenuGadgets(int);
296 static void MapScreenMenuGadgets(int);
297 static void UnmapScreenMenuGadgets(int);
298 static void MapScreenGadgets(int);
299 static void UnmapScreenGadgets(void);
300 static void MapScreenTreeGadgets(TreeInfo *);
301 static void UnmapScreenTreeGadgets(void);
302
303 static void UpdateScreenMenuGadgets(int, boolean);
304 static void AdjustScoreInfoButtons_SelectScore(int, int, int);
305 static void AdjustScoreInfoButtons_PlayTape(int, int, boolean);
306
307 static boolean OfferUploadTapes(void);
308 static void execOfferUploadTapes(void);
309
310 static void DrawHallOfFame_setScoreEntries(void);
311 static void HandleHallOfFame_SelectLevel(int, int);
312 static char *getHallOfFameRankText(int, int);
313 static char *getHallOfFameScoreText(int, int);
314
315 static struct TokenInfo *getSetupInfoFinal(struct TokenInfo *);
316
317 static struct GadgetInfo *screen_gadget[NUM_SCREEN_GADGETS];
318
319 static int info_mode = INFO_MODE_MAIN;
320 static int setup_mode = SETUP_MODE_MAIN;
321
322 static TreeInfo *window_sizes = NULL;
323 static TreeInfo *window_size_current = NULL;
324
325 static TreeInfo *scaling_types = NULL;
326 static TreeInfo *scaling_type_current = NULL;
327
328 static TreeInfo *rendering_modes = NULL;
329 static TreeInfo *rendering_mode_current = NULL;
330
331 static TreeInfo *vsync_modes = NULL;
332 static TreeInfo *vsync_mode_current = NULL;
333
334 static TreeInfo *scroll_delays = NULL;
335 static TreeInfo *scroll_delay_current = NULL;
336
337 static TreeInfo *snapshot_modes = NULL;
338 static TreeInfo *snapshot_mode_current = NULL;
339
340 static TreeInfo *scores_types = NULL;
341 static TreeInfo *scores_type_current = NULL;
342
343 static TreeInfo *game_speeds_normal = NULL;
344 static TreeInfo *game_speeds_extended = NULL;
345 static TreeInfo *game_speeds = NULL;
346 static TreeInfo *game_speed_current = NULL;
347
348 static TreeInfo *volumes_simple = NULL;
349 static TreeInfo *volume_simple_current = NULL;
350
351 static TreeInfo *volumes_loops = NULL;
352 static TreeInfo *volume_loops_current = NULL;
353
354 static TreeInfo *volumes_music = NULL;
355 static TreeInfo *volume_music_current = NULL;
356
357 static TreeInfo *touch_controls = NULL;
358 static TreeInfo *touch_control_current = NULL;
359
360 static TreeInfo *move_distances = NULL;
361 static TreeInfo *move_distance_current = NULL;
362
363 static TreeInfo *drop_distances = NULL;
364 static TreeInfo *drop_distance_current = NULL;
365
366 static TreeInfo *transparencies = NULL;
367 static TreeInfo *transparency_current = NULL;
368
369 static TreeInfo *grid_sizes[2][2] = { { NULL, NULL }, { NULL, NULL } };
370 static TreeInfo *grid_size_current[2][2] = { { NULL, NULL }, { NULL, NULL } };
371
372 static TreeInfo *player_name = NULL;
373 static TreeInfo *player_name_current = NULL;
374
375 static TreeInfo *level_number = NULL;
376 static TreeInfo *level_number_current = NULL;
377
378 static TreeInfo *score_entries = NULL;
379 static TreeInfo *score_entry_current = NULL;
380
381 static struct ValueTextInfo window_sizes_list[] =
382 {
383   {     50,     "50 %"                          },
384   {     80,     "80 %"                          },
385   {     90,     "90 %"                          },
386   {     100,    "100 % (Default)"               },
387   {     110,    "110 %"                         },
388   {     120,    "120 %"                         },
389   {     130,    "130 %"                         },
390   {     140,    "140 %"                         },
391   {     150,    "150 %"                         },
392   {     200,    "200 %"                         },
393   {     250,    "250 %"                         },
394   {     300,    "300 %"                         },
395
396   {     -1,     NULL                            },
397 };
398
399 static struct StringValueTextInfo scaling_types_list[] =
400 {
401   {     SCALING_QUALITY_NEAREST, "Off"          },
402   {     SCALING_QUALITY_LINEAR,  "Linear"       },
403   {     SCALING_QUALITY_BEST,    "Anisotropic"  },
404
405   {     NULL,                    NULL           },
406 };
407
408 static struct StringValueTextInfo rendering_modes_list[] =
409 {
410   {     STR_SPECIAL_RENDERING_OFF,      "Off (May show artifacts, fast)" },
411   {     STR_SPECIAL_RENDERING_BITMAP,   "Bitmap/Texture mode (slower)"   },
412 #if DEBUG
413   // this mode may work under certain conditions, but does not work on Windows
414   {     STR_SPECIAL_RENDERING_TARGET,   "Target Texture mode (slower)"   },
415 #endif
416   {     STR_SPECIAL_RENDERING_DOUBLE,   "Double Texture mode (slower)"   },
417
418   {     NULL,                            NULL                            },
419 };
420
421 static struct StringValueTextInfo vsync_modes_list[] =
422 {
423   {     STR_VSYNC_MODE_OFF,             "Off"           },
424   {     STR_VSYNC_MODE_NORMAL,          "Normal"        },
425   {     STR_VSYNC_MODE_ADAPTIVE,        "Adaptive"      },
426
427   {     NULL,                            NULL           },
428 };
429
430 static struct StringValueTextInfo scores_types_list[] =
431 {
432   {     STR_SCORES_TYPE_LOCAL_ONLY,         "Local scores only"         },
433   {     STR_SCORES_TYPE_SERVER_ONLY,        "Server scores only"        },
434   {     STR_SCORES_TYPE_LOCAL_AND_SERVER,   "Local and server scores"   },
435
436   {     NULL,                           NULL            },
437 };
438
439 static struct ValueTextInfo game_speeds_list_normal[] =
440 {
441   {     30,     "Very Slow"                     },
442   {     25,     "Slow"                          },
443   {     20,     "Normal"                        },
444   {     15,     "Fast"                          },
445   {     10,     "Very Fast"                     },
446
447   {     -1,     NULL                            },
448 };
449
450 static struct ValueTextInfo game_speeds_list_extended[] =
451 {
452   {     1000,   "1 fps (Extremely Slow)"        },
453   {     500,    "2 fps"                         },
454   {     200,    "5 fps"                         },
455   {     100,    "10 fps"                        },
456   {     50,     "20 fps"                        },
457   {     29,     "35 fps (Original Supaplex)"    },
458   {     25,     "40 fps"                        },
459   {     20,     "50 fps (=== Normal Speed ===)" },
460   {     16,     "60 fps (60 Hz VSync Speed)"    },
461   {     14,     "70 fps (Maximum Supaplex)"     },
462   {     10,     "100 fps"                       },
463   {     5,      "200 fps"                       },
464   {     2,      "500 fps"                       },
465   {     1,      "1000 fps (Extremely Fast)"     },
466
467   {     -1,     NULL                            },
468 };
469
470 static struct ValueTextInfo *game_speeds_list;
471
472 static struct ValueTextInfo scroll_delays_list[] =
473 {
474   {     0,      "0 Tiles (No Scroll Delay)"     },
475   {     1,      "1 Tile"                        },
476   {     2,      "2 Tiles"                       },
477   {     3,      "3 Tiles (Default)"             },
478   {     4,      "4 Tiles"                       },
479   {     5,      "5 Tiles"                       },
480   {     6,      "6 Tiles"                       },
481   {     7,      "7 Tiles"                       },
482   {     8,      "8 Tiles (Maximum Scroll Delay)"},
483
484   {     -1,     NULL                            },
485 };
486
487 static struct StringValueTextInfo snapshot_modes_list[] =
488 {
489   {     STR_SNAPSHOT_MODE_OFF,                  "Off"           },
490   {     STR_SNAPSHOT_MODE_EVERY_STEP,           "Every Step"    },
491   {     STR_SNAPSHOT_MODE_EVERY_MOVE,           "Every Move"    },
492   {     STR_SNAPSHOT_MODE_EVERY_COLLECT,        "Every Collect" },
493
494   {     NULL,                                   NULL            },
495 };
496
497 static struct ValueTextInfo volumes_list[] =
498 {
499   {     0,      "0 %"                           },
500   {     1,      "1 %"                           },
501   {     2,      "2 %"                           },
502   {     5,      "5 %"                           },
503   {     10,     "10 %"                          },
504   {     20,     "20 %"                          },
505   {     30,     "30 %"                          },
506   {     40,     "40 %"                          },
507   {     50,     "50 %"                          },
508   {     60,     "60 %"                          },
509   {     70,     "70 %"                          },
510   {     80,     "80 %"                          },
511   {     90,     "90 %"                          },
512   {     100,    "100 %"                         },
513
514   {     -1,     NULL                            },
515 };
516
517 static struct StringValueTextInfo touch_controls_list[] =
518 {
519   {     TOUCH_CONTROL_OFF,              "Off"                   },
520   {     TOUCH_CONTROL_VIRTUAL_BUTTONS,  "Virtual Buttons"       },
521   {     TOUCH_CONTROL_WIPE_GESTURES,    "Wipe Gestures"         },
522   {     TOUCH_CONTROL_FOLLOW_FINGER,    "Follow Finger"         },
523
524   {     NULL,                           NULL                    },
525 };
526
527 static struct ValueTextInfo distances_list[] =
528 {
529   {     1,      "1 %"                           },
530   {     2,      "2 %"                           },
531   {     3,      "3 %"                           },
532   {     4,      "4 %"                           },
533   {     5,      "5 %"                           },
534   {     10,     "10 %"                          },
535   {     15,     "15 %"                          },
536   {     20,     "20 %"                          },
537   {     25,     "25 %"                          },
538
539   {     -1,     NULL                            },
540 };
541
542 static struct ValueTextInfo transparencies_list[] =
543 {
544   {     0,      "0 % (Opaque)"                  },
545   {     10,     "10 %"                          },
546   {     20,     "20 %"                          },
547   {     30,     "30 %"                          },
548   {     40,     "40 %"                          },
549   {     50,     "50 %"                          },
550   {     60,     "60 %"                          },
551   {     70,     "70 %"                          },
552   {     80,     "80 %"                          },
553   {     90,     "90 %"                          },
554   {     100,    "100 % (Invisible)"             },
555
556   {     -1,     NULL                            },
557 };
558
559 static struct ValueTextInfo grid_sizes_list[] =
560 {
561   {     3,      "3"                             },
562   {     4,      "4"                             },
563   {     5,      "5"                             },
564   {     6,      "6"                             },
565   {     7,      "7"                             },
566   {     8,      "8"                             },
567   {     9,      "9"                             },
568   {     10,     "10"                            },
569   {     11,     "11"                            },
570   {     12,     "12"                            },
571   {     13,     "13"                            },
572   {     14,     "14"                            },
573   {     15,     "15"                            },
574   {     16,     "16"                            },
575   {     17,     "17"                            },
576   {     18,     "18"                            },
577   {     19,     "19"                            },
578   {     20,     "20"                            },
579   {     21,     "21"                            },
580   {     22,     "22"                            },
581   {     23,     "23"                            },
582   {     24,     "24"                            },
583   {     25,     "25"                            },
584   {     26,     "26"                            },
585   {     27,     "27"                            },
586   {     28,     "28"                            },
587   {     29,     "29"                            },
588   {     30,     "30"                            },
589   {     31,     "31"                            },
590   {     32,     "32"                            },
591
592   {     -1,     NULL                            },
593 };
594
595 static int align_xoffset = 0;
596 static int align_yoffset = 0;
597
598 #define DRAW_MODE(s)            ((s) >= GAME_MODE_MAIN &&               \
599                                  (s) <= GAME_MODE_SETUP ? (s) :         \
600                                  (s) == GAME_MODE_PSEUDO_TYPENAME ?     \
601                                  GAME_MODE_MAIN :                       \
602                                  (s) == GAME_MODE_PSEUDO_TYPENAMES ?    \
603                                  GAME_MODE_NAMES : GAME_MODE_DEFAULT)
604
605 // (there are no draw offset definitions needed for INFO_MODE_TITLE)
606 #define DRAW_MODE_INFO(i)       ((i) >= INFO_MODE_TITLE &&              \
607                                  (i) <= INFO_MODE_LEVELSET ? (i) :      \
608                                  INFO_MODE_MAIN)
609
610 #define DRAW_MODE_SETUP(i)      ((i) >= SETUP_MODE_MAIN &&              \
611                                  (i) <= SETUP_MODE_SHORTCUTS_5 ? (i) :  \
612                                  (i) >= SETUP_MODE_CHOOSE_GRAPHICS &&   \
613                                  (i) <= SETUP_MODE_CHOOSE_MUSIC ?       \
614                                  SETUP_MODE_CHOOSE_ARTWORK :            \
615                                  SETUP_MODE_CHOOSE_OTHER)
616
617 #define DRAW_XOFFSET_INFO(i)    (DRAW_MODE_INFO(i) == INFO_MODE_MAIN ?  \
618                                  menu.draw_xoffset[GAME_MODE_INFO] :    \
619                                  menu.draw_xoffset_info[DRAW_MODE_INFO(i)])
620 #define DRAW_YOFFSET_INFO(i)    (DRAW_MODE_INFO(i) == INFO_MODE_MAIN ?  \
621                                  menu.draw_yoffset[GAME_MODE_INFO] :    \
622                                  menu.draw_yoffset_info[DRAW_MODE_INFO(i)])
623 #define EXTRA_SPACING_INFO(i)   (DRAW_MODE_INFO(i) == INFO_MODE_MAIN ? \
624                                  menu.extra_spacing[GAME_MODE_INFO] :   \
625                                  menu.extra_spacing_info[DRAW_MODE_INFO(i)])
626
627 #define DRAW_XOFFSET_SETUP(i)   (DRAW_MODE_SETUP(i) == SETUP_MODE_MAIN ? \
628                                  menu.draw_xoffset[GAME_MODE_SETUP] :   \
629                                  menu.draw_xoffset_setup[DRAW_MODE_SETUP(i)])
630 #define DRAW_YOFFSET_SETUP(i)   (DRAW_MODE_SETUP(i) == SETUP_MODE_MAIN ? \
631                                  menu.draw_yoffset[GAME_MODE_SETUP] :   \
632                                  menu.draw_yoffset_setup[DRAW_MODE_SETUP(i)])
633 #define EXTRA_SPACING_SETUP(i)  (DRAW_MODE_SETUP(i) == SETUP_MODE_MAIN ? \
634                                  menu.extra_spacing[GAME_MODE_SETUP] :  \
635                                  menu.extra_spacing_setup[DRAW_MODE_SETUP(i)])
636
637 #define EXTRA_SPACING_SCORES(i) (EXTRA_SPACING_INFO(i))
638
639 #define EXTRA_SPACING_SCOREINFO(i) (menu.extra_spacing[GAME_MODE_SCOREINFO])
640
641 #define DRAW_XOFFSET(s)         ((s) == GAME_MODE_INFO ?                \
642                                  DRAW_XOFFSET_INFO(info_mode) :         \
643                                  (s) == GAME_MODE_SETUP ?               \
644                                  DRAW_XOFFSET_SETUP(setup_mode) :       \
645                                  menu.draw_xoffset[DRAW_MODE(s)])
646 #define DRAW_YOFFSET(s)         ((s) == GAME_MODE_INFO ?                \
647                                  DRAW_YOFFSET_INFO(info_mode) :         \
648                                  (s) == GAME_MODE_SETUP ?               \
649                                  DRAW_YOFFSET_SETUP(setup_mode) :       \
650                                  menu.draw_yoffset[DRAW_MODE(s)])
651 #define EXTRA_SPACING(s)        ((s) == GAME_MODE_INFO ?                \
652                                  EXTRA_SPACING_INFO(info_mode) :        \
653                                  (s) == GAME_MODE_SETUP ?               \
654                                  EXTRA_SPACING_SETUP(setup_mode) :      \
655                                  (s) == GAME_MODE_SCORES ?              \
656                                  EXTRA_SPACING_SCORES(info_mode) :      \
657                                  menu.extra_spacing[DRAW_MODE(s)])
658
659 #define mSX                     (SX + DRAW_XOFFSET(game_status))
660 #define mSY                     (SY + DRAW_YOFFSET(game_status))
661
662 #define amSX                    (mSX + align_xoffset)
663 #define amSY                    (mSY + align_yoffset)
664
665 #define NUM_MENU_ENTRIES_ON_SCREEN (menu.list_size[game_status] > 2 ?   \
666                                     menu.list_size[game_status] :       \
667                                     MAX_MENU_ENTRIES_ON_SCREEN)
668
669 #define IN_VIS_MENU(x, y)       IN_FIELD(x, y, SCR_FIELDX,              \
670                                          NUM_MENU_ENTRIES_ON_SCREEN)
671
672
673 // title display and control definitions
674
675 #define MAX_NUM_TITLE_SCREENS   (2 * MAX_NUM_TITLE_IMAGES +             \
676                                  2 * MAX_NUM_TITLE_MESSAGES)
677
678 #define NO_DIRECT_LEVEL_SELECT  (-1)
679
680
681 static int num_title_screens = 0;
682
683 struct TitleControlInfo
684 {
685   boolean is_image;
686   boolean initial;
687   boolean first;
688   int local_nr;
689   int sort_priority;
690 };
691
692 struct TitleControlInfo title_controls[MAX_NUM_TITLE_SCREENS];
693
694
695 // credits screens definitions
696
697 static int num_credits_screens = 0;
698 static boolean use_global_credits_screens = FALSE;
699
700
701 // program info screens definitions
702
703 static int num_program_info_screens = 0;
704
705
706 // main menu display and control definitions
707
708 #define MAIN_CONTROL_NAME                       0
709 #define MAIN_CONTROL_LEVELS                     1
710 #define MAIN_CONTROL_SCORES                     2
711 #define MAIN_CONTROL_EDITOR                     3
712 #define MAIN_CONTROL_INFO                       4
713 #define MAIN_CONTROL_GAME                       5
714 #define MAIN_CONTROL_SETUP                      6
715 #define MAIN_CONTROL_QUIT                       7
716 #define MAIN_CONTROL_PREV_LEVEL                 8
717 #define MAIN_CONTROL_NEXT_LEVEL                 9
718 #define MAIN_CONTROL_FIRST_LEVEL                10
719 #define MAIN_CONTROL_LAST_LEVEL                 11
720 #define MAIN_CONTROL_LEVEL_NUMBER               12
721 #define MAIN_CONTROL_LEVEL_INFO_1               13
722 #define MAIN_CONTROL_LEVEL_INFO_2               14
723 #define MAIN_CONTROL_LEVEL_NAME                 15
724 #define MAIN_CONTROL_LEVEL_AUTHOR               16
725 #define MAIN_CONTROL_LEVEL_YEAR                 17
726 #define MAIN_CONTROL_LEVEL_IMPORTED_FROM        18
727 #define MAIN_CONTROL_LEVEL_IMPORTED_BY          19
728 #define MAIN_CONTROL_LEVEL_TESTED_BY            20
729 #define MAIN_CONTROL_TITLE_1                    21
730 #define MAIN_CONTROL_TITLE_2                    22
731 #define MAIN_CONTROL_TITLE_3                    23
732
733 static char str_main_text_name[10];
734 static char str_main_text_first_level[10];
735 static char str_main_text_last_level[10];
736 static char str_main_text_level_number[10];
737
738 static char network_server_hostname[MAX_SETUP_TEXT_INPUT_LEN + 1];
739
740 static char *main_text_name                     = str_main_text_name;
741 static char *main_text_first_level              = str_main_text_first_level;
742 static char *main_text_last_level               = str_main_text_last_level;
743 static char *main_text_level_number             = str_main_text_level_number;
744 static char *main_text_levels                   = "Levelset";
745 static char *main_text_scores                   = "Hall Of Fame";
746 static char *main_text_editor                   = "Level Creator";
747 static char *main_text_info                     = "Info Screen";
748 static char *main_text_game                     = "Start Game";
749 static char *main_text_setup                    = "Setup";
750 static char *main_text_quit                     = "Quit";
751 static char *main_text_level_name               = level.name;
752 static char *main_text_level_author             = level.author;
753 static char *main_text_level_year               = NULL;
754 static char *main_text_level_imported_from      = NULL;
755 static char *main_text_level_imported_by        = NULL;
756 static char *main_text_level_tested_by          = NULL;
757 static char *main_text_title_1                  = NULL;
758 static char *main_text_title_2                  = NULL;
759 static char *main_text_title_3                  = NULL;
760
761 extern char debug_xsn_mode[];
762
763 struct MainControlInfo
764 {
765   int nr;
766
767   struct MenuPosInfo *pos_button;
768   int button_graphic;
769
770   struct TextPosInfo *pos_text;
771   char **text;
772
773   struct TextPosInfo *pos_input;
774   char **input;
775 };
776
777 static struct MainControlInfo main_controls[] =
778 {
779   {
780     MAIN_CONTROL_NAME,
781     &menu.main.button.name,             IMG_MENU_BUTTON_NAME,
782     &menu.main.text.name,               &main_text_name,
783     &menu.main.input.name,              &setup.player_name,
784   },
785   {
786     MAIN_CONTROL_LEVELS,
787     &menu.main.button.levels,           IMG_MENU_BUTTON_LEVELS,
788     &menu.main.text.levels,             &main_text_levels,
789     NULL,                               NULL,
790   },
791   {
792     MAIN_CONTROL_SCORES,
793     &menu.main.button.scores,           IMG_MENU_BUTTON_SCORES,
794     &menu.main.text.scores,             &main_text_scores,
795     NULL,                               NULL,
796   },
797   {
798     MAIN_CONTROL_EDITOR,
799     &menu.main.button.editor,           IMG_MENU_BUTTON_EDITOR,
800     &menu.main.text.editor,             &main_text_editor,
801     NULL,                               NULL,
802   },
803   {
804     MAIN_CONTROL_INFO,
805     &menu.main.button.info,             IMG_MENU_BUTTON_INFO,
806     &menu.main.text.info,               &main_text_info,
807     NULL,                               NULL,
808   },
809   {
810     MAIN_CONTROL_GAME,
811     &menu.main.button.game,             IMG_MENU_BUTTON_GAME,
812     &menu.main.text.game,               &main_text_game,
813     NULL,                               NULL,
814   },
815   {
816     MAIN_CONTROL_SETUP,
817     &menu.main.button.setup,            IMG_MENU_BUTTON_SETUP,
818     &menu.main.text.setup,              &main_text_setup,
819     NULL,                               NULL,
820   },
821   {
822     MAIN_CONTROL_QUIT,
823     &menu.main.button.quit,             IMG_MENU_BUTTON_QUIT,
824     &menu.main.text.quit,               &main_text_quit,
825     NULL,                               NULL,
826   },
827   {
828     MAIN_CONTROL_PREV_LEVEL,
829     NULL,                               -1,
830     NULL,                               NULL,
831     NULL,                               NULL,
832   },
833   {
834     MAIN_CONTROL_NEXT_LEVEL,
835     NULL,                               -1,
836     NULL,                               NULL,
837     NULL,                               NULL,
838   },
839   {
840     MAIN_CONTROL_FIRST_LEVEL,
841     NULL,                               -1,
842     &menu.main.text.first_level,        &main_text_first_level,
843     NULL,                               NULL,
844   },
845   {
846     MAIN_CONTROL_LAST_LEVEL,
847     NULL,                               -1,
848     &menu.main.text.last_level,         &main_text_last_level,
849     NULL,                               NULL,
850   },
851   {
852     MAIN_CONTROL_LEVEL_NUMBER,
853     NULL,                               -1,
854     &menu.main.text.level_number,       &main_text_level_number,
855     NULL,                               NULL,
856   },
857   {
858     MAIN_CONTROL_LEVEL_INFO_1,
859     NULL,                               -1,
860     &menu.main.text.level_info_1,       NULL,
861     NULL,                               NULL,
862   },
863   {
864     MAIN_CONTROL_LEVEL_INFO_2,
865     NULL,                               -1,
866     &menu.main.text.level_info_2,       NULL,
867     NULL,                               NULL,
868   },
869   {
870     MAIN_CONTROL_LEVEL_NAME,
871     NULL,                               -1,
872     &menu.main.text.level_name,         &main_text_level_name,
873     NULL,                               NULL,
874   },
875   {
876     MAIN_CONTROL_LEVEL_AUTHOR,
877     NULL,                               -1,
878     &menu.main.text.level_author,       &main_text_level_author,
879     NULL,                               NULL,
880   },
881   {
882     MAIN_CONTROL_LEVEL_YEAR,
883     NULL,                               -1,
884     &menu.main.text.level_year,         &main_text_level_year,
885     NULL,                               NULL,
886   },
887   {
888     MAIN_CONTROL_LEVEL_IMPORTED_FROM,
889     NULL,                               -1,
890     &menu.main.text.level_imported_from, &main_text_level_imported_from,
891     NULL,                               NULL,
892   },
893   {
894     MAIN_CONTROL_LEVEL_IMPORTED_BY,
895     NULL,                               -1,
896     &menu.main.text.level_imported_by,  &main_text_level_imported_by,
897     NULL,                               NULL,
898   },
899   {
900     MAIN_CONTROL_LEVEL_TESTED_BY,
901     NULL,                               -1,
902     &menu.main.text.level_tested_by,    &main_text_level_tested_by,
903     NULL,                               NULL,
904   },
905   {
906     MAIN_CONTROL_TITLE_1,
907     NULL,                               -1,
908     &menu.main.text.title_1,            &main_text_title_1,
909     NULL,                               NULL,
910   },
911   {
912     MAIN_CONTROL_TITLE_2,
913     NULL,                               -1,
914     &menu.main.text.title_2,            &main_text_title_2,
915     NULL,                               NULL,
916   },
917   {
918     MAIN_CONTROL_TITLE_3,
919     NULL,                               -1,
920     &menu.main.text.title_3,            &main_text_title_3,
921     NULL,                               NULL,
922   },
923
924   {
925     -1,
926     NULL,                               -1,
927     NULL,                               NULL,
928     NULL,                               NULL,
929   }
930 };
931
932
933 static int getTitleScreenGraphic(int nr, boolean initial)
934 {
935   return (initial ? IMG_TITLESCREEN_INITIAL_1 : IMG_TITLESCREEN_1) + nr;
936 }
937
938 static struct TitleMessageInfo *getTitleMessageInfo(int nr, boolean initial)
939 {
940   return (initial ? &titlemessage_initial[nr] : &titlemessage[nr]);
941 }
942
943 #if 0
944 static int getTitleScreenGameMode(boolean initial)
945 {
946   return (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
947 }
948 #endif
949
950 static int getTitleMessageGameMode(boolean initial)
951 {
952   return (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
953 }
954
955 static int getTitleAnimMode(struct TitleControlInfo *tci)
956 {
957   int base = (tci->initial ? GAME_MODE_TITLE_INITIAL_1 : GAME_MODE_TITLE_1);
958
959   return base + tci->local_nr;
960 }
961
962 #if 0
963 static int getTitleScreenBackground(boolean initial)
964 {
965   return (initial ? IMG_BACKGROUND_TITLE_INITIAL : IMG_BACKGROUND_TITLE);
966 }
967 #endif
968
969 #if 0
970 static int getTitleMessageBackground(int nr, boolean initial)
971 {
972   return (initial ? IMG_BACKGROUND_TITLE_INITIAL : IMG_BACKGROUND_TITLE);
973 }
974 #endif
975
976 static int getTitleBackground(int nr, boolean initial, boolean is_image)
977 {
978   int base = (is_image ?
979               (initial ? IMG_BACKGROUND_TITLESCREEN_INITIAL_1 :
980                          IMG_BACKGROUND_TITLESCREEN_1) :
981               (initial ? IMG_BACKGROUND_TITLEMESSAGE_INITIAL_1 :
982                          IMG_BACKGROUND_TITLEMESSAGE_1));
983   int graphic_global = (initial ? IMG_BACKGROUND_TITLE_INITIAL :
984                                   IMG_BACKGROUND_TITLE);
985   int graphic_local = base + nr;
986
987   if (graphic_info[graphic_local].bitmap != NULL)
988     return graphic_local;
989
990   if (graphic_info[graphic_global].bitmap != NULL)
991     return graphic_global;
992
993   return IMG_UNDEFINED;
994 }
995
996 static int getTitleSound(struct TitleControlInfo *tci)
997 {
998   boolean is_image = tci->is_image;
999   int initial = tci->initial;
1000   int nr = tci->local_nr;
1001   int mode = (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
1002   int base = (is_image ?
1003               (initial ? SND_BACKGROUND_TITLESCREEN_INITIAL_1 :
1004                          SND_BACKGROUND_TITLESCREEN_1) :
1005               (initial ? SND_BACKGROUND_TITLEMESSAGE_INITIAL_1 :
1006                          SND_BACKGROUND_TITLEMESSAGE_1));
1007   int sound_global = menu.sound[mode];
1008   int sound_local = base + nr;
1009
1010 #if 0
1011   Debug("screens:getTitleSound", "%d, %d, %d: %d ['%s'], %d ['%s']",
1012         nr, initial, is_image,
1013         sound_global, getSoundListEntry(sound_global)->filename,
1014         sound_local, getSoundListEntry(sound_local)->filename);
1015 #endif
1016
1017   if (!strEqual(getSoundListEntry(sound_local)->filename, UNDEFINED_FILENAME))
1018     return sound_local;
1019
1020   if (!strEqual(getSoundListEntry(sound_global)->filename, UNDEFINED_FILENAME))
1021     return sound_global;
1022
1023   return SND_UNDEFINED;
1024 }
1025
1026 static int getTitleMusic(struct TitleControlInfo *tci)
1027 {
1028   boolean is_image = tci->is_image;
1029   int initial = tci->initial;
1030   int nr = tci->local_nr;
1031   int mode = (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
1032   int base = (is_image ?
1033               (initial ? MUS_BACKGROUND_TITLESCREEN_INITIAL_1 :
1034                          MUS_BACKGROUND_TITLESCREEN_1) :
1035               (initial ? MUS_BACKGROUND_TITLEMESSAGE_INITIAL_1 :
1036                          MUS_BACKGROUND_TITLEMESSAGE_1));
1037   int music_global = menu.music[mode];
1038   int music_local = base + nr;
1039
1040 #if 0
1041   Debug("screens:getTitleMusic", "%d, %d, %d: %d ['%s'], %d ['%s']",
1042         nr, initial, is_image,
1043         music_global, getMusicListEntry(music_global)->filename,
1044         music_local, getMusicListEntry(music_local)->filename);
1045 #endif
1046
1047   if (!strEqual(getMusicListEntry(music_local)->filename, UNDEFINED_FILENAME))
1048     return music_local;
1049
1050   if (!strEqual(getMusicListEntry(music_global)->filename, UNDEFINED_FILENAME))
1051     return music_global;
1052
1053   return MUS_UNDEFINED;
1054 }
1055
1056 static struct TitleFadingInfo getTitleFading(struct TitleControlInfo *tci)
1057 {
1058   boolean is_image = tci->is_image;
1059   boolean initial = tci->initial;
1060   boolean first = tci->first;
1061   int nr = tci->local_nr;
1062   struct TitleMessageInfo tmi;
1063   struct TitleFadingInfo ti;
1064
1065   tmi = (is_image ? (initial ? (first ?
1066                                 titlescreen_initial_first[nr] :
1067                                 titlescreen_initial[nr])
1068                              : (first ?
1069                                 titlescreen_first[nr] :
1070                                 titlescreen[nr]))
1071                   : (initial ? (first ?
1072                                 titlemessage_initial_first[nr] :
1073                                 titlemessage_initial[nr])
1074                              : (first ?
1075                                 titlemessage_first[nr] :
1076                                 titlemessage[nr])));
1077
1078   ti.fade_mode  = tmi.fade_mode;
1079   ti.fade_delay = tmi.fade_delay;
1080   ti.post_delay = tmi.post_delay;
1081   ti.auto_delay = tmi.auto_delay;
1082   ti.auto_delay_unit = tmi.auto_delay_unit;
1083
1084   return ti;
1085 }
1086
1087 static int compareTitleControlInfo(const void *object1, const void *object2)
1088 {
1089   const struct TitleControlInfo *tci1 = (struct TitleControlInfo *)object1;
1090   const struct TitleControlInfo *tci2 = (struct TitleControlInfo *)object2;
1091   int compare_result;
1092
1093   if (tci1->initial != tci2->initial)
1094     compare_result = (tci1->initial ? -1 : +1);
1095   else if (tci1->sort_priority != tci2->sort_priority)
1096     compare_result = tci1->sort_priority - tci2->sort_priority;
1097   else if (tci1->is_image != tci2->is_image)
1098     compare_result = (tci1->is_image ? -1 : +1);
1099   else
1100     compare_result = tci1->local_nr - tci2->local_nr;
1101
1102   return compare_result;
1103 }
1104
1105 static void InitializeTitleControlsExt_AddTitleInfo(boolean is_image,
1106                                                     boolean initial,
1107                                                     int nr, int sort_priority)
1108 {
1109   title_controls[num_title_screens].is_image = is_image;
1110   title_controls[num_title_screens].initial = initial;
1111   title_controls[num_title_screens].local_nr = nr;
1112   title_controls[num_title_screens].sort_priority = sort_priority;
1113
1114   title_controls[num_title_screens].first = FALSE;      // will be set later
1115
1116   num_title_screens++;
1117 }
1118
1119 static void InitializeTitleControls_CheckTitleInfo(boolean initial)
1120 {
1121   int i;
1122
1123   for (i = 0; i < MAX_NUM_TITLE_IMAGES; i++)
1124   {
1125     int graphic = getTitleScreenGraphic(i, initial);
1126     Bitmap *bitmap = graphic_info[graphic].bitmap;
1127     int sort_priority = graphic_info[graphic].sort_priority;
1128
1129     if (bitmap != NULL)
1130       InitializeTitleControlsExt_AddTitleInfo(TRUE, initial, i, sort_priority);
1131   }
1132
1133   for (i = 0; i < MAX_NUM_TITLE_MESSAGES; i++)
1134   {
1135     struct TitleMessageInfo *tmi = getTitleMessageInfo(i, initial);
1136     char *filename = getLevelSetTitleMessageFilename(i, initial);
1137     int sort_priority = tmi->sort_priority;
1138
1139     if (filename != NULL)
1140       InitializeTitleControlsExt_AddTitleInfo(FALSE, initial, i, sort_priority);
1141   }
1142 }
1143
1144 static void InitializeTitleControls(boolean show_title_initial)
1145 {
1146   num_title_screens = 0;
1147
1148   // 1st step: initialize title screens for game start (only when starting)
1149   if (show_title_initial)
1150     InitializeTitleControls_CheckTitleInfo(TRUE);
1151
1152   // 2nd step: initialize title screens for current level set
1153   InitializeTitleControls_CheckTitleInfo(FALSE);
1154
1155   // sort title screens according to sort_priority and title number
1156   qsort(title_controls, num_title_screens, sizeof(struct TitleControlInfo),
1157         compareTitleControlInfo);
1158
1159   // mark first title screen
1160   title_controls[0].first = TRUE;
1161 }
1162
1163 static boolean visibleMenuPos(struct MenuPosInfo *pos)
1164 {
1165   return (pos != NULL && pos->x != -1 && pos->y != -1);
1166 }
1167
1168 static boolean visibleTextPos(struct TextPosInfo *pos)
1169 {
1170   return (pos != NULL && pos->x != -1 && pos->y != -1);
1171 }
1172
1173 static void InitializeMainControls(void)
1174 {
1175   boolean local_team_mode = (!network.enabled && setup.team_mode);
1176   int i;
1177
1178   // set main control text values to dynamically determined values
1179   sprintf(main_text_name,         "%s",   local_team_mode ? "Team:" : "Name:");
1180
1181   strcpy(main_text_first_level,  int2str(leveldir_current->first_level,
1182                                          menu.main.text.first_level.size));
1183   strcpy(main_text_last_level,   int2str(leveldir_current->last_level,
1184                                          menu.main.text.last_level.size));
1185   strcpy(main_text_level_number, int2str(level_nr,
1186                                          menu.main.text.level_number.size));
1187
1188   main_text_level_year          = leveldir_current->year;
1189   main_text_level_imported_from = leveldir_current->imported_from;
1190   main_text_level_imported_by   = leveldir_current->imported_by;
1191   main_text_level_tested_by     = leveldir_current->tested_by;
1192
1193   main_text_title_1 = getConfigProgramTitleString();
1194   main_text_title_2 = getConfigProgramCopyrightString();
1195   main_text_title_3 = getConfigProgramCompanyString();
1196
1197   // set main control screen positions to dynamically determined values
1198   for (i = 0; main_controls[i].nr != -1; i++)
1199   {
1200     struct MainControlInfo *mci = &main_controls[i];
1201     int nr                         = mci->nr;
1202     struct MenuPosInfo *pos_button = mci->pos_button;
1203     struct TextPosInfo *pos_text   = mci->pos_text;
1204     struct TextPosInfo *pos_input  = mci->pos_input;
1205     char *text                     = (mci->text  ? *mci->text  : NULL);
1206     char *input                    = (mci->input ? *mci->input : NULL);
1207     int button_graphic             = mci->button_graphic;
1208     int font_text                  = (pos_text  ? pos_text->font  : -1);
1209     int font_input                 = (pos_input ? pos_input->font : -1);
1210
1211     int font_text_width   = (font_text  != -1 ? getFontWidth(font_text)   : 0);
1212     int font_text_height  = (font_text  != -1 ? getFontHeight(font_text)  : 0);
1213     int font_input_width  = (font_input != -1 ? getFontWidth(font_input)  : 0);
1214     int font_input_height = (font_input != -1 ? getFontHeight(font_input) : 0);
1215     int text_chars  = (text  != NULL ? strlen(text)  : 0);
1216     int input_chars = (input != NULL ? strlen(input) : 0);
1217
1218     int button_width =
1219       (button_graphic != -1 ? graphic_info[button_graphic].width  : 0);
1220     int button_height =
1221       (button_graphic != -1 ? graphic_info[button_graphic].height : 0);
1222     int text_width   = font_text_width * text_chars;
1223     int text_height  = font_text_height;
1224     int input_width  = font_input_width * input_chars;
1225     int input_height = font_input_height;
1226
1227     if (nr == MAIN_CONTROL_NAME)
1228     {
1229       menu.main.input.name.width  = input_width;
1230       menu.main.input.name.height = input_height;
1231     }
1232
1233     if (pos_button != NULL)             // (x/y may be -1/-1 here)
1234     {
1235       pos_button->width  = button_width;
1236       pos_button->height = button_height;
1237     }
1238
1239     if (pos_text != NULL)               // (x/y may be -1/-1 here)
1240     {
1241       // calculate text size -- needed for text alignment
1242       boolean calculate_text_size = (text != NULL);
1243
1244       if (pos_text->width == -1 || calculate_text_size)
1245         pos_text->width = text_width;
1246       if (pos_text->height == -1 || calculate_text_size)
1247         pos_text->height = text_height;
1248
1249       if (visibleMenuPos(pos_button))
1250       {
1251         if (pos_text->x == -1)
1252           pos_text->x = pos_button->x + pos_button->width;
1253         if (pos_text->y == -1)
1254           pos_text->y =
1255             pos_button->y + (pos_button->height - pos_text->height) / 2;
1256       }
1257     }
1258
1259     if (pos_input != NULL)              // (x/y may be -1/-1 here)
1260     {
1261       if (visibleTextPos(pos_text))
1262       {
1263         if (pos_input->x == -1)
1264           pos_input->x = pos_text->x + pos_text->width;
1265         if (pos_input->y == -1)
1266           pos_input->y = pos_text->y;
1267       }
1268
1269       if (pos_input->width == -1)
1270         pos_input->width = input_width;
1271       if (pos_input->height == -1)
1272         pos_input->height = input_height;
1273     }
1274   }
1275 }
1276
1277 static void DrawPressedGraphicThruMask(int dst_x, int dst_y,
1278                                        int graphic, boolean pressed)
1279 {
1280   struct GraphicInfo *g = &graphic_info[graphic];
1281   Bitmap *src_bitmap;
1282   int src_x, src_y;
1283   int xoffset = (pressed ? g->pressed_xoffset : 0);
1284   int yoffset = (pressed ? g->pressed_yoffset : 0);
1285
1286   getFixedGraphicSource(graphic, 0, &src_bitmap, &src_x, &src_y);
1287
1288   BlitBitmapMasked(src_bitmap, drawto, src_x + xoffset, src_y + yoffset,
1289                    g->width, g->height, dst_x, dst_y);
1290 }
1291
1292 static void DrawCursorAndText_Main_Ext(int nr, boolean active_text,
1293                                        boolean active_input,
1294                                        boolean pressed_button)
1295 {
1296   int i;
1297
1298   for (i = 0; main_controls[i].nr != -1; i++)
1299   {
1300     struct MainControlInfo *mci = &main_controls[i];
1301
1302     if (mci->nr == nr || nr == -1)
1303     {
1304       struct MenuPosInfo *pos_button = mci->pos_button;
1305       struct TextPosInfo *pos_text   = mci->pos_text;
1306       struct TextPosInfo *pos_input  = mci->pos_input;
1307       char *text                     = (mci->text  ? *mci->text  : NULL);
1308       char *input                    = (mci->input ? *mci->input : NULL);
1309       int button_graphic             = mci->button_graphic;
1310       int font_text                  = (pos_text  ? pos_text->font  : -1);
1311       int font_input                 = (pos_input ? pos_input->font : -1);
1312
1313       if (active_text)
1314       {
1315         button_graphic = BUTTON_ACTIVE(button_graphic);
1316         font_text = FONT_ACTIVE(font_text);
1317       }
1318
1319       if (active_input)
1320       {
1321         font_input = FONT_ACTIVE(font_input);
1322       }
1323
1324       if (visibleMenuPos(pos_button))
1325       {
1326         struct MenuPosInfo *pos = pos_button;
1327         int x = mSX + pos->x;
1328         int y = mSY + pos->y;
1329
1330         DrawBackgroundForGraphic(x, y, pos->width, pos->height, button_graphic);
1331         DrawPressedGraphicThruMask(x, y, button_graphic, pressed_button);
1332       }
1333
1334       if (visibleTextPos(pos_text) && text != NULL)
1335       {
1336         struct TextPosInfo *pos = pos_text;
1337         int x = mSX + ALIGNED_TEXT_XPOS(pos);
1338         int y = mSY + ALIGNED_TEXT_YPOS(pos);
1339
1340 #if 1
1341         // (check why/if this is needed)
1342         DrawBackgroundForFont(x, y, pos->width, pos->height, font_text);
1343 #endif
1344         DrawText(x, y, text, font_text);
1345       }
1346
1347       if (visibleTextPos(pos_input) && input != NULL)
1348       {
1349         struct TextPosInfo *pos = pos_input;
1350         int x = mSX + ALIGNED_TEXT_XPOS(pos);
1351         int y = mSY + ALIGNED_TEXT_YPOS(pos);
1352
1353 #if 1
1354         // (check why/if this is needed)
1355         DrawBackgroundForFont(x, y, pos->width, pos->height, font_input);
1356 #endif
1357         DrawText(x, y, input, font_input);
1358       }
1359     }
1360   }
1361 }
1362
1363 static void DrawCursorAndText_Main(int nr, boolean active_text,
1364                                    boolean pressed_button)
1365 {
1366   DrawCursorAndText_Main_Ext(nr, active_text, FALSE, pressed_button);
1367 }
1368
1369 #if 0
1370 static void DrawCursorAndText_Main_Input(int nr, boolean active_text,
1371                                          boolean pressed_button)
1372 {
1373   DrawCursorAndText_Main_Ext(nr, active_text, TRUE, pressed_button);
1374 }
1375 #endif
1376
1377 static struct MainControlInfo *getMainControlInfo(int nr)
1378 {
1379   int i;
1380
1381   for (i = 0; main_controls[i].nr != -1; i++)
1382     if (main_controls[i].nr == nr)
1383       return &main_controls[i];
1384
1385   return NULL;
1386 }
1387
1388 static boolean insideMenuPosRect(struct MenuPosInfo *rect, int x, int y)
1389 {
1390   if (rect == NULL)
1391     return FALSE;
1392
1393   int rect_x = ALIGNED_TEXT_XPOS(rect);
1394   int rect_y = ALIGNED_TEXT_YPOS(rect);
1395
1396   return (x >= rect_x && x < rect_x + rect->width &&
1397           y >= rect_y && y < rect_y + rect->height);
1398 }
1399
1400 static boolean insideTextPosRect(struct TextPosInfo *rect, int x, int y)
1401 {
1402   if (rect == NULL)
1403     return FALSE;
1404
1405   int rect_x = ALIGNED_TEXT_XPOS(rect);
1406   int rect_y = ALIGNED_TEXT_YPOS(rect);
1407
1408 #if 0
1409   Debug("screens:insideTextPosRect",
1410         "(%d, %d), (%d, %d) [%d, %d] (%d, %d) => %d",
1411         x, y, rect_x, rect_y, rect->x, rect->y, rect->width, rect->height,
1412         (x >= rect_x && x < rect_x + rect->width &&
1413          y >= rect_y && y < rect_y + rect->height));
1414 #endif
1415
1416   return (x >= rect_x && x < rect_x + rect->width &&
1417           y >= rect_y && y < rect_y + rect->height);
1418 }
1419
1420 static boolean insidePreviewRect(struct PreviewInfo *preview, int x, int y)
1421 {
1422   int rect_width  = preview->xsize * preview->tile_size;
1423   int rect_height = preview->ysize * preview->tile_size;
1424   int rect_x = ALIGNED_XPOS(preview->x, rect_width,  preview->align);
1425   int rect_y = ALIGNED_YPOS(preview->y, rect_height, preview->valign);
1426
1427   return (x >= rect_x && x < rect_x + rect_width &&
1428           y >= rect_y && y < rect_y + rect_height);
1429 }
1430
1431 static void AdjustScrollbar(int id, int items_max, int items_visible,
1432                             int item_position)
1433 {
1434   struct GadgetInfo *gi = screen_gadget[id];
1435
1436   if (item_position > items_max - items_visible)
1437     item_position = items_max - items_visible;
1438
1439   ModifyGadget(gi, GDI_SCROLLBAR_ITEMS_MAX, items_max,
1440                GDI_SCROLLBAR_ITEMS_VISIBLE, items_visible,
1441                GDI_SCROLLBAR_ITEM_POSITION, item_position, GDI_END);
1442 }
1443
1444 static void AdjustChooseTreeScrollbar(TreeInfo *ti, int id)
1445 {
1446   AdjustScrollbar(id, numTreeInfoInGroup(ti), NUM_MENU_ENTRIES_ON_SCREEN,
1447                   ti->cl_first);
1448 }
1449
1450 static void clearMenuListArea(void)
1451 {
1452   int scrollbar_xpos = mSX + SC_SCROLLBAR_XPOS + menu.scrollbar_xoffset;
1453
1454   // correct scrollbar position if placed outside menu (playfield) area
1455   if (scrollbar_xpos > SX + SC_SCROLLBAR_XPOS)
1456     scrollbar_xpos = SX + SC_SCROLLBAR_XPOS;
1457
1458   // clear menu list area, but not title or scrollbar
1459   DrawBackground(mSX, mSY + MENU_SCREEN_START_YPOS * 32,
1460                  scrollbar_xpos - mSX, NUM_MENU_ENTRIES_ON_SCREEN * 32);
1461 }
1462
1463 static void drawCursorExt(int xpos, int ypos, boolean active, int graphic)
1464 {
1465   static int cursor_array[MAX_LEV_FIELDY];
1466   int x = amSX + TILEX * xpos;
1467   int y = amSY + TILEY * (MENU_SCREEN_START_YPOS + ypos);
1468
1469   if (xpos == 0)
1470   {
1471     if (graphic != -1)
1472       cursor_array[ypos] = graphic;
1473     else
1474       graphic = cursor_array[ypos];
1475   }
1476
1477   if (active)
1478     graphic = BUTTON_ACTIVE(graphic);
1479
1480   DrawBackgroundForGraphic(x, y, TILEX, TILEY, graphic);
1481   DrawFixedGraphicThruMaskExt(drawto, x, y, graphic, 0);
1482 }
1483
1484 static void initCursor(int ypos, int graphic)
1485 {
1486   drawCursorExt(0, ypos, FALSE, graphic);
1487 }
1488
1489 static void drawCursor(int ypos, boolean active)
1490 {
1491   drawCursorExt(0, ypos, active, -1);
1492 }
1493
1494 static void drawCursorXY(int xpos, int ypos, int graphic)
1495 {
1496   drawCursorExt(xpos, ypos, FALSE, graphic);
1497 }
1498
1499 static void drawChooseTreeCursor(int ypos, boolean active)
1500 {
1501   drawCursorExt(0, ypos, active, -1);
1502 }
1503
1504 static int getChooseTreeEditFont(boolean active)
1505 {
1506   return (active ? FONT_MENU_2_ACTIVE : FONT_MENU_2);
1507 }
1508
1509 static int getChooseTreeEditXPos(int pos)
1510 {
1511   boolean has_scrollbar = screen_gadget[SCREEN_CTRL_ID_SCROLL_VERTICAL]->mapped;
1512   int xoffset = (has_scrollbar ? -1 : 0);
1513   int xpos = MENU_SCREEN_TEXT2_XPOS + xoffset;
1514   int sx = amSX + xpos * TILEX;
1515   int font_nr = getChooseTreeEditFont(FALSE);
1516   int width = getTextWidth(STR_CHOOSE_TREE_EDIT, font_nr);
1517
1518   return (pos == POS_RIGHT ? sx + width - 1 : sx);
1519 }
1520
1521 static int getChooseTreeEditYPos(int ypos_raw)
1522 {
1523   int ypos = MENU_SCREEN_START_YPOS + ypos_raw;
1524   int sy = amSY + ypos * TILEY;
1525
1526   return sy;
1527 }
1528
1529 static void drawChooseTreeEdit(int ypos_raw, boolean active)
1530 {
1531   int sx = getChooseTreeEditXPos(POS_LEFT);
1532   int sy = getChooseTreeEditYPos(ypos_raw);
1533   int font_nr = getChooseTreeEditFont(active);
1534
1535   DrawText(sx, sy, STR_CHOOSE_TREE_EDIT, font_nr);
1536 }
1537
1538 static void DrawHeadline(void)
1539 {
1540   DrawTextSCentered(MENU_TITLE1_YPOS, FONT_TITLE_1, main_text_title_1);
1541   DrawTextSCentered(MENU_TITLE2_YPOS, FONT_TITLE_2, main_text_title_2);
1542 }
1543
1544 static void DrawTitleScreenImage(int nr, boolean initial)
1545 {
1546   int graphic = getTitleScreenGraphic(nr, initial);
1547   Bitmap *bitmap = graphic_info[graphic].bitmap;
1548   int width  = graphic_info[graphic].width;
1549   int height = graphic_info[graphic].height;
1550   int src_x = graphic_info[graphic].src_x;
1551   int src_y = graphic_info[graphic].src_y;
1552   int dst_x, dst_y;
1553
1554   if (bitmap == NULL)
1555     return;
1556
1557   if (width > WIN_XSIZE)
1558   {
1559     // image width too large for window => center image horizontally
1560     src_x = (width - WIN_XSIZE) / 2;
1561     width = WIN_XSIZE;
1562   }
1563
1564   if (height > WIN_YSIZE)
1565   {
1566     // image height too large for window => center image vertically
1567     src_y = (height - WIN_YSIZE) / 2;
1568     height = WIN_YSIZE;
1569   }
1570
1571   // always display title screens centered
1572   dst_x = (WIN_XSIZE - width) / 2;
1573   dst_y = (WIN_YSIZE - height) / 2;
1574
1575   SetDrawBackgroundMask(REDRAW_ALL);
1576   SetWindowBackgroundImage(getTitleBackground(nr, initial, TRUE));
1577
1578   ClearRectangleOnBackground(drawto, 0, 0, WIN_XSIZE, WIN_YSIZE);
1579
1580   if (DrawingOnBackground(dst_x, dst_y))
1581     BlitBitmapMasked(bitmap, drawto, src_x, src_y, width, height, dst_x, dst_y);
1582   else
1583     BlitBitmap(bitmap, drawto, src_x, src_y, width, height, dst_x, dst_y);
1584
1585   redraw_mask = REDRAW_ALL;
1586 }
1587
1588 static void DrawTitleScreenMessage(int nr, boolean initial)
1589 {
1590   char *filename = getLevelSetTitleMessageFilename(nr, initial);
1591   struct TitleMessageInfo *tmi = getTitleMessageInfo(nr, initial);
1592
1593   if (filename == NULL)
1594     return;
1595
1596   // force TITLE font on title message screen
1597   SetFontStatus(getTitleMessageGameMode(initial));
1598
1599   // if chars *and* width set to "-1", automatically determine width
1600   if (tmi->chars == -1 && tmi->width == -1)
1601     tmi->width = viewport.window[game_status].width;
1602
1603   // if lines *and* height set to "-1", automatically determine height
1604   if (tmi->lines == -1 && tmi->height == -1)
1605     tmi->height = viewport.window[game_status].height;
1606
1607   // if chars set to "-1", automatically determine by text and font width
1608   if (tmi->chars == -1)
1609     tmi->chars = tmi->width / getFontWidth(tmi->font);
1610   else
1611     tmi->width = tmi->chars * getFontWidth(tmi->font);
1612
1613   // if lines set to "-1", automatically determine by text and font height
1614   if (tmi->lines == -1)
1615     tmi->lines = tmi->height / getFontHeight(tmi->font);
1616   else
1617     tmi->height = tmi->lines * getFontHeight(tmi->font);
1618
1619   // if x set to "-1", automatically determine by width and alignment
1620   if (tmi->x == -1)
1621     tmi->x = -1 * ALIGNED_XPOS(0, tmi->width, tmi->align);
1622
1623   // if y set to "-1", automatically determine by height and alignment
1624   if (tmi->y == -1)
1625     tmi->y = -1 * ALIGNED_YPOS(0, tmi->height, tmi->valign);
1626
1627   SetDrawBackgroundMask(REDRAW_ALL);
1628   SetWindowBackgroundImage(getTitleBackground(nr, initial, FALSE));
1629
1630   ClearRectangleOnBackground(drawto, 0, 0, WIN_XSIZE, WIN_YSIZE);
1631
1632   DrawTextFile(ALIGNED_TEXT_XPOS(tmi), ALIGNED_TEXT_YPOS(tmi),
1633                filename, tmi->font, tmi->chars, -1, tmi->lines, 0, -1,
1634                tmi->autowrap, tmi->centered, tmi->parse_comments);
1635
1636   ResetFontStatus();
1637 }
1638
1639 static void DrawTitleScreen(void)
1640 {
1641   KeyboardAutoRepeatOff();
1642
1643   HandleTitleScreen(0, 0, 0, 0, MB_MENU_INITIALIZE);
1644 }
1645
1646 static boolean CheckTitleScreen(boolean levelset_has_changed)
1647 {
1648   static boolean show_title_initial = TRUE;
1649   boolean show_titlescreen = FALSE;
1650
1651   // needed to be able to skip title screen, if no image or message defined
1652   InitializeTitleControls(show_title_initial);
1653
1654   if (setup.show_titlescreen && (show_title_initial || levelset_has_changed))
1655     show_titlescreen = TRUE;
1656
1657   // show initial title images and messages only once at program start
1658   show_title_initial = FALSE;
1659
1660   return (show_titlescreen && num_title_screens > 0);
1661 }
1662
1663 void DrawMainMenu(void)
1664 {
1665   static LevelDirTree *leveldir_last_valid = NULL;
1666   boolean levelset_has_changed = FALSE;
1667   int fade_mask = REDRAW_FIELD;
1668
1669   LimitScreenUpdates(FALSE);
1670
1671   FadeSetLeaveScreen();
1672
1673   // do not fade out here -- function may continue and fade on editor screen
1674
1675   UnmapAllGadgets();
1676   FadeMenuSoundsAndMusic();
1677
1678   ExpireSoundLoops(FALSE);
1679
1680   KeyboardAutoRepeatOn();
1681
1682   audio.sound_deactivated = FALSE;
1683
1684   GetPlayerConfig();
1685
1686   // needed if last screen was the playing screen, invoked from level editor
1687   if (level_editor_test_game)
1688   {
1689     CloseDoor(DOOR_CLOSE_ALL);
1690
1691     SetGameStatus(GAME_MODE_EDITOR);
1692
1693     DrawLevelEd();
1694
1695     return;
1696   }
1697
1698   // needed if last screen was the playing screen, invoked from hall of fame
1699   if (score_info_tape_play)
1700   {
1701     CloseDoor(DOOR_CLOSE_ALL);
1702
1703     SetGameStatus(GAME_MODE_SCOREINFO);
1704
1705     DrawScoreInfo(scores.last_entry_nr);
1706
1707     return;
1708   }
1709
1710   // leveldir_current may be invalid (level group, parent link, node copy)
1711   leveldir_current = getValidLevelSeries(leveldir_current, leveldir_last_valid);
1712
1713   if (leveldir_current != leveldir_last_valid)
1714   {
1715     UpdateLastPlayedLevels_TreeInfo();
1716
1717     levelset_has_changed = TRUE;
1718   }
1719
1720   // store valid level series information
1721   leveldir_last_valid = leveldir_current;
1722
1723   // needed if last screen (level choice) changed graphics, sounds or music
1724   ReloadCustomArtwork(0);
1725
1726   if (CheckTitleScreen(levelset_has_changed))
1727   {
1728     SetGameStatus(GAME_MODE_TITLE);
1729
1730     DrawTitleScreen();
1731
1732     return;
1733   }
1734
1735   if (redraw_mask & REDRAW_ALL)
1736     fade_mask = REDRAW_ALL;
1737
1738   if (CheckFadeAll())
1739     fade_mask = REDRAW_ALL;
1740
1741   FadeOut(fade_mask);
1742
1743   // needed if different viewport properties defined for menues
1744   ChangeViewportPropertiesIfNeeded();
1745
1746   SetDrawtoField(DRAW_TO_BACKBUFFER);
1747
1748   // level_nr may have been set to value over handicap with level editor
1749   if (setup.handicap && level_nr > leveldir_current->handicap_level)
1750     level_nr = leveldir_current->handicap_level;
1751
1752   LoadLevel(level_nr);
1753   LoadScore(level_nr);
1754
1755   SaveLevelSetup_SeriesInfo();
1756
1757   // set this after "ChangeViewportPropertiesIfNeeded()" (which may reset it)
1758   SetDrawDeactivationMask(REDRAW_NONE);
1759   SetDrawBackgroundMask(REDRAW_FIELD);
1760
1761   SetMainBackgroundImage(IMG_BACKGROUND_MAIN);
1762
1763 #if 0
1764   if (fade_mask == REDRAW_ALL)
1765     RedrawGlobalBorder();
1766 #endif
1767
1768   ClearField();
1769
1770   InitializeMainControls();
1771
1772   DrawCursorAndText_Main(-1, FALSE, FALSE);
1773   DrawPreviewLevelInitial();
1774   DrawNetworkPlayers();
1775
1776   HandleMainMenu(0, 0, 0, 0, MB_MENU_INITIALIZE);
1777
1778   TapeStop();
1779   if (TAPE_IS_EMPTY(tape))
1780     LoadTape(level_nr);
1781   DrawCompleteVideoDisplay();
1782
1783   PlayMenuSoundsAndMusic();
1784
1785   // create gadgets for main menu screen
1786   FreeScreenGadgets();
1787   CreateScreenGadgets();
1788
1789   // may be required if audio buttons shown on tape and changed in setup menu
1790   FreeGameButtons();
1791   CreateGameButtons();
1792
1793   // map gadgets for main menu screen
1794   MapTapeButtons();
1795   MapScreenMenuGadgets(SCREEN_MASK_MAIN);
1796   UpdateScreenMenuGadgets(SCREEN_MASK_MAIN_HAS_SOLUTION, hasSolutionTape());
1797
1798   // copy actual game door content to door double buffer for OpenDoor()
1799   BlitBitmap(drawto, bitmap_db_door_1, DX, DY, DXSIZE, DYSIZE, 0, 0);
1800   BlitBitmap(drawto, bitmap_db_door_2, VX, VY, VXSIZE, VYSIZE, 0, 0);
1801
1802   OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
1803
1804   DrawMaskedBorder(fade_mask);
1805
1806   FadeIn(fade_mask);
1807   FadeSetEnterMenu();
1808
1809   // update screen area with special editor door
1810   redraw_mask |= REDRAW_ALL;
1811   BackToFront();
1812
1813   SetMouseCursor(CURSOR_DEFAULT);
1814
1815   OpenDoor(DOOR_CLOSE_1 | DOOR_OPEN_2);
1816
1817   SyncEmscriptenFilesystem();
1818
1819   // needed once after program start or after user change
1820   CheckApiServerTasks();
1821 }
1822
1823 static void gotoTopLevelDir(void)
1824 {
1825   // move upwards until inside (but not above) top level directory
1826   while (leveldir_current->node_parent &&
1827          !strEqual(leveldir_current->node_parent->subdir, STRING_TOP_DIRECTORY))
1828   {
1829     // write a "path" into level tree for easy navigation to last level
1830     if (leveldir_current->node_parent->node_group->cl_first == -1)
1831     {
1832       int num_leveldirs = numTreeInfoInGroup(leveldir_current);
1833       int leveldir_pos = getPosFromTreeInfo(leveldir_current);
1834       int num_page_entries = MIN(num_leveldirs, NUM_MENU_ENTRIES_ON_SCREEN);
1835       int cl_first, cl_cursor;
1836
1837       cl_first = MAX(0, leveldir_pos - num_page_entries + 1);
1838       cl_cursor = leveldir_pos - cl_first;
1839
1840       leveldir_current->node_parent->node_group->cl_first = cl_first;
1841       leveldir_current->node_parent->node_group->cl_cursor = cl_cursor;
1842     }
1843
1844     leveldir_current = leveldir_current->node_parent;
1845   }
1846 }
1847
1848 static unsigned int getAutoDelayCounter(struct TitleFadingInfo *fi)
1849 {
1850   boolean use_frame_counter = (fi->auto_delay_unit == AUTO_DELAY_UNIT_FRAMES);
1851
1852   return (use_frame_counter ? video.frame_counter : Counter());
1853 }
1854
1855 static boolean TitleAutoDelayReached(unsigned int *counter_var,
1856                                      struct TitleFadingInfo *fi)
1857 {
1858   return DelayReachedExt(counter_var, fi->auto_delay, getAutoDelayCounter(fi));
1859 }
1860
1861 static void ResetTitleAutoDelay(unsigned int *counter_var,
1862                                 struct TitleFadingInfo *fi)
1863 {
1864   *counter_var = getAutoDelayCounter(fi);
1865 }
1866
1867 void HandleTitleScreen(int mx, int my, int dx, int dy, int button)
1868 {
1869   static unsigned int title_delay = 0;
1870   static int title_screen_nr = 0;
1871   static int last_sound = -1, last_music = -1;
1872   boolean return_to_main_menu = FALSE;
1873   struct TitleControlInfo *tci;
1874   int sound, music;
1875
1876   if (button == MB_MENU_INITIALIZE)
1877   {
1878     title_delay = 0;
1879     title_screen_nr = 0;
1880     tci = &title_controls[title_screen_nr];
1881
1882     SetAnimStatus(getTitleAnimMode(tci));
1883
1884     last_sound = SND_UNDEFINED;
1885     last_music = MUS_UNDEFINED;
1886
1887     if (num_title_screens != 0)
1888     {
1889       FadeSetEnterScreen();
1890
1891       // use individual title fading instead of global "enter screen" fading
1892       fading = getTitleFading(tci);
1893     }
1894
1895     if (game_status_last_screen == GAME_MODE_INFO)
1896     {
1897       if (num_title_screens == 0)
1898       {
1899         // switch game mode from title screen mode back to info screen mode
1900         SetGameStatus(GAME_MODE_INFO);
1901
1902         // store that last screen was info screen, not main menu screen
1903         game_status_last_screen = GAME_MODE_INFO;
1904
1905         DrawInfoScreen_NotAvailable("Title screen information:",
1906                                     "No title screen for this level set.");
1907         return;
1908       }
1909     }
1910
1911     FadeMenuSoundsAndMusic();
1912
1913     FadeOut(REDRAW_ALL);
1914
1915     // title screens may have different window size
1916     ChangeViewportPropertiesIfNeeded();
1917
1918     // only required to update logic for redrawing global border
1919     ClearField();
1920
1921     if (tci->is_image)
1922       DrawTitleScreenImage(tci->local_nr, tci->initial);
1923     else
1924       DrawTitleScreenMessage(tci->local_nr, tci->initial);
1925
1926     sound = getTitleSound(tci);
1927     music = getTitleMusic(tci);
1928
1929     if (sound != last_sound)
1930       PlayMenuSoundExt(sound);
1931     if (music != last_music)
1932       PlayMenuMusicExt(music);
1933
1934     last_sound = sound;
1935     last_music = music;
1936
1937     SetMouseCursor(CURSOR_NONE);
1938
1939     FadeIn(REDRAW_ALL);
1940
1941     ResetTitleAutoDelay(&title_delay, &fading);
1942
1943     return;
1944   }
1945
1946   if (fading.auto_delay > 0 && TitleAutoDelayReached(&title_delay, &fading))
1947     button = MB_MENU_CHOICE;
1948
1949   if (button == MB_MENU_LEAVE)
1950   {
1951     return_to_main_menu = TRUE;
1952   }
1953   else if (button == MB_MENU_CHOICE || dx)
1954   {
1955     if (game_status_last_screen == GAME_MODE_INFO && num_title_screens == 0)
1956     {
1957       SetGameStatus(GAME_MODE_INFO);
1958
1959       info_mode = INFO_MODE_MAIN;
1960
1961       DrawInfoScreen();
1962
1963       return;
1964     }
1965
1966     title_screen_nr +=
1967       (game_status_last_screen == GAME_MODE_INFO && dx < 0 ? -1 : +1);
1968
1969     if (title_screen_nr >= 0 && title_screen_nr < num_title_screens)
1970     {
1971       tci = &title_controls[title_screen_nr];
1972
1973       SetAnimStatus(getTitleAnimMode(tci));
1974
1975       sound = getTitleSound(tci);
1976       music = getTitleMusic(tci);
1977
1978       if (last_sound != SND_UNDEFINED && sound != last_sound)
1979         FadeSound(last_sound);
1980       if (last_music != MUS_UNDEFINED && music != last_music)
1981         FadeMusic();
1982
1983       fading = getTitleFading(tci);
1984
1985       FadeOut(REDRAW_ALL);
1986
1987       if (tci->is_image)
1988         DrawTitleScreenImage(tci->local_nr, tci->initial);
1989       else
1990         DrawTitleScreenMessage(tci->local_nr, tci->initial);
1991
1992       sound = getTitleSound(tci);
1993       music = getTitleMusic(tci);
1994
1995       if (sound != last_sound)
1996         PlayMenuSoundExt(sound);
1997       if (music != last_music)
1998         PlayMenuMusicExt(music);
1999
2000       last_sound = sound;
2001       last_music = music;
2002
2003       FadeIn(REDRAW_ALL);
2004
2005       ResetTitleAutoDelay(&title_delay, &fading);
2006     }
2007     else
2008     {
2009       FadeMenuSoundsAndMusic();
2010
2011       return_to_main_menu = TRUE;
2012     }
2013   }
2014
2015   if (return_to_main_menu)
2016   {
2017     SetMouseCursor(CURSOR_DEFAULT);
2018
2019     // force full menu screen redraw after displaying title screens
2020     redraw_mask = REDRAW_ALL;
2021
2022     if (game_status_last_screen == GAME_MODE_INFO)
2023     {
2024       SetGameStatus(GAME_MODE_INFO);
2025
2026       info_mode = INFO_MODE_MAIN;
2027
2028       DrawInfoScreen();
2029     }
2030     else        // default: return to main menu
2031     {
2032       SetGameStatus(GAME_MODE_MAIN);
2033
2034       DrawMainMenu();
2035     }
2036   }
2037 }
2038
2039 static void HandleMainMenu_ToggleTeamMode(void)
2040 {
2041   setup.team_mode = !setup.team_mode;
2042
2043   InitializeMainControls();
2044   DrawCursorAndText_Main(MAIN_CONTROL_NAME, TRUE, FALSE);
2045
2046   DrawPreviewPlayers();
2047 }
2048
2049 static void HandleMainMenu_SelectLevel(int step, int direction,
2050                                        int selected_level_nr)
2051 {
2052   int old_level_nr = level_nr;
2053   int new_level_nr;
2054
2055   if (selected_level_nr != NO_DIRECT_LEVEL_SELECT)
2056     new_level_nr = selected_level_nr;
2057   else
2058     new_level_nr = old_level_nr + step * direction;
2059
2060   if (new_level_nr < leveldir_current->first_level)
2061     new_level_nr = leveldir_current->first_level;
2062   if (new_level_nr > leveldir_current->last_level)
2063     new_level_nr = leveldir_current->last_level;
2064
2065   if (setup.handicap && new_level_nr > leveldir_current->handicap_level)
2066   {
2067     // skipping levels is only allowed when trying to skip single level
2068     if (setup.skip_levels && new_level_nr == old_level_nr + 1 &&
2069         Request("Level still unsolved! Skip despite handicap?", REQ_ASK))
2070     {
2071       leveldir_current->handicap_level++;
2072       SaveLevelSetup_SeriesInfo();
2073     }
2074
2075     new_level_nr = leveldir_current->handicap_level;
2076   }
2077
2078   if (new_level_nr != old_level_nr)
2079   {
2080     struct MainControlInfo *mci = getMainControlInfo(MAIN_CONTROL_LEVEL_NUMBER);
2081
2082     PlaySound(SND_MENU_ITEM_SELECTING);
2083
2084     level_nr = new_level_nr;
2085
2086     DrawText(mSX + mci->pos_text->x, mSY + mci->pos_text->y,
2087              int2str(level_nr, menu.main.text.level_number.size),
2088              mci->pos_text->font);
2089
2090     LoadLevel(level_nr);
2091     DrawPreviewLevelInitial();
2092
2093     TapeErase();
2094     LoadTape(level_nr);
2095     DrawCompleteVideoDisplay();
2096
2097     SaveLevelSetup_SeriesInfo();
2098
2099     UpdateScreenMenuGadgets(SCREEN_MASK_MAIN_HAS_SOLUTION, hasSolutionTape());
2100
2101     // force redraw of playfield area (may be reset at this point)
2102     redraw_mask |= REDRAW_FIELD;
2103   }
2104 }
2105
2106 void HandleMainMenu(int mx, int my, int dx, int dy, int button)
2107 {
2108   static int choice = MAIN_CONTROL_GAME;
2109   static boolean button_pressed_last = FALSE;
2110   boolean button_pressed = FALSE;
2111   int pos = choice;
2112   int i = 0;    // needed to prevent compiler warning due to bad code below
2113
2114   if (button == MB_MENU_INITIALIZE)
2115   {
2116     DrawCursorAndText_Main(choice, TRUE, FALSE);
2117
2118     return;
2119   }
2120
2121   if (mx || my)         // mouse input
2122   {
2123     pos = -1;
2124
2125     for (i = 0; main_controls[i].nr != -1; i++)
2126     {
2127       if (insideMenuPosRect(main_controls[i].pos_button, mx - mSX, my - mSY) ||
2128           insideTextPosRect(main_controls[i].pos_text,   mx - mSX, my - mSY) ||
2129           insideTextPosRect(main_controls[i].pos_input,  mx - mSX, my - mSY))
2130       {
2131         pos = main_controls[i].nr;
2132
2133         break;
2134       }
2135     }
2136
2137     // check if level preview was clicked
2138     if (insidePreviewRect(&preview, mx - SX, my - SY))
2139       pos = MAIN_CONTROL_GAME;
2140
2141     // handle pressed/unpressed state for active/inactive menu buttons
2142     // (if pos != -1, "i" contains index position corresponding to "pos")
2143     if (button &&
2144         pos >= MAIN_CONTROL_NAME && pos <= MAIN_CONTROL_QUIT &&
2145         insideMenuPosRect(main_controls[i].pos_button, mx - mSX, my - mSY))
2146       button_pressed = TRUE;
2147
2148     if (button_pressed != button_pressed_last)
2149     {
2150       DrawCursorAndText_Main(choice, TRUE, button_pressed);
2151
2152       if (button_pressed)
2153         PlaySound(SND_MENU_BUTTON_PRESSING);
2154       else
2155         PlaySound(SND_MENU_BUTTON_RELEASING);
2156     }
2157   }
2158   else if (dx || dy)    // keyboard input
2159   {
2160     if (dx > 0 && (choice == MAIN_CONTROL_INFO ||
2161                    choice == MAIN_CONTROL_SETUP))
2162       button = MB_MENU_CHOICE;
2163     else if (dy)
2164       pos = choice + dy;
2165   }
2166
2167   if (pos == MAIN_CONTROL_FIRST_LEVEL && !button)
2168   {
2169     HandleMainMenu_SelectLevel(MAX_LEVELS, -1, NO_DIRECT_LEVEL_SELECT);
2170   }
2171   else if (pos == MAIN_CONTROL_LAST_LEVEL && !button)
2172   {
2173     HandleMainMenu_SelectLevel(MAX_LEVELS, +1, NO_DIRECT_LEVEL_SELECT);
2174   }
2175   else if (pos == MAIN_CONTROL_LEVEL_NUMBER && !button)
2176   {
2177     CloseDoor(DOOR_CLOSE_2);
2178
2179     SetGameStatus(GAME_MODE_LEVELNR);
2180
2181     DrawChooseLevelNr();
2182   }
2183   else if (pos >= MAIN_CONTROL_NAME && pos <= MAIN_CONTROL_QUIT)
2184   {
2185     if (button)
2186     {
2187       if (pos != choice)
2188       {
2189         PlaySound(SND_MENU_ITEM_ACTIVATING);
2190
2191         DrawCursorAndText_Main(choice, FALSE, FALSE);
2192         DrawCursorAndText_Main(pos, TRUE, button_pressed);
2193
2194         choice = pos;
2195       }
2196       else if (dx != 0)
2197       {
2198         if (choice == MAIN_CONTROL_NAME)
2199         {
2200           // special case: cursor left or right pressed -- toggle team mode
2201           HandleMainMenu_ToggleTeamMode();
2202         }
2203         else if (choice != MAIN_CONTROL_INFO &&
2204                  choice != MAIN_CONTROL_SETUP)
2205         {
2206           HandleMainMenu_SelectLevel(1, dx, NO_DIRECT_LEVEL_SELECT);
2207         }
2208       }
2209     }
2210     else
2211     {
2212       PlaySound(SND_MENU_ITEM_SELECTING);
2213
2214       if (pos == MAIN_CONTROL_NAME)
2215       {
2216         if ((mx || my) &&
2217             insideTextPosRect(main_controls[i].pos_text, mx - mSX, my - mSY))
2218         {
2219           // special case: menu text "name/team" clicked -- toggle team mode
2220           HandleMainMenu_ToggleTeamMode();
2221         }
2222         else
2223         {
2224           if (setup.multiple_users)
2225           {
2226             CloseDoor(DOOR_CLOSE_2);
2227
2228             SetGameStatus(GAME_MODE_NAMES);
2229
2230             DrawChoosePlayerName();
2231           }
2232           else
2233           {
2234             SetGameStatus(GAME_MODE_PSEUDO_TYPENAME);
2235
2236             DrawTypeName();
2237           }
2238         }
2239       }
2240       else if (pos == MAIN_CONTROL_LEVELS)
2241       {
2242         if (leveldir_first)
2243         {
2244           CloseDoor(DOOR_CLOSE_2);
2245
2246           SetGameStatus(GAME_MODE_LEVELS);
2247
2248           SaveLevelSetup_LastSeries();
2249           SaveLevelSetup_SeriesInfo();
2250
2251           // restore level set if chosen from "last played level set" menu
2252           RestoreLastPlayedLevels(&leveldir_current);
2253
2254           if (setup.internal.choose_from_top_leveldir)
2255             gotoTopLevelDir();
2256
2257           DrawChooseLevelSet();
2258         }
2259       }
2260       else if (pos == MAIN_CONTROL_SCORES)
2261       {
2262         CloseDoor(DOOR_CLOSE_2);
2263
2264         SetGameStatus(GAME_MODE_SCORES);
2265
2266         DrawHallOfFame(level_nr);
2267       }
2268       else if (pos == MAIN_CONTROL_EDITOR)
2269       {
2270         if (leveldir_current->readonly &&
2271             setup.editor.show_read_only_warning)
2272           Request("This level is read-only!", REQ_CONFIRM | REQ_STAY_OPEN);
2273
2274         CloseDoor(DOOR_CLOSE_ALL);
2275
2276         SetGameStatus(GAME_MODE_EDITOR);
2277
2278         FadeSetEnterScreen();
2279
2280         DrawLevelEd();
2281       }
2282       else if (pos == MAIN_CONTROL_INFO)
2283       {
2284         CloseDoor(DOOR_CLOSE_2);
2285
2286         SetGameStatus(GAME_MODE_INFO);
2287
2288         info_mode = INFO_MODE_MAIN;
2289
2290         DrawInfoScreen();
2291       }
2292       else if (pos == MAIN_CONTROL_GAME)
2293       {
2294         StartGameActions(network.enabled, setup.autorecord, level.random_seed);
2295       }
2296       else if (pos == MAIN_CONTROL_SETUP)
2297       {
2298         CloseDoor(DOOR_CLOSE_2);
2299
2300         SetGameStatus(GAME_MODE_SETUP);
2301
2302         setup_mode = SETUP_MODE_MAIN;
2303
2304         DrawSetupScreen();
2305       }
2306       else if (pos == MAIN_CONTROL_QUIT)
2307       {
2308         SaveLevelSetup_LastSeries();
2309         SaveLevelSetup_SeriesInfo();
2310
2311 #if defined(PLATFORM_EMSCRIPTEN)
2312         Request("Close the browser window to quit!", REQ_CONFIRM);
2313 #else
2314         if (!setup.ask_on_quit_program ||
2315             Request("Do you really want to quit?", REQ_ASK | REQ_STAY_CLOSED))
2316           SetGameStatus(GAME_MODE_QUIT);
2317 #endif
2318       }
2319     }
2320   }
2321
2322   button_pressed_last = button_pressed;
2323 }
2324
2325
2326 // ============================================================================
2327 // info screen functions
2328 // ============================================================================
2329
2330 static struct TokenInfo *info_info;
2331 static int num_info_info;       // number of info entries shown on screen
2332 static int max_info_info;       // total number of info entries in list
2333
2334 static void execInfoTitleScreen(void)
2335 {
2336   info_mode = INFO_MODE_TITLE;
2337
2338   DrawInfoScreen();
2339 }
2340
2341 static void execInfoElements(void)
2342 {
2343   info_mode = INFO_MODE_ELEMENTS;
2344
2345   DrawInfoScreen();
2346 }
2347
2348 static void execInfoMusic(void)
2349 {
2350   info_mode = INFO_MODE_MUSIC;
2351
2352   DrawInfoScreen();
2353 }
2354
2355 static void execInfoCredits(void)
2356 {
2357   info_mode = INFO_MODE_CREDITS;
2358
2359   DrawInfoScreen();
2360 }
2361
2362 static void execInfoProgram(void)
2363 {
2364   info_mode = INFO_MODE_PROGRAM;
2365
2366   DrawInfoScreen();
2367 }
2368
2369 static void execInfoVersion(void)
2370 {
2371   info_mode = INFO_MODE_VERSION;
2372
2373   DrawInfoScreen();
2374 }
2375
2376 static void execInfoLevelSet(void)
2377 {
2378   info_mode = INFO_MODE_LEVELSET;
2379
2380   DrawInfoScreen();
2381 }
2382
2383 static void execExitInfo(void)
2384 {
2385   SetGameStatus(GAME_MODE_MAIN);
2386
2387   DrawMainMenu();
2388 }
2389
2390 static struct TokenInfo info_info_main[] =
2391 {
2392   { TYPE_ENTER_SCREEN,  execInfoTitleScreen,    "Title Screen"          },
2393   { TYPE_ENTER_SCREEN,  execInfoElements,       "Elements Info"         },
2394   { TYPE_ENTER_SCREEN,  execInfoMusic,          "Music Info"            },
2395   { TYPE_ENTER_SCREEN,  execInfoCredits,        "Credits"               },
2396   { TYPE_ENTER_SCREEN,  execInfoProgram,        "Program Info"          },
2397   { TYPE_ENTER_SCREEN,  execInfoVersion,        "Version Info"          },
2398   { TYPE_ENTER_SCREEN,  execInfoLevelSet,       "Level Set Info"        },
2399   { TYPE_EMPTY,         NULL,                   ""                      },
2400   { TYPE_LEAVE_MENU,    execExitInfo,           "Exit"                  },
2401
2402   { 0,                  NULL,                   NULL                    }
2403 };
2404
2405 static int getMenuTextFont(int type)
2406 {
2407   if (type & (TYPE_SWITCH       |
2408               TYPE_YES_NO       |
2409               TYPE_YES_NO_AUTO  |
2410               TYPE_STRING       |
2411               TYPE_PLAYER       |
2412               TYPE_ECS_AGA      |
2413               TYPE_KEYTEXT      |
2414               TYPE_ENTER_LIST   |
2415               TYPE_TEXT_INPUT))
2416     return FONT_MENU_2;
2417   else
2418     return FONT_MENU_1;
2419 }
2420
2421 static struct TokenInfo *setup_info;
2422 static struct TokenInfo setup_info_input[];
2423
2424 static struct TokenInfo *menu_info;
2425
2426 static void DrawCursorAndText_Menu_Ext(struct TokenInfo *token_info,
2427                                        int screen_pos, int menu_info_pos_raw,
2428                                        boolean active)
2429 {
2430   int pos = (menu_info_pos_raw < 0 ? screen_pos : menu_info_pos_raw);
2431   struct TokenInfo *ti = &token_info[pos];
2432   int xpos = MENU_SCREEN_START_XPOS;
2433   int ypos = MENU_SCREEN_START_YPOS + screen_pos;
2434   int font_nr = getMenuTextFont(ti->type);
2435
2436   if (setup_mode == SETUP_MODE_INPUT)
2437     font_nr = FONT_MENU_1;
2438
2439   if (active)
2440     font_nr = FONT_ACTIVE(font_nr);
2441
2442   DrawText(mSX + xpos * 32, mSY + ypos * 32, ti->text, font_nr);
2443
2444   if (ti->type & ~TYPE_SKIP_ENTRY)
2445     drawCursor(screen_pos, active);
2446 }
2447
2448 static void DrawCursorAndText_Menu(int screen_pos, int menu_info_pos_raw,
2449                                    boolean active)
2450 {
2451   DrawCursorAndText_Menu_Ext(menu_info, screen_pos, menu_info_pos_raw, active);
2452 }
2453
2454 static void DrawCursorAndText_Setup(int screen_pos, int menu_info_pos_raw,
2455                                     boolean active)
2456 {
2457   DrawCursorAndText_Menu_Ext(setup_info, screen_pos, menu_info_pos_raw, active);
2458 }
2459
2460 static char *window_size_text;
2461 static char *scaling_type_text;
2462 static char *network_server_text;
2463
2464 static void drawSetupValue(int, int);
2465
2466 static void drawMenuInfoList(int first_entry, int num_page_entries,
2467                              int max_page_entries)
2468 {
2469   int i;
2470
2471   if (first_entry + num_page_entries > max_page_entries)
2472     first_entry = 0;
2473
2474   clearMenuListArea();
2475
2476   for (i = 0; i < num_page_entries; i++)
2477   {
2478     int menu_info_pos = first_entry + i;
2479     struct TokenInfo *si = &menu_info[menu_info_pos];
2480     void *value_ptr = si->value;
2481
2482     // set some entries to "unchangeable" according to other variables
2483     if ((value_ptr == &setup.sound_simple && !audio.sound_available) ||
2484         (value_ptr == &setup.sound_loops  && !audio.loops_available) ||
2485         (value_ptr == &setup.sound_music  && !audio.music_available) ||
2486         (value_ptr == &setup.fullscreen   && !video.fullscreen_available) ||
2487         (value_ptr == &window_size_text   && !video.window_scaling_available) ||
2488         (value_ptr == &scaling_type_text  && !video.window_scaling_available))
2489       si->type |= TYPE_GHOSTED;
2490
2491     if (si->type & (TYPE_ENTER_MENU|TYPE_ENTER_LIST))
2492       initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
2493     else if (si->type & (TYPE_LEAVE_MENU|TYPE_LEAVE_LIST))
2494       initCursor(i, IMG_MENU_BUTTON_LEAVE_MENU);
2495     else if (si->type & ~TYPE_SKIP_ENTRY)
2496       initCursor(i, IMG_MENU_BUTTON);
2497
2498     DrawCursorAndText_Menu(i, menu_info_pos, FALSE);
2499
2500     if (si->type & TYPE_STRING)
2501     {
2502       int gadget_id = -1;
2503
2504       if (value_ptr == &network_server_text)
2505         gadget_id = SCREEN_CTRL_ID_NETWORK_SERVER;
2506
2507       if (gadget_id != -1)
2508       {
2509         struct GadgetInfo *gi = screen_gadget[gadget_id];
2510         int xpos = MENU_SCREEN_START_XPOS;
2511         int ypos = MENU_SCREEN_START_YPOS + i;
2512         int x = mSX + xpos * 32;
2513         int y = mSY + ypos * 32;
2514
2515         ModifyGadget(gi, GDI_X, x, GDI_Y, y, GDI_END);
2516       }
2517     }
2518
2519     if (si->type & TYPE_VALUE &&
2520         menu_info == setup_info)
2521       drawSetupValue(i, menu_info_pos);
2522   }
2523 }
2524
2525 static void DrawInfoScreen_Main(void)
2526 {
2527   int fade_mask = REDRAW_FIELD;
2528   int i;
2529
2530   if (redraw_mask & REDRAW_ALL)
2531     fade_mask = REDRAW_ALL;
2532
2533   if (CheckFadeAll())
2534     fade_mask = REDRAW_ALL;
2535
2536   UnmapAllGadgets();
2537   FadeMenuSoundsAndMusic();
2538
2539   FreeScreenGadgets();
2540   CreateScreenGadgets();
2541
2542   // (needed after displaying title screens which disable auto repeat)
2543   KeyboardAutoRepeatOn();
2544
2545   FadeSetLeaveScreen();
2546
2547   FadeOut(fade_mask);
2548
2549   // needed if different viewport properties defined for info screen
2550   ChangeViewportPropertiesIfNeeded();
2551
2552   SetMainBackgroundImage(IMG_BACKGROUND_INFO);
2553
2554   ClearField();
2555
2556   OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
2557
2558   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Info Screen");
2559
2560   info_info = info_info_main;
2561
2562   // use modified info screen info without info screen entries marked as hidden
2563   info_info = getSetupInfoFinal(info_info);
2564
2565   // determine maximal number of info entries that can be displayed on screen
2566   num_info_info = 0;
2567   for (i = 0; info_info[i].type != 0 && i < NUM_MENU_ENTRIES_ON_SCREEN; i++)
2568     num_info_info++;
2569
2570   // determine maximal number of info entries available for menu of info screen
2571   max_info_info = 0;
2572   for (i = 0; info_info[i].type != 0; i++)
2573     max_info_info++;
2574
2575   HandleInfoScreen_Main(0, 0, 0, 0, MB_MENU_INITIALIZE);
2576
2577   MapScreenGadgets(max_info_info);
2578
2579   PlayMenuSoundsAndMusic();
2580
2581   DrawMaskedBorder(fade_mask);
2582
2583   FadeIn(fade_mask);
2584 }
2585
2586 static void changeSetupValue(int, int, int);
2587
2588 static void HandleMenuScreen(int mx, int my, int dx, int dy, int button,
2589                              int mode, int num_page_entries,
2590                              int max_page_entries)
2591 {
2592   static int num_page_entries_all_last[NUM_SPECIAL_GFX_ARGS][MAX_MENU_MODES];
2593   static int choice_stores[NUM_SPECIAL_GFX_ARGS][MAX_MENU_MODES];
2594   static int first_entry_stores[NUM_SPECIAL_GFX_ARGS][MAX_MENU_MODES];
2595   boolean has_scrollbar = screen_gadget[SCREEN_CTRL_ID_SCROLL_VERTICAL]->mapped;
2596   int mx_scrollbar = screen_gadget[SCREEN_CTRL_ID_SCROLL_VERTICAL]->x;
2597   int mx_right_border = (has_scrollbar ? mx_scrollbar : SX + SXSIZE);
2598   int *num_page_entries_last = num_page_entries_all_last[game_status];
2599   int *choice_store = choice_stores[game_status];
2600   int *first_entry_store = first_entry_stores[game_status];
2601   int choice = choice_store[mode];              // starts with 0
2602   int first_entry = first_entry_store[mode];    // starts with 0
2603   int x = 0;
2604   int y = choice - first_entry;
2605   int y_old = y;
2606   boolean position_set_by_scrollbar = (dx == 999);
2607   int step = (button == 1 ? 1 : button == 2 ? 5 : 10);
2608   int i;
2609
2610   if (button == MB_MENU_INITIALIZE)
2611   {
2612     // check if number of menu page entries has changed (may happen by change
2613     // of custom artwork definition value for 'list_size' for this menu screen)
2614     // (in this case, the last menu position most probably has to be corrected)
2615     if (num_page_entries != num_page_entries_last[mode])
2616     {
2617       choice_store[mode] = first_entry_store[mode] = 0;
2618
2619       choice = first_entry = 0;
2620       y = y_old = 0;
2621
2622       num_page_entries_last[mode] = num_page_entries;
2623     }
2624
2625     // advance to first valid menu entry
2626     while (choice < num_page_entries &&
2627            menu_info[choice].type & TYPE_SKIP_ENTRY)
2628       choice++;
2629
2630     if (position_set_by_scrollbar)
2631       first_entry = first_entry_store[mode] = dy;
2632     else
2633       AdjustScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL, max_page_entries,
2634                       NUM_MENU_ENTRIES_ON_SCREEN, first_entry);
2635
2636     drawMenuInfoList(first_entry, num_page_entries, max_page_entries);
2637
2638     if (choice < first_entry)
2639     {
2640       choice = first_entry;
2641
2642       if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2643         choice++;
2644     }
2645     else if (choice > first_entry + num_page_entries - 1)
2646     {
2647       choice = first_entry + num_page_entries - 1;
2648
2649       if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2650         choice--;
2651     }
2652
2653     choice_store[mode] = choice;
2654
2655     DrawCursorAndText_Menu(choice - first_entry, choice, TRUE);
2656
2657     return;
2658   }
2659   else if (button == MB_MENU_LEAVE)
2660   {
2661     PlaySound(SND_MENU_ITEM_SELECTING);
2662
2663     for (i = 0; i < max_page_entries; i++)
2664     {
2665       if (menu_info[i].type & TYPE_LEAVE_MENU)
2666       {
2667         void (*menu_callback_function)(void) = menu_info[i].value;
2668
2669         FadeSetLeaveMenu();
2670
2671         menu_callback_function();
2672
2673         break;  // absolutely needed because function changes 'menu_info'!
2674       }
2675     }
2676
2677     return;
2678   }
2679
2680   if (mx || my)         // mouse input
2681   {
2682     x = (mx - mSX) / 32;
2683     y = (my - mSY) / 32 - MENU_SCREEN_START_YPOS;
2684   }
2685   else if (dx || dy)    // keyboard or scrollbar/scrollbutton input
2686   {
2687     // move cursor instead of scrolling when already at start/end of list
2688     if (dy == -1 * SCROLL_LINE && first_entry == 0)
2689       dy = -1;
2690     else if (dy == +1 * SCROLL_LINE &&
2691              first_entry + num_page_entries == max_page_entries)
2692       dy = 1;
2693
2694     // handle scrolling screen one line or page
2695     if (y + dy < 0 ||
2696         y + dy > num_page_entries - 1)
2697     {
2698       boolean redraw = FALSE;
2699
2700       if (ABS(dy) == SCROLL_PAGE)
2701         step = num_page_entries - 1;
2702
2703       if (dy < 0 && first_entry > 0)
2704       {
2705         // scroll page/line up
2706
2707         first_entry -= step;
2708         if (first_entry < 0)
2709           first_entry = 0;
2710
2711         redraw = TRUE;
2712       }
2713       else if (dy > 0 && first_entry + num_page_entries < max_page_entries)
2714       {
2715         // scroll page/line down
2716
2717         first_entry += step;
2718         if (first_entry + num_page_entries > max_page_entries)
2719           first_entry = MAX(0, max_page_entries - num_page_entries);
2720
2721         redraw = TRUE;
2722       }
2723
2724       if (redraw)
2725       {
2726         choice += first_entry - first_entry_store[mode];
2727
2728         if (choice < first_entry)
2729         {
2730           choice = first_entry;
2731
2732           if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2733             choice++;
2734         }
2735         else if (choice > first_entry + num_page_entries - 1)
2736         {
2737           choice = first_entry + num_page_entries - 1;
2738
2739           if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2740             choice--;
2741         }
2742         else if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2743         {
2744           choice += SIGN(dy);
2745
2746           if (choice < first_entry ||
2747               choice > first_entry + num_page_entries - 1)
2748           first_entry += SIGN(dy);
2749         }
2750
2751         first_entry_store[mode] = first_entry;
2752         choice_store[mode] = choice;
2753
2754         drawMenuInfoList(first_entry, num_page_entries, max_page_entries);
2755
2756         DrawCursorAndText_Menu(choice - first_entry, choice, TRUE);
2757
2758         AdjustScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL, max_page_entries,
2759                         NUM_MENU_ENTRIES_ON_SCREEN, first_entry);
2760       }
2761
2762       return;
2763     }
2764
2765     if (dx)
2766     {
2767       int menu_navigation_type = (dx < 0 ? TYPE_LEAVE : TYPE_ENTER);
2768
2769       if (menu_info[choice].type & menu_navigation_type ||
2770           menu_info[choice].type & TYPE_BOOLEAN_STYLE ||
2771           menu_info[choice].type & TYPE_YES_NO_AUTO ||
2772           menu_info[choice].type & TYPE_PLAYER)
2773         button = MB_MENU_CHOICE;
2774     }
2775     else if (dy)
2776       y += dy;
2777
2778     // jump to next non-empty menu entry (up or down)
2779     while (first_entry + y > 0 &&
2780            first_entry + y < max_page_entries - 1 &&
2781            menu_info[first_entry + y].type & TYPE_SKIP_ENTRY)
2782       y += dy;
2783
2784     if (!IN_VIS_MENU(x, y))
2785     {
2786       choice += y - y_old;
2787
2788       if (choice < first_entry)
2789         first_entry = choice;
2790       else if (choice > first_entry + num_page_entries - 1)
2791         first_entry = choice - num_page_entries + 1;
2792
2793       if (first_entry >= 0 &&
2794           first_entry + num_page_entries <= max_page_entries)
2795       {
2796         first_entry_store[mode] = first_entry;
2797
2798         if (choice < first_entry)
2799           choice = first_entry;
2800         else if (choice > first_entry + num_page_entries - 1)
2801           choice = first_entry + num_page_entries - 1;
2802
2803         choice_store[mode] = choice;
2804
2805         drawMenuInfoList(first_entry, num_page_entries, max_page_entries);
2806
2807         DrawCursorAndText_Menu(choice - first_entry, choice, TRUE);
2808
2809         AdjustScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL, max_page_entries,
2810                         NUM_MENU_ENTRIES_ON_SCREEN, first_entry);
2811       }
2812
2813       return;
2814     }
2815   }
2816
2817   if (!anyScrollbarGadgetActive() &&
2818       IN_VIS_MENU(x, y) &&
2819       mx < mx_right_border &&
2820       y >= 0 && y < num_page_entries)
2821   {
2822     if (button)
2823     {
2824       if (first_entry + y != choice &&
2825           menu_info[first_entry + y].type & ~TYPE_SKIP_ENTRY)
2826       {
2827         PlaySound(SND_MENU_ITEM_ACTIVATING);
2828
2829         DrawCursorAndText_Menu(choice - first_entry, choice, FALSE);
2830         DrawCursorAndText_Menu(y, first_entry + y, TRUE);
2831
2832         choice = choice_store[mode] = first_entry + y;
2833       }
2834       else if (dx < 0)
2835       {
2836         PlaySound(SND_MENU_ITEM_SELECTING);
2837
2838         for (i = 0; menu_info[i].type != 0; i++)
2839         {
2840           if (menu_info[i].type & TYPE_LEAVE_MENU)
2841           {
2842             void (*menu_callback_function)(void) = menu_info[i].value;
2843
2844             FadeSetLeaveMenu();
2845
2846             menu_callback_function();
2847
2848             // absolutely needed because function changes 'menu_info'!
2849             break;
2850           }
2851         }
2852
2853         return;
2854       }
2855     }
2856     else if (!(menu_info[first_entry + y].type & TYPE_GHOSTED))
2857     {
2858       PlaySound(SND_MENU_ITEM_SELECTING);
2859
2860       // when selecting key headline, execute function for key value change
2861       if (menu_info[first_entry + y].type & TYPE_KEYTEXT &&
2862           menu_info[first_entry + y + 1].type & TYPE_KEY)
2863         y++;
2864
2865       // when selecting string value, execute function for list selection
2866       if (menu_info[first_entry + y].type & TYPE_STRING && y > 0 &&
2867           menu_info[first_entry + y - 1].type & TYPE_ENTER_LIST)
2868         y--;
2869
2870       // when selecting string value, execute function for text input gadget
2871       if (menu_info[first_entry + y].type & TYPE_STRING && y > 0 &&
2872           menu_info[first_entry + y - 1].type & TYPE_TEXT_INPUT)
2873         y--;
2874
2875       if (menu_info[first_entry + y].type & TYPE_ENTER_OR_LEAVE)
2876       {
2877         void (*menu_callback_function)(void) =
2878           menu_info[first_entry + y].value;
2879
2880         FadeSetFromType(menu_info[first_entry + y].type);
2881
2882         menu_callback_function();
2883       }
2884       else if (menu_info[first_entry + y].type & TYPE_TEXT_INPUT)
2885       {
2886         void (*gadget_callback_function)(void) =
2887           menu_info[first_entry + y].value;
2888
2889         gadget_callback_function();
2890       }
2891       else if (menu_info[first_entry + y].type & TYPE_VALUE &&
2892                menu_info == setup_info)
2893       {
2894         changeSetupValue(y, first_entry + y, dx);
2895       }
2896     }
2897   }
2898 }
2899
2900 void HandleInfoScreen_Main(int mx, int my, int dx, int dy, int button)
2901 {
2902   menu_info = info_info;
2903
2904   HandleMenuScreen(mx, my, dx, dy, button,
2905                    info_mode, num_info_info, max_info_info);
2906 }
2907
2908 static int getMenuFontSpacing(int spacing_height, int font_nr)
2909 {
2910   int font_spacing = getFontHeight(font_nr) + EXTRA_SPACING(game_status);
2911
2912   return (spacing_height < 0 ? ABS(spacing_height) * font_spacing :
2913           spacing_height);
2914 }
2915
2916 static int getMenuTextSpacing(int spacing_height, int font_nr)
2917 {
2918   return (getMenuFontSpacing(spacing_height, font_nr) +
2919           EXTRA_SPACING(game_status));
2920 }
2921
2922 static int getMenuTextStep(int spacing_height, int font_nr)
2923 {
2924   return getFontHeight(font_nr) + getMenuTextSpacing(spacing_height, font_nr);
2925 }
2926
2927 void DrawInfoScreen_NotAvailable(char *text_title, char *text_error)
2928 {
2929   int font_title = MENU_INFO_FONT_TITLE;
2930   int font_error = FONT_TEXT_2;
2931   int font_foot  = MENU_INFO_FONT_FOOT;
2932   int spacing_title = menu.headline1_spacing_info[info_mode];
2933   int ystep_title = getMenuTextStep(spacing_title, font_title);
2934   int ystart1 = mSY - SY + MENU_SCREEN_INFO_YSTART1;
2935   int ystart2 = ystart1 + ystep_title;
2936   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
2937
2938   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO);
2939
2940   FadeOut(REDRAW_FIELD);
2941
2942   ClearField();
2943   DrawHeadline();
2944
2945   DrawTextSCentered(ystart1, font_title, text_title);
2946   DrawTextSCentered(ystart2, font_error, text_error);
2947
2948   DrawTextSCentered(ybottom, font_foot, TEXT_INFO_MENU);
2949
2950   FadeIn(REDRAW_FIELD);
2951 }
2952
2953 void DrawInfoScreen_HelpAnim(int start, int max_anims, boolean init)
2954 {
2955   static int infoscreen_step[MAX_INFO_ELEMENTS_ON_SCREEN];
2956   static int infoscreen_frame[MAX_INFO_ELEMENTS_ON_SCREEN];
2957   int font_title = MENU_INFO_FONT_TITLE;
2958   int font_foot  = MENU_INFO_FONT_FOOT;
2959   int xstart  = mSX + MENU_SCREEN_INFO_SPACE_LEFT;
2960   int ystart1 = mSY - SY + MENU_SCREEN_INFO_YSTART1;
2961   int ystart2 = mSY + MENU_SCREEN_INFO_YSTART2;
2962   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
2963   int ystep = MENU_SCREEN_INFO_YSTEP;
2964   int element, action, direction;
2965   int graphic;
2966   int delay;
2967   int sync_frame;
2968   int i, j;
2969
2970   if (init)
2971   {
2972     for (i = 0; i < NUM_INFO_ELEMENTS_ON_SCREEN; i++)
2973       infoscreen_step[i] = infoscreen_frame[i] = 0;
2974
2975     ClearField();
2976     DrawHeadline();
2977
2978     DrawTextSCentered(ystart1, font_title, "The Game Elements:");
2979     DrawTextSCentered(ybottom, font_foot, TEXT_NEXT_PAGE);
2980
2981     FrameCounter = 0;
2982   }
2983
2984   i = j = 0;
2985   while (helpanim_info[j].element != HELPANIM_LIST_END)
2986   {
2987     if (i >= start + NUM_INFO_ELEMENTS_ON_SCREEN ||
2988         i >= max_anims)
2989       break;
2990     else if (i < start)
2991     {
2992       while (helpanim_info[j].element != HELPANIM_LIST_NEXT)
2993         j++;
2994
2995       j++;
2996       i++;
2997
2998       continue;
2999     }
3000
3001     j += infoscreen_step[i - start];
3002
3003     element = helpanim_info[j].element;
3004     action = helpanim_info[j].action;
3005     direction = helpanim_info[j].direction;
3006
3007     if (element < 0)
3008       element = EL_UNKNOWN;
3009
3010     if (action != -1 && direction != -1)
3011       graphic = el_act_dir2img(element, action, direction);
3012     else if (action != -1)
3013       graphic = el_act2img(element, action);
3014     else if (direction != -1)
3015       graphic = el_dir2img(element, direction);
3016     else
3017       graphic = el2img(element);
3018
3019     delay = helpanim_info[j++].delay;
3020
3021     if (delay == -1)
3022       delay = 1000000;
3023
3024     if (infoscreen_frame[i - start] == 0)
3025     {
3026       sync_frame = 0;
3027       infoscreen_frame[i - start] = delay - 1;
3028     }
3029     else
3030     {
3031       sync_frame = delay - infoscreen_frame[i - start];
3032       infoscreen_frame[i - start]--;
3033     }
3034
3035     if (helpanim_info[j].element == HELPANIM_LIST_NEXT)
3036     {
3037       if (!infoscreen_frame[i - start])
3038         infoscreen_step[i - start] = 0;
3039     }
3040     else
3041     {
3042       if (!infoscreen_frame[i - start])
3043         infoscreen_step[i - start]++;
3044       while (helpanim_info[j].element != HELPANIM_LIST_NEXT)
3045         j++;
3046     }
3047
3048     j++;
3049
3050     ClearRectangleOnBackground(drawto, xstart, ystart2 + (i - start) * ystep,
3051                                TILEX, TILEY);
3052     DrawFixedGraphicAnimationExt(drawto, xstart, ystart2 + (i - start) * ystep,
3053                                  graphic, sync_frame, USE_MASKING);
3054
3055     if (init)
3056       DrawInfoScreen_HelpText(element, action, direction, i - start);
3057
3058     i++;
3059   }
3060
3061   redraw_mask |= REDRAW_FIELD;
3062
3063   FrameCounter++;
3064 }
3065
3066 static char *getHelpText(int element, int action, int direction)
3067 {
3068   char token[MAX_LINE_LEN];
3069
3070   strcpy(token, element_info[element].token_name);
3071
3072   if (action != -1)
3073     strcat(token, element_action_info[action].suffix);
3074
3075   if (direction != -1)
3076     strcat(token, element_direction_info[MV_DIR_TO_BIT(direction)].suffix);
3077
3078   return getHashEntry(helptext_info, token);
3079 }
3080
3081 void DrawInfoScreen_HelpText(int element, int action, int direction, int ypos)
3082 {
3083   int font_nr = FONT_INFO_ELEMENTS;
3084   int font_width = getFontWidth(font_nr);
3085   int font_height = getFontHeight(font_nr);
3086   int yoffset = (TILEX - 2 * font_height) / 2;
3087   int xstart = mSX + MENU_SCREEN_INFO_SPACE_LEFT + TILEX + MINI_TILEX;
3088   int ystart = mSY + MENU_SCREEN_INFO_YSTART2 + yoffset;
3089   int ystep = TILEY + 4;
3090   int pad_left = xstart - SX;
3091   int pad_right = MENU_SCREEN_INFO_SPACE_RIGHT;
3092   int max_chars_per_line = (SXSIZE - pad_left - pad_right) / font_width;
3093   int max_lines_per_text = 2;    
3094   char *text = NULL;
3095
3096   if (action != -1 && direction != -1)          // element.action.direction
3097     text = getHelpText(element, action, direction);
3098
3099   if (text == NULL && action != -1)             // element.action
3100     text = getHelpText(element, action, -1);
3101
3102   if (text == NULL && direction != -1)          // element.direction
3103     text = getHelpText(element, -1, direction);
3104
3105   if (text == NULL)                             // base element
3106     text = getHelpText(element, -1, -1);
3107
3108   if (text == NULL)                             // not found
3109     text = "No description available";
3110
3111   if (strlen(text) <= max_chars_per_line)       // only one line of text
3112     ystart += getFontHeight(font_nr) / 2;
3113
3114   DrawTextBuffer(xstart, ystart + ypos * ystep, text, font_nr,
3115                  max_chars_per_line, -1, max_lines_per_text, 0, -1,
3116                  TRUE, FALSE, FALSE);
3117 }
3118
3119 static void DrawInfoScreen_TitleScreen(void)
3120 {
3121   SetGameStatus(GAME_MODE_TITLE);
3122
3123   DrawTitleScreen();
3124 }
3125
3126 void HandleInfoScreen_TitleScreen(int dx, int dy, int button)
3127 {
3128   HandleTitleScreen(0, 0, dx, dy, button);
3129 }
3130
3131 static void DrawInfoScreen_Elements(void)
3132 {
3133   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_ELEMENTS);
3134
3135   FadeOut(REDRAW_FIELD);
3136
3137   LoadHelpAnimInfo();
3138   LoadHelpTextInfo();
3139
3140   HandleInfoScreen_Elements(0, 0, MB_MENU_INITIALIZE);
3141
3142   FadeIn(REDRAW_FIELD);
3143 }
3144
3145 void HandleInfoScreen_Elements(int dx, int dy, int button)
3146 {
3147   static unsigned int info_delay = 0;
3148   static int num_anims;
3149   static int num_pages;
3150   static int page;
3151   int anims_per_page = NUM_INFO_ELEMENTS_ON_SCREEN;
3152   int i;
3153
3154   if (button == MB_MENU_INITIALIZE)
3155   {
3156     boolean new_element = TRUE;
3157
3158     num_anims = 0;
3159
3160     for (i = 0; helpanim_info[i].element != HELPANIM_LIST_END; i++)
3161     {
3162       if (helpanim_info[i].element == HELPANIM_LIST_NEXT)
3163         new_element = TRUE;
3164       else if (new_element)
3165       {
3166         num_anims++;
3167         new_element = FALSE;
3168       }
3169     }
3170
3171     num_pages = (num_anims + anims_per_page - 1) / anims_per_page;
3172     page = 0;
3173   }
3174
3175   if (button == MB_MENU_LEAVE)
3176   {
3177     PlaySound(SND_MENU_ITEM_SELECTING);
3178
3179     info_mode = INFO_MODE_MAIN;
3180     DrawInfoScreen();
3181
3182     return;
3183   }
3184   else if (button == MB_MENU_CHOICE || button == MB_MENU_INITIALIZE || dx)
3185   {
3186     if (button != MB_MENU_INITIALIZE)
3187     {
3188       PlaySound(SND_MENU_ITEM_SELECTING);
3189
3190       page += (dx < 0 ? -1 : +1);
3191     }
3192
3193     if (page < 0 || page >= num_pages)
3194     {
3195       FadeMenuSoundsAndMusic();
3196
3197       info_mode = INFO_MODE_MAIN;
3198       DrawInfoScreen();
3199
3200       return;
3201     }
3202
3203     if (button != MB_MENU_INITIALIZE)
3204       FadeSetNextScreen();
3205
3206     if (button != MB_MENU_INITIALIZE)
3207       FadeOut(REDRAW_FIELD);
3208
3209     DrawInfoScreen_HelpAnim(page * anims_per_page, num_anims, TRUE);
3210
3211     if (button != MB_MENU_INITIALIZE)
3212       FadeIn(REDRAW_FIELD);
3213   }
3214   else
3215   {
3216     if (DelayReached(&info_delay, GameFrameDelay))
3217       if (page < num_pages)
3218         DrawInfoScreen_HelpAnim(page * anims_per_page, num_anims, FALSE);
3219
3220     PlayMenuSoundIfLoop();
3221   }
3222 }
3223
3224 static void DrawInfoScreen_Music(void)
3225 {
3226   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_MUSIC);
3227
3228   FadeOut(REDRAW_FIELD);
3229
3230   ClearField();
3231   DrawHeadline();
3232
3233   LoadMusicInfo();
3234
3235   HandleInfoScreen_Music(0, 0, MB_MENU_INITIALIZE);
3236
3237   FadeIn(REDRAW_FIELD);
3238 }
3239
3240 void HandleInfoScreen_Music(int dx, int dy, int button)
3241 {
3242   static struct MusicFileInfo *list = NULL;
3243   int font_title = MENU_INFO_FONT_TITLE;
3244   int font_head  = MENU_INFO_FONT_HEAD;
3245   int font_text  = MENU_INFO_FONT_TEXT;
3246   int font_foot  = MENU_INFO_FONT_FOOT;
3247   int spacing_title = menu.headline1_spacing_info[info_mode];
3248   int spacing_head  = menu.headline2_spacing_info[info_mode];
3249   int ystep_title = getMenuTextStep(spacing_title, font_title);
3250   int ystep_head  = getMenuTextStep(spacing_head,  font_head);
3251   int ystart  = mSY - SY + MENU_SCREEN_INFO_YSTART1;
3252   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
3253
3254   if (button == MB_MENU_INITIALIZE)
3255   {
3256     list = music_file_info;
3257
3258     if (list == NULL)
3259     {
3260       FadeMenuSoundsAndMusic();
3261
3262       ClearField();
3263       DrawHeadline();
3264
3265       DrawTextSCentered(ystart, font_title, "No music info for this level set.");
3266       DrawTextSCentered(ybottom, font_foot, TEXT_INFO_MENU);
3267
3268       return;
3269     }
3270   }
3271
3272   if (button == MB_MENU_LEAVE)
3273   {
3274     PlaySound(SND_MENU_ITEM_SELECTING);
3275
3276     FadeMenuSoundsAndMusic();
3277
3278     info_mode = INFO_MODE_MAIN;
3279     DrawInfoScreen();
3280
3281     return;
3282   }
3283   else if (button == MB_MENU_CHOICE || button == MB_MENU_INITIALIZE || dx)
3284   {
3285     if (button != MB_MENU_INITIALIZE)
3286     {
3287       PlaySound(SND_MENU_ITEM_SELECTING);
3288
3289       if (list != NULL)
3290         list = (dx < 0 ? list->prev : list->next);
3291     }
3292
3293     if (list == NULL)
3294     {
3295       FadeMenuSoundsAndMusic();
3296
3297       info_mode = INFO_MODE_MAIN;
3298       DrawInfoScreen();
3299
3300       return;
3301     }
3302
3303     FadeMenuSoundsAndMusic();
3304
3305     if (list != music_file_info)
3306       FadeSetNextScreen();
3307
3308     if (button != MB_MENU_INITIALIZE)
3309       FadeOut(REDRAW_FIELD);
3310
3311     ClearField();
3312     DrawHeadline();
3313
3314     if (list->is_sound)
3315     {
3316       int sound = list->music;
3317
3318       if (IS_LOOP_SOUND(sound))
3319         PlaySoundLoop(sound);
3320       else
3321         PlaySound(sound);
3322
3323       DrawTextSCentered(ystart, font_title, "The Game Background Sounds:");
3324     }
3325     else
3326     {
3327       int music = list->music;
3328
3329       if (IS_LOOP_MUSIC(music))
3330         PlayMusicLoop(music);
3331       else
3332         PlayMusic(music);
3333
3334       DrawTextSCentered(ystart, font_title, "The Game Background Music:");
3335     }
3336
3337     ystart += ystep_title;
3338
3339     if (!strEqual(list->title, UNKNOWN_NAME))
3340     {
3341       if (!strEqual(list->title_header, UNKNOWN_NAME))
3342       {
3343         DrawTextSCentered(ystart, font_head, list->title_header);
3344         ystart += ystep_head;
3345       }
3346
3347       DrawTextFCentered(ystart, font_text, "\"%s\"", list->title);
3348       ystart += ystep_head;
3349     }
3350
3351     if (!strEqual(list->artist, UNKNOWN_NAME))
3352     {
3353       if (!strEqual(list->artist_header, UNKNOWN_NAME))
3354         DrawTextSCentered(ystart, font_head, list->artist_header);
3355       else
3356         DrawTextSCentered(ystart, font_head, "by");
3357
3358       ystart += ystep_head;
3359
3360       DrawTextFCentered(ystart, font_text, "%s", list->artist);
3361       ystart += ystep_head;
3362     }
3363
3364     if (!strEqual(list->album, UNKNOWN_NAME))
3365     {
3366       if (!strEqual(list->album_header, UNKNOWN_NAME))
3367         DrawTextSCentered(ystart, font_head, list->album_header);
3368       else
3369         DrawTextSCentered(ystart, font_head, "from the album");
3370
3371       ystart += ystep_head;
3372
3373       DrawTextFCentered(ystart, font_text, "\"%s\"", list->album);
3374       ystart += ystep_head;
3375     }
3376
3377     if (!strEqual(list->year, UNKNOWN_NAME))
3378     {
3379       if (!strEqual(list->year_header, UNKNOWN_NAME))
3380         DrawTextSCentered(ystart, font_head, list->year_header);
3381       else
3382         DrawTextSCentered(ystart, font_head, "from the year");
3383
3384       ystart += ystep_head;
3385
3386       DrawTextFCentered(ystart, font_text, "%s", list->year);
3387       ystart += ystep_head;
3388     }
3389
3390     DrawTextSCentered(ybottom, font_foot, TEXT_NEXT_PAGE);
3391
3392     if (button != MB_MENU_INITIALIZE)
3393       FadeIn(REDRAW_FIELD);
3394   }
3395
3396   if (list != NULL && list->is_sound && IS_LOOP_SOUND(list->music))
3397     PlaySoundLoop(list->music);
3398 }
3399
3400 static void DrawInfoScreen_CreditsScreen(int screen_nr)
3401 {
3402   int font_title = MENU_INFO_FONT_TITLE;
3403   int font_text  = MENU_INFO_FONT_TEXT;
3404   int font_foot  = MENU_INFO_FONT_FOOT;
3405   int spacing_title = menu.headline1_spacing_info[info_mode];
3406   int spacing_line  = menu.line_spacing_info[info_mode];
3407   int ystep_title = getMenuTextStep(spacing_title, font_title);
3408   int ystart  = mSY - SY + MENU_SCREEN_INFO_YSTART1;
3409   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
3410
3411   ClearField();
3412   DrawHeadline();
3413
3414   DrawTextSCentered(ystart, font_title, "Credits:");
3415
3416   char *filename = getCreditsFilename(screen_nr, use_global_credits_screens);
3417   int width = SXSIZE;
3418   int height = MENU_SCREEN_INFO_YBOTTOM - MENU_SCREEN_INFO_YSTART1;
3419   int chars = width / getFontWidth(font_text);
3420   int lines = height / getFontHeight(font_text);
3421   int padx = (width - chars * getFontWidth(font_text)) / 2;
3422   int line_spacing = getMenuTextSpacing(spacing_line, font_text);
3423   boolean autowrap = FALSE;
3424   boolean centered = TRUE;
3425   boolean parse_comments = TRUE;
3426
3427   DrawTextFile(mSX + padx, mSY + MENU_SCREEN_INFO_YSTART1 + ystep_title,
3428                filename, font_text, chars, -1, lines, line_spacing, -1,
3429                autowrap, centered, parse_comments);
3430
3431   boolean last_screen = (screen_nr == num_credits_screens - 1);
3432   char *text_foot = (last_screen ? TEXT_INFO_MENU : TEXT_NEXT_PAGE);
3433
3434   DrawTextSCentered(ybottom, font_foot, text_foot);
3435 }
3436
3437 static void DrawInfoScreen_Credits(void)
3438 {
3439   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_CREDITS);
3440
3441   FadeMenuSoundsAndMusic();
3442
3443   FadeOut(REDRAW_FIELD);
3444
3445   HandleInfoScreen_Credits(0, 0, MB_MENU_INITIALIZE);
3446
3447   FadeIn(REDRAW_FIELD);
3448 }
3449
3450 void HandleInfoScreen_Credits(int dx, int dy, int button)
3451 {
3452   static int screen_nr = 0;
3453
3454   if (button == MB_MENU_INITIALIZE)
3455   {
3456     int i;
3457
3458     // determine number of (global or level set specific) credits screens
3459     for (i = 0; i < 2; i++)
3460     {
3461       num_credits_screens = 0;
3462       use_global_credits_screens = i;
3463
3464       while (getCreditsFilename(num_credits_screens,
3465                                 use_global_credits_screens) != NULL)
3466         num_credits_screens++;
3467
3468       if (num_credits_screens > 0)
3469         break;
3470     }
3471
3472     if (num_credits_screens == 0)
3473     {
3474       int font_title = MENU_INFO_FONT_TITLE;
3475       int font_foot  = MENU_INFO_FONT_FOOT;
3476       int ystart  = mSY - SY + MENU_SCREEN_INFO_YSTART1;
3477       int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
3478
3479       ClearField();
3480       DrawHeadline();
3481
3482       DrawTextSCentered(ystart, font_title, "No credits for this level set.");
3483       DrawTextSCentered(ybottom, font_foot, TEXT_INFO_MENU);
3484
3485       return;
3486     }
3487
3488     screen_nr = 0;
3489
3490     DrawInfoScreen_CreditsScreen(screen_nr);
3491   }
3492   else if (button == MB_MENU_LEAVE)
3493   {
3494     PlaySound(SND_MENU_ITEM_SELECTING);
3495
3496     info_mode = INFO_MODE_MAIN;
3497     DrawInfoScreen();
3498
3499     return;
3500   }
3501   else if (button == MB_MENU_CHOICE || dx)
3502   {
3503     PlaySound(SND_MENU_ITEM_SELECTING);
3504
3505     screen_nr += (dx < 0 ? -1 : +1);
3506
3507     if (screen_nr < 0 || screen_nr >= num_credits_screens)
3508     {
3509       FadeMenuSoundsAndMusic();
3510
3511       info_mode = INFO_MODE_MAIN;
3512       DrawInfoScreen();
3513
3514       return;
3515     }
3516
3517     FadeSetNextScreen();
3518
3519     FadeOut(REDRAW_FIELD);
3520
3521     DrawInfoScreen_CreditsScreen(screen_nr);
3522
3523     FadeIn(REDRAW_FIELD);
3524   }
3525   else
3526   {
3527     PlayMenuSoundIfLoop();
3528   }
3529 }
3530
3531 static void DrawInfoScreen_ProgramScreen(int screen_nr)
3532 {
3533   int font_title = MENU_INFO_FONT_TITLE;
3534   int font_text  = MENU_INFO_FONT_TEXT;
3535   int font_foot  = MENU_INFO_FONT_FOOT;
3536   int spacing_title = menu.headline1_spacing_info[info_mode];
3537   int spacing_line  = menu.line_spacing_info[info_mode];
3538   int ystep_title = getMenuTextStep(spacing_title, font_title);
3539   int ystart  = mSY - SY + MENU_SCREEN_INFO_YSTART1;
3540   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
3541
3542   ClearField();
3543   DrawHeadline();
3544
3545   DrawTextSCentered(ystart, font_title, "Program Information:");
3546
3547   char *filename = getProgramInfoFilename(screen_nr);
3548   int width = SXSIZE;
3549   int height = MENU_SCREEN_INFO_YBOTTOM - MENU_SCREEN_INFO_YSTART1;
3550   int chars = width / getFontWidth(font_text);
3551   int lines = height / getFontHeight(font_text);
3552   int padx = (width - chars * getFontWidth(font_text)) / 2;
3553   int line_spacing = getMenuTextSpacing(spacing_line, font_text);
3554   boolean autowrap = FALSE;
3555   boolean centered = TRUE;
3556   boolean parse_comments = TRUE;
3557
3558   DrawTextFile(mSX + padx, mSY + MENU_SCREEN_INFO_YSTART1 + ystep_title,
3559                filename, font_text, chars, -1, lines, line_spacing, -1,
3560                autowrap, centered, parse_comments);
3561
3562   boolean last_screen = (screen_nr == num_program_info_screens - 1);
3563   char *text_foot = (last_screen ? TEXT_INFO_MENU : TEXT_NEXT_PAGE);
3564
3565   DrawTextSCentered(ybottom, font_foot, text_foot);
3566 }
3567
3568 static void DrawInfoScreen_Program(void)
3569 {
3570   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_PROGRAM);
3571
3572   FadeMenuSoundsAndMusic();
3573
3574   FadeOut(REDRAW_FIELD);
3575
3576   HandleInfoScreen_Program(0, 0, MB_MENU_INITIALIZE);
3577
3578   FadeIn(REDRAW_FIELD);
3579 }
3580
3581 void HandleInfoScreen_Program(int dx, int dy, int button)
3582 {
3583   static int screen_nr = 0;
3584
3585   if (button == MB_MENU_INITIALIZE)
3586   {
3587     // determine number of program info screens
3588     num_program_info_screens = 0;
3589
3590     while (getProgramInfoFilename(num_program_info_screens) != NULL)
3591       num_program_info_screens++;
3592
3593     if (num_program_info_screens == 0)
3594     {
3595       int font_title = MENU_INFO_FONT_TITLE;
3596       int font_foot  = MENU_INFO_FONT_FOOT;
3597       int ystart  = mSY - SY + MENU_SCREEN_INFO_YSTART1;
3598       int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
3599
3600       ClearField();
3601       DrawHeadline();
3602
3603       DrawTextSCentered(ystart, font_title, "No program info available.");
3604       DrawTextSCentered(ybottom, font_foot, TEXT_INFO_MENU);
3605
3606       return;
3607     }
3608
3609     screen_nr = 0;
3610
3611     DrawInfoScreen_ProgramScreen(screen_nr);
3612   }
3613   else if (button == MB_MENU_LEAVE)
3614   {
3615     PlaySound(SND_MENU_ITEM_SELECTING);
3616
3617     info_mode = INFO_MODE_MAIN;
3618     DrawInfoScreen();
3619
3620     return;
3621   }
3622   else if (button == MB_MENU_CHOICE || dx)
3623   {
3624     PlaySound(SND_MENU_ITEM_SELECTING);
3625
3626     screen_nr += (dx < 0 ? -1 : +1);
3627
3628     if (screen_nr < 0 || screen_nr >= num_program_info_screens)
3629     {
3630       FadeMenuSoundsAndMusic();
3631
3632       info_mode = INFO_MODE_MAIN;
3633       DrawInfoScreen();
3634
3635       return;
3636     }
3637
3638     FadeSetNextScreen();
3639
3640     FadeOut(REDRAW_FIELD);
3641
3642     DrawInfoScreen_ProgramScreen(screen_nr);
3643
3644     FadeIn(REDRAW_FIELD);
3645   }
3646   else
3647   {
3648     PlayMenuSoundIfLoop();
3649   }
3650 }
3651
3652 static void DrawInfoScreen_Version(void)
3653 {
3654   int font_title = MENU_INFO_FONT_TITLE;
3655   int font_head  = MENU_INFO_FONT_HEAD;
3656   int font_text  = MENU_INFO_FONT_TEXT;
3657   int font_foot  = MENU_INFO_FONT_FOOT;
3658   int spacing_title = menu.headline1_spacing_info[info_mode];
3659   int spacing_head  = menu.headline2_spacing_info[info_mode];
3660   int spacing_para  = menu.paragraph_spacing_info[info_mode];
3661   int spacing_line  = menu.line_spacing_info[info_mode];
3662   int xstep = getFontWidth(font_text);
3663   int ystep_title = getMenuTextStep(spacing_title, font_title);
3664   int ystep_head  = getMenuTextStep(spacing_head,  font_head);
3665   int ystep_para  = getMenuTextStep(spacing_para,  font_text);
3666   int ystep_line  = getMenuTextStep(spacing_line,  font_text);
3667   int ystart  = mSY - SY + MENU_SCREEN_INFO_YSTART1;
3668   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
3669   int xstart1 = mSX - SX + 2 * xstep;
3670   int xstart2 = mSX - SX + 18 * xstep;
3671   int xstart3 = mSX - SX + 28 * xstep;
3672   SDL_version sdl_version_compiled;
3673   const SDL_version *sdl_version_linked;
3674   int driver_name_len = 10;
3675   SDL_version sdl_version_linked_ext;
3676   const char *driver_name = NULL;
3677
3678   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_VERSION);
3679
3680   FadeOut(REDRAW_FIELD);
3681
3682   ClearField();
3683   DrawHeadline();
3684
3685   DrawTextSCentered(ystart, font_title, "Version Information:");
3686   ystart += ystep_title;
3687
3688   DrawTextF(xstart1, ystart, font_head, "Name");
3689   DrawTextF(xstart2, ystart, font_text, getProgramTitleString());
3690   ystart += ystep_line;
3691
3692   if (!strEqual(getProgramVersionString(), getProgramRealVersionString()))
3693   {
3694     DrawTextF(xstart1, ystart, font_head, "Version (fake)");
3695     DrawTextF(xstart2, ystart, font_text, getProgramVersionString());
3696     ystart += ystep_line;
3697
3698     DrawTextF(xstart1, ystart, font_head, "Version (real)");
3699     DrawTextF(xstart2, ystart, font_text, getProgramRealVersionString());
3700     ystart += ystep_line;
3701   }
3702   else
3703   {
3704     DrawTextF(xstart1, ystart, font_head, "Version");
3705     DrawTextF(xstart2, ystart, font_text, getProgramVersionString());
3706     ystart += ystep_line;
3707   }
3708
3709   DrawTextF(xstart1, ystart, font_head, "Platform");
3710   DrawTextF(xstart2, ystart, font_text, "%s (%s)",
3711             PLATFORM_STRING,
3712             PLATFORM_XX_BIT_STRING);
3713   ystart += ystep_line;
3714
3715   DrawTextF(xstart1, ystart, font_head, "Target");
3716   DrawTextF(xstart2, ystart, font_text, TARGET_STRING);
3717   ystart += ystep_line;
3718
3719   DrawTextF(xstart1, ystart, font_head, "Source date");
3720   DrawTextF(xstart2, ystart, font_text, getSourceDateString());
3721   ystart += ystep_line;
3722
3723   DrawTextF(xstart1, ystart, font_head, "Commit hash");
3724   DrawTextF(xstart2, ystart, font_text, getSourceHashString());
3725   ystart += ystep_para;
3726
3727   DrawTextF(xstart1, ystart, font_head, "Library");
3728   DrawTextF(xstart2, ystart, font_head, "compiled");
3729   DrawTextF(xstart3, ystart, font_head, "linked");
3730   ystart += ystep_head;
3731
3732   SDL_VERSION(&sdl_version_compiled);
3733   SDL_GetVersion(&sdl_version_linked_ext);
3734   sdl_version_linked = &sdl_version_linked_ext;
3735
3736   DrawTextF(xstart1, ystart, font_text, "SDL");
3737   DrawTextF(xstart2, ystart, font_text, "%d.%d.%d",
3738             sdl_version_compiled.major,
3739             sdl_version_compiled.minor,
3740             sdl_version_compiled.patch);
3741   DrawTextF(xstart3, ystart, font_text, "%d.%d.%d",
3742             sdl_version_linked->major,
3743             sdl_version_linked->minor,
3744             sdl_version_linked->patch);
3745   ystart += ystep_line;
3746
3747   SDL_IMAGE_VERSION(&sdl_version_compiled);
3748   sdl_version_linked = IMG_Linked_Version();
3749
3750   DrawTextF(xstart1, ystart, font_text, "SDL_image");
3751   DrawTextF(xstart2, ystart, font_text, "%d.%d.%d",
3752             sdl_version_compiled.major,
3753             sdl_version_compiled.minor,
3754             sdl_version_compiled.patch);
3755   DrawTextF(xstart3, ystart, font_text, "%d.%d.%d",
3756             sdl_version_linked->major,
3757             sdl_version_linked->minor,
3758             sdl_version_linked->patch);
3759   ystart += ystep_line;
3760
3761   SDL_MIXER_VERSION(&sdl_version_compiled);
3762   sdl_version_linked = Mix_Linked_Version();
3763
3764   DrawTextF(xstart1, ystart, font_text, "SDL_mixer");
3765   DrawTextF(xstart2, ystart, font_text, "%d.%d.%d",
3766             sdl_version_compiled.major,
3767             sdl_version_compiled.minor,
3768             sdl_version_compiled.patch);
3769   DrawTextF(xstart3, ystart, font_text, "%d.%d.%d",
3770             sdl_version_linked->major,
3771             sdl_version_linked->minor,
3772             sdl_version_linked->patch);
3773   ystart += ystep_line;
3774
3775   SDL_NET_VERSION(&sdl_version_compiled);
3776   sdl_version_linked = SDLNet_Linked_Version();
3777
3778   DrawTextF(xstart1, ystart, font_text, "SDL_net");
3779   DrawTextF(xstart2, ystart, font_text, "%d.%d.%d",
3780             sdl_version_compiled.major,
3781             sdl_version_compiled.minor,
3782             sdl_version_compiled.patch);
3783   DrawTextF(xstart3, ystart, font_text, "%d.%d.%d",
3784             sdl_version_linked->major,
3785             sdl_version_linked->minor,
3786             sdl_version_linked->patch);
3787   ystart += ystep_para;
3788
3789   DrawTextF(xstart1, ystart, font_head, "Driver");
3790   DrawTextF(xstart2, ystart, font_head, "Requested");
3791   DrawTextF(xstart3, ystart, font_head, "Used");
3792   ystart += ystep_head;
3793
3794   driver_name =
3795     getStringCopyNStatic(SDLGetRendererName(), driver_name_len);
3796
3797   DrawTextF(xstart1, ystart, font_text, "Render Driver");
3798   DrawTextF(xstart2, ystart, font_text, "%s", setup.system.sdl_renderdriver);
3799   DrawTextF(xstart3, ystart, font_text, "%s", driver_name);
3800   ystart += ystep_line;
3801
3802   driver_name =
3803     getStringCopyNStatic(SDL_GetCurrentVideoDriver(), driver_name_len);
3804
3805   DrawTextF(xstart1, ystart, font_text, "Video Driver");
3806   DrawTextF(xstart2, ystart, font_text, "%s", setup.system.sdl_videodriver);
3807   DrawTextF(xstart3, ystart, font_text, "%s", driver_name);
3808   ystart += ystep_line;
3809
3810   driver_name =
3811     getStringCopyNStatic(SDL_GetCurrentAudioDriver(), driver_name_len);
3812
3813   DrawTextF(xstart1, ystart, font_text, "Audio Driver");
3814   DrawTextF(xstart2, ystart, font_text, "%s", setup.system.sdl_audiodriver);
3815   DrawTextF(xstart3, ystart, font_text, "%s", driver_name);
3816
3817   DrawTextSCentered(ybottom, font_foot, TEXT_INFO_MENU);
3818
3819   FadeIn(REDRAW_FIELD);
3820 }
3821
3822 void HandleInfoScreen_Version(int button)
3823 {
3824   if (button == MB_MENU_LEAVE)
3825   {
3826     PlaySound(SND_MENU_ITEM_SELECTING);
3827
3828     info_mode = INFO_MODE_MAIN;
3829     DrawInfoScreen();
3830
3831     return;
3832   }
3833   else if (button == MB_MENU_CHOICE)
3834   {
3835     PlaySound(SND_MENU_ITEM_SELECTING);
3836
3837     FadeMenuSoundsAndMusic();
3838
3839     info_mode = INFO_MODE_MAIN;
3840     DrawInfoScreen();
3841   }
3842   else
3843   {
3844     PlayMenuSoundIfLoop();
3845   }
3846 }
3847
3848 static void DrawInfoScreen_LevelSet(void)
3849 {
3850   struct TitleMessageInfo *tmi = &readme;
3851   char *filename = getLevelSetInfoFilename();
3852   char *title = "Level Set Information:";
3853   int font_foot = MENU_INFO_FONT_FOOT;
3854   int ystart  = mSY - SY + MENU_SCREEN_INFO_YSTART1;
3855   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
3856
3857   if (filename == NULL)
3858   {
3859     DrawInfoScreen_NotAvailable(title, "No information for this level set.");
3860
3861     return;
3862   }
3863
3864   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_LEVELSET);
3865
3866   FadeOut(REDRAW_FIELD);
3867
3868   ClearField();
3869   DrawHeadline();
3870
3871   DrawTextSCentered(ystart, FONT_TEXT_1, title);
3872
3873   // if x position set to "-1", automatically determine by playfield width
3874   if (tmi->x == -1)
3875     tmi->x = SXSIZE / 2;
3876
3877   // if y position set to "-1", use static default value
3878   if (tmi->y == -1)
3879     tmi->y = 150;
3880
3881   // if width set to "-1", automatically determine by playfield width
3882   if (tmi->width == -1)
3883     tmi->width = SXSIZE - 2 * TILEX;
3884
3885   // if height set to "-1", automatically determine by playfield height
3886   if (tmi->height == -1)
3887     tmi->height = MENU_SCREEN_INFO_YBOTTOM - tmi->y - 10;
3888
3889   // if chars set to "-1", automatically determine by text and font width
3890   if (tmi->chars == -1)
3891     tmi->chars = tmi->width / getFontWidth(tmi->font);
3892   else
3893     tmi->width = tmi->chars * getFontWidth(tmi->font);
3894
3895   // if lines set to "-1", automatically determine by text and font height
3896   if (tmi->lines == -1)
3897     tmi->lines = tmi->height / getFontHeight(tmi->font);
3898   else
3899     tmi->height = tmi->lines * getFontHeight(tmi->font);
3900
3901   DrawTextFile(mSX + ALIGNED_TEXT_XPOS(tmi), mSY + ALIGNED_TEXT_YPOS(tmi),
3902                filename, tmi->font, tmi->chars, -1, tmi->lines, 0, -1,
3903                tmi->autowrap, tmi->centered, tmi->parse_comments);
3904
3905   DrawTextSCentered(ybottom, font_foot, TEXT_INFO_MENU);
3906
3907   FadeIn(REDRAW_FIELD);
3908 }
3909
3910 static void HandleInfoScreen_LevelSet(int button)
3911 {
3912   if (button == MB_MENU_LEAVE)
3913   {
3914     PlaySound(SND_MENU_ITEM_SELECTING);
3915
3916     info_mode = INFO_MODE_MAIN;
3917     DrawInfoScreen();
3918
3919     return;
3920   }
3921   else if (button == MB_MENU_CHOICE)
3922   {
3923     PlaySound(SND_MENU_ITEM_SELECTING);
3924
3925     FadeMenuSoundsAndMusic();
3926
3927     info_mode = INFO_MODE_MAIN;
3928     DrawInfoScreen();
3929   }
3930   else
3931   {
3932     PlayMenuSoundIfLoop();
3933   }
3934 }
3935
3936 static void DrawInfoScreen(void)
3937 {
3938   if (info_mode == INFO_MODE_TITLE)
3939     DrawInfoScreen_TitleScreen();
3940   else if (info_mode == INFO_MODE_ELEMENTS)
3941     DrawInfoScreen_Elements();
3942   else if (info_mode == INFO_MODE_MUSIC)
3943     DrawInfoScreen_Music();
3944   else if (info_mode == INFO_MODE_CREDITS)
3945     DrawInfoScreen_Credits();
3946   else if (info_mode == INFO_MODE_PROGRAM)
3947     DrawInfoScreen_Program();
3948   else if (info_mode == INFO_MODE_VERSION)
3949     DrawInfoScreen_Version();
3950   else if (info_mode == INFO_MODE_LEVELSET)
3951     DrawInfoScreen_LevelSet();
3952   else
3953     DrawInfoScreen_Main();
3954
3955   if (info_mode != INFO_MODE_MAIN &&
3956       info_mode != INFO_MODE_TITLE &&
3957       info_mode != INFO_MODE_MUSIC)
3958     PlayMenuSoundsAndMusic();
3959 }
3960
3961 void HandleInfoScreen(int mx, int my, int dx, int dy, int button)
3962 {
3963   if (info_mode == INFO_MODE_TITLE)
3964     HandleInfoScreen_TitleScreen(dx, dy, button);
3965   else if (info_mode == INFO_MODE_ELEMENTS)
3966     HandleInfoScreen_Elements(dx, dy, button);
3967   else if (info_mode == INFO_MODE_MUSIC)
3968     HandleInfoScreen_Music(dx, dy, button);
3969   else if (info_mode == INFO_MODE_CREDITS)
3970     HandleInfoScreen_Credits(dx, dy, button);
3971   else if (info_mode == INFO_MODE_PROGRAM)
3972     HandleInfoScreen_Program(dx, dy, button);
3973   else if (info_mode == INFO_MODE_VERSION)
3974     HandleInfoScreen_Version(button);
3975   else if (info_mode == INFO_MODE_LEVELSET)
3976     HandleInfoScreen_LevelSet(button);
3977   else
3978     HandleInfoScreen_Main(mx, my, dx, dy, button);
3979 }
3980
3981
3982 // ============================================================================
3983 // type name functions
3984 // ============================================================================
3985
3986 static TreeInfo *type_name_node = NULL;
3987 static char type_name_last[MAX_PLAYER_NAME_LEN + 1] = { 0 };
3988 static int type_name_nr = 0;
3989
3990 static int getPlayerNameColor(char *name)
3991 {
3992   return (strEqual(name, EMPTY_PLAYER_NAME) ? FC_BLUE : FC_RED);
3993 }
3994
3995 static void drawTypeNameText(char *name, struct TextPosInfo *pos,
3996                               boolean active)
3997 {
3998   char text[MAX_PLAYER_NAME_LEN + 2] = { 0 };
3999   boolean multiple_users = (game_status == GAME_MODE_PSEUDO_TYPENAMES);
4000   int sx = (multiple_users ? amSX + pos->x : mSX + ALIGNED_TEXT_XPOS(pos));
4001   int sy = (multiple_users ? amSY + pos->y : mSY + ALIGNED_TEXT_YPOS(pos));
4002   int font_nr = (active ? FONT_ACTIVE(pos->font) : pos->font);
4003   int font_width = getFontWidth(font_nr);
4004
4005   DrawBackgroundForFont(sx, sy, pos->width, pos->height, font_nr);
4006
4007   sprintf(text, "%s%c", name, (active ? '_' : '\0'));
4008
4009   pos->width = strlen(text) * font_width;
4010   sx = (multiple_users ? amSX + pos->x : mSX + ALIGNED_TEXT_XPOS(pos));
4011
4012   DrawText(sx, sy, text, font_nr);
4013 }
4014
4015 static void getTypeNameValues(char *name, struct TextPosInfo *pos, int *xpos)
4016 {
4017   struct MainControlInfo *mci = getMainControlInfo(MAIN_CONTROL_NAME);
4018
4019   *pos = *mci->pos_input;
4020
4021   if (game_status == GAME_MODE_PSEUDO_TYPENAMES)
4022   {
4023     TreeInfo *ti = player_name_current;
4024     int first_entry = ti->cl_first;
4025     int entry_pos = first_entry + ti->cl_cursor;
4026     TreeInfo *node_first = getTreeInfoFirstGroupEntry(ti);
4027     int xpos = MENU_SCREEN_START_XPOS;
4028     int ypos = MENU_SCREEN_START_YPOS + ti->cl_cursor;
4029
4030     type_name_node = getTreeInfoFromPos(node_first, entry_pos);
4031     type_name_nr = entry_pos;
4032
4033     strcpy(name, type_name_node->name);
4034
4035     pos->x = xpos * 32;
4036     pos->y = ypos * 32;
4037     pos->width = MAX_PLAYER_NAME_LEN * 32;
4038   }
4039   else
4040   {
4041     type_name_nr = user.nr;
4042
4043     strcpy(name, setup.player_name);
4044   }
4045
4046   strcpy(type_name_last, name);
4047
4048   if (strEqual(name, EMPTY_PLAYER_NAME))
4049     strcpy(name, "");
4050
4051   *xpos = strlen(name);
4052 }
4053
4054 static void setTypeNameValues_Name(char *name, struct TextPosInfo *pos)
4055 {
4056   // change name of edited user in global list of user names
4057   setString(&global.user_names[type_name_nr], name);
4058
4059   if (game_status == GAME_MODE_PSEUDO_TYPENAMES)
4060   {
4061     TreeInfo *node = type_name_node;
4062
4063     // change name of edited user in local menu tree structure
4064     setString(&node->name, name);
4065     setString(&node->name_sorting, name);
4066
4067     node->color = getPlayerNameColor(name);
4068     pos->font = MENU_CHOOSE_TREE_FONT(node->color);
4069   }
4070 }
4071
4072 static void setTypeNameValues(char *name, struct TextPosInfo *pos,
4073                               boolean changed)
4074 {
4075   boolean reset_setup = strEqual(name, "");
4076   boolean remove_user = strEqual(name, EMPTY_PLAYER_NAME);
4077   boolean create_user = strEqual(type_name_last, EMPTY_PLAYER_NAME);
4078
4079   if (!changed)
4080     strcpy(name, type_name_last);
4081
4082   if (strEqual(name, ""))
4083     strcpy(name, EMPTY_PLAYER_NAME);
4084
4085   setTypeNameValues_Name(name, pos);
4086
4087   // if player name not changed, no further action required
4088   if (strEqual(name, type_name_last))
4089     return;
4090
4091   // redraw player name before (possibly) opening request dialogs
4092   drawTypeNameText(name, pos, FALSE);
4093
4094   int last_user_nr = user.nr;
4095
4096   if (game_status == GAME_MODE_PSEUDO_TYPENAMES)
4097   {
4098     // save setup of currently active user (may differ from edited user)
4099     SaveSetup();
4100
4101     // temporarily change active user to edited user
4102     user.nr = type_name_nr;
4103
4104     if (create_user &&
4105         Request("Use current setup values for the new player?", REQ_ASK))
4106     {
4107       // use current setup values for new user, but create new player UUID
4108       setup.player_uuid = getStringCopy(getUUID());
4109     }
4110     else
4111     {
4112       // load setup for existing user (or start with defaults for new user)
4113       LoadSetup();
4114     }
4115   }
4116
4117   char *setup_filename = getSetupFilename();
4118   boolean setup_exists = fileExists(setup_filename);
4119
4120   // change name of edited user in setup structure
4121   strcpy(setup.player_name, name);
4122
4123   // save setup of edited user
4124   SaveSetup();
4125
4126   // change name of edited user on score server
4127   ApiRenamePlayerAsThread();
4128
4129   if (game_status == GAME_MODE_PSEUDO_TYPENAMES || reset_setup)
4130   {
4131     if (reset_setup)
4132     {
4133       if (Request("Reset setup values for this player?", REQ_ASK))
4134       {
4135         // remove setup config file
4136         unlink(setup_filename);
4137
4138         // set player name to default player name
4139         LoadSetup();
4140
4141         // update player name used by name typing functions
4142         strcpy(name, setup.player_name);
4143
4144         setTypeNameValues_Name(name, pos);
4145       }
4146     }
4147     else if (remove_user && type_name_nr != 0)
4148     {
4149       if (Request("Remove settings and tapes for deleted player?", REQ_ASK))
4150       {
4151         char *user_dir = getUserGameDataDir();
4152         char *user_dir_removed =
4153           getStringCat3WithSeparator(user_dir, "REMOVED",
4154                                      getCurrentTimestamp(), ".");
4155
4156         if (rename(user_dir, user_dir_removed) != 0)
4157           Request("Removing settings and tapes failed!", REQ_CONFIRM);
4158
4159         checked_free(user_dir_removed);
4160       }
4161     }
4162     else if (create_user && type_name_nr != 0 && !setup_exists)
4163     {
4164       if (Request("Create empty level set for the new player?", REQ_ASK))
4165       {
4166         char *levelset_subdir = getNewUserLevelSubdir();
4167
4168         if (CreateUserLevelSet(levelset_subdir, name, name, 100, FALSE))
4169         {
4170           AddUserLevelSetToLevelInfo(levelset_subdir);
4171
4172           LevelDirTree *leveldir_current_last = leveldir_current;
4173
4174           leveldir_current = getTreeInfoFromIdentifier(leveldir_first,
4175                                                        levelset_subdir);
4176
4177           // set level number of newly created level set to default value
4178           LoadLevelSetup_SeriesInfo();
4179
4180           // set newly created level set as current level set for new user
4181           SaveLevelSetup_LastSeries();
4182           SaveLevelSetup_SeriesInfo();
4183
4184           leveldir_current = leveldir_current_last;
4185         }
4186         else
4187         {
4188           Request("Creating new level set failed!", REQ_CONFIRM);
4189         }
4190       }
4191     }
4192
4193     // restore currently active user
4194     user.nr = last_user_nr;
4195
4196     // restore setup of currently active user
4197     LoadSetup();
4198
4199     // restore last level set of currently active user
4200     LoadLevelSetup_LastSeries();
4201     LoadLevelSetup_SeriesInfo();
4202   }
4203 }
4204
4205 static void HandleTypeNameExt(boolean initialize, Key key)
4206 {
4207   static struct TextPosInfo pos_name = { 0 };
4208   static char name[MAX_PLAYER_NAME_LEN + 1] = { 0 };
4209   static int xpos = 0;
4210   struct TextPosInfo *pos = &pos_name;
4211   char key_char = getValidConfigValueChar(getCharFromKey(key));
4212   boolean is_valid_key_char = (key_char != 0 && (key_char != ' ' || xpos > 0));
4213   boolean active = TRUE;
4214
4215   if (initialize)
4216   {
4217     getTypeNameValues(name, pos, &xpos);
4218
4219     int sx = mSX + ALIGNED_TEXT_XPOS(pos);
4220     int sy = mSY + ALIGNED_TEXT_YPOS(pos);
4221
4222     StartTextInput(sx, sy, pos->width, pos->height);
4223   }
4224   else if (is_valid_key_char && xpos < MAX_PLAYER_NAME_LEN)
4225   {
4226     name[xpos] = key_char;
4227     name[xpos + 1] = 0;
4228
4229     xpos++;
4230   }
4231   else if ((key == KSYM_Delete || key == KSYM_BackSpace) && xpos > 0)
4232   {
4233     xpos--;
4234
4235     name[xpos] = 0;
4236   }
4237   else if (key == KSYM_Return || key == KSYM_Escape)
4238   {
4239     boolean changed = (key == KSYM_Return);
4240
4241     StopTextInput();
4242
4243     setTypeNameValues(name, pos, changed);
4244
4245     active = FALSE;
4246   }
4247
4248   drawTypeNameText(name, pos, active);
4249
4250   if (!active)
4251   {
4252     SetGameStatus(game_status_last_screen);
4253
4254     if (game_status == GAME_MODE_MAIN)
4255       InitializeMainControls();
4256   }
4257 }
4258
4259 static void DrawTypeName(void)
4260 {
4261   HandleTypeNameExt(TRUE, 0);
4262 }
4263
4264 void HandleTypeName(Key key)
4265 {
4266   HandleTypeNameExt(FALSE, key);
4267 }
4268
4269
4270 // ============================================================================
4271 // tree menu functions
4272 // ============================================================================
4273
4274 static int getAlignXOffsetFromTreeInfo(TreeInfo *ti)
4275 {
4276   if (game_status != GAME_MODE_SETUP ||
4277       DRAW_MODE_SETUP(setup_mode) != SETUP_MODE_CHOOSE_OTHER)
4278     return 0;
4279
4280   int max_text_size = 0;
4281   TreeInfo *node;
4282
4283   for (node = getTreeInfoFirstGroupEntry(ti); node != NULL; node = node->next)
4284     max_text_size = MAX(max_text_size, strlen(node->name));
4285
4286   int num_entries = numTreeInfoInGroup(ti);
4287   boolean scrollbar_needed = (num_entries > NUM_MENU_ENTRIES_ON_SCREEN);
4288   int font_nr = MENU_CHOOSE_TREE_FONT(FC_RED);
4289   int text_width = max_text_size * getFontWidth(font_nr);
4290   int button_width = SC_MENUBUTTON_XSIZE;
4291   int scrollbar_xpos = SC_SCROLLBAR_XPOS + menu.scrollbar_xoffset;
4292   int screen_width = (scrollbar_needed ? scrollbar_xpos : SXSIZE);
4293   int align = menu.list_setup[SETUP_MODE_CHOOSE_OTHER].align;
4294   int x = ALIGNED_XPOS(0, screen_width, align) * -1;
4295   int align_xoffset_raw = ALIGNED_XPOS(x, button_width + text_width, align);
4296   int align_xoffset = MAX(0, align_xoffset_raw);
4297
4298   return align_xoffset;
4299 }
4300
4301 static int getAlignYOffsetFromTreeInfo(TreeInfo *ti)
4302 {
4303   if (game_status != GAME_MODE_SETUP ||
4304       DRAW_MODE_SETUP(setup_mode) != SETUP_MODE_CHOOSE_OTHER)
4305     return 0;
4306
4307   int num_entries = numTreeInfoInGroup(ti);
4308   int num_page_entries = MIN(num_entries, NUM_MENU_ENTRIES_ON_SCREEN);
4309   int font_nr = MENU_CHOOSE_TREE_FONT(FC_RED);
4310   int font_height = getFontHeight(font_nr);
4311   int text_height = font_height * num_page_entries;
4312   int page_height = font_height * NUM_MENU_ENTRIES_ON_SCREEN;
4313   int align = menu.list_setup[SETUP_MODE_CHOOSE_OTHER].valign;
4314   int y = ALIGNED_YPOS(0, page_height, align) * -1;
4315   int align_yoffset_raw = ALIGNED_YPOS(y, text_height, align);
4316   int align_yoffset = MAX(0, align_yoffset_raw);
4317
4318   return align_yoffset;
4319 }
4320
4321 static void DrawChooseTree(TreeInfo **ti_ptr)
4322 {
4323   int fade_mask = REDRAW_FIELD;
4324   boolean restart_music = (game_status != game_status_last_screen &&
4325                            game_status_last_screen != GAME_MODE_SCOREINFO);
4326
4327   if (CheckFadeAll())
4328     fade_mask = REDRAW_ALL;
4329
4330   if (*ti_ptr != NULL && strEqual((*ti_ptr)->subdir, STRING_TOP_DIRECTORY))
4331   {
4332     if (game_status == GAME_MODE_SETUP)
4333     {
4334       execSetupArtwork();
4335     }
4336     else        // GAME_MODE_LEVELS
4337     {
4338       SetGameStatus(GAME_MODE_MAIN);
4339
4340       DrawMainMenu();
4341     }
4342
4343     return;
4344   }
4345
4346   UnmapAllGadgets();
4347
4348   FreeScreenGadgets();
4349   CreateScreenGadgets();
4350
4351   if (restart_music)
4352     FadeMenuSoundsAndMusic();
4353
4354   FadeOut(fade_mask);
4355
4356   // needed if different viewport properties defined for this screen
4357   ChangeViewportPropertiesIfNeeded();
4358
4359   if (game_status == GAME_MODE_NAMES)
4360     SetMainBackgroundImage(IMG_BACKGROUND_NAMES);
4361   else if (game_status == GAME_MODE_LEVELNR)
4362     SetMainBackgroundImage(IMG_BACKGROUND_LEVELNR);
4363   else if (game_status == GAME_MODE_LEVELS)
4364     SetMainBackgroundImage(IMG_BACKGROUND_LEVELS);
4365   else if (game_status == GAME_MODE_SCORES)
4366     SetMainBackgroundImage(IMG_BACKGROUND_SCORES);
4367
4368   ClearField();
4369
4370   OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
4371
4372   // map gadgets for high score screen
4373   if (game_status == GAME_MODE_SCORES)
4374     MapScreenMenuGadgets(SCREEN_MASK_SCORES);
4375
4376   MapScreenTreeGadgets(*ti_ptr);
4377
4378   HandleChooseTree(0, 0, 0, 0, MB_MENU_INITIALIZE, ti_ptr);
4379
4380   DrawMaskedBorder(fade_mask);
4381
4382   if (restart_music)
4383     PlayMenuSoundsAndMusic();
4384
4385   FadeIn(fade_mask);
4386 }
4387
4388 static int getChooseTreeFont(TreeInfo *node, boolean active)
4389 {
4390   if (game_status == GAME_MODE_SCORES)
4391     return (active ? FONT_TEXT_1_ACTIVE : FONT_TEXT_1);
4392   else
4393     return MENU_CHOOSE_TREE_FONT(MENU_CHOOSE_TREE_COLOR(node, active));
4394 }
4395
4396 static void drawChooseTreeText(TreeInfo *ti, int y, boolean active)
4397 {
4398   int num_entries = numTreeInfoInGroup(ti);
4399   boolean scrollbar_needed = (num_entries > NUM_MENU_ENTRIES_ON_SCREEN);
4400   int scrollbar_xpos = SC_SCROLLBAR_XPOS + menu.scrollbar_xoffset;
4401   int screen_width = (scrollbar_needed ? scrollbar_xpos : SXSIZE);
4402   int first_entry = ti->cl_first;
4403   int entry_pos = first_entry + y;
4404   TreeInfo *node_first = getTreeInfoFirstGroupEntry(ti);
4405   TreeInfo *node = getTreeInfoFromPos(node_first, entry_pos);
4406   int font_nr = getChooseTreeFont(node, active);
4407   int font_xoffset = getFontDrawOffsetX(font_nr);
4408   int xpos = MENU_SCREEN_START_XPOS;
4409   int ypos = MENU_SCREEN_START_YPOS + y;
4410   int startdx = xpos * 32;
4411   int startdy = ypos * 32;
4412   int startx = amSX + startdx;
4413   int starty = amSY + startdy;
4414   int startx_text = startx + font_xoffset;
4415   int endx_text = amSX + screen_width;
4416   int max_text_size = endx_text - startx_text;
4417   int max_buffer_len = max_text_size / getFontWidth(font_nr);
4418   char buffer[max_buffer_len + 1];
4419
4420   if (game_status == GAME_MODE_SCORES && !node->parent_link)
4421   {
4422     int font_nr1 = (active ? FONT_TEXT_1_ACTIVE : FONT_TEXT_1);
4423     int font_nr2 = (active ? FONT_TEXT_2_ACTIVE : FONT_TEXT_2);
4424     int font_nr3 = (active ? FONT_TEXT_3_ACTIVE : FONT_TEXT_3);
4425     int font_nr4 = (active ? FONT_TEXT_4_ACTIVE : FONT_TEXT_4);
4426     int font_size_1 = getFontWidth(font_nr1);
4427     int font_size_3 = getFontWidth(font_nr3);
4428     int font_size_4 = getFontWidth(font_nr4);
4429     int text_size_1 = 4 * font_size_1;
4430     int text_size_4 = 5 * font_size_4;
4431     int border = amSX - SX + getFontDrawOffsetX(font_nr1);
4432     int dx1 = 0;
4433     int dx3 = text_size_1;
4434     int dx4 = SXSIZE - 2 * startdx - 2 * border - text_size_4;
4435     int num_dots = (dx4 - dx3) / font_size_3;
4436     int startx1 = startx + dx1;
4437     int startx3 = startx + dx3;
4438     int startx4 = startx + dx4;
4439     int pos = node->pos;
4440     char *pos_text = getHallOfFameRankText(pos, 3);
4441     int i;
4442
4443     DrawText(startx1, starty, pos_text, font_nr1);
4444
4445     for (i = 0; i < num_dots; i++)
4446       DrawText(startx3 + i * font_size_3, starty, ".", font_nr3);
4447
4448     if (!strEqual(scores.entry[pos].name, EMPTY_PLAYER_NAME))
4449       DrawText(startx3, starty, scores.entry[pos].name, font_nr2);
4450
4451     DrawText(startx4, starty, getHallOfFameScoreText(pos, 5), font_nr4);
4452   }
4453   else
4454   {
4455     strncpy(buffer, node->name, max_buffer_len);
4456     buffer[max_buffer_len] = '\0';
4457
4458     DrawText(startx, starty, buffer, font_nr);
4459   }
4460 }
4461
4462 static void drawChooseTreeHeadExt(int type, char *title_string)
4463 {
4464   int yoffset_sets = MENU_TITLE1_YPOS;
4465   int yoffset_setup = 16;
4466   int yoffset = (type == TREE_TYPE_SCORE_ENTRY ||
4467                  type == TREE_TYPE_LEVEL_DIR ||
4468                  type == TREE_TYPE_LEVEL_NR ? yoffset_sets : yoffset_setup);
4469
4470   DrawTextSCentered(mSY - SY + yoffset, FONT_TITLE_1, title_string);
4471 }
4472
4473 static void drawChooseTreeHead(TreeInfo *ti)
4474 {
4475   drawChooseTreeHeadExt(ti->type, ti->infotext);
4476 }
4477
4478 static void drawChooseTreeList(TreeInfo *ti)
4479 {
4480   int first_entry = ti->cl_first;
4481   int num_entries = numTreeInfoInGroup(ti);
4482   int num_page_entries = MIN(num_entries, NUM_MENU_ENTRIES_ON_SCREEN);
4483   int i;
4484
4485   clearMenuListArea();
4486
4487   for (i = 0; i < num_page_entries; i++)
4488   {
4489     TreeInfo *node, *node_first;
4490     int entry_pos = first_entry + i;
4491
4492     node_first = getTreeInfoFirstGroupEntry(ti);
4493     node = getTreeInfoFromPos(node_first, entry_pos);
4494
4495     drawChooseTreeText(ti, i, FALSE);
4496
4497     if (node->parent_link)
4498       initCursor(i, IMG_MENU_BUTTON_LEAVE_MENU);
4499     else if (node->level_group)
4500       initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
4501     else
4502       initCursor(i, IMG_MENU_BUTTON);
4503
4504     if (game_status == GAME_MODE_SCORES && node->pos == scores.last_added)
4505       initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
4506
4507     if (game_status == GAME_MODE_NAMES)
4508       drawChooseTreeEdit(i, FALSE);
4509   }
4510
4511   redraw_mask |= REDRAW_FIELD;
4512 }
4513
4514 static void drawChooseTreeInfo(TreeInfo *ti)
4515 {
4516   int entry_pos = ti->cl_first + ti->cl_cursor;
4517   int last_redraw_mask = redraw_mask;
4518   int ypos = MENU_TITLE2_YPOS;
4519   int font_nr = FONT_TITLE_2;
4520   int x;
4521
4522   if (ti->type == TREE_TYPE_LEVEL_NR)
4523     DrawTextFCentered(ypos, font_nr, leveldir_current->name);
4524
4525   if (ti->type == TREE_TYPE_SCORE_ENTRY)
4526     DrawTextFCentered(ypos, font_nr, "HighScores of Level %d",
4527                       scores.last_level_nr);
4528
4529   if (ti->type != TREE_TYPE_LEVEL_DIR)
4530     return;
4531
4532   TreeInfo *node_first = getTreeInfoFirstGroupEntry(ti);
4533   TreeInfo *node = getTreeInfoFromPos(node_first, entry_pos);
4534
4535   DrawBackgroundForFont(SX, SY + ypos, SXSIZE, getFontHeight(font_nr), font_nr);
4536
4537   if (node->parent_link)
4538     DrawTextFCentered(ypos, font_nr, "leave \"%s\"",
4539                       node->node_parent->name);
4540   else if (node->level_group)
4541     DrawTextFCentered(ypos, font_nr, "enter \"%s\"",
4542                       node->name);
4543   else if (ti->type == TREE_TYPE_LEVEL_DIR)
4544     DrawTextFCentered(ypos, font_nr, "%3d %s (%s)",
4545                       node->levels, (node->levels > 1 ? "levels" : "level"),
4546                       node->class_desc);
4547
4548   // let BackToFront() redraw only what is needed
4549   redraw_mask = last_redraw_mask;
4550   for (x = 0; x < SCR_FIELDX; x++)
4551     MarkTileDirty(x, 1);
4552 }
4553
4554 static void drawChooseTreeCursorAndText(TreeInfo *ti, boolean active)
4555 {
4556   drawChooseTreeCursor(ti->cl_cursor, active);
4557   drawChooseTreeText(ti, ti->cl_cursor, active);
4558 }
4559
4560 static void drawChooseTreeScreen(TreeInfo *ti)
4561 {
4562   drawChooseTreeHead(ti);
4563   drawChooseTreeList(ti);
4564   drawChooseTreeInfo(ti);
4565   drawChooseTreeCursorAndText(ti, TRUE);
4566
4567   AdjustChooseTreeScrollbar(ti, SCREEN_CTRL_ID_SCROLL_VERTICAL);
4568
4569   // scroll bar and buttons may just have been added after reloading scores
4570   if (game_status == GAME_MODE_SCORES)
4571     MapScreenTreeGadgets(ti);
4572 }
4573
4574 static void drawChooseTreeScreen_Scores_NotAvailable(void)
4575 {
4576   // dirty workaround to use spacing definitions from info screen
4577   info_mode = INFO_MODE_TITLE;
4578
4579   char *text_info = "HighScores of Level %d";
4580   char *text_title = "Score information:";
4581   char *text_error = "No scores for this level.";
4582   char *text_foot = "Press any key or button for main menu";
4583   int font_info = FONT_TITLE_2;
4584   int font_title = FONT_INITIAL_3;
4585   int font_error = FONT_INITIAL_4;
4586   int font_foot  = FONT_INITIAL_2;
4587   int spacing_title = menu.headline1_spacing_info[INFO_MODE_TITLE];
4588   int ystep_title = getMenuTextStep(spacing_title, font_title);
4589   int ystart1 = mSY - SY + MENU_SCREEN_INFO_YSTART1;
4590   int ystart2 = ystart1 + ystep_title;
4591   int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
4592   int ystart0 = MENU_TITLE2_YPOS;
4593
4594   drawChooseTreeHeadExt(TREE_TYPE_SCORE_ENTRY, INFOTEXT_SCORE_ENTRY);
4595   DrawTextFCentered(ystart0, font_info, text_info, scores.last_level_nr);
4596
4597   DrawTextSCentered(ystart1, font_title, text_title);
4598   DrawTextSCentered(ystart2, font_error, text_error);
4599
4600   DrawTextSCentered(ybottom, font_foot, text_foot);
4601 }
4602
4603 static TreeInfo *setHallOfFameActiveEntry(TreeInfo **ti_ptr)
4604 {
4605   int score_pos = scores.last_added;
4606
4607   if (game_status_last_screen == GAME_MODE_SCOREINFO)
4608     score_pos = scores.last_entry_nr;
4609
4610   // set current tree entry to last added score entry
4611   *ti_ptr = getTreeInfoFromIdentifier(score_entries, i_to_a(score_pos));
4612
4613   // if that fails, set current tree entry to first entry (back link)
4614   if (*ti_ptr == NULL)
4615     *ti_ptr = score_entries->node_group;
4616
4617   int num_entries = numTreeInfoInGroup(*ti_ptr);
4618   int num_page_entries = MIN(num_entries, NUM_MENU_ENTRIES_ON_SCREEN);
4619   int pos_score = getPosFromTreeInfo(*ti_ptr);
4620   int pos_first_raw = pos_score - (num_page_entries + 1) / 2 + 1;
4621   int pos_first = MIN(MAX(0, pos_first_raw), num_entries - num_page_entries);
4622
4623   (*ti_ptr)->cl_first = pos_first;
4624   (*ti_ptr)->cl_cursor = pos_score - pos_first;
4625
4626   return *ti_ptr;
4627 }
4628
4629 static void HandleChooseTree(int mx, int my, int dx, int dy, int button,
4630                              TreeInfo **ti_ptr)
4631 {
4632   TreeInfo *ti = *ti_ptr;
4633   boolean has_scrollbar = screen_gadget[SCREEN_CTRL_ID_SCROLL_VERTICAL]->mapped;
4634   int mx_scrollbar = screen_gadget[SCREEN_CTRL_ID_SCROLL_VERTICAL]->x;
4635   int mx_right_border = (has_scrollbar ? mx_scrollbar : SX + SXSIZE);
4636   int sx1_edit_name = getChooseTreeEditXPos(POS_LEFT);
4637   int sx2_edit_name = getChooseTreeEditXPos(POS_RIGHT);
4638   int x = 0;
4639   int y = (ti != NULL ? ti->cl_cursor : 0);
4640   int step = (button == 1 ? 1 : button == 2 ? 5 : 10);
4641   int num_entries = numTreeInfoInGroup(ti);
4642   int num_page_entries = MIN(num_entries, NUM_MENU_ENTRIES_ON_SCREEN);
4643   boolean position_set_by_scrollbar = (dx == 999);
4644   boolean button_action = (button == MB_MENU_LEAVE || button == MB_MENU_CHOICE);
4645   boolean button_is_valid = (mx >= 0 && my >= 0);
4646   boolean button_screen_clicked = (button_action && button_is_valid);
4647
4648   if (game_status == GAME_MODE_SCORES)
4649   {
4650     if (server_scores.updated)
4651     {
4652       // reload scores, using updated server score cache file
4653       LoadLocalAndServerScore(scores.last_level_nr, FALSE);
4654
4655       server_scores.updated = FALSE;
4656
4657       DrawHallOfFame_setScoreEntries();
4658
4659       if (score_entries != NULL)
4660       {
4661         ti = setHallOfFameActiveEntry(ti_ptr);
4662
4663         if (button != MB_MENU_INITIALIZE)
4664           drawChooseTreeScreen(ti);
4665       }
4666     }
4667
4668     if (score_entries == NULL)
4669     {
4670       if (button == MB_MENU_INITIALIZE)
4671       {
4672         drawChooseTreeScreen_Scores_NotAvailable();
4673       }
4674       else if (button_screen_clicked)
4675       {
4676         PlaySound(SND_MENU_ITEM_SELECTING);
4677
4678         SetGameStatus(GAME_MODE_MAIN);
4679
4680         DrawMainMenu();
4681       }
4682
4683       return;
4684     }
4685   }
4686
4687   if (button == MB_MENU_INITIALIZE)
4688   {
4689     int num_entries = numTreeInfoInGroup(ti);
4690     int entry_pos = getPosFromTreeInfo(ti);
4691
4692     align_xoffset = getAlignXOffsetFromTreeInfo(ti);
4693     align_yoffset = getAlignYOffsetFromTreeInfo(ti);
4694
4695     if (game_status == GAME_MODE_SCORES)
4696     {
4697       ti = setHallOfFameActiveEntry(ti_ptr);
4698     }
4699     else if (ti->cl_first == -1)
4700     {
4701       // only on initialization
4702       ti->cl_first = MAX(0, entry_pos - num_page_entries + 1);
4703       ti->cl_cursor = entry_pos - ti->cl_first;
4704
4705     }
4706     else if (ti->cl_cursor >= num_page_entries ||
4707              (num_entries > num_page_entries &&
4708               num_entries - ti->cl_first < num_page_entries))
4709     {
4710       // only after change of list size (by custom graphic configuration)
4711       ti->cl_first = MAX(0, entry_pos - num_page_entries + 1);
4712       ti->cl_cursor = entry_pos - ti->cl_first;
4713     }
4714
4715     if (position_set_by_scrollbar)
4716       ti->cl_first = dy;
4717
4718     drawChooseTreeScreen(ti);
4719
4720     return;
4721   }
4722   else if (button == MB_MENU_LEAVE)
4723   {
4724     if (game_status != GAME_MODE_SCORES)
4725       FadeSetLeaveMenu();
4726
4727     PlaySound(SND_MENU_ITEM_SELECTING);
4728
4729     if (ti->node_parent)
4730     {
4731       *ti_ptr = ti->node_parent;
4732       DrawChooseTree(ti_ptr);
4733     }
4734     else if (game_status == GAME_MODE_SETUP)
4735     {
4736       if (setup_mode == SETUP_MODE_CHOOSE_SCORES_TYPE ||
4737           setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED ||
4738           setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY ||
4739           setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
4740         execSetupGame();
4741       else if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE ||
4742                setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE ||
4743                setup_mode == SETUP_MODE_CHOOSE_RENDERING ||
4744                setup_mode == SETUP_MODE_CHOOSE_VSYNC)
4745         execSetupGraphics();
4746       else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE ||
4747                setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS ||
4748                setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
4749         execSetupSound();
4750       else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL ||
4751                setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE ||
4752                setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE ||
4753                setup_mode == SETUP_MODE_CHOOSE_TRANSPARENCY ||
4754                setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_0 ||
4755                setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_0 ||
4756                setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_1 ||
4757                setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_1)
4758         execSetupTouch();
4759       else
4760         execSetupArtwork();
4761     }
4762     else
4763     {
4764       if (game_status == GAME_MODE_LEVELNR)
4765       {
4766         int new_level_nr = atoi(level_number_current->identifier);
4767
4768         HandleMainMenu_SelectLevel(0, 0, new_level_nr);
4769       }
4770
4771       SetGameStatus(GAME_MODE_MAIN);
4772
4773       DrawMainMenu();
4774     }
4775
4776     return;
4777   }
4778
4779   if (mx || my)         // mouse input
4780   {
4781     scores.was_just_playing = FALSE;
4782
4783     x = (mx - amSX) / 32;
4784     y = (my - amSY) / 32 - MENU_SCREEN_START_YPOS;
4785
4786     if (game_status == GAME_MODE_NAMES)
4787       drawChooseTreeEdit(ti->cl_cursor, FALSE);
4788   }
4789   else if (dx || dy)    // keyboard or scrollbar/scrollbutton input
4790   {
4791     scores.was_just_playing = FALSE;
4792
4793     // move cursor instead of scrolling when already at start/end of list
4794     if (dy == -1 * SCROLL_LINE && ti->cl_first == 0)
4795       dy = -1;
4796     else if (dy == +1 * SCROLL_LINE &&
4797              ti->cl_first + num_page_entries == num_entries)
4798       dy = 1;
4799
4800     // handle scrolling screen one line or page
4801     if (ti->cl_cursor + dy < 0 ||
4802         ti->cl_cursor + dy > num_page_entries - 1)
4803     {
4804       boolean redraw = FALSE;
4805
4806       if (ABS(dy) == SCROLL_PAGE)
4807         step = num_page_entries - 1;
4808
4809       if (dy < 0 && ti->cl_first > 0)
4810       {
4811         // scroll page/line up
4812
4813         ti->cl_first -= step;
4814         if (ti->cl_first < 0)
4815           ti->cl_first = 0;
4816
4817         redraw = TRUE;
4818       }
4819       else if (dy > 0 && ti->cl_first + num_page_entries < num_entries)
4820       {
4821         // scroll page/line down
4822
4823         ti->cl_first += step;
4824         if (ti->cl_first + num_page_entries > num_entries)
4825           ti->cl_first = MAX(0, num_entries - num_page_entries);
4826
4827         redraw = TRUE;
4828       }
4829
4830       if (redraw)
4831         drawChooseTreeScreen(ti);
4832
4833       return;
4834     }
4835
4836     // handle moving cursor one line
4837     y = ti->cl_cursor + dy;
4838   }
4839
4840   if (game_status == GAME_MODE_SCORES && ABS(dx) == 1)
4841   {
4842     HandleHallOfFame_SelectLevel(1, dx);
4843
4844     return;
4845   }
4846   else if (dx == 1)
4847   {
4848     TreeInfo *node_first, *node_cursor;
4849     int entry_pos = ti->cl_first + y;
4850
4851     node_first = getTreeInfoFirstGroupEntry(ti);
4852     node_cursor = getTreeInfoFromPos(node_first, entry_pos);
4853
4854     if (node_cursor->node_group)
4855     {
4856       FadeSetEnterMenu();
4857
4858       PlaySound(SND_MENU_ITEM_SELECTING);
4859
4860       node_cursor->cl_first = ti->cl_first;
4861       node_cursor->cl_cursor = ti->cl_cursor;
4862       *ti_ptr = node_cursor->node_group;
4863       DrawChooseTree(ti_ptr);
4864
4865       return;
4866     }
4867   }
4868   else if (dx == -1 && ti->node_parent)
4869   {
4870     FadeSetLeaveMenu();
4871
4872     PlaySound(SND_MENU_ITEM_SELECTING);
4873
4874     *ti_ptr = ti->node_parent;
4875     DrawChooseTree(ti_ptr);
4876
4877     return;
4878   }
4879
4880   if (!anyScrollbarGadgetActive() &&
4881       IN_VIS_MENU(x, y) &&
4882       mx < mx_right_border &&
4883       y >= 0 && y < num_page_entries)
4884   {
4885     if (button)
4886     {
4887       if (game_status == GAME_MODE_NAMES)
4888       {
4889         if (mx >= sx1_edit_name && mx <= sx2_edit_name)
4890           drawChooseTreeEdit(y, TRUE);
4891       }
4892
4893       if (y != ti->cl_cursor)
4894       {
4895         PlaySound(SND_MENU_ITEM_ACTIVATING);
4896
4897         drawChooseTreeCursorAndText(ti, FALSE);
4898
4899         ti->cl_cursor = y;
4900
4901         drawChooseTreeCursorAndText(ti, TRUE);
4902
4903         drawChooseTreeInfo(ti);
4904       }
4905       else if (dx < 0)
4906       {
4907         if (game_status == GAME_MODE_SETUP)
4908         {
4909           if (setup_mode == SETUP_MODE_CHOOSE_SCORES_TYPE ||
4910               setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED ||
4911               setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY ||
4912               setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
4913             execSetupGame();
4914           else if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE ||
4915                    setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE ||
4916                    setup_mode == SETUP_MODE_CHOOSE_RENDERING ||
4917                    setup_mode == SETUP_MODE_CHOOSE_VSYNC)
4918             execSetupGraphics();
4919           else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE ||
4920                    setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS ||
4921                    setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
4922             execSetupSound();
4923           else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL ||
4924                    setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE ||
4925                    setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE ||
4926                    setup_mode == SETUP_MODE_CHOOSE_TRANSPARENCY ||
4927                    setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_0 ||
4928                    setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_0 ||
4929                    setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_1 ||
4930                    setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_1)
4931             execSetupTouch();
4932           else
4933             execSetupArtwork();
4934         }
4935       }
4936     }
4937     else
4938     {
4939       TreeInfo *node_first, *node_cursor;
4940       int entry_pos = ti->cl_first + y;
4941
4942       PlaySound(SND_MENU_ITEM_SELECTING);
4943
4944       node_first = getTreeInfoFirstGroupEntry(ti);
4945       node_cursor = getTreeInfoFromPos(node_first, entry_pos);
4946
4947       if (node_cursor->node_group)
4948       {
4949         FadeSetEnterMenu();
4950
4951         node_cursor->cl_first = ti->cl_first;
4952         node_cursor->cl_cursor = ti->cl_cursor;
4953         *ti_ptr = node_cursor->node_group;
4954         DrawChooseTree(ti_ptr);
4955       }
4956       else if (node_cursor->parent_link)
4957       {
4958         if (game_status != GAME_MODE_SCORES)
4959           FadeSetLeaveMenu();
4960
4961         *ti_ptr = node_cursor->node_parent;
4962         DrawChooseTree(ti_ptr);
4963       }
4964       else
4965       {
4966         if (game_status != GAME_MODE_SCORES)
4967           FadeSetEnterMenu();
4968
4969         node_cursor->cl_first = ti->cl_first;
4970         node_cursor->cl_cursor = ti->cl_cursor;
4971         *ti_ptr = node_cursor;
4972
4973         if (ti->type == TREE_TYPE_LEVEL_DIR)
4974         {
4975           LoadLevelSetup_SeriesInfo();
4976
4977           SaveLevelSetup_LastSeries();
4978           SaveLevelSetup_SeriesInfo();
4979           TapeErase();
4980         }
4981
4982         if (game_status == GAME_MODE_SETUP)
4983         {
4984           if (setup_mode == SETUP_MODE_CHOOSE_SCORES_TYPE ||
4985               setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED ||
4986               setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY ||
4987               setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
4988             execSetupGame();
4989           else if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE ||
4990                    setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE ||
4991                    setup_mode == SETUP_MODE_CHOOSE_RENDERING ||
4992                    setup_mode == SETUP_MODE_CHOOSE_VSYNC)
4993             execSetupGraphics();
4994           else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE ||
4995                    setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS ||
4996                    setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
4997             execSetupSound();
4998           else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL ||
4999                    setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE ||
5000                    setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE ||
5001                    setup_mode == SETUP_MODE_CHOOSE_TRANSPARENCY ||
5002                    setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_0 ||
5003                    setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_0 ||
5004                    setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_1 ||
5005                    setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_1)
5006             execSetupTouch();
5007           else
5008             execSetupArtwork();
5009         }
5010         else
5011         {
5012           if (game_status == GAME_MODE_LEVELNR)
5013           {
5014             int new_level_nr = atoi(level_number_current->identifier);
5015
5016             HandleMainMenu_SelectLevel(0, 0, new_level_nr);
5017           }
5018           else if (game_status == GAME_MODE_LEVELS)
5019           {
5020             // store level set if chosen from "last played level set" menu
5021             StoreLastPlayedLevels(leveldir_current);
5022           }
5023           else if (game_status == GAME_MODE_NAMES)
5024           {
5025             if (mx >= sx1_edit_name && mx <= sx2_edit_name)
5026             {
5027               SetGameStatus(GAME_MODE_PSEUDO_TYPENAMES);
5028
5029               DrawTypeName();
5030
5031               return;
5032             }
5033
5034             // change active user to selected user
5035             user.nr = entry_pos;
5036
5037             // save number of new active user
5038             SaveUserSetup();
5039
5040             // load setup of new active user
5041             LoadSetup();
5042
5043             // load last level set of new active user
5044             LoadLevelSetup_LastSeries();
5045             LoadLevelSetup_SeriesInfo();
5046
5047             // update list of last played level sets
5048             UpdateLastPlayedLevels_TreeInfo();
5049
5050             TapeErase();
5051
5052             ToggleFullscreenIfNeeded();
5053             ChangeWindowScalingIfNeeded();
5054
5055             ChangeCurrentArtworkIfNeeded(ARTWORK_TYPE_GRAPHICS);
5056             ChangeCurrentArtworkIfNeeded(ARTWORK_TYPE_SOUNDS);
5057             ChangeCurrentArtworkIfNeeded(ARTWORK_TYPE_MUSIC);
5058           }
5059           else if (game_status == GAME_MODE_SCORES)
5060           {
5061             if (setup.auto_play_next_level && setup.increment_levels &&
5062                 scores.last_level_nr < leveldir_current->last_level &&
5063                 scores.was_just_playing &&
5064                 !network_playing)
5065             {
5066               StartGameActions(network.enabled, setup.autorecord,
5067                                level.random_seed);
5068               return;
5069             }
5070             else if (!scores.was_just_playing)
5071             {
5072               SetGameStatus(GAME_MODE_SCOREINFO);
5073
5074               DrawScoreInfo(node_cursor->pos);
5075
5076               return;
5077             }
5078           }
5079
5080           SetGameStatus(GAME_MODE_MAIN);
5081
5082           DrawMainMenu();
5083         }
5084       }
5085     }
5086   }
5087
5088   if (game_status == GAME_MODE_SCORES)
5089     PlayMenuSoundIfLoop();
5090 }
5091
5092 void DrawChoosePlayerName(void)
5093 {
5094   int i;
5095
5096   if (player_name != NULL)
5097   {
5098     freeTreeInfo(player_name);
5099
5100     player_name = NULL;
5101   }
5102
5103   for (i = 0; i < MAX_PLAYER_NAMES; i++)
5104   {
5105     TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_PLAYER_NAME);
5106     char identifier[32], name[MAX_PLAYER_NAME_LEN + 1];
5107     int value = i;
5108
5109     ti->node_top = &player_name;
5110     ti->sort_priority = 10000 + value;
5111     ti->color = getPlayerNameColor(global.user_names[i]);
5112
5113     snprintf(identifier, sizeof(identifier), "%d", value);
5114     snprintf(name, sizeof(name), "%s", global.user_names[i]);
5115
5116     setString(&ti->identifier, identifier);
5117     setString(&ti->name, name);
5118     setString(&ti->name_sorting, name);
5119
5120     pushTreeInfo(&player_name, ti);
5121   }
5122
5123   // sort player entries by player number
5124   sortTreeInfo(&player_name);
5125
5126   // set current player entry to selected player entry
5127   player_name_current =
5128     getTreeInfoFromIdentifier(player_name, i_to_a(user.nr));
5129
5130   // if that fails, set current player name to first available name
5131   if (player_name_current == NULL)
5132     player_name_current = player_name;
5133
5134   DrawChooseTree(&player_name_current);
5135 }
5136
5137 void HandleChoosePlayerName(int mx, int my, int dx, int dy, int button)
5138 {
5139   HandleChooseTree(mx, my, dx, dy, button, &player_name_current);
5140 }
5141
5142 void DrawChooseLevelSet(void)
5143 {
5144   DrawChooseTree(&leveldir_current);
5145 }
5146
5147 void HandleChooseLevelSet(int mx, int my, int dx, int dy, int button)
5148 {
5149   HandleChooseTree(mx, my, dx, dy, button, &leveldir_current);
5150 }
5151
5152 void DrawChooseLevelNr(void)
5153 {
5154   int i;
5155
5156   if (level_number != NULL)
5157   {
5158     freeTreeInfo(level_number);
5159
5160     level_number = NULL;
5161   }
5162
5163   for (i = leveldir_current->first_level; i <= leveldir_current->last_level;i++)
5164   {
5165     TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_LEVEL_NR);
5166     char identifier[32], name[64];
5167     int value = i;
5168
5169     // temporarily load level info to get level name
5170     LoadLevelInfoOnly(i);
5171
5172     ti->node_top = &level_number;
5173     ti->sort_priority = 10000 + value;
5174     ti->color = (level.no_level_file ? FC_BLUE :
5175                  LevelStats_getSolved(i) ? FC_GREEN :
5176                  LevelStats_getPlayed(i) ? FC_YELLOW : FC_RED);
5177
5178     snprintf(identifier, sizeof(identifier), "%d", value);
5179     snprintf(name, sizeof(name), "%03d: %s", value,
5180              (level.no_level_file ? "(no file)" : level.name));
5181
5182     setString(&ti->identifier, identifier);
5183     setString(&ti->name, name);
5184     setString(&ti->name_sorting, name);
5185
5186     pushTreeInfo(&level_number, ti);
5187   }
5188
5189   // sort level number values to start with lowest level number
5190   sortTreeInfo(&level_number);
5191
5192   // set current level number to current level number
5193   level_number_current =
5194     getTreeInfoFromIdentifier(level_number, i_to_a(level_nr));
5195
5196   // if that also fails, set current level number to first available level
5197   if (level_number_current == NULL)
5198     level_number_current = level_number;
5199
5200   DrawChooseTree(&level_number_current);
5201 }
5202
5203 void HandleChooseLevelNr(int mx, int my, int dx, int dy, int button)
5204 {
5205   HandleChooseTree(mx, my, dx, dy, button, &level_number_current);
5206 }
5207
5208 static void DrawHallOfFame_setScoreEntries(void)
5209 {
5210   int max_empty_entries = 10;   // at least show "top ten" list, if empty
5211   int max_visible_entries = NUM_MENU_ENTRIES_ON_SCREEN - 1;   // w/o back link
5212   int min_score_entries = MIN(max_empty_entries, max_visible_entries);
5213   int score_pos = (scores.last_added >= 0 ? scores.last_added : 0);
5214   int i;
5215
5216   if (score_entries != NULL)
5217   {
5218     freeTreeInfo(score_entries);
5219
5220     score_entries = NULL;
5221   }
5222
5223   for (i = 0; i < MAX_SCORE_ENTRIES; i++)
5224   {
5225     // do not add empty score entries if off-screen
5226     if (scores.entry[i].score == 0 &&
5227         scores.entry[i].time == 0 &&
5228         i >= min_score_entries)
5229       break;
5230
5231     TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_SCORE_ENTRY);
5232     char identifier[32], name[64];
5233     int value = i;
5234
5235     ti->node_top = &score_entries;
5236     ti->sort_priority = 10000 + value;
5237     ti->color = FC_YELLOW;
5238     ti->pos = i;
5239
5240     snprintf(identifier, sizeof(identifier), "%d", value);
5241     snprintf(name, sizeof(name), "%03d.", value + 1);
5242
5243     setString(&ti->identifier, identifier);
5244     setString(&ti->name, name);
5245     setString(&ti->name_sorting, name);
5246
5247     pushTreeInfo(&score_entries, ti);
5248   }
5249
5250   // sort score entries to start with highest score entry
5251   sortTreeInfo(&score_entries);
5252
5253   // add top tree node to create back link to main menu
5254   score_entries = addTopTreeInfoNode(score_entries);
5255
5256   // set current score entry to last added or highest score entry
5257   score_entry_current =
5258     getTreeInfoFromIdentifier(score_entries, i_to_a(score_pos));
5259
5260   // if that fails, set current score entry to first valid score entry
5261   if (score_entry_current == NULL)
5262     score_entry_current = getFirstValidTreeInfoEntry(score_entries);
5263
5264   // ("score_entries" and "score_entry_current" may be NULL here)
5265 }
5266
5267 void DrawHallOfFame(int level_nr)
5268 {
5269   scores.last_level_nr = level_nr;
5270   scores.was_just_playing = (game_status_last_screen == GAME_MODE_PLAYING);
5271
5272   // (this is needed when called from GameEnd() after winning a game)
5273   KeyboardAutoRepeatOn();
5274
5275   // (this is needed when called from GameEnd() after winning a game)
5276   SetDrawDeactivationMask(REDRAW_NONE);
5277   SetDrawBackgroundMask(REDRAW_FIELD);
5278
5279   LoadLocalAndServerScore(level_nr, TRUE);
5280
5281   DrawHallOfFame_setScoreEntries();
5282
5283   if (scores.last_added >= 0)
5284     SetAnimStatus(GAME_MODE_PSEUDO_SCORESNEW);
5285
5286   FadeSetEnterScreen();
5287
5288   DrawChooseTree(&score_entry_current);
5289 }
5290
5291 static char *getHallOfFameRankText(int nr, int size)
5292 {
5293   static char rank_text[10];
5294   boolean forced = (scores.force_last_added && nr == scores.last_added);
5295   char *rank_text_raw = (forced ? "???" : int2str(nr + 1, size));
5296
5297   sprintf(rank_text, "%s%s", rank_text_raw, (size > 0 || !forced ? "." : ""));
5298
5299   return rank_text;
5300 }
5301
5302 static char *getHallOfFameTimeText(int nr)
5303 {
5304   static char score_text[10];
5305   int time_seconds = scores.entry[nr].time / FRAMES_PER_SECOND;
5306   int mm = (time_seconds / 60) % 60;
5307   int ss = (time_seconds % 60);
5308
5309   sprintf(score_text, "%02d:%02d", mm, ss);     // show playing time
5310
5311   return score_text;
5312 }
5313
5314 static char *getHallOfFameScoreText(int nr, int size)
5315 {
5316   if (!level.rate_time_over_score)
5317     return int2str(scores.entry[nr].score, size);       // show normal score
5318   else if (level.use_step_counter)
5319     return int2str(scores.entry[nr].time, size);        // show number of steps
5320   else
5321     return getHallOfFameTimeText(nr);                   // show playing time
5322 }
5323
5324 static char *getHallOfFameTapeDateText(struct ScoreEntry *entry)
5325 {
5326   static char tape_date[MAX_ISO_DATE_LEN + 1];
5327   int i, j;
5328
5329   if (!strEqual(entry->tape_date, UNKNOWN_NAME) ||
5330       strEqual(entry->tape_basename, UNDEFINED_FILENAME))
5331     return entry->tape_date;
5332
5333   for (i = 0, j = 0; i < 8; i++, j++)
5334   {
5335     tape_date[j] = entry->tape_basename[i];
5336
5337     if (i == 3 || i == 5)
5338       tape_date[++j] = '-';
5339   }
5340
5341   tape_date[MAX_ISO_DATE_LEN] = '\0';
5342
5343   return tape_date;
5344 }
5345
5346 static void HandleHallOfFame_SelectLevel(int step, int direction)
5347 {
5348   int old_level_nr = scores.last_level_nr;
5349   int new_level_nr = old_level_nr + step * direction;
5350
5351   if (new_level_nr < leveldir_current->first_level)
5352     new_level_nr = leveldir_current->first_level;
5353   if (new_level_nr > leveldir_current->last_level)
5354     new_level_nr = leveldir_current->last_level;
5355
5356   if (setup.handicap && new_level_nr > leveldir_current->handicap_level)
5357     new_level_nr = leveldir_current->handicap_level;
5358
5359   if (new_level_nr != old_level_nr)
5360   {
5361     PlaySound(SND_MENU_ITEM_SELECTING);
5362
5363     scores.last_level_nr = level_nr = new_level_nr;
5364     scores.last_entry_nr = 0;
5365
5366     LoadLevel(level_nr);
5367     LoadLocalAndServerScore(level_nr, TRUE);
5368
5369     DrawHallOfFame_setScoreEntries();
5370
5371     if (game_status == GAME_MODE_SCORES)
5372     {
5373       // force remapping optional gadgets (especially scroll bar)
5374       UnmapScreenTreeGadgets();
5375
5376       // redraw complete high score screen, as sub-title has changed
5377       ClearField();
5378
5379       // redraw level selection buttons (which have just been erased)
5380       RedrawScreenMenuGadgets(SCREEN_MASK_SCORES);
5381
5382       HandleChooseTree(0, 0, 0, 0, MB_MENU_INITIALIZE, &score_entry_current);
5383     }
5384     else
5385     {
5386       DrawScoreInfo_Content(scores.last_entry_nr);
5387     }
5388
5389     SaveLevelSetup_SeriesInfo();
5390   }
5391 }
5392
5393 void HandleHallOfFame(int mx, int my, int dx, int dy, int button)
5394 {
5395   HandleChooseTree(mx, my, dx, dy, button, &score_entry_current);
5396 }
5397
5398 static void DrawScoreInfo_Content(int entry_nr)
5399 {
5400   struct ScoreEntry *entry = &scores.entry[entry_nr];
5401   char *pos_text = getHallOfFameRankText(entry_nr, 0);
5402   char *tape_date = getHallOfFameTapeDateText(entry);
5403   int font_title = MENU_INFO_FONT_TITLE;
5404   int font_head  = MENU_INFO_FONT_HEAD;
5405   int font_text  = MENU_INFO_FONT_TEXT;
5406   int font_foot  = MENU_INFO_FONT_FOOT;
5407   int spacing_title = menu.headline1_spacing[GAME_MODE_SCOREINFO];
5408   int spacing_para  = menu.paragraph_spacing[GAME_MODE_SCOREINFO];
5409   int spacing_line  = menu.line_spacing[GAME_MODE_SCOREINFO];
5410   int xstep = getFontWidth(font_text);
5411   int ystep_title = getMenuTextStep(spacing_title, font_title);
5412   int ystep_para  = getMenuTextStep(spacing_para,  font_text);
5413   int ystep_line  = getMenuTextStep(spacing_line,  font_text);
5414   int ystart  = mSY - SY + menu.top_spacing[GAME_MODE_SCOREINFO];
5415   int ybottom = mSY - SY + SYSIZE - menu.bottom_spacing[GAME_MODE_SCOREINFO];
5416   int xstart1 = mSX - SX + 2 * xstep;
5417   int xstart2 = mSX - SX + 13 * xstep;
5418   int select_x = SX + xstart1;
5419   int select_y1, select_y2;
5420   int play_x, play_y;
5421   int play_height = screen_gadget[SCREEN_CTRL_ID_PLAY_TAPE]->height;
5422   boolean play_visible = !strEqual(tape_date, UNKNOWN_NAME);
5423   int font_width = getFontWidth(font_text);
5424   int font_height = getFontHeight(font_text);
5425   int tape_date_width  = getTextWidth(tape_date, font_text);
5426   int pad_left = xstart2;
5427   int pad_right = MENU_SCREEN_INFO_SPACE_RIGHT;
5428   int max_chars_per_line = (SXSIZE - pad_left - pad_right) / font_width;
5429   int max_lines_per_text = 5;
5430   int lines;
5431
5432   ClearField();
5433
5434   // redraw score selection buttons (which have just been erased)
5435   RedrawScreenMenuGadgets(SCREEN_MASK_SCORES);
5436
5437   if (score_entries == NULL)
5438   {
5439     drawChooseTreeScreen_Scores_NotAvailable();
5440
5441     return;
5442   }
5443
5444   drawChooseTreeHead(score_entries);
5445   drawChooseTreeInfo(score_entries);
5446
5447   DrawTextSCentered(ystart, font_title, "Score Information:");
5448   ystart += ystep_title;
5449
5450   DrawTextF(xstart1, ystart, font_head, "Level Set");
5451   lines = DrawTextBufferS(xstart2, ystart, leveldir_current->name, font_text,
5452                           max_chars_per_line, -1, max_lines_per_text, 0, -1,
5453                           TRUE, FALSE, FALSE);
5454   ystart += ystep_line + (lines > 0 ? lines - 1 : 0) * font_height;
5455
5456   DrawTextF(xstart1, ystart, font_head, "Level");
5457   lines = DrawTextBufferS(xstart2, ystart, level.name, font_text,
5458                           max_chars_per_line, -1, max_lines_per_text, 0, -1,
5459                           TRUE, FALSE, FALSE);
5460   ystart += ystep_para + (lines > 0 ? lines - 1 : 0) * font_height;
5461
5462   select_y1 = SY + ystart;
5463   ystart += graphic_info[IMG_MENU_BUTTON_PREV_SCORE].height;
5464
5465   DrawTextF(xstart1, ystart, font_head, "Rank");
5466   DrawTextF(xstart2, ystart, font_text, pos_text);
5467   ystart += ystep_line;
5468
5469   DrawTextF(xstart1, ystart, font_head, "Player");
5470   DrawTextF(xstart2, ystart, font_text, entry->name);
5471   ystart += ystep_line;
5472
5473   if (level.use_step_counter)
5474   {
5475     DrawTextF(xstart1, ystart, font_head, "Steps");
5476     DrawTextF(xstart2, ystart, font_text, int2str(entry->time, 5));
5477     ystart += ystep_line;
5478   }
5479   else
5480   {
5481     DrawTextF(xstart1, ystart, font_head, "Time");
5482     DrawTextF(xstart2, ystart, font_text, getHallOfFameTimeText(entry_nr));
5483     ystart += ystep_line;
5484   }
5485
5486   if (!level.rate_time_over_score || entry->score > 0)
5487   {
5488     DrawTextF(xstart1, ystart, font_head, "Score");
5489     DrawTextF(xstart2, ystart, font_text, int2str(entry->score, 5));
5490     ystart += ystep_line;
5491   }
5492
5493   ystart += ystep_line;
5494
5495   play_x = SX + xstart2 + tape_date_width + font_width;
5496   play_y = SY + ystart + (font_height - play_height) / 2;
5497
5498   DrawTextF(xstart1, ystart, font_head, "Tape Date");
5499   DrawTextF(xstart2, ystart, font_text, tape_date);
5500   ystart += ystep_line;
5501
5502   DrawTextF(xstart1, ystart, font_head, "Platform");
5503   DrawTextF(xstart2, ystart, font_text, entry->platform);
5504   ystart += ystep_line;
5505
5506   DrawTextF(xstart1, ystart, font_head, "Version");
5507   DrawTextF(xstart2, ystart, font_text, entry->version);
5508   ystart += ystep_line;
5509
5510   DrawTextF(xstart1, ystart, font_head, "Country");
5511   lines = DrawTextBufferS(xstart2, ystart, entry->country_name, font_text,
5512                           max_chars_per_line, -1, max_lines_per_text, 0, -1,
5513                           TRUE, FALSE, FALSE);
5514   ystart += ystep_line;
5515
5516   select_y2 = SY + ystart;
5517
5518   DrawTextSCentered(ybottom, font_foot, "Press any key or button to go back");
5519
5520   AdjustScoreInfoButtons_SelectScore(select_x, select_y1, select_y2);
5521   AdjustScoreInfoButtons_PlayTape(play_x, play_y, play_visible);
5522 }
5523
5524 static void DrawScoreInfo(int entry_nr)
5525 {
5526   scores.last_entry_nr = entry_nr;
5527   score_info_tape_play = FALSE;
5528
5529   UnmapAllGadgets();
5530
5531   FadeOut(REDRAW_FIELD);
5532
5533   // needed if different viewport properties defined after playing score tape
5534   ChangeViewportPropertiesIfNeeded();
5535
5536   // needed if different background image defined after playing score tape
5537   SetMainBackgroundImage(IMG_BACKGROUND_SCORES);
5538   SetMainBackgroundImageIfDefined(IMG_BACKGROUND_SCOREINFO);
5539
5540   DrawScoreInfo_Content(entry_nr);
5541
5542   // map gadgets for score info screen
5543   MapScreenMenuGadgets(SCREEN_MASK_SCORES_INFO);
5544
5545   FadeIn(REDRAW_FIELD);
5546 }
5547
5548 static void HandleScoreInfo_SelectScore(int step, int direction)
5549 {
5550   int old_entry_nr = scores.last_entry_nr;
5551   int new_entry_nr = old_entry_nr + step * direction;
5552   int num_nodes = numTreeInfoInGroup(score_entry_current);
5553   int num_entries = num_nodes - 1;      // score nodes only, without back link
5554
5555   if (new_entry_nr < 0)
5556     new_entry_nr = 0;
5557   if (new_entry_nr > num_entries - 1)
5558     new_entry_nr = num_entries - 1;
5559
5560   if (new_entry_nr != old_entry_nr)
5561   {
5562     scores.last_entry_nr = new_entry_nr;
5563
5564     DrawScoreInfo_Content(new_entry_nr);
5565   }
5566 }
5567
5568 static void HandleScoreInfo_PlayTape(void)
5569 {
5570   if (!PlayScoreTape(scores.last_entry_nr))
5571   {
5572     DrawScoreInfo_Content(scores.last_entry_nr);
5573
5574     FadeIn(REDRAW_FIELD);
5575   }
5576 }
5577
5578 void HandleScoreInfo(int mx, int my, int dx, int dy, int button)
5579 {
5580   boolean button_action = (button == MB_MENU_LEAVE || button == MB_MENU_CHOICE);
5581   boolean button_is_valid = (mx >= 0 && my >= 0);
5582   boolean button_screen_clicked = (button_action && button_is_valid);
5583
5584   if (server_scores.updated)
5585   {
5586     // reload scores, using updated server score cache file
5587     LoadLocalAndServerScore(scores.last_level_nr, FALSE);
5588
5589     server_scores.updated = FALSE;
5590
5591     DrawHallOfFame_setScoreEntries();
5592
5593     DrawScoreInfo_Content(scores.last_entry_nr);
5594   }
5595
5596   if (button_screen_clicked)
5597   {
5598     PlaySound(SND_MENU_ITEM_SELECTING);
5599
5600     SetGameStatus(GAME_MODE_SCORES);
5601
5602     DrawHallOfFame(scores.last_level_nr);
5603   }
5604   else if (dx)
5605   {
5606     HandleHallOfFame_SelectLevel(1, SIGN(dx) * (ABS(dx) > 1 ? 10 : 1));
5607   }
5608   else if (dy)
5609   {
5610     HandleScoreInfo_SelectScore(1, SIGN(dy) * (ABS(dy) > 1 ? 10 : 1));
5611   }
5612 }
5613
5614
5615 // ============================================================================
5616 // setup screen functions
5617 // ============================================================================
5618
5619 static struct TokenInfo *setup_info;
5620 static int num_setup_info;      // number of setup entries shown on screen
5621 static int max_setup_info;      // total number of setup entries in list
5622
5623 static char *window_size_text;
5624 static char *scaling_type_text;
5625 static char *rendering_mode_text;
5626 static char *vsync_mode_text;
5627 static char *scroll_delay_text;
5628 static char *snapshot_mode_text;
5629 static char *game_speed_text;
5630 static char *scores_type_text;
5631 static char *network_server_text;
5632 static char *graphics_set_name;
5633 static char *sounds_set_name;
5634 static char *music_set_name;
5635 static char *volume_simple_text;
5636 static char *volume_loops_text;
5637 static char *volume_music_text;
5638 static char *touch_controls_text;
5639 static char *move_distance_text;
5640 static char *drop_distance_text;
5641 static char *transparency_text;
5642 static char *grid_size_text[2][2];
5643
5644 static void execSetupMain(void)
5645 {
5646   setup_mode = SETUP_MODE_MAIN;
5647
5648   DrawSetupScreen();
5649 }
5650
5651 static void execSetupGame_setScoresType(void)
5652 {
5653   if (scores_types == NULL)
5654   {
5655     int i;
5656
5657     for (i = 0; scores_types_list[i].value != NULL; i++)
5658     {
5659       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5660       char identifier[32], name[32];
5661       char *value = scores_types_list[i].value;
5662       char *text = scores_types_list[i].text;
5663
5664       ti->node_top = &scores_types;
5665       ti->sort_priority = i;
5666
5667       sprintf(identifier, "%s", value);
5668       sprintf(name, "%s", text);
5669
5670       setString(&ti->identifier, identifier);
5671       setString(&ti->name, name);
5672       setString(&ti->name_sorting, name);
5673       setString(&ti->infotext, STR_SETUP_CHOOSE_SCORES_TYPE);
5674
5675       pushTreeInfo(&scores_types, ti);
5676     }
5677
5678     // sort scores type values to start with lowest scores type value
5679     sortTreeInfo(&scores_types);
5680
5681     // set current scores type value to configured scores type value
5682     scores_type_current =
5683       getTreeInfoFromIdentifier(scores_types, setup.scores_in_highscore_list);
5684
5685     // if that fails, set current scores type to reliable default value
5686     if (scores_type_current == NULL)
5687       scores_type_current =
5688         getTreeInfoFromIdentifier(scores_types, STR_SCORES_TYPE_DEFAULT);
5689
5690     // if that also fails, set current scores type to first available value
5691     if (scores_type_current == NULL)
5692       scores_type_current = scores_types;
5693   }
5694
5695   setup.scores_in_highscore_list = scores_type_current->identifier;
5696
5697   // needed for displaying scores type text instead of identifier
5698   scores_type_text = scores_type_current->name;
5699 }
5700
5701 static void execSetupGame_setGameSpeeds(boolean update_value)
5702 {
5703   if (setup.game_speed_extended)
5704   {
5705     game_speeds_list = game_speeds_list_extended;
5706     game_speeds      = game_speeds_extended;
5707   }
5708   else
5709   {
5710     game_speeds_list = game_speeds_list_normal;
5711     game_speeds      = game_speeds_normal;
5712   }
5713
5714   if (game_speeds == NULL)
5715   {
5716     int i;
5717
5718     for (i = 0; game_speeds_list[i].value != -1; i++)
5719     {
5720       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5721       char identifier[32], name[32];
5722       int value = game_speeds_list[i].value;
5723       char *text = game_speeds_list[i].text;
5724
5725       ti->node_top = &game_speeds;
5726       ti->sort_priority = 10000 - value;
5727
5728       sprintf(identifier, "%d", value);
5729       sprintf(name, "%s", text);
5730
5731       setString(&ti->identifier, identifier);
5732       setString(&ti->name, name);
5733       setString(&ti->name_sorting, name);
5734       setString(&ti->infotext, STR_SETUP_CHOOSE_GAME_SPEED);
5735
5736       pushTreeInfo(&game_speeds, ti);
5737     }
5738
5739     // sort game speed values to start with slowest game speed
5740     sortTreeInfo(&game_speeds);
5741
5742     update_value = TRUE;
5743   }
5744
5745   if (update_value)
5746   {
5747     // set current game speed to configured game speed value
5748     game_speed_current =
5749       getTreeInfoFromIdentifier(game_speeds, i_to_a(setup.game_frame_delay));
5750
5751     // if that fails, set current game speed to reliable default value
5752     if (game_speed_current == NULL)
5753       game_speed_current =
5754         getTreeInfoFromIdentifier(game_speeds, i_to_a(GAME_FRAME_DELAY));
5755
5756     // if that also fails, set current game speed to first available speed
5757     if (game_speed_current == NULL)
5758       game_speed_current = game_speeds;
5759
5760     if (setup.game_speed_extended)
5761       game_speeds_extended = game_speeds;
5762     else
5763       game_speeds_normal = game_speeds;
5764   }
5765
5766   setup.game_frame_delay = atoi(game_speed_current->identifier);
5767
5768   // needed for displaying game speed text instead of identifier
5769   game_speed_text = game_speed_current->name;
5770 }
5771
5772 static void execSetupGame_setScrollDelays(void)
5773 {
5774   if (scroll_delays == NULL)
5775   {
5776     int i;
5777
5778     for (i = 0; scroll_delays_list[i].value != -1; i++)
5779     {
5780       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5781       char identifier[32], name[32];
5782       int value = scroll_delays_list[i].value;
5783       char *text = scroll_delays_list[i].text;
5784
5785       ti->node_top = &scroll_delays;
5786       ti->sort_priority = value;
5787
5788       sprintf(identifier, "%d", value);
5789       sprintf(name, "%s", text);
5790
5791       setString(&ti->identifier, identifier);
5792       setString(&ti->name, name);
5793       setString(&ti->name_sorting, name);
5794       setString(&ti->infotext, STR_SETUP_CHOOSE_SCROLL_DELAY);
5795
5796       pushTreeInfo(&scroll_delays, ti);
5797     }
5798
5799     // sort scroll delay values to start with lowest scroll delay value
5800     sortTreeInfo(&scroll_delays);
5801
5802     // set current scroll delay value to configured scroll delay value
5803     scroll_delay_current =
5804       getTreeInfoFromIdentifier(scroll_delays,i_to_a(setup.scroll_delay_value));
5805
5806     // if that fails, set current scroll delay to reliable default value
5807     if (scroll_delay_current == NULL)
5808       scroll_delay_current =
5809         getTreeInfoFromIdentifier(scroll_delays, i_to_a(STD_SCROLL_DELAY));
5810
5811     // if that also fails, set current scroll delay to first available value
5812     if (scroll_delay_current == NULL)
5813       scroll_delay_current = scroll_delays;
5814   }
5815
5816   setup.scroll_delay_value = atoi(scroll_delay_current->identifier);
5817
5818   // needed for displaying scroll delay text instead of identifier
5819   scroll_delay_text = scroll_delay_current->name;
5820 }
5821
5822 static void execSetupGame_setSnapshotModes(void)
5823 {
5824   if (snapshot_modes == NULL)
5825   {
5826     int i;
5827
5828     for (i = 0; snapshot_modes_list[i].value != NULL; i++)
5829     {
5830       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5831       char identifier[32], name[32];
5832       char *value = snapshot_modes_list[i].value;
5833       char *text = snapshot_modes_list[i].text;
5834
5835       ti->node_top = &snapshot_modes;
5836       ti->sort_priority = i;
5837
5838       sprintf(identifier, "%s", value);
5839       sprintf(name, "%s", text);
5840
5841       setString(&ti->identifier, identifier);
5842       setString(&ti->name, name);
5843       setString(&ti->name_sorting, name);
5844       setString(&ti->infotext, STR_SETUP_CHOOSE_SNAPSHOT_MODE);
5845
5846       pushTreeInfo(&snapshot_modes, ti);
5847     }
5848
5849     // sort snapshot mode values to start with lowest snapshot mode value
5850     sortTreeInfo(&snapshot_modes);
5851
5852     // set current snapshot mode value to configured snapshot mode value
5853     snapshot_mode_current =
5854       getTreeInfoFromIdentifier(snapshot_modes, setup.engine_snapshot_mode);
5855
5856     // if that fails, set current snapshot mode to reliable default value
5857     if (snapshot_mode_current == NULL)
5858       snapshot_mode_current =
5859         getTreeInfoFromIdentifier(snapshot_modes, STR_SNAPSHOT_MODE_DEFAULT);
5860
5861     // if that also fails, set current snapshot mode to first available value
5862     if (snapshot_mode_current == NULL)
5863       snapshot_mode_current = snapshot_modes;
5864   }
5865
5866   setup.engine_snapshot_mode = snapshot_mode_current->identifier;
5867
5868   // needed for displaying snapshot mode text instead of identifier
5869   snapshot_mode_text = snapshot_mode_current->name;
5870 }
5871
5872 static void execSetupGame_setNetworkServerText(void)
5873 {
5874   if (strEqual(setup.network_server_hostname, STR_NETWORK_AUTO_DETECT))
5875   {
5876     strcpy(network_server_hostname, STR_NETWORK_AUTO_DETECT_SETUP);
5877   }
5878   else
5879   {
5880     strncpy(network_server_hostname, setup.network_server_hostname,
5881             MAX_SETUP_TEXT_INPUT_LEN);
5882     network_server_hostname[MAX_SETUP_TEXT_INPUT_LEN] = '\0';
5883   }
5884
5885   // needed for displaying network server text instead of identifier
5886   network_server_text = network_server_hostname;
5887 }
5888
5889 static void execSetupGame(void)
5890 {
5891   boolean check_vsync_mode = (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED);
5892
5893   execSetupGame_setGameSpeeds(FALSE);
5894   execSetupGame_setScoresType();
5895   execSetupGame_setScrollDelays();
5896   execSetupGame_setSnapshotModes();
5897
5898   execSetupGame_setNetworkServerText();
5899
5900   if (!setup.provide_uploading_tapes)
5901     setHideSetupEntry(execOfferUploadTapes);
5902
5903   setup_mode = SETUP_MODE_GAME;
5904
5905   DrawSetupScreen();
5906
5907   // check if vsync needs to be disabled for this game speed to work
5908   if (check_vsync_mode)
5909     DisableVsyncIfNeeded();
5910 }
5911
5912 static void execSetupChooseScoresType(void)
5913 {
5914   setup_mode = SETUP_MODE_CHOOSE_SCORES_TYPE;
5915
5916   DrawSetupScreen();
5917 }
5918
5919 static void execSetupChooseGameSpeed(void)
5920 {
5921   setup_mode = SETUP_MODE_CHOOSE_GAME_SPEED;
5922
5923   DrawSetupScreen();
5924 }
5925
5926 static void execSetupChooseScrollDelay(void)
5927 {
5928   setup_mode = SETUP_MODE_CHOOSE_SCROLL_DELAY;
5929
5930   DrawSetupScreen();
5931 }
5932
5933 static void execSetupChooseSnapshotMode(void)
5934 {
5935   setup_mode = SETUP_MODE_CHOOSE_SNAPSHOT_MODE;
5936
5937   DrawSetupScreen();
5938 }
5939
5940 static void execSetupEngines(void)
5941 {
5942   setup_mode = SETUP_MODE_ENGINES;
5943
5944   DrawSetupScreen();
5945 }
5946
5947 static void execSetupEditor(void)
5948 {
5949   setup_mode = SETUP_MODE_EDITOR;
5950
5951   DrawSetupScreen();
5952 }
5953
5954 static void execSetupGraphics_setWindowSizes(boolean update_list)
5955 {
5956   if (window_sizes != NULL && update_list)
5957   {
5958     freeTreeInfo(window_sizes);
5959
5960     window_sizes = NULL;
5961   }
5962
5963   if (window_sizes == NULL)
5964   {
5965     boolean current_window_size_found = FALSE;
5966     int i;
5967
5968     for (i = 0; window_sizes_list[i].value != -1; i++)
5969     {
5970       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5971       char identifier[32], name[32];
5972       int value = window_sizes_list[i].value;
5973       char *text = window_sizes_list[i].text;
5974
5975       ti->node_top = &window_sizes;
5976       ti->sort_priority = value;
5977
5978       sprintf(identifier, "%d", value);
5979       sprintf(name, "%s", text);
5980
5981       setString(&ti->identifier, identifier);
5982       setString(&ti->name, name);
5983       setString(&ti->name_sorting, name);
5984       setString(&ti->infotext, STR_SETUP_CHOOSE_WINDOW_SIZE);
5985
5986       pushTreeInfo(&window_sizes, ti);
5987
5988       if (value == setup.window_scaling_percent)
5989         current_window_size_found = TRUE;
5990     }
5991
5992     if (!current_window_size_found)
5993     {
5994       // add entry for non-preset window scaling value
5995
5996       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5997       char identifier[32], name[32];
5998       int value = setup.window_scaling_percent;
5999
6000       ti->node_top = &window_sizes;
6001       ti->sort_priority = value;
6002
6003       sprintf(identifier, "%d", value);
6004       sprintf(name, "%d %% (Current)", value);
6005
6006       setString(&ti->identifier, identifier);
6007       setString(&ti->name, name);
6008       setString(&ti->name_sorting, name);
6009       setString(&ti->infotext, STR_SETUP_CHOOSE_WINDOW_SIZE);
6010
6011       pushTreeInfo(&window_sizes, ti);
6012     }
6013
6014     // sort window size values to start with lowest window size value
6015     sortTreeInfo(&window_sizes);
6016
6017     // set current window size value to configured window size value
6018     window_size_current =
6019       getTreeInfoFromIdentifier(window_sizes,
6020                                 i_to_a(setup.window_scaling_percent));
6021
6022     // if that fails, set current window size to reliable default value
6023     if (window_size_current == NULL)
6024       window_size_current =
6025         getTreeInfoFromIdentifier(window_sizes,
6026                                   i_to_a(STD_WINDOW_SCALING_PERCENT));
6027
6028     // if that also fails, set current window size to first available value
6029     if (window_size_current == NULL)
6030       window_size_current = window_sizes;
6031   }
6032
6033   setup.window_scaling_percent = atoi(window_size_current->identifier);
6034
6035   // needed for displaying window size text instead of identifier
6036   window_size_text = window_size_current->name;
6037 }
6038
6039 static void execSetupGraphics_setScalingTypes(void)
6040 {
6041   if (scaling_types == NULL)
6042   {
6043     int i;
6044
6045     for (i = 0; scaling_types_list[i].value != NULL; i++)
6046     {
6047       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6048       char identifier[32], name[32];
6049       char *value = scaling_types_list[i].value;
6050       char *text = scaling_types_list[i].text;
6051
6052       ti->node_top = &scaling_types;
6053       ti->sort_priority = i;
6054
6055       sprintf(identifier, "%s", value);
6056       sprintf(name, "%s", text);
6057
6058       setString(&ti->identifier, identifier);
6059       setString(&ti->name, name);
6060       setString(&ti->name_sorting, name);
6061       setString(&ti->infotext, STR_SETUP_CHOOSE_SCALING_TYPE);
6062
6063       pushTreeInfo(&scaling_types, ti);
6064     }
6065
6066     // sort scaling type values to start with lowest scaling type value
6067     sortTreeInfo(&scaling_types);
6068
6069     // set current scaling type value to configured scaling type value
6070     scaling_type_current =
6071       getTreeInfoFromIdentifier(scaling_types, setup.window_scaling_quality);
6072
6073     // if that fails, set current scaling type to reliable default value
6074     if (scaling_type_current == NULL)
6075       scaling_type_current =
6076         getTreeInfoFromIdentifier(scaling_types, SCALING_QUALITY_DEFAULT);
6077
6078     // if that also fails, set current scaling type to first available value
6079     if (scaling_type_current == NULL)
6080       scaling_type_current = scaling_types;
6081   }
6082
6083   setup.window_scaling_quality = scaling_type_current->identifier;
6084
6085   // needed for displaying scaling type text instead of identifier
6086   scaling_type_text = scaling_type_current->name;
6087 }
6088
6089 static void execSetupGraphics_setRenderingModes(void)
6090 {
6091   if (rendering_modes == NULL)
6092   {
6093     int i;
6094
6095     for (i = 0; rendering_modes_list[i].value != NULL; i++)
6096     {
6097       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6098       char identifier[32], name[32];
6099       char *value = rendering_modes_list[i].value;
6100       char *text = rendering_modes_list[i].text;
6101
6102       ti->node_top = &rendering_modes;
6103       ti->sort_priority = i;
6104
6105       sprintf(identifier, "%s", value);
6106       sprintf(name, "%s", text);
6107
6108       setString(&ti->identifier, identifier);
6109       setString(&ti->name, name);
6110       setString(&ti->name_sorting, name);
6111       setString(&ti->infotext, STR_SETUP_CHOOSE_RENDERING);
6112
6113       pushTreeInfo(&rendering_modes, ti);
6114     }
6115
6116     // sort rendering mode values to start with lowest rendering mode value
6117     sortTreeInfo(&rendering_modes);
6118
6119     // set current rendering mode value to configured rendering mode value
6120     rendering_mode_current =
6121       getTreeInfoFromIdentifier(rendering_modes, setup.screen_rendering_mode);
6122
6123     // if that fails, set current rendering mode to reliable default value
6124     if (rendering_mode_current == NULL)
6125       rendering_mode_current =
6126         getTreeInfoFromIdentifier(rendering_modes,
6127                                   STR_SPECIAL_RENDERING_DEFAULT);
6128
6129     // if that also fails, set current rendering mode to first available one
6130     if (rendering_mode_current == NULL)
6131       rendering_mode_current = rendering_modes;
6132   }
6133
6134   setup.screen_rendering_mode = rendering_mode_current->identifier;
6135
6136   // needed for displaying rendering mode text instead of identifier
6137   rendering_mode_text = rendering_mode_current->name;
6138 }
6139
6140 static void execSetupGraphics_setVsyncModes(boolean update_value)
6141 {
6142   if (vsync_modes == NULL)
6143   {
6144     int i;
6145
6146     for (i = 0; vsync_modes_list[i].value != NULL; i++)
6147     {
6148       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6149       char identifier[32], name[32];
6150       char *value = vsync_modes_list[i].value;
6151       char *text = vsync_modes_list[i].text;
6152
6153       ti->node_top = &vsync_modes;
6154       ti->sort_priority = i;
6155
6156       sprintf(identifier, "%s", value);
6157       sprintf(name, "%s", text);
6158
6159       setString(&ti->identifier, identifier);
6160       setString(&ti->name, name);
6161       setString(&ti->name_sorting, name);
6162       setString(&ti->infotext, STR_SETUP_CHOOSE_VSYNC);
6163
6164       pushTreeInfo(&vsync_modes, ti);
6165     }
6166
6167     // sort vsync mode values to start with lowest vsync mode value
6168     sortTreeInfo(&vsync_modes);
6169
6170     update_value = TRUE;
6171   }
6172
6173   if (update_value)
6174   {
6175     // set current vsync mode value to configured vsync mode value
6176     vsync_mode_current =
6177       getTreeInfoFromIdentifier(vsync_modes, setup.vsync_mode);
6178
6179     // if that fails, set current vsync mode to reliable default value
6180     if (vsync_mode_current == NULL)
6181       vsync_mode_current =
6182         getTreeInfoFromIdentifier(vsync_modes, STR_VSYNC_MODE_DEFAULT);
6183
6184     // if that also fails, set current vsync mode to first available one
6185     if (vsync_mode_current == NULL)
6186       vsync_mode_current = vsync_modes;
6187   }
6188
6189   setup.vsync_mode = vsync_mode_current->identifier;
6190
6191   // needed for displaying vsync mode text instead of identifier
6192   vsync_mode_text = vsync_mode_current->name;
6193 }
6194
6195 static void execSetupGraphics(void)
6196 {
6197   boolean check_game_speed = (setup_mode == SETUP_MODE_CHOOSE_VSYNC);
6198
6199   // update "setup.window_scaling_percent" from list selection
6200   // (in this case, window scaling was changed on setup screen)
6201   if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE)
6202     execSetupGraphics_setWindowSizes(FALSE);
6203
6204   // update "setup.vsync_mode" from list selection
6205   // (in this case, vsync mode was changed on setup screen)
6206   if (setup_mode == SETUP_MODE_CHOOSE_VSYNC)
6207     execSetupGraphics_setVsyncModes(FALSE);
6208
6209   // update list selection from "setup.window_scaling_percent"
6210   // (window scaling may have changed by resizing the window)
6211   execSetupGraphics_setWindowSizes(TRUE);
6212
6213   // update list selection from "setup.vsync_mode"
6214   // (vsync_mode may have changed by re-creating the renderer)
6215   execSetupGraphics_setVsyncModes(TRUE);
6216
6217   execSetupGraphics_setScalingTypes();
6218   execSetupGraphics_setRenderingModes();
6219
6220   setup_mode = SETUP_MODE_GRAPHICS;
6221
6222   DrawSetupScreen();
6223
6224   // check if game speed is high enough for 60 Hz vsync to work
6225   if (check_game_speed)
6226     ModifyGameSpeedIfNeeded();
6227
6228   // window scaling may have changed at this point
6229   ChangeWindowScalingIfNeeded();
6230
6231   // window scaling quality may have changed at this point
6232   if (!strEqual(setup.window_scaling_quality, video.window_scaling_quality))
6233     SDLSetWindowScalingQuality(setup.window_scaling_quality);
6234
6235   // screen rendering mode may have changed at this point
6236   SDLSetScreenRenderingMode(setup.screen_rendering_mode);
6237
6238   int setup_vsync_mode = VSYNC_MODE_STR_TO_INT(setup.vsync_mode);
6239   int video_vsync_mode = video.vsync_mode;
6240
6241   // screen vsync mode may have changed at this point
6242   ChangeVsyncModeIfNeeded();
6243
6244   // check if setting vsync mode to selected value failed
6245   if (setup_vsync_mode != video_vsync_mode &&
6246       setup_vsync_mode != video.vsync_mode)
6247   {
6248     // changing vsync mode to selected value failed -- reset displayed value
6249     execSetupGraphics_setVsyncModes(TRUE);
6250
6251     Request("Setting VSync failed!", REQ_CONFIRM);
6252
6253     DrawSetupScreen();
6254   }
6255 }
6256
6257 static void execSetupChooseWindowSize(void)
6258 {
6259   setup_mode = SETUP_MODE_CHOOSE_WINDOW_SIZE;
6260
6261   DrawSetupScreen();
6262 }
6263
6264 static void execSetupChooseScalingType(void)
6265 {
6266   setup_mode = SETUP_MODE_CHOOSE_SCALING_TYPE;
6267
6268   DrawSetupScreen();
6269 }
6270
6271 static void execSetupChooseRenderingMode(void)
6272 {
6273   setup_mode = SETUP_MODE_CHOOSE_RENDERING;
6274
6275   DrawSetupScreen();
6276 }
6277
6278 static void execSetupChooseVsyncMode(void)
6279 {
6280   setup_mode = SETUP_MODE_CHOOSE_VSYNC;
6281
6282   DrawSetupScreen();
6283 }
6284
6285 static void execSetupChooseVolumeSimple(void)
6286 {
6287   setup_mode = SETUP_MODE_CHOOSE_VOLUME_SIMPLE;
6288
6289   DrawSetupScreen();
6290 }
6291
6292 static void execSetupChooseVolumeLoops(void)
6293 {
6294   setup_mode = SETUP_MODE_CHOOSE_VOLUME_LOOPS;
6295
6296   DrawSetupScreen();
6297 }
6298
6299 static void execSetupChooseVolumeMusic(void)
6300 {
6301   setup_mode = SETUP_MODE_CHOOSE_VOLUME_MUSIC;
6302
6303   DrawSetupScreen();
6304 }
6305
6306 static void execSetupSound(void)
6307 {
6308   if (volumes_simple == NULL)
6309   {
6310     boolean current_volume_simple_found = FALSE;
6311     int i;
6312
6313     for (i = 0; volumes_list[i].value != -1; i++)
6314     {
6315       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6316       char identifier[32], name[32];
6317       int value = volumes_list[i].value;
6318       char *text = volumes_list[i].text;
6319
6320       ti->node_top = &volumes_simple;
6321       ti->sort_priority = value;
6322
6323       sprintf(identifier, "%d", value);
6324       sprintf(name, "%s", text);
6325
6326       setString(&ti->identifier, identifier);
6327       setString(&ti->name, name);
6328       setString(&ti->name_sorting, name);
6329       setString(&ti->infotext, STR_SETUP_CHOOSE_VOLUME_SIMPLE);
6330
6331       pushTreeInfo(&volumes_simple, ti);
6332
6333       if (value == setup.volume_simple)
6334         current_volume_simple_found = TRUE;
6335     }
6336
6337     if (!current_volume_simple_found)
6338     {
6339       // add entry for non-preset volume value
6340
6341       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6342       char identifier[32], name[32];
6343       int value = setup.volume_simple;
6344
6345       ti->node_top = &volumes_simple;
6346       ti->sort_priority = value;
6347
6348       sprintf(identifier, "%d", value);
6349       sprintf(name, "%d %% (Current)", value);
6350
6351       setString(&ti->identifier, identifier);
6352       setString(&ti->name, name);
6353       setString(&ti->name_sorting, name);
6354       setString(&ti->infotext, STR_SETUP_CHOOSE_VOLUME_SIMPLE);
6355
6356       pushTreeInfo(&volumes_simple, ti);
6357     }
6358
6359     // sort volume values to start with lowest volume value
6360     sortTreeInfo(&volumes_simple);
6361
6362     // set current volume value to configured volume value
6363     volume_simple_current =
6364       getTreeInfoFromIdentifier(volumes_simple,i_to_a(setup.volume_simple));
6365
6366     // if that fails, set current volume to reliable default value
6367     if (volume_simple_current == NULL)
6368       volume_simple_current =
6369         getTreeInfoFromIdentifier(volumes_simple, i_to_a(100));
6370
6371     // if that also fails, set current volume to first available value
6372     if (volume_simple_current == NULL)
6373       volume_simple_current = volumes_simple;
6374   }
6375
6376   if (volumes_loops == NULL)
6377   {
6378     boolean current_volume_loops_found = FALSE;
6379     int i;
6380
6381     for (i = 0; volumes_list[i].value != -1; i++)
6382     {
6383       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6384       char identifier[32], name[32];
6385       int value = volumes_list[i].value;
6386       char *text = volumes_list[i].text;
6387
6388       ti->node_top = &volumes_loops;
6389       ti->sort_priority = value;
6390
6391       sprintf(identifier, "%d", value);
6392       sprintf(name, "%s", text);
6393
6394       setString(&ti->identifier, identifier);
6395       setString(&ti->name, name);
6396       setString(&ti->name_sorting, name);
6397       setString(&ti->infotext, STR_SETUP_CHOOSE_VOLUME_LOOPS);
6398
6399       pushTreeInfo(&volumes_loops, ti);
6400
6401       if (value == setup.volume_loops)
6402         current_volume_loops_found = TRUE;
6403     }
6404
6405     if (!current_volume_loops_found)
6406     {
6407       // add entry for non-preset volume value
6408
6409       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6410       char identifier[32], name[32];
6411       int value = setup.volume_loops;
6412
6413       ti->node_top = &volumes_loops;
6414       ti->sort_priority = value;
6415
6416       sprintf(identifier, "%d", value);
6417       sprintf(name, "%d %% (Current)", value);
6418
6419       setString(&ti->identifier, identifier);
6420       setString(&ti->name, name);
6421       setString(&ti->name_sorting, name);
6422       setString(&ti->infotext, STR_SETUP_CHOOSE_VOLUME_LOOPS);
6423
6424       pushTreeInfo(&volumes_loops, ti);
6425     }
6426
6427     // sort volume values to start with lowest volume value
6428     sortTreeInfo(&volumes_loops);
6429
6430     // set current volume value to configured volume value
6431     volume_loops_current =
6432       getTreeInfoFromIdentifier(volumes_loops,i_to_a(setup.volume_loops));
6433
6434     // if that fails, set current volume to reliable default value
6435     if (volume_loops_current == NULL)
6436       volume_loops_current =
6437         getTreeInfoFromIdentifier(volumes_loops, i_to_a(100));
6438
6439     // if that also fails, set current volume to first available value
6440     if (volume_loops_current == NULL)
6441       volume_loops_current = volumes_loops;
6442   }
6443
6444   if (volumes_music == NULL)
6445   {
6446     boolean current_volume_music_found = FALSE;
6447     int i;
6448
6449     for (i = 0; volumes_list[i].value != -1; i++)
6450     {
6451       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6452       char identifier[32], name[32];
6453       int value = volumes_list[i].value;
6454       char *text = volumes_list[i].text;
6455
6456       ti->node_top = &volumes_music;
6457       ti->sort_priority = value;
6458
6459       sprintf(identifier, "%d", value);
6460       sprintf(name, "%s", text);
6461
6462       setString(&ti->identifier, identifier);
6463       setString(&ti->name, name);
6464       setString(&ti->name_sorting, name);
6465       setString(&ti->infotext, STR_SETUP_CHOOSE_VOLUME_MUSIC);
6466
6467       pushTreeInfo(&volumes_music, ti);
6468
6469       if (value == setup.volume_music)
6470         current_volume_music_found = TRUE;
6471     }
6472
6473     if (!current_volume_music_found)
6474     {
6475       // add entry for non-preset volume value
6476
6477       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6478       char identifier[32], name[32];
6479       int value = setup.volume_music;
6480
6481       ti->node_top = &volumes_music;
6482       ti->sort_priority = value;
6483
6484       sprintf(identifier, "%d", value);
6485       sprintf(name, "%d %% (Current)", value);
6486
6487       setString(&ti->identifier, identifier);
6488       setString(&ti->name, name);
6489       setString(&ti->name_sorting, name);
6490       setString(&ti->infotext, STR_SETUP_CHOOSE_VOLUME_MUSIC);
6491
6492       pushTreeInfo(&volumes_music, ti);
6493     }
6494
6495     // sort volume values to start with lowest volume value
6496     sortTreeInfo(&volumes_music);
6497
6498     // set current volume value to configured volume value
6499     volume_music_current =
6500       getTreeInfoFromIdentifier(volumes_music,i_to_a(setup.volume_music));
6501
6502     // if that fails, set current volume to reliable default value
6503     if (volume_music_current == NULL)
6504       volume_music_current =
6505         getTreeInfoFromIdentifier(volumes_music, i_to_a(100));
6506
6507     // if that also fails, set current volume to first available value
6508     if (volume_music_current == NULL)
6509       volume_music_current = volumes_music;
6510   }
6511
6512   setup.volume_simple = atoi(volume_simple_current->identifier);
6513   setup.volume_loops  = atoi(volume_loops_current->identifier);
6514   setup.volume_music  = atoi(volume_music_current->identifier);
6515
6516   // needed for displaying volume text instead of identifier
6517   volume_simple_text = volume_simple_current->name;
6518   volume_loops_text = volume_loops_current->name;
6519   volume_music_text = volume_music_current->name;
6520
6521   setup_mode = SETUP_MODE_SOUND;
6522
6523   DrawSetupScreen();
6524 }
6525
6526 static void execSetupChooseTouchControls(void)
6527 {
6528   setup_mode = SETUP_MODE_CHOOSE_TOUCH_CONTROL;
6529
6530   DrawSetupScreen();
6531 }
6532
6533 static void execSetupChooseMoveDistance(void)
6534 {
6535   setup_mode = SETUP_MODE_CHOOSE_MOVE_DISTANCE;
6536
6537   DrawSetupScreen();
6538 }
6539
6540 static void execSetupChooseDropDistance(void)
6541 {
6542   setup_mode = SETUP_MODE_CHOOSE_DROP_DISTANCE;
6543
6544   DrawSetupScreen();
6545 }
6546
6547 static void execSetupChooseTransparency(void)
6548 {
6549   setup_mode = SETUP_MODE_CHOOSE_TRANSPARENCY;
6550
6551   DrawSetupScreen();
6552 }
6553
6554 static void execSetupChooseGridXSize_0(void)
6555 {
6556   setup_mode = SETUP_MODE_CHOOSE_GRID_XSIZE_0;
6557
6558   DrawSetupScreen();
6559 }
6560
6561 static void execSetupChooseGridYSize_0(void)
6562 {
6563   setup_mode = SETUP_MODE_CHOOSE_GRID_YSIZE_0;
6564
6565   DrawSetupScreen();
6566 }
6567
6568 static void execSetupChooseGridXSize_1(void)
6569 {
6570   setup_mode = SETUP_MODE_CHOOSE_GRID_XSIZE_1;
6571
6572   DrawSetupScreen();
6573 }
6574
6575 static void execSetupChooseGridYSize_1(void)
6576 {
6577   setup_mode = SETUP_MODE_CHOOSE_GRID_YSIZE_1;
6578
6579   DrawSetupScreen();
6580 }
6581
6582 static void execSetupConfigureVirtualButtons(void)
6583 {
6584   setup_mode = SETUP_MODE_CONFIG_VIRT_BUTTONS;
6585
6586   ConfigureVirtualButtons();
6587
6588   setup_mode = SETUP_MODE_TOUCH;
6589
6590   DrawSetupScreen();
6591 }
6592
6593 static void execSetupTouch(void)
6594 {
6595   int i, j, k;
6596
6597   if (touch_controls == NULL)
6598   {
6599     for (i = 0; touch_controls_list[i].value != NULL; i++)
6600     {
6601       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6602       char identifier[32], name[32];
6603       char *value = touch_controls_list[i].value;
6604       char *text = touch_controls_list[i].text;
6605
6606       ti->node_top = &touch_controls;
6607       ti->sort_priority = i;
6608
6609       sprintf(identifier, "%s", value);
6610       sprintf(name, "%s", text);
6611
6612       setString(&ti->identifier, identifier);
6613       setString(&ti->name, name);
6614       setString(&ti->name_sorting, name);
6615       setString(&ti->infotext, STR_SETUP_CHOOSE_TOUCH_CONTROL);
6616
6617       pushTreeInfo(&touch_controls, ti);
6618     }
6619
6620     // sort touch control values to start with lowest touch control value
6621     sortTreeInfo(&touch_controls);
6622
6623     // set current touch control value to configured touch control value
6624     touch_control_current =
6625       getTreeInfoFromIdentifier(touch_controls, setup.touch.control_type);
6626
6627     // if that fails, set current touch control to reliable default value
6628     if (touch_control_current == NULL)
6629       touch_control_current =
6630         getTreeInfoFromIdentifier(touch_controls, TOUCH_CONTROL_DEFAULT);
6631
6632     // if that also fails, set current touch control to first available value
6633     if (touch_control_current == NULL)
6634       touch_control_current = touch_controls;
6635   }
6636
6637   if (move_distances == NULL)
6638   {
6639     for (i = 0; distances_list[i].value != -1; i++)
6640     {
6641       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6642       char identifier[32], name[32];
6643       int value = distances_list[i].value;
6644       char *text = distances_list[i].text;
6645
6646       ti->node_top = &move_distances;
6647       ti->sort_priority = value;
6648
6649       sprintf(identifier, "%d", value);
6650       sprintf(name, "%s", text);
6651
6652       setString(&ti->identifier, identifier);
6653       setString(&ti->name, name);
6654       setString(&ti->name_sorting, name);
6655       setString(&ti->infotext, STR_SETUP_CHOOSE_MOVE_DISTANCE);
6656
6657       pushTreeInfo(&move_distances, ti);
6658     }
6659
6660     // sort distance values to start with lowest distance value
6661     sortTreeInfo(&move_distances);
6662
6663     // set current distance value to configured distance value
6664     move_distance_current =
6665       getTreeInfoFromIdentifier(move_distances,
6666                                 i_to_a(setup.touch.move_distance));
6667
6668     // if that fails, set current distance to reliable default value
6669     if (move_distance_current == NULL)
6670       move_distance_current =
6671         getTreeInfoFromIdentifier(move_distances,
6672                                   i_to_a(TOUCH_MOVE_DISTANCE_DEFAULT));
6673
6674     // if that also fails, set current distance to first available value
6675     if (move_distance_current == NULL)
6676       move_distance_current = move_distances;
6677   }
6678
6679   if (drop_distances == NULL)
6680   {
6681     for (i = 0; distances_list[i].value != -1; i++)
6682     {
6683       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6684       char identifier[32], name[32];
6685       int value = distances_list[i].value;
6686       char *text = distances_list[i].text;
6687
6688       ti->node_top = &drop_distances;
6689       ti->sort_priority = value;
6690
6691       sprintf(identifier, "%d", value);
6692       sprintf(name, "%s", text);
6693
6694       setString(&ti->identifier, identifier);
6695       setString(&ti->name, name);
6696       setString(&ti->name_sorting, name);
6697       setString(&ti->infotext, STR_SETUP_CHOOSE_DROP_DISTANCE);
6698
6699       pushTreeInfo(&drop_distances, ti);
6700     }
6701
6702     // sort distance values to start with lowest distance value
6703     sortTreeInfo(&drop_distances);
6704
6705     // set current distance value to configured distance value
6706     drop_distance_current =
6707       getTreeInfoFromIdentifier(drop_distances,
6708                                 i_to_a(setup.touch.drop_distance));
6709
6710     // if that fails, set current distance to reliable default value
6711     if (drop_distance_current == NULL)
6712       drop_distance_current =
6713         getTreeInfoFromIdentifier(drop_distances,
6714                                   i_to_a(TOUCH_DROP_DISTANCE_DEFAULT));
6715
6716     // if that also fails, set current distance to first available value
6717     if (drop_distance_current == NULL)
6718       drop_distance_current = drop_distances;
6719   }
6720
6721   if (transparencies == NULL)
6722   {
6723     for (i = 0; transparencies_list[i].value != -1; i++)
6724     {
6725       TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6726       char identifier[32], name[32];
6727       int value = transparencies_list[i].value;
6728       char *text = transparencies_list[i].text;
6729
6730       ti->node_top = &transparencies;
6731       ti->sort_priority = value;
6732
6733       sprintf(identifier, "%d", value);
6734       sprintf(name, "%s", text);
6735
6736       setString(&ti->identifier, identifier);
6737       setString(&ti->name, name);
6738       setString(&ti->name_sorting, name);
6739       setString(&ti->infotext, STR_SETUP_CHOOSE_TRANSPARENCY);
6740
6741       pushTreeInfo(&transparencies, ti);
6742     }
6743
6744     // sort transparency values to start with lowest transparency value
6745     sortTreeInfo(&transparencies);
6746
6747     // set current transparency value to configured transparency value
6748     transparency_current =
6749       getTreeInfoFromIdentifier(transparencies,
6750                                 i_to_a(setup.touch.transparency));
6751
6752     // if that fails, set current transparency to reliable default value
6753     if (transparency_current == NULL)
6754       transparency_current =
6755         getTreeInfoFromIdentifier(transparencies,
6756                                   i_to_a(TOUCH_TRANSPARENCY_DEFAULT));
6757
6758     // if that also fails, set current transparency to first available value
6759     if (transparency_current == NULL)
6760       transparency_current = transparencies;
6761   }
6762
6763   for (i = 0; i < 2; i++)
6764   {
6765     for (j = 0; j < 2; j++)
6766     {
6767       if (grid_sizes[i][j] == NULL)
6768       {
6769         for (k = 0; grid_sizes_list[k].value != -1; k++)
6770         {
6771           TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
6772           char identifier[32], name[32];
6773           int value = grid_sizes_list[k].value;
6774           char *text = grid_sizes_list[k].text;
6775
6776           ti->node_top = &grid_sizes[i][j];
6777           ti->sort_priority = value;
6778
6779           sprintf(identifier, "%d", value);
6780           sprintf(name, "%s", text);
6781
6782           setString(&ti->identifier, identifier);
6783           setString(&ti->name, name);
6784           setString(&ti->name_sorting, name);
6785           setString(&ti->infotext,
6786                     (i == 0 ?
6787                      (j == 0 ?
6788                       STR_SETUP_CHOOSE_GRID_XSIZE_0 :
6789                       STR_SETUP_CHOOSE_GRID_YSIZE_0) :
6790                      (j == 0 ?
6791                       STR_SETUP_CHOOSE_GRID_XSIZE_1 :
6792                       STR_SETUP_CHOOSE_GRID_YSIZE_1)));
6793
6794           pushTreeInfo(&grid_sizes[i][j], ti);
6795         }
6796
6797         // sort grid size values to start with lowest grid size value
6798         sortTreeInfo(&grid_sizes[i][j]);
6799
6800         // set current grid size value to configured grid size value
6801         grid_size_current[i][j] =
6802           getTreeInfoFromIdentifier(grid_sizes[i][j],
6803                                     i_to_a(j == 0 ?
6804                                            setup.touch.grid_xsize[i] :
6805                                            setup.touch.grid_ysize[i]));
6806
6807         // if that fails, set current grid size to reliable default value
6808         if (grid_size_current[i][j] == NULL)
6809           grid_size_current[i][j] =
6810             getTreeInfoFromIdentifier(grid_sizes[i][j],
6811                                       i_to_a(j == 0 ?
6812                                              DEFAULT_GRID_XSIZE(i) :
6813                                              DEFAULT_GRID_YSIZE(i)));
6814
6815         // if that also fails, set current grid size to first available value
6816         if (grid_size_current[i][j] == NULL)
6817           grid_size_current[i][j] = grid_sizes[i][j];
6818       }
6819     }
6820   }
6821
6822   setup.touch.control_type = touch_control_current->identifier;
6823   setup.touch.move_distance = atoi(move_distance_current->identifier);
6824   setup.touch.drop_distance = atoi(drop_distance_current->identifier);
6825   setup.touch.transparency = atoi(transparency_current->identifier);
6826
6827   for (i = 0; i < 2; i++)
6828   {
6829     setup.touch.grid_xsize[i] = atoi(grid_size_current[i][0]->identifier);
6830     setup.touch.grid_ysize[i] = atoi(grid_size_current[i][1]->identifier);
6831
6832     if (i == GRID_ACTIVE_NR())
6833     {
6834       overlay.grid_xsize = setup.touch.grid_xsize[i];
6835       overlay.grid_ysize = setup.touch.grid_ysize[i];
6836     }
6837   }
6838
6839   // needed for displaying value text instead of identifier
6840   touch_controls_text = touch_control_current->name;
6841   move_distance_text = move_distance_current->name;
6842   drop_distance_text = drop_distance_current->name;
6843   transparency_text = transparency_current->name;
6844
6845   for (i = 0; i < 2; i++)
6846     for (j = 0; j < 2; j++)
6847       grid_size_text[i][j] = grid_size_current[i][j]->name;
6848
6849   setup_mode = SETUP_MODE_TOUCH;
6850
6851   DrawSetupScreen();
6852 }
6853
6854 static void execSetupArtwork(void)
6855 {
6856   static ArtworkDirTree *gfx_last_valid = NULL;
6857   static ArtworkDirTree *snd_last_valid = NULL;
6858   static ArtworkDirTree *mus_last_valid = NULL;
6859
6860   // current artwork directory may be invalid (level group, parent link)
6861   if (!validLevelSeries(artwork.gfx_current))
6862     artwork.gfx_current = getFirstValidTreeInfoEntry(gfx_last_valid);
6863   if (!validLevelSeries(artwork.snd_current))
6864     artwork.snd_current = getFirstValidTreeInfoEntry(snd_last_valid);
6865   if (!validLevelSeries(artwork.mus_current))
6866     artwork.mus_current = getFirstValidTreeInfoEntry(mus_last_valid);
6867
6868   // store valid artwork directory information
6869   gfx_last_valid = artwork.gfx_current;
6870   snd_last_valid = artwork.snd_current;
6871   mus_last_valid = artwork.mus_current;
6872
6873 #if 0
6874   Debug("screens:execSetupArtwork", "'%s', '%s', '%s'",
6875         artwork.gfx_current->subdir,
6876         artwork.gfx_current->fullpath,
6877         artwork.gfx_current->basepath);
6878 #endif
6879
6880   setup.graphics_set = artwork.gfx_current->identifier;
6881   setup.sounds_set = artwork.snd_current->identifier;
6882   setup.music_set = artwork.mus_current->identifier;
6883
6884   // needed if last screen (setup choice) changed graphics, sounds or music
6885   ReloadCustomArtwork(0);
6886
6887   // needed for displaying artwork name instead of artwork identifier
6888   graphics_set_name = artwork.gfx_current->name;
6889   sounds_set_name = artwork.snd_current->name;
6890   music_set_name = artwork.mus_current->name;
6891
6892   setup_mode = SETUP_MODE_ARTWORK;
6893
6894   DrawSetupScreen();
6895 }
6896
6897 static void execSetupChooseGraphics(void)
6898 {
6899   setup_mode = SETUP_MODE_CHOOSE_GRAPHICS;
6900
6901   DrawSetupScreen();
6902 }
6903
6904 static void execSetupChooseSounds(void)
6905 {
6906   setup_mode = SETUP_MODE_CHOOSE_SOUNDS;
6907
6908   DrawSetupScreen();
6909 }
6910
6911 static void execSetupChooseMusic(void)
6912 {
6913   setup_mode = SETUP_MODE_CHOOSE_MUSIC;
6914
6915   DrawSetupScreen();
6916 }
6917
6918 static void execSetupInput(void)
6919 {
6920   setup_mode = SETUP_MODE_INPUT;
6921
6922   DrawSetupScreen();
6923 }
6924
6925 static void execSetupShortcuts(void)
6926 {
6927   setup_mode = SETUP_MODE_SHORTCUTS;
6928
6929   DrawSetupScreen();
6930 }
6931
6932 static void execSetupShortcuts1(void)
6933 {
6934   setup_mode = SETUP_MODE_SHORTCUTS_1;
6935
6936   DrawSetupScreen();
6937 }
6938
6939 static void execSetupShortcuts2(void)
6940 {
6941   setup_mode = SETUP_MODE_SHORTCUTS_2;
6942
6943   DrawSetupScreen();
6944 }
6945
6946 static void execSetupShortcuts3(void)
6947 {
6948   setup_mode = SETUP_MODE_SHORTCUTS_3;
6949
6950   DrawSetupScreen();
6951 }
6952
6953 static void execSetupShortcuts4(void)
6954 {
6955   setup_mode = SETUP_MODE_SHORTCUTS_4;
6956
6957   DrawSetupScreen();
6958 }
6959
6960 static void execSetupShortcuts5(void)
6961 {
6962   setup_mode = SETUP_MODE_SHORTCUTS_5;
6963
6964   DrawSetupScreen();
6965 }
6966
6967 static void execExitSetup(void)
6968 {
6969   SetGameStatus(GAME_MODE_MAIN);
6970
6971   DrawMainMenu();
6972 }
6973
6974 static void execSaveAndExitSetup(void)
6975 {
6976   SaveSetup();
6977   execExitSetup();
6978 }
6979
6980 static void execGadgetNetworkServer(void)
6981 {
6982   int gadget_id = SCREEN_CTRL_ID_NETWORK_SERVER;
6983   struct GadgetInfo *gi = screen_gadget[gadget_id];
6984
6985   if (strEqual(setup.network_server_hostname, STR_NETWORK_AUTO_DETECT))
6986     network_server_hostname[0] = '\0';
6987
6988   ModifyGadget(gi, GDI_TEXT_VALUE, network_server_hostname, GDI_END);
6989
6990   MapGadget(gi);
6991
6992   ClickOnGadget(gi, MB_LEFTBUTTON);
6993 }
6994
6995 static void execOfferUploadTapes(void)
6996 {
6997   OfferUploadTapes();
6998 }
6999
7000 static void ToggleNetworkModeIfNeeded(void)
7001 {
7002   int font_title = FONT_TITLE_1;
7003   int font_foot = FC_BLUE;
7004   int ystart  = mSY - SY + 16;
7005   int ybottom = mSY - SY + SYSIZE - 20;
7006   char *text = (setup.network_mode ? "Start Network" : "Stop Network");
7007
7008   if (setup.network_mode == network.enabled)
7009     return;
7010
7011   network.enabled = setup.network_mode;
7012
7013   FadeOut(REDRAW_ALL);
7014
7015   ClearField();
7016
7017   DrawTextSCentered(ystart, font_title, text);
7018
7019   FadeIn(REDRAW_ALL);
7020
7021   if (network.enabled)
7022     InitNetworkServer();
7023   else
7024     DisconnectFromNetworkServer();
7025
7026   DrawTextSCentered(ybottom, font_foot,
7027                     "Press any key or button for setup menu");
7028
7029   WaitForEventToContinue();
7030
7031   DrawSetupScreen();
7032 }
7033
7034 static void ToggleGameSpeedsListIfNeeded(void)
7035 {
7036   boolean using_game_speeds_extended = (game_speeds == game_speeds_extended);
7037
7038   if (setup.game_speed_extended == using_game_speeds_extended)
7039     return;
7040
7041   // try to match similar values when changing game speeds list
7042   if (setup.game_speed_extended)
7043     setup.game_frame_delay = (setup.game_frame_delay == 15 ? 16 :
7044                               setup.game_frame_delay == 30 ? 29 :
7045                               setup.game_frame_delay);
7046   else
7047     setup.game_frame_delay = (setup.game_frame_delay == 14 ? 15 :
7048                               setup.game_frame_delay == 16 ? 15 :
7049                               setup.game_frame_delay >= 29 ? 30 :
7050                               setup.game_frame_delay <= 10 ? 10 :
7051                               setup.game_frame_delay);
7052
7053   execSetupGame_setGameSpeeds(TRUE);
7054
7055   DrawSetupScreen();
7056 }
7057
7058 static void ToggleUseApiServerIfNeeded(void)
7059 {
7060   if (runtime.use_api_server == setup.use_api_server)
7061     return;
7062
7063   runtime.use_api_server = setup.use_api_server;
7064
7065   if (runtime.use_api_server)
7066     CheckApiServerTasks();
7067 }
7068
7069 static void ModifyGameSpeedIfNeeded(void)
7070 {
7071   if (strEqual(setup.vsync_mode, STR_VSYNC_MODE_OFF) ||
7072       setup.game_frame_delay <= MAX_VSYNC_FRAME_DELAY)
7073     return;
7074
7075   char message[100];
7076   char *game_speed_text = "Fast";
7077   int game_speed_value = 15;
7078
7079   if (setup.game_speed_extended)
7080   {
7081     game_speed_text = "60 fps";
7082     game_speed_value = 16;
7083   }
7084
7085   sprintf(message, "Game speed set to %s for VSync to work!", game_speed_text);
7086
7087   // set game speed to existing list value that is fast enough for vsync
7088   setup.game_frame_delay = game_speed_value;
7089
7090   execSetupGame_setGameSpeeds(TRUE);
7091
7092   Request(message, REQ_CONFIRM);
7093 }
7094
7095 static void DisableVsyncIfNeeded(void)
7096 {
7097   if (strEqual(setup.vsync_mode, STR_VSYNC_MODE_OFF) ||
7098       (setup.game_frame_delay >= MIN_VSYNC_FRAME_DELAY &&
7099        setup.game_frame_delay <= MAX_VSYNC_FRAME_DELAY))
7100     return;
7101
7102   // disable vsync for the selected game speed to work
7103   setup.vsync_mode = STR_VSYNC_MODE_OFF;
7104
7105   execSetupGraphics_setVsyncModes(TRUE);
7106
7107   Request("VSync disabled for this game speed to work!", REQ_CONFIRM);
7108 }
7109
7110 static struct
7111 {
7112   void *value;
7113   void *related_value;
7114 } hide_related_entry_list[] =
7115 {
7116   { &setup.scores_in_highscore_list,    execSetupChooseScoresType       },
7117   { &setup.scores_in_highscore_list,    &scores_type_text               },
7118
7119   { &setup.game_frame_delay,            execSetupChooseGameSpeed        },
7120   { &setup.game_frame_delay,            &game_speed_text                },
7121
7122   { &setup.scroll_delay_value,          execSetupChooseScrollDelay      },
7123   { &setup.scroll_delay_value,          &scroll_delay_text              },
7124
7125   { &setup.engine_snapshot_mode,        execSetupChooseSnapshotMode     },
7126   { &setup.engine_snapshot_mode,        &snapshot_mode_text             },
7127
7128   { &setup.window_scaling_percent,      execSetupChooseWindowSize       },
7129   { &setup.window_scaling_percent,      &window_size_text               },
7130
7131   { &setup.window_scaling_quality,      execSetupChooseScalingType      },
7132   { &setup.window_scaling_quality,      &scaling_type_text              },
7133
7134   { &setup.screen_rendering_mode,       execSetupChooseRenderingMode    },
7135   { &setup.screen_rendering_mode,       &rendering_mode_text            },
7136
7137   { &setup.vsync_mode,                  execSetupChooseVsyncMode        },
7138   { &setup.vsync_mode,                  &vsync_mode_text                },
7139
7140   { &setup.graphics_set,                execSetupChooseGraphics         },
7141   { &setup.graphics_set,                &graphics_set_name              },
7142
7143   { &setup.sounds_set,                  execSetupChooseSounds           },
7144   { &setup.sounds_set,                  &sounds_set_name                },
7145
7146   { &setup.music_set,                   execSetupChooseMusic            },
7147   { &setup.music_set,                   &music_set_name                 },
7148
7149   { &setup.volume_simple,               execSetupChooseVolumeSimple     },
7150   { &setup.volume_simple,               &volume_simple_text             },
7151
7152   { &setup.volume_loops,                execSetupChooseVolumeLoops      },
7153   { &setup.volume_loops,                &volume_loops_text              },
7154
7155   { &setup.volume_music,                execSetupChooseVolumeMusic      },
7156   { &setup.volume_music,                &volume_music_text              },
7157
7158   { &setup.touch.control_type,          execSetupChooseTouchControls    },
7159   { &setup.touch.control_type,          &touch_controls_text            },
7160
7161   { &setup.touch.move_distance,         execSetupChooseMoveDistance     },
7162   { &setup.touch.move_distance,         &move_distance_text             },
7163
7164   { &setup.touch.drop_distance,         execSetupChooseDropDistance     },
7165   { &setup.touch.drop_distance,         &drop_distance_text             },
7166
7167   { &setup.touch.transparency,          execSetupChooseTransparency     },
7168   { &setup.touch.transparency,          &transparency_text              },
7169
7170   { &setup.touch.grid_xsize[0],         execSetupChooseGridXSize_0      },
7171   { &setup.touch.grid_xsize[0],         &grid_size_text[0][0]           },
7172
7173   { &setup.touch.grid_ysize[0],         execSetupChooseGridYSize_0      },
7174   { &setup.touch.grid_ysize[0],         &grid_size_text[0][1]           },
7175
7176   { &setup.touch.grid_xsize[1],         execSetupChooseGridXSize_1      },
7177   { &setup.touch.grid_xsize[1],         &grid_size_text[1][0]           },
7178
7179   { &setup.touch.grid_ysize[1],         execSetupChooseGridYSize_1      },
7180   { &setup.touch.grid_ysize[1],         &grid_size_text[1][1]           },
7181
7182   { &setup.internal.menu_game,          execSetupGame                   },
7183   { &setup.internal.menu_engines,       execSetupEngines                },
7184   { &setup.internal.menu_editor,        execSetupEditor                 },
7185   { &setup.internal.menu_graphics,      execSetupGraphics               },
7186   { &setup.internal.menu_sound,         execSetupSound                  },
7187   { &setup.internal.menu_artwork,       execSetupArtwork                },
7188   { &setup.internal.menu_input,         execSetupInput                  },
7189   { &setup.internal.menu_touch,         execSetupTouch                  },
7190   { &setup.internal.menu_shortcuts,     execSetupShortcuts              },
7191   { &setup.internal.menu_exit,          execExitSetup                   },
7192   { &setup.internal.menu_save_and_exit, execSaveAndExitSetup            },
7193
7194   { &setup.internal.info_title,         execInfoTitleScreen             },
7195   { &setup.internal.info_elements,      execInfoElements                },
7196   { &setup.internal.info_music,         execInfoMusic                   },
7197   { &setup.internal.info_credits,       execInfoCredits                 },
7198   { &setup.internal.info_program,       execInfoProgram                 },
7199   { &setup.internal.info_version,       execInfoVersion                 },
7200   { &setup.internal.info_levelset,      execInfoLevelSet                },
7201   { &setup.internal.info_exit,          execExitInfo                    },
7202
7203   { NULL,                               NULL                            }
7204 };
7205
7206 void setHideRelatedSetupEntries(void)
7207 {
7208   int i;
7209
7210   for (i = 0; hide_related_entry_list[i].value != NULL; i++)
7211     if (hideSetupEntry(hide_related_entry_list[i].value))
7212       setHideSetupEntry(hide_related_entry_list[i].related_value);
7213 }
7214
7215 static struct TokenInfo setup_info_main[] =
7216 {
7217   { TYPE_ENTER_MENU,    execSetupGame,          STR_SETUP_GAME          },
7218   { TYPE_ENTER_MENU,    execSetupEngines,       STR_SETUP_ENGINES       },
7219   { TYPE_ENTER_MENU,    execSetupEditor,        STR_SETUP_EDITOR        },
7220   { TYPE_ENTER_MENU,    execSetupGraphics,      STR_SETUP_GRAPHICS      },
7221   { TYPE_ENTER_MENU,    execSetupSound,         STR_SETUP_SOUND         },
7222   { TYPE_ENTER_MENU,    execSetupArtwork,       STR_SETUP_ARTWORK       },
7223   { TYPE_ENTER_MENU,    execSetupInput,         STR_SETUP_INPUT         },
7224   { TYPE_ENTER_MENU,    execSetupTouch,         STR_SETUP_TOUCH         },
7225   { TYPE_ENTER_MENU,    execSetupShortcuts,     STR_SETUP_SHORTCUTS     },
7226   { TYPE_EMPTY,         NULL,                   ""                      },
7227   { TYPE_LEAVE_MENU,    execExitSetup,          STR_SETUP_EXIT          },
7228   { TYPE_LEAVE_MENU,    execSaveAndExitSetup,   STR_SETUP_SAVE_AND_EXIT },
7229
7230   { 0,                  NULL,                   NULL                    }
7231 };
7232
7233 static struct TokenInfo setup_info_game[] =
7234 {
7235   { TYPE_SWITCH,        &setup.team_mode,       "Team-Mode (Multi-Player):" },
7236   { TYPE_SWITCH,        &setup.network_mode,    "Network Multi-Player Mode:" },
7237   { TYPE_PLAYER,        &setup.network_player_nr,"Preferred Network Player:" },
7238   { TYPE_TEXT_INPUT,    execGadgetNetworkServer, "Network Server Hostname:" },
7239   { TYPE_STRING,        &network_server_text,   ""                      },
7240   { TYPE_SWITCH,        &setup.use_api_server,  "Use Highscore Server:" },
7241   { TYPE_ENTER_LIST,    execSetupChooseScoresType,"Scores in Highscore List:" },
7242   { TYPE_STRING,        &scores_type_text,      ""                      },
7243   { TYPE_ENTER_LIST,    execOfferUploadTapes,   "Upload Tapes to Server" },
7244   { TYPE_SWITCH,        &setup.multiple_users,  "Multiple Users/Teams:" },
7245   { TYPE_YES_NO,        &setup.input_on_focus,  "Only Move Focussed Player:" },
7246   { TYPE_SWITCH,        &setup.time_limit,      "Time Limit:"           },
7247   { TYPE_SWITCH,        &setup.handicap,        "Handicap:"             },
7248   { TYPE_SWITCH,        &setup.skip_levels,     "Skip Unsolved Levels:" },
7249   { TYPE_SWITCH,        &setup.increment_levels,"Increment Solved Levels:" },
7250   { TYPE_SWITCH,        &setup.auto_play_next_level,"Auto-play Next Level:" },
7251   { TYPE_SWITCH,        &setup.count_score_after_game,"Count Score After Game:" },
7252   { TYPE_SWITCH,        &setup.show_scores_after_game,"Show Scores After Game:" },
7253   { TYPE_YES_NO,        &setup.ask_on_game_over, "Ask on Game Over:"    },
7254   { TYPE_YES_NO,        &setup.ask_on_quit_game, "Ask on Quit Game:"    },
7255   { TYPE_YES_NO,        &setup.ask_on_quit_program, "Ask on Quit Program:" },
7256   { TYPE_SWITCH,        &setup.autorecord,      "Auto-Record Tapes:"    },
7257   { TYPE_SWITCH,        &setup.auto_pause_on_start, "Start Game in Pause Mode:" },
7258   { TYPE_ENTER_LIST,    execSetupChooseGameSpeed, "Game Speed:"         },
7259   { TYPE_STRING,        &game_speed_text,       ""                      },
7260   { TYPE_SWITCH,        &setup.game_speed_extended, "Game Speed Extended List:" },
7261 #if 1
7262   { TYPE_ENTER_LIST,    execSetupChooseScrollDelay, "Scroll Delay:"     },
7263   { TYPE_STRING,        &scroll_delay_text,     ""                      },
7264 #endif
7265   { TYPE_ENTER_LIST, execSetupChooseSnapshotMode,"Game Engine Snapshot Mode:" },
7266   { TYPE_STRING,        &snapshot_mode_text,    ""                      },
7267   { TYPE_SWITCH,        &setup.show_load_save_buttons,"Show Load/Save Buttons:" },
7268   { TYPE_SWITCH,        &setup.show_undo_redo_buttons,"Show Undo/Redo Buttons:" },
7269   { TYPE_EMPTY,         NULL,                   ""                      },
7270   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
7271
7272   { 0,                  NULL,                   NULL                    }
7273 };
7274
7275 static struct TokenInfo setup_info_engines[] =
7276 {
7277   { TYPE_HEADLINE,      NULL,                   "Emerald Mine"          },
7278   { TYPE_SWITCH,        &setup.forced_scroll_delay, "Scroll Delay:"     },
7279   { TYPE_ECS_AGA,       &setup.prefer_aga_graphics, "Amiga Graphics Chipset:" },
7280   { TYPE_SWITCH,        &setup.prefer_lowpass_sounds,"Low-Pass Filter Sounds:" },
7281   { TYPE_SWITCH,        &setup.prefer_extra_panel_items,"Show Dynamite and Keys:" },
7282   { TYPE_EMPTY,         NULL,                   ""                      },
7283   { TYPE_HEADLINE,      NULL,                   "Supaplex"              },
7284   { TYPE_SWITCH,        &setup.sp_show_border_elements, "Border Elements:" },
7285   { TYPE_EMPTY,         NULL,                   ""                      },
7286   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
7287
7288   { 0,                  NULL,                   NULL                    }
7289 };
7290
7291 static struct TokenInfo setup_info_editor[] =
7292 {
7293 #if 0
7294   { TYPE_SWITCH,        &setup.editor.el_boulderdash,   "Boulder Dash:" },
7295   { TYPE_SWITCH,        &setup.editor.el_emerald_mine,  "Emerald Mine:" },
7296   { TYPE_SWITCH, &setup.editor.el_emerald_mine_club,    "Emerald Mine Club:" },
7297   { TYPE_SWITCH,        &setup.editor.el_more,          "Rocks'n'Diamonds:" },
7298   { TYPE_SWITCH,        &setup.editor.el_sokoban,       "Sokoban:"      },
7299   { TYPE_SWITCH,        &setup.editor.el_supaplex,      "Supaplex:"     },
7300   { TYPE_SWITCH,        &setup.editor.el_diamond_caves, "Diamond Caves II:" },
7301   { TYPE_SWITCH,        &setup.editor.el_dx_boulderdash,"DX-Boulderdash:" },
7302   { TYPE_SWITCH,        &setup.editor.el_chars,         "Text Characters:" },
7303   { TYPE_SWITCH, &setup.editor.el_steel_chars, "Text Characters (Steel):" },
7304 #endif
7305   { TYPE_SWITCH,        &setup.editor.el_classic,  "Classic Elements:" },
7306   { TYPE_SWITCH,        &setup.editor.el_custom,  "Custom & Group Elements:" },
7307 #if 0
7308   { TYPE_SWITCH,        &setup.editor.el_headlines,     "Headlines:"    },
7309 #endif
7310   { TYPE_SWITCH, &setup.editor.el_user_defined, "User defined element list:" },
7311   { TYPE_SWITCH,        &setup.editor.el_dynamic,  "Dynamic level elements:" },
7312   { TYPE_EMPTY,         NULL,                   ""                      },
7313 #if 0
7314   { TYPE_SWITCH,        &setup.editor.el_by_game,   "Show elements by game:" },
7315   { TYPE_SWITCH,        &setup.editor.el_by_type,   "Show elements by type:" },
7316   { TYPE_EMPTY,         NULL,                   ""                      },
7317 #endif
7318   { TYPE_SWITCH, &setup.editor.show_element_token,      "Show element token:" },
7319   { TYPE_EMPTY,         NULL,                   ""                      },
7320   { TYPE_SWITCH, &setup.editor.show_read_only_warning,  "Show read-only warning:" },
7321   { TYPE_EMPTY,         NULL,                   ""                      },
7322   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
7323
7324   { 0,                  NULL,                   NULL                    }
7325 };
7326
7327 static struct TokenInfo setup_info_graphics[] =
7328 {
7329 #if !defined(PLATFORM_ANDROID)
7330   { TYPE_SWITCH,        &setup.fullscreen,      "Fullscreen:"           },
7331   { TYPE_ENTER_LIST,    execSetupChooseWindowSize, "Window Scaling:"    },
7332   { TYPE_STRING,        &window_size_text,      ""                      },
7333   { TYPE_ENTER_LIST,    execSetupChooseScalingType, "Anti-Aliasing:"    },
7334   { TYPE_STRING,        &scaling_type_text,     ""                      },
7335   { TYPE_ENTER_LIST,    execSetupChooseRenderingMode, "Special Rendering:" },
7336   { TYPE_STRING,        &rendering_mode_text,   ""                      },
7337 #endif
7338 #if 0
7339   { TYPE_ENTER_LIST,    execSetupChooseScrollDelay, "Scroll Delay:"     },
7340   { TYPE_STRING,        &scroll_delay_text,     ""                      },
7341 #endif
7342   { TYPE_ENTER_LIST,    execSetupChooseVsyncMode, "Vertical Sync (VSync):" },
7343   { TYPE_STRING,        &vsync_mode_text,       ""                      },
7344   { TYPE_SWITCH,        &setup.fade_screens,    "Fade Screens:"         },
7345   { TYPE_SWITCH,        &setup.quick_switch,    "Quick Player Focus Switch:" },
7346   { TYPE_SWITCH,        &setup.quick_doors,     "Quick Menu Doors:"     },
7347   { TYPE_SWITCH,        &setup.show_titlescreen,"Show Title Screens:"   },
7348   { TYPE_SWITCH,        &setup.toons,           "Show Menu Animations:" },
7349   { TYPE_SWITCH,        &setup.small_game_graphics, "Small Game Graphics:" },
7350   { TYPE_YES_NO_AUTO,   &setup.debug.xsn_mode,  debug_xsn_mode          },
7351   { TYPE_EMPTY,         NULL,                   ""                      },
7352   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
7353
7354   { 0,                  NULL,                   NULL                    }
7355 };
7356
7357 static struct TokenInfo setup_info_sound[] =
7358 {
7359   { TYPE_SWITCH,        &setup.sound_simple,    "Sound Effects (Normal):"  },
7360   { TYPE_SWITCH,        &setup.sound_loops,     "Sound Effects (Looping):" },
7361   { TYPE_SWITCH,        &setup.sound_music,     "Music:"                },
7362   { TYPE_EMPTY,         NULL,                   ""                      },
7363   { TYPE_ENTER_LIST,    execSetupChooseVolumeSimple, "Sound Volume (Normal):" },
7364   { TYPE_STRING,        &volume_simple_text,    ""                      },
7365   { TYPE_ENTER_LIST,    execSetupChooseVolumeLoops, "Sound Volume (Looping):" },
7366   { TYPE_STRING,        &volume_loops_text,     ""                      },
7367   { TYPE_ENTER_LIST,    execSetupChooseVolumeMusic, "Music Volume:"     },
7368   { TYPE_STRING,        &volume_music_text,     ""                      },
7369   { TYPE_EMPTY,         NULL,                   ""                      },
7370   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
7371
7372   { 0,                  NULL,                   NULL                    }
7373 };
7374
7375 static struct TokenInfo setup_info_artwork[] =
7376 {
7377   { TYPE_ENTER_LIST,    execSetupChooseGraphics,"Custom Graphics:"      },
7378   { TYPE_STRING,        &graphics_set_name,     ""                      },
7379   { TYPE_ENTER_LIST,    execSetupChooseSounds,  "Custom Sounds:"        },
7380   { TYPE_STRING,        &sounds_set_name,       ""                      },
7381   { TYPE_ENTER_LIST,    execSetupChooseMusic,   "Custom Music:"         },
7382   { TYPE_STRING,        &music_set_name,        ""                      },
7383   { TYPE_EMPTY,         NULL,                   ""                      },
7384   { TYPE_YES_NO_AUTO,&setup.override_level_graphics,"Override Level Graphics:"},
7385   { TYPE_YES_NO_AUTO,&setup.override_level_sounds,  "Override Level Sounds:"  },
7386   { TYPE_YES_NO_AUTO,&setup.override_level_music,   "Override Level Music:"   },
7387   { TYPE_EMPTY,         NULL,                   ""                      },
7388   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
7389
7390   { 0,                  NULL,                   NULL                    }
7391 };
7392
7393 static struct TokenInfo setup_info_input[] =
7394 {
7395   { TYPE_SWITCH,        NULL,                   "Player:"               },
7396   { TYPE_SWITCH,        NULL,                   "Device:"               },
7397   { TYPE_SWITCH,        NULL,                   ""                      },
7398   { TYPE_SKIPPABLE,     NULL,                   ""                      },
7399   { TYPE_EMPTY,         NULL,                   ""                      },
7400   { TYPE_EMPTY,         NULL,                   ""                      },
7401   { TYPE_EMPTY,         NULL,                   ""                      },
7402   { TYPE_EMPTY,         NULL,                   ""                      },
7403   { TYPE_EMPTY,         NULL,                   ""                      },
7404   { TYPE_EMPTY,         NULL,                   ""                      },
7405   { TYPE_EMPTY,         NULL,                   ""                      },
7406   { TYPE_EMPTY,         NULL,                   ""                      },
7407   { TYPE_SKIPPABLE,     NULL,                   ""                      },
7408   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
7409
7410   { 0,                  NULL,                   NULL                    }
7411 };
7412
7413 static struct TokenInfo setup_info_touch[] =
7414 {
7415   { TYPE_ENTER_LIST,    execSetupChooseTouchControls, "Touch Control Type:" },
7416   { TYPE_STRING,        &touch_controls_text,   ""                      },
7417   { TYPE_EMPTY,         NULL,                   ""                      },
7418   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
7419
7420   { 0,                  NULL,                   NULL                    }
7421 };
7422
7423 static struct TokenInfo setup_info_touch_virtual_buttons_0[] =
7424 {
7425   { TYPE_ENTER_LIST,    execSetupChooseTouchControls, "Touch Control Type:" },
7426   { TYPE_STRING,        &touch_controls_text,   ""                      },
7427   { TYPE_EMPTY,         NULL,                   ""                      },
7428   { TYPE_ENTER_LIST,    execSetupChooseGridXSize_0, "Horizontal Buttons (Landscape):"   },
7429   { TYPE_STRING,        &grid_size_text[0][0],  ""                      },
7430   { TYPE_ENTER_LIST,    execSetupChooseGridYSize_0, "Vertical Buttons (Landscape):"     },
7431   { TYPE_STRING,        &grid_size_text[0][1],  ""                      },
7432   { TYPE_ENTER_LIST,    execSetupChooseTransparency, "Button Transparency:" },
7433   { TYPE_STRING,        &transparency_text,     ""                      },
7434   { TYPE_SWITCH,        &setup.touch.draw_outlined, "Draw Buttons Outlined:" },
7435   { TYPE_SWITCH,        &setup.touch.draw_pressed, "Highlight Pressed Buttons:" },
7436   { TYPE_EMPTY,         NULL,                   ""                      },
7437   { TYPE_ENTER_LIST,    execSetupConfigureVirtualButtons, "Configure Virtual Buttons" },
7438   { TYPE_EMPTY,         NULL,                   ""                      },
7439   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
7440
7441   { 0,                  NULL,                   NULL                    }
7442 };
7443
7444 static struct TokenInfo setup_info_touch_virtual_buttons_1[] =
7445 {
7446   { TYPE_ENTER_LIST,    execSetupChooseTouchControls, "Touch Control Type:" },
7447   { TYPE_STRING,        &touch_controls_text,   ""                      },
7448   { TYPE_EMPTY,         NULL,                   ""                      },
7449   { TYPE_ENTER_LIST,    execSetupChooseGridXSize_1, "Horizontal Buttons (Portrait):"    },
7450   { TYPE_STRING,        &grid_size_text[1][0],  ""                      },
7451   { TYPE_ENTER_LIST,    execSetupChooseGridYSize_1, "Vertical Buttons (Portrait):"      },
7452   { TYPE_STRING,        &grid_size_text[1][1],  ""                      },
7453   { TYPE_ENTER_LIST,    execSetupChooseTransparency, "Button Transparency:" },
7454   { TYPE_STRING,        &transparency_text,     ""                      },
7455   { TYPE_SWITCH,        &setup.touch.draw_outlined, "Draw Buttons Outlined:" },
7456   { TYPE_SWITCH,        &setup.touch.draw_pressed, "Highlight Pressed Buttons:" },
7457   { TYPE_EMPTY,         NULL,                   ""                      },
7458   { TYPE_ENTER_LIST,    execSetupConfigureVirtualButtons, "Configure Virtual Buttons" },
7459   { TYPE_EMPTY,         NULL,                   ""                      },
7460   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
7461
7462   { 0,                  NULL,                   NULL                    }
7463 };
7464
7465 static struct TokenInfo *setup_info_touch_virtual_buttons[] =
7466 {
7467   setup_info_touch_virtual_buttons_0,
7468   setup_info_touch_virtual_buttons_1
7469 };
7470
7471 static struct TokenInfo setup_info_touch_wipe_gestures[] =
7472 {
7473   { TYPE_ENTER_LIST,    execSetupChooseTouchControls, "Touch Control Type:" },
7474   { TYPE_STRING,        &touch_controls_text,   ""                      },
7475   { TYPE_EMPTY,         NULL,                   ""                      },
7476   { TYPE_ENTER_LIST,    execSetupChooseMoveDistance, "Move Trigger Distance:" },
7477   { TYPE_STRING,        &move_distance_text,    ""                      },
7478   { TYPE_ENTER_LIST,    execSetupChooseDropDistance, "Drop Trigger Distance:" },
7479   { TYPE_STRING,        &drop_distance_text,    ""                      },
7480   { TYPE_EMPTY,         NULL,                   ""                      },
7481   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
7482
7483   { 0,                  NULL,                   NULL                    }
7484 };
7485
7486 static struct TokenInfo setup_info_shortcuts[] =
7487 {
7488   { TYPE_ENTER_MENU,    execSetupShortcuts1,    "Various Keys"          },
7489   { TYPE_ENTER_MENU,    execSetupShortcuts2,    "Player Focus"          },
7490   { TYPE_ENTER_MENU,    execSetupShortcuts3,    "Tape Buttons"          },
7491   { TYPE_ENTER_MENU,    execSetupShortcuts4,    "Sound & Music"         },
7492   { TYPE_ENTER_MENU,    execSetupShortcuts5,    "TAS Snap Keys"         },
7493   { TYPE_EMPTY,         NULL,                   ""                      },
7494   { TYPE_LEAVE_MENU,    execSetupMain,          "Back"                  },
7495
7496   { 0,                  NULL,                   NULL                    }
7497 };
7498
7499 static struct TokenInfo setup_info_shortcuts_1[] =
7500 {
7501   { TYPE_KEYTEXT,       NULL,           "Quick Save Game to Tape:",     },
7502   { TYPE_KEY,           &setup.shortcut.save_game, ""                   },
7503   { TYPE_KEYTEXT,       NULL,           "Quick Load Game from Tape:",   },
7504   { TYPE_KEY,           &setup.shortcut.load_game, ""                   },
7505   { TYPE_KEYTEXT,       NULL,           "Restart Game:",                },
7506   { TYPE_KEY,           &setup.shortcut.restart_game, ""                },
7507   { TYPE_KEYTEXT,       NULL,           "Replay & Pause Before End:",   },
7508   { TYPE_KEY,           &setup.shortcut.pause_before_end, ""            },
7509   { TYPE_KEYTEXT,       NULL,           "Start Game & Toggle Pause:",   },
7510   { TYPE_KEY,           &setup.shortcut.toggle_pause, ""                },
7511   { TYPE_EMPTY,         NULL,                   ""                      },
7512   { TYPE_YES_NO,        &setup.ask_on_escape,   "Ask on 'Esc' Key:"     },
7513   { TYPE_YES_NO, &setup.ask_on_escape_editor,   "Ask on 'Esc' Key (Editor):" },
7514   { TYPE_EMPTY,         NULL,                   ""                      },
7515   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
7516
7517   { 0,                  NULL,                   NULL                    }
7518 };
7519
7520 static struct TokenInfo setup_info_shortcuts_2[] =
7521 {
7522   { TYPE_KEYTEXT,       NULL,           "Set Focus to Player 1:",       },
7523   { TYPE_KEY,           &setup.shortcut.focus_player[0], ""             },
7524   { TYPE_KEYTEXT,       NULL,           "Set Focus to Player 2:",       },
7525   { TYPE_KEY,           &setup.shortcut.focus_player[1], ""             },
7526   { TYPE_KEYTEXT,       NULL,           "Set Focus to Player 3:",       },
7527   { TYPE_KEY,           &setup.shortcut.focus_player[2], ""             },
7528   { TYPE_KEYTEXT,       NULL,           "Set Focus to Player 4:",       },
7529   { TYPE_KEY,           &setup.shortcut.focus_player[3], ""             },
7530   { TYPE_KEYTEXT,       NULL,           "Set Focus to All Players:",    },
7531   { TYPE_KEY,           &setup.shortcut.focus_player_all, ""            },
7532   { TYPE_EMPTY,         NULL,                   ""                      },
7533   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
7534
7535   { 0,                  NULL,                   NULL                    }
7536 };
7537
7538 static struct TokenInfo setup_info_shortcuts_3[] =
7539 {
7540   { TYPE_KEYTEXT,       NULL,                   "Eject Tape:",          },
7541   { TYPE_KEY,           &setup.shortcut.tape_eject, ""                  },
7542   { TYPE_KEYTEXT,       NULL,                   "Warp / Single Step:",  },
7543   { TYPE_KEY,           &setup.shortcut.tape_extra, ""                  },
7544   { TYPE_KEYTEXT,       NULL,                   "Stop Tape:",           },
7545   { TYPE_KEY,           &setup.shortcut.tape_stop, ""                   },
7546   { TYPE_KEYTEXT,       NULL,                   "Pause / Unpause Tape:",},
7547   { TYPE_KEY,           &setup.shortcut.tape_pause, ""                  },
7548   { TYPE_KEYTEXT,       NULL,                   "Record Tape:",         },
7549   { TYPE_KEY,           &setup.shortcut.tape_record, ""                 },
7550   { TYPE_KEYTEXT,       NULL,                   "Play Tape:",           },
7551   { TYPE_KEY,           &setup.shortcut.tape_play, ""                   },
7552   { TYPE_EMPTY,         NULL,                   ""                      },
7553   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
7554
7555   { 0,                  NULL,                   NULL                    }
7556 };
7557
7558 static struct TokenInfo setup_info_shortcuts_4[] =
7559 {
7560   { TYPE_KEYTEXT,       NULL,           "Toggle Sound Effects (Normal):", },
7561   { TYPE_KEY,           &setup.shortcut.sound_simple, ""                },
7562   { TYPE_KEYTEXT,       NULL,           "Toggle Sound Effects (Looping):", },
7563   { TYPE_KEY,           &setup.shortcut.sound_loops, ""                 },
7564   { TYPE_KEYTEXT,       NULL,           "Toggle Music:",                },
7565   { TYPE_KEY,           &setup.shortcut.sound_music, ""                 },
7566   { TYPE_EMPTY,         NULL,                   ""                      },
7567   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
7568
7569   { 0,                  NULL,                   NULL                    }
7570 };
7571
7572 static struct TokenInfo setup_info_shortcuts_5[] =
7573 {
7574   { TYPE_KEYTEXT,       NULL,                   "Snap Left:",           },
7575   { TYPE_KEY,           &setup.shortcut.snap_left, ""                   },
7576   { TYPE_KEYTEXT,       NULL,                   "Snap Right:",          },
7577   { TYPE_KEY,           &setup.shortcut.snap_right, ""                  },
7578   { TYPE_KEYTEXT,       NULL,                   "Snap Up:",             },
7579   { TYPE_KEY,           &setup.shortcut.snap_up, ""                     },
7580   { TYPE_KEYTEXT,       NULL,                   "Snap Down:",           },
7581   { TYPE_KEY,           &setup.shortcut.snap_down, ""                   },
7582   { TYPE_EMPTY,         NULL,                   ""                      },
7583   { TYPE_LEAVE_MENU,    execSetupShortcuts,     "Back"                  },
7584
7585   { 0,                  NULL,                   NULL                    }
7586 };
7587
7588 static Key getSetupKey(void)
7589 {
7590   Key key = KSYM_UNDEFINED;
7591   boolean got_key_event = FALSE;
7592
7593   while (!got_key_event)
7594   {
7595     Event event;
7596
7597     if (NextValidEvent(&event))
7598     {
7599       switch (event.type)
7600       {
7601         case EVENT_KEYPRESS:
7602           {
7603             key = GetEventKey((KeyEvent *)&event, TRUE);
7604
7605             // press 'Escape' or 'Enter' to keep the existing key binding
7606             if (key == KSYM_Escape || key == KSYM_Return)
7607               key = KSYM_UNDEFINED;     // keep old value
7608
7609             got_key_event = TRUE;
7610           }
7611           break;
7612
7613         case EVENT_KEYRELEASE:
7614           key_joystick_mapping = 0;
7615           break;
7616
7617         default:
7618           HandleOtherEvents(&event);
7619           break;
7620       }
7621     }
7622
7623     BackToFront();
7624   }
7625
7626   return key;
7627 }
7628
7629 static int getSetupValueFont(int type, void *value)
7630 {
7631   if (type & TYPE_GHOSTED)
7632     return FONT_OPTION_OFF;
7633   else if (type & TYPE_KEY)
7634     return (type & TYPE_QUERY ? FONT_INPUT_1_ACTIVE : FONT_VALUE_1);
7635   else if (type & TYPE_STRING)
7636     return FONT_VALUE_2;
7637   else if (type & TYPE_ECS_AGA)
7638     return FONT_VALUE_1;
7639   else if (type & TYPE_BOOLEAN_STYLE)
7640     return (*(boolean *)value ? FONT_OPTION_ON : FONT_OPTION_OFF);
7641   else if (type & TYPE_YES_NO_AUTO)
7642     return (*(int *)value == AUTO  ? FONT_OPTION_ON :
7643             *(int *)value == FALSE ? FONT_OPTION_OFF : FONT_OPTION_ON);
7644   else if (type & TYPE_PLAYER)
7645     return FONT_VALUE_1;
7646   else
7647     return FONT_VALUE_1;
7648 }
7649
7650 static int getSetupValueFontNarrow(int type, int font_nr)
7651 {
7652   return (font_nr == FONT_VALUE_1    ? FONT_VALUE_NARROW :
7653           font_nr == FONT_OPTION_ON  ? FONT_OPTION_ON_NARROW :
7654           font_nr == FONT_OPTION_OFF ? FONT_OPTION_OFF_NARROW :
7655           font_nr);
7656 }
7657
7658 static void drawSetupValue(int screen_pos, int setup_info_pos_raw)
7659 {
7660   int si_pos = (setup_info_pos_raw < 0 ? screen_pos : setup_info_pos_raw);
7661   struct TokenInfo *si = &setup_info[si_pos];
7662   boolean font_draw_xoffset_modified = FALSE;
7663   boolean scrollbar_needed = (num_setup_info < max_setup_info);
7664   int font_draw_xoffset_old = -1;
7665   int xoffset = (scrollbar_needed ? -1 : 0);
7666   int menu_screen_value_xpos = MENU_SCREEN_VALUE_XPOS + xoffset;
7667   int menu_screen_max_xpos = MENU_SCREEN_MAX_XPOS + xoffset;
7668   int xpos = menu_screen_value_xpos;
7669   int ypos = MENU_SCREEN_START_YPOS + screen_pos;
7670   int startx = mSX + xpos * 32;
7671   int starty = mSY + ypos * 32;
7672   int type = si->type;
7673   void *value = si->value;
7674   char *value_string = getSetupValue(type, value);
7675   int font_nr_default = getSetupValueFont(type, value);
7676   int font_width_default = getFontWidth(font_nr_default);
7677   int font_nr = font_nr_default;
7678   int i;
7679
7680   if (value_string == NULL)
7681     return;
7682
7683   if (type & TYPE_KEY)
7684   {
7685     xpos = MENU_SCREEN_START_XPOS;
7686
7687     if (type & TYPE_QUERY)
7688       value_string = "<press key>";
7689   }
7690   else if (type & TYPE_STRING)
7691   {
7692     int max_value_len = (SXSIZE - 2 * TILEX) / font_width_default;
7693
7694     xpos = MENU_SCREEN_START_XPOS;
7695
7696     if (strlen(value_string) > max_value_len)
7697       value_string[max_value_len] = '\0';
7698   }
7699   else if (type & TYPE_YES_NO_AUTO)
7700   {
7701     xpos = menu_screen_value_xpos - 1;
7702   }
7703   else if (type & TYPE_PLAYER)
7704   {
7705     int displayed_player_nr = *(int *)value + 1;
7706
7707     value_string = getSetupValue(TYPE_INTEGER, (void *)&displayed_player_nr);
7708   }
7709
7710   startx = mSX + xpos * 32;
7711   starty = mSY + ypos * 32;
7712
7713   // special check if right-side setup values moved left due to scrollbar
7714   if (scrollbar_needed && xpos > MENU_SCREEN_START_XPOS)
7715   {
7716     int max_menu_text_length = 26;      // maximum text length for classic menu
7717     int font_xoffset = getFontDrawOffsetX(font_nr);
7718     int text_startx = mSX + MENU_SCREEN_START_XPOS * 32;
7719     int text_font_nr = getMenuTextFont(FONT_MENU_2);
7720     int text_font_xoffset = getFontDrawOffsetX(text_font_nr);
7721     int text_width = max_menu_text_length * getFontWidth(text_font_nr);
7722
7723     if (startx + font_xoffset < text_startx + text_width + text_font_xoffset)
7724     {
7725       // when using narrow font, left-shifting text "auto" not needed
7726       if (type & TYPE_YES_NO_AUTO)
7727         xpos += 1;
7728
7729       xpos += 1;
7730       startx = mSX + xpos * 32;
7731
7732       font_nr = getSetupValueFontNarrow(type, font_nr);
7733     }
7734   }
7735
7736   // downward compatibility correction for Juergen Bonhagen's menu settings
7737   if (setup_mode != SETUP_MODE_INPUT)
7738   {
7739     int max_menu_text_length_big = (menu_screen_value_xpos -
7740                                     MENU_SCREEN_START_XPOS);
7741     int max_menu_text_length_medium = max_menu_text_length_big * 2;
7742     int check_font_nr = FONT_OPTION_ON; // known font that needs correction
7743     int font1_xoffset = getFontDrawOffsetX(font_nr);
7744     int font2_xoffset = getFontDrawOffsetX(check_font_nr);
7745     int text_startx = mSX + MENU_SCREEN_START_XPOS * 32;
7746     int text_font_nr = getMenuTextFont(FONT_MENU_2);
7747     int text_font_xoffset = getFontDrawOffsetX(text_font_nr);
7748     int text_width = max_menu_text_length_medium * getFontWidth(text_font_nr);
7749     boolean correct_font_draw_xoffset = FALSE;
7750
7751     if (xpos == MENU_SCREEN_START_XPOS &&
7752         startx + font1_xoffset < text_startx + text_font_xoffset)
7753       correct_font_draw_xoffset = TRUE;
7754
7755     if (xpos == menu_screen_value_xpos &&
7756         startx + font2_xoffset < text_startx + text_width + text_font_xoffset)
7757       correct_font_draw_xoffset = TRUE;
7758
7759     // check if setup value would overlap with setup text when printed
7760     // (this can happen for extreme/wrong values for font draw offset)
7761     if (correct_font_draw_xoffset)
7762     {
7763       font_draw_xoffset_old = getFontDrawOffsetX(font_nr);
7764       font_draw_xoffset_modified = TRUE;
7765
7766       if (type & TYPE_KEY)
7767         getFontBitmapInfo(font_nr)->draw_xoffset += 2 * getFontWidth(font_nr);
7768       else if (!(type & TYPE_STRING))
7769         getFontBitmapInfo(font_nr)->draw_xoffset = text_font_xoffset + 20 -
7770           max_menu_text_length_medium * (16 - getFontWidth(text_font_nr));
7771     }
7772   }
7773
7774   for (i = 0; i <= menu_screen_max_xpos - xpos; i++)
7775     DrawText(startx + i * font_width_default, starty, " ", font_nr_default);
7776
7777   DrawText(startx, starty, value_string, font_nr);
7778
7779   if (type & TYPE_PLAYER)
7780   {
7781     struct FontBitmapInfo *font = getFontBitmapInfo(font_nr);
7782     int player_nr = *(int *)value;
7783     int xoff = font->draw_xoffset + getFontWidth(font_nr);
7784     int yoff = font->draw_yoffset + (getFontHeight(font_nr) - TILEY) / 2;
7785     int startx2 = startx + xoff;
7786     int starty2 = starty + yoff;
7787
7788     if (DrawingOnBackground(startx2, starty2))
7789       ClearRectangleOnBackground(drawto, startx2, starty2, TILEX, TILEY);
7790
7791     DrawFixedGraphicThruMaskExt(drawto, startx2, starty2,
7792                                 PLAYER_NR_GFX(IMG_PLAYER_1, player_nr), 0);
7793   }
7794
7795   if (font_draw_xoffset_modified)
7796     getFontBitmapInfo(font_nr)->draw_xoffset = font_draw_xoffset_old;
7797 }
7798
7799 static void changeSetupValue(int screen_pos, int setup_info_pos_raw, int dx)
7800 {
7801   int si_pos = (setup_info_pos_raw < 0 ? screen_pos : setup_info_pos_raw);
7802   struct TokenInfo *si = &setup_info[si_pos];
7803
7804   if (si->type & TYPE_BOOLEAN_STYLE)
7805   {
7806     *(boolean *)si->value ^= TRUE;
7807   }
7808   else if (si->type & TYPE_YES_NO_AUTO)
7809   {
7810     *(int *)si->value =
7811       (dx == -1 ?
7812        (*(int *)si->value == AUTO ? TRUE :
7813         *(int *)si->value == TRUE ? FALSE : AUTO) :
7814        (*(int *)si->value == TRUE ? AUTO :
7815         *(int *)si->value == AUTO ? FALSE : TRUE));
7816   }
7817   else if (si->type & TYPE_KEY)
7818   {
7819     Key key;
7820
7821     si->type |= TYPE_QUERY;
7822     drawSetupValue(screen_pos, setup_info_pos_raw);
7823     si->type &= ~TYPE_QUERY;
7824
7825     key = getSetupKey();
7826     if (key != KSYM_UNDEFINED)
7827       *(Key *)si->value = key;
7828   }
7829   else if (si->type & TYPE_PLAYER)
7830   {
7831     int player_nr = *(int *)si->value;
7832
7833     if (dx)
7834       player_nr += dx;
7835     else
7836       player_nr = Request("Choose player", REQ_PLAYER) - 1;
7837
7838     *(int *)si->value = MIN(MAX(0, player_nr), MAX_PLAYERS - 1);
7839   }
7840
7841   drawSetupValue(screen_pos, setup_info_pos_raw);
7842
7843   // fullscreen state may have changed at this point
7844   if (si->value == &setup.fullscreen)
7845     ToggleFullscreenIfNeeded();
7846
7847   // network mode may have changed at this point
7848   if (si->value == &setup.network_mode)
7849     ToggleNetworkModeIfNeeded();
7850
7851   // API server mode may have changed at this point
7852   if (si->value == &setup.use_api_server)
7853     ToggleUseApiServerIfNeeded();
7854
7855   // game speed list may have changed at this point
7856   if (si->value == &setup.game_speed_extended)
7857     ToggleGameSpeedsListIfNeeded();
7858 }
7859
7860 static struct TokenInfo *getSetupInfoFinal(struct TokenInfo *setup_info_orig)
7861 {
7862   static struct TokenInfo *setup_info_final = NULL;
7863   int list_size = 0;
7864   int list_pos = 0;
7865   int i;
7866
7867   // determine maximum list size of target list
7868   while (setup_info_orig[list_size++].type != 0);
7869
7870   // free, allocate and clear memory for target list
7871   checked_free(setup_info_final);
7872   setup_info_final = checked_calloc(list_size * sizeof(struct TokenInfo));
7873
7874   // copy setup info list without setup entries marked as hidden
7875   for (i = 0; setup_info_orig[i].type != 0; i++)
7876   {
7877     // skip setup entries configured to be hidden
7878     if (hideSetupEntry(setup_info_orig[i].value))
7879       continue;
7880
7881     // skip skippable setup entries if screen is lower than usual
7882     if (SCR_FIELDY < SCR_FIELDY_DEFAULT &&
7883         setup_info_orig[i].type == TYPE_SKIPPABLE)
7884       continue;
7885
7886     setup_info_final[list_pos++] = setup_info_orig[i];
7887   }
7888
7889   return setup_info_final;
7890 }
7891
7892 static void DrawSetupScreen_Generic(void)
7893 {
7894   int fade_mask = REDRAW_FIELD;
7895   boolean redraw_all = FALSE;
7896   char *title_string = NULL;
7897   int i;
7898
7899   if (CheckFadeAll())
7900     fade_mask = REDRAW_ALL;
7901
7902   UnmapAllGadgets();
7903   FadeMenuSoundsAndMusic();
7904
7905   FreeScreenGadgets();
7906   CreateScreenGadgets();
7907
7908   if (redraw_mask & REDRAW_ALL)
7909     redraw_all = TRUE;
7910
7911   FadeOut(fade_mask);
7912
7913   // needed if different viewport properties defined for setup screen
7914   ChangeViewportPropertiesIfNeeded();
7915
7916   SetMainBackgroundImage(IMG_BACKGROUND_SETUP);
7917
7918   ClearField();
7919
7920   OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
7921
7922   if (setup_mode == SETUP_MODE_MAIN)
7923   {
7924     setup_info = setup_info_main;
7925     title_string = STR_SETUP_MAIN;
7926   }
7927   else if (setup_mode == SETUP_MODE_GAME)
7928   {
7929     setup_info = setup_info_game;
7930     title_string = STR_SETUP_GAME;
7931   }
7932   else if (setup_mode == SETUP_MODE_ENGINES)
7933   {
7934     setup_info = setup_info_engines;
7935     title_string = STR_SETUP_ENGINES;
7936   }
7937   else if (setup_mode == SETUP_MODE_EDITOR)
7938   {
7939     setup_info = setup_info_editor;
7940     title_string = STR_SETUP_EDITOR;
7941   }
7942   else if (setup_mode == SETUP_MODE_GRAPHICS)
7943   {
7944     setup_info = setup_info_graphics;
7945     title_string = STR_SETUP_GRAPHICS;
7946   }
7947   else if (setup_mode == SETUP_MODE_SOUND)
7948   {
7949     setup_info = setup_info_sound;
7950     title_string = STR_SETUP_SOUND;
7951   }
7952   else if (setup_mode == SETUP_MODE_ARTWORK)
7953   {
7954     setup_info = setup_info_artwork;
7955     title_string = STR_SETUP_ARTWORK;
7956   }
7957   else if (setup_mode == SETUP_MODE_TOUCH)
7958   {
7959     setup_info = setup_info_touch;
7960     title_string = STR_SETUP_TOUCH;
7961
7962     if (strEqual(setup.touch.control_type, TOUCH_CONTROL_VIRTUAL_BUTTONS))
7963       setup_info = setup_info_touch_virtual_buttons[GRID_ACTIVE_NR()];
7964     else if (strEqual(setup.touch.control_type, TOUCH_CONTROL_WIPE_GESTURES))
7965       setup_info = setup_info_touch_wipe_gestures;
7966   }
7967   else if (setup_mode == SETUP_MODE_SHORTCUTS)
7968   {
7969     setup_info = setup_info_shortcuts;
7970     title_string = STR_SETUP_SHORTCUTS;
7971   }
7972   else if (setup_mode == SETUP_MODE_SHORTCUTS_1)
7973   {
7974     setup_info = setup_info_shortcuts_1;
7975     title_string = STR_SETUP_SHORTCUTS;
7976   }
7977   else if (setup_mode == SETUP_MODE_SHORTCUTS_2)
7978   {
7979     setup_info = setup_info_shortcuts_2;
7980     title_string = STR_SETUP_SHORTCUTS;
7981   }
7982   else if (setup_mode == SETUP_MODE_SHORTCUTS_3)
7983   {
7984     setup_info = setup_info_shortcuts_3;
7985     title_string = STR_SETUP_SHORTCUTS;
7986   }
7987   else if (setup_mode == SETUP_MODE_SHORTCUTS_4)
7988   {
7989     setup_info = setup_info_shortcuts_4;
7990     title_string = STR_SETUP_SHORTCUTS;
7991   }
7992   else if (setup_mode == SETUP_MODE_SHORTCUTS_5)
7993   {
7994     setup_info = setup_info_shortcuts_5;
7995     title_string = STR_SETUP_SHORTCUTS;
7996   }
7997
7998   // use modified setup info without setup entries marked as hidden
7999   setup_info = getSetupInfoFinal(setup_info);
8000
8001   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, title_string);
8002
8003   // determine maximal number of setup entries that can be displayed on screen
8004   num_setup_info = 0;
8005   for (i = 0; setup_info[i].type != 0 && i < NUM_MENU_ENTRIES_ON_SCREEN; i++)
8006     num_setup_info++;
8007
8008   // determine maximal number of setup entries available for this setup screen
8009   max_setup_info = 0;
8010   for (i = 0; setup_info[i].type != 0; i++)
8011     max_setup_info++;
8012
8013   HandleSetupScreen_Generic(0, 0, 0, 0, MB_MENU_INITIALIZE);
8014
8015   MapScreenGadgets(max_setup_info);
8016
8017   if (redraw_all)
8018     redraw_mask = fade_mask = REDRAW_ALL;
8019
8020   DrawMaskedBorder(fade_mask);
8021
8022   FadeIn(fade_mask);
8023 }
8024
8025 void HandleSetupScreen_Generic(int mx, int my, int dx, int dy, int button)
8026 {
8027   menu_info = setup_info;
8028
8029   HandleMenuScreen(mx, my, dx, dy, button,
8030                    setup_mode, num_setup_info, max_setup_info);
8031 }
8032
8033 static void DrawSetupScreen_Input(void)
8034 {
8035   int i;
8036
8037   FadeOut(REDRAW_FIELD);
8038
8039   ClearField();
8040
8041   setup_info = getSetupInfoFinal(setup_info_input);
8042
8043   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, STR_SETUP_INPUT);
8044
8045   for (i = 0; setup_info[i].type != 0; i++)
8046   {
8047     if (setup_info[i].type & (TYPE_ENTER_MENU|TYPE_ENTER_LIST))
8048       initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
8049     else if (setup_info[i].type & (TYPE_LEAVE_MENU|TYPE_LEAVE_LIST))
8050       initCursor(i, IMG_MENU_BUTTON_LEAVE_MENU);
8051     else if (setup_info[i].type & ~TYPE_SKIP_ENTRY)
8052       initCursor(i, IMG_MENU_BUTTON);
8053
8054     DrawCursorAndText_Setup(i, -1, FALSE);
8055   }
8056
8057   // create gadgets for setup input menu screen
8058   FreeScreenGadgets();
8059   CreateScreenGadgets();
8060
8061   // map gadgets for setup input menu screen
8062   MapScreenMenuGadgets(SCREEN_MASK_INPUT);
8063
8064   HandleSetupScreen_Input(0, 0, 0, 0, MB_MENU_INITIALIZE);
8065
8066   FadeIn(REDRAW_FIELD);
8067 }
8068
8069 static void setJoystickDeviceToNr(char *device_name, int device_nr)
8070 {
8071   if (device_name == NULL)
8072     return;
8073
8074   if (device_nr < 0 || device_nr >= MAX_PLAYERS)
8075     device_nr = 0;
8076
8077   if (strlen(device_name) > 1)
8078   {
8079     char c1 = device_name[strlen(device_name) - 1];
8080     char c2 = device_name[strlen(device_name) - 2];
8081
8082     if (c1 >= '0' && c1 <= '9' && !(c2 >= '0' && c2 <= '9'))
8083       device_name[strlen(device_name) - 1] = '0' + (char)(device_nr % 10);
8084   }
8085   else
8086     strncpy(device_name, getDeviceNameFromJoystickNr(device_nr),
8087             strlen(device_name));
8088 }
8089
8090 static void drawPlayerSetupInputInfo(int player_nr, boolean active)
8091 {
8092   int i;
8093   static struct SetupKeyboardInfo custom_key;
8094   static struct
8095   {
8096     Key *key;
8097     char *text;
8098   } custom[] =
8099   {
8100     { &custom_key.left,  "Axis/Pad Left"  },
8101     { &custom_key.right, "Axis/Pad Right" },
8102     { &custom_key.up,    "Axis/Pad Up"    },
8103     { &custom_key.down,  "Axis/Pad Down"  },
8104     { &custom_key.snap,  "Button 1/A/X"   },
8105     { &custom_key.drop,  "Button 2/B/Y"   }
8106   };
8107   static char *joystick_name[MAX_PLAYERS] =
8108   {
8109     "Joystick1",
8110     "Joystick2",
8111     "Joystick3",
8112     "Joystick4"
8113   };
8114   int font_nr_menu = (active ? FONT_MENU_1_ACTIVE : FONT_MENU_1);
8115   int font_nr_info = FONT_MENU_1;
8116   int font_nr_name = FONT_VALUE_OLD;
8117   int font_nr_on   = FONT_VALUE_1;
8118   int font_nr_off  = FONT_VALUE_OLD;
8119   int pos = 4;
8120
8121   if (SCR_FIELDX < SCR_FIELDX_DEFAULT)
8122   {
8123     font_nr_info = FONT_MENU_2;
8124     font_nr_on   = FONT_VALUE_NARROW;
8125     font_nr_off  = FONT_VALUE_OLD_NARROW;
8126   }
8127
8128   custom_key = setup.input[player_nr].key;
8129
8130   DrawText(mSX + 11 * 32, mSY + 2 * 32, int2str(player_nr + 1, 1),
8131            FONT_INPUT_1_ACTIVE);
8132
8133   ClearRectangleOnBackground(drawto, mSX + 8 * TILEX, mSY + 2 * TILEY,
8134                              TILEX, TILEY);
8135   DrawFixedGraphicThruMaskExt(drawto, mSX + 8 * TILEX, mSY + 2 * TILEY,
8136                               PLAYER_NR_GFX(IMG_PLAYER_1, player_nr), 0);
8137
8138   if (setup.input[player_nr].use_joystick)
8139   {
8140     char *device_name = setup.input[player_nr].joy.device_name;
8141     int joystick_nr = getJoystickNrFromDeviceName(device_name);
8142     boolean joystick_active = CheckJoystickOpened(joystick_nr);
8143     char *text = joystick_name[joystick_nr];
8144     int font_nr = (joystick_active ? font_nr_on : font_nr_off);
8145
8146     DrawText(mSX + 8 * 32, mSY + 3 * 32, text, font_nr);
8147     DrawText(mSX + 32, mSY + 4 * 32, "Configure", font_nr_menu);
8148   }
8149   else
8150   {
8151     DrawText(mSX + 8 * 32, mSY + 3 * 32, "Keyboard ", font_nr_on);
8152     DrawText(mSX + 1 * 32, mSY + 4 * 32, "Customize", font_nr_menu);
8153   }
8154
8155   if (SCR_FIELDY >= SCR_FIELDY_DEFAULT)
8156     DrawText(mSX + 32, mSY + 5 * 32, "Actual Settings:", font_nr_info);
8157   else
8158     pos = 3;
8159
8160   drawCursorXY(1, pos + 0, IMG_MENU_BUTTON_LEFT);
8161   drawCursorXY(1, pos + 1, IMG_MENU_BUTTON_RIGHT);
8162   drawCursorXY(1, pos + 2, IMG_MENU_BUTTON_UP);
8163   drawCursorXY(1, pos + 3, IMG_MENU_BUTTON_DOWN);
8164
8165   DrawText(mSX + 2 * 32, mSY + (pos + 2) * 32, ":", font_nr_name);
8166   DrawText(mSX + 2 * 32, mSY + (pos + 3) * 32, ":", font_nr_name);
8167   DrawText(mSX + 2 * 32, mSY + (pos + 4) * 32, ":", font_nr_name);
8168   DrawText(mSX + 2 * 32, mSY + (pos + 5) * 32, ":", font_nr_name);
8169   DrawText(mSX + 1 * 32, mSY + (pos + 6) * 32, "Snap Field:", font_nr_name);
8170   DrawText(mSX + 1 * 32, mSY + (pos + 8) * 32, "Drop Element:", font_nr_name);
8171
8172   for (i = 0; i < 6; i++)
8173   {
8174     int ypos = (pos + 2) + i + (i > 3 ? i - 3 : 0);
8175
8176     DrawText(mSX + 3 * 32, mSY + ypos * 32,
8177              "              ", font_nr_on);
8178     DrawText(mSX + 3 * 32, mSY + ypos * 32,
8179              (setup.input[player_nr].use_joystick ?
8180               custom[i].text :
8181               getKeyNameFromKey(*custom[i].key)), font_nr_on);
8182   }
8183 }
8184
8185 static int input_player_nr = 0;
8186
8187 static void HandleSetupScreen_Input_Player(int step, int direction)
8188 {
8189   int old_player_nr = input_player_nr;
8190   int new_player_nr;
8191
8192   new_player_nr = old_player_nr + step * direction;
8193   if (new_player_nr < 0)
8194     new_player_nr = 0;
8195   if (new_player_nr > MAX_PLAYERS - 1)
8196     new_player_nr = MAX_PLAYERS - 1;
8197
8198   if (new_player_nr != old_player_nr)
8199   {
8200     input_player_nr = new_player_nr;
8201
8202     drawPlayerSetupInputInfo(input_player_nr, FALSE);
8203   }
8204 }
8205
8206 void HandleSetupScreen_Input(int mx, int my, int dx, int dy, int button)
8207 {
8208   static int choice = 0;
8209   int x = 0;
8210   int y = choice;
8211   int pos_start  = SETUPINPUT_SCREEN_POS_START;
8212   int pos_empty1 = SETUPINPUT_SCREEN_POS_EMPTY1;
8213   int pos_empty2 = SETUPINPUT_SCREEN_POS_EMPTY2;
8214   int pos_end    = SETUPINPUT_SCREEN_POS_END;
8215
8216   if (SCR_FIELDY < SCR_FIELDY_DEFAULT)
8217   {
8218     int i;
8219
8220     for (i = 0; setup_info_input[i].type != 0; i++)
8221     {
8222       // adjust menu structure according to skipped setup entries
8223       if (setup_info_input[i].type == TYPE_SKIPPABLE)
8224       {
8225         pos_empty2--;
8226         pos_end--;
8227       }
8228     }
8229   }
8230
8231   if (button == MB_MENU_INITIALIZE)
8232   {
8233     // input setup menu may have changed size due to graphics configuration
8234     if (choice >= pos_empty1)
8235       choice = pos_end;
8236
8237     drawPlayerSetupInputInfo(input_player_nr, (choice == 2));
8238
8239     DrawCursorAndText_Setup(choice, -1, TRUE);
8240
8241     return;
8242   }
8243   else if (button == MB_MENU_LEAVE)
8244   {
8245     setup_mode = SETUP_MODE_MAIN;
8246     DrawSetupScreen();
8247     InitJoysticks();
8248
8249     return;
8250   }
8251
8252   if (mx || my)         // mouse input
8253   {
8254     x = (mx - mSX) / 32;
8255     y = (my - mSY) / 32 - MENU_SCREEN_START_YPOS;
8256   }
8257   else if (dx || dy)    // keyboard input
8258   {
8259     if (dx && choice == 0)
8260       x = (dx < 0 ? 10 : 12);
8261     else if ((dx && choice == 1) ||
8262              (dx == -1 && choice == pos_end))
8263       button = MB_MENU_CHOICE;
8264     else if (dy)
8265       y = choice + dy;
8266
8267     if (y >= pos_empty1 && y <= pos_empty2)
8268       y = (dy > 0 ? pos_empty2 + 1 : pos_empty1 - 1);
8269   }
8270
8271   if (y == 0 && dx != 0 && button)
8272   {
8273     HandleSetupScreen_Input_Player(1, dx < 0 ? -1 : +1);
8274   }
8275   else if (IN_VIS_FIELD(x, y) &&        // (does not use "IN_VIS_MENU()" yet)
8276            y >= pos_start && y <= pos_end &&
8277            !(y >= pos_empty1 && y <= pos_empty2))
8278   {
8279     if (button)
8280     {
8281       if (y != choice)
8282       {
8283         DrawCursorAndText_Setup(choice, -1, FALSE);
8284         DrawCursorAndText_Setup(y, -1, TRUE);
8285
8286         drawPlayerSetupInputInfo(input_player_nr, (y == 2));
8287
8288         choice = y;
8289       }
8290     }
8291     else
8292     {
8293       if (y == 1)
8294       {
8295         char *device_name = setup.input[input_player_nr].joy.device_name;
8296
8297         if (!setup.input[input_player_nr].use_joystick)
8298         {
8299           int new_device_nr = (dx >= 0 ? 0 : MAX_PLAYERS - 1);
8300
8301           setJoystickDeviceToNr(device_name, new_device_nr);
8302           setup.input[input_player_nr].use_joystick = TRUE;
8303         }
8304         else
8305         {
8306           int device_nr = getJoystickNrFromDeviceName(device_name);
8307           int new_device_nr = device_nr + (dx >= 0 ? +1 : -1);
8308
8309           if (new_device_nr < 0 || new_device_nr >= MAX_PLAYERS)
8310             setup.input[input_player_nr].use_joystick = FALSE;
8311           else
8312             setJoystickDeviceToNr(device_name, new_device_nr);
8313         }
8314
8315         drawPlayerSetupInputInfo(input_player_nr, FALSE);
8316       }
8317       else if (y == 2)
8318       {
8319         if (setup.input[input_player_nr].use_joystick)
8320           ConfigureJoystick(input_player_nr);
8321         else
8322           CustomizeKeyboard(input_player_nr);
8323       }
8324       else if (y == pos_end)
8325       {
8326         InitJoysticks();
8327
8328         FadeSetLeaveMenu();
8329
8330         setup_mode = SETUP_MODE_MAIN;
8331         DrawSetupScreen();
8332       }
8333     }
8334   }
8335 }
8336
8337 static boolean CustomizeKeyboardMain(int player_nr)
8338 {
8339   int i;
8340   int step_nr;
8341   boolean finished = FALSE;
8342   static struct SetupKeyboardInfo custom_key;
8343   static struct
8344   {
8345     Key *key;
8346     char *text;
8347   } customize_step[] =
8348   {
8349     { &custom_key.left,  "Move Left"    },
8350     { &custom_key.right, "Move Right"   },
8351     { &custom_key.up,    "Move Up"      },
8352     { &custom_key.down,  "Move Down"    },
8353     { &custom_key.snap,  "Snap Field"   },
8354     { &custom_key.drop,  "Drop Element" }
8355   };
8356   int font_nr_old = FONT_VALUE_OLD;
8357   int font_nr_new = FONT_VALUE_1;
8358   boolean success = FALSE;
8359
8360   if (SCR_FIELDX < SCR_FIELDX_DEFAULT)
8361   {
8362     font_nr_old = FONT_VALUE_OLD_NARROW;
8363     font_nr_new = FONT_VALUE_NARROW;
8364   }
8365
8366   // read existing key bindings from player setup
8367   custom_key = setup.input[player_nr].key;
8368
8369   FadeSetEnterMenu();
8370   FadeOut(REDRAW_FIELD);
8371
8372   ClearField();
8373
8374   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Keyboard Input");
8375
8376   step_nr = 0;
8377   DrawText(mSX, mSY + (2 + 2 * step_nr) * 32,
8378            customize_step[step_nr].text, FONT_INPUT_1_ACTIVE);
8379   DrawText(mSX, mSY + (2 + 2 * step_nr + 1) * 32,
8380            "Key:", FONT_INPUT_1_ACTIVE);
8381   DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
8382            getKeyNameFromKey(*customize_step[step_nr].key), font_nr_old);
8383
8384   FadeIn(REDRAW_FIELD);
8385
8386   while (!finished)
8387   {
8388     Event event;
8389
8390     if (NextValidEvent(&event))
8391     {
8392       switch (event.type)
8393       {
8394         case EVENT_KEYPRESS:
8395           {
8396             Key key = GetEventKey((KeyEvent *)&event, FALSE);
8397
8398             // press 'Escape' to abort and keep the old key bindings
8399             if (key == KSYM_Escape)
8400             {
8401               FadeSkipNextFadeIn();
8402
8403               finished = TRUE;
8404
8405               break;
8406             }
8407
8408             // press 'Enter' to keep the existing key binding
8409             if (key == KSYM_Return)
8410               key = *customize_step[step_nr].key;
8411
8412             // check if key already used
8413             for (i = 0; i < step_nr; i++)
8414               if (*customize_step[i].key == key)
8415                 break;
8416             if (i < step_nr)
8417               break;
8418
8419             // got new key binding
8420             *customize_step[step_nr].key = key;
8421             DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
8422                      "             ", font_nr_new);
8423             DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
8424                      getKeyNameFromKey(key), font_nr_new);
8425             step_nr++;
8426
8427             // un-highlight last query
8428             DrawText(mSX, mSY + (2 + 2 * (step_nr - 1)) * 32,
8429                      customize_step[step_nr - 1].text, FONT_MENU_1);
8430             DrawText(mSX, mSY + (2 + 2 * (step_nr - 1) + 1) * 32,
8431                      "Key:", FONT_MENU_1);
8432
8433             // all keys configured
8434             if (step_nr == 6)
8435             {
8436               finished = TRUE;
8437               success = TRUE;
8438
8439               break;
8440             }
8441
8442             // query next key binding
8443             DrawText(mSX, mSY + (2 + 2 * step_nr) * 32,
8444                      customize_step[step_nr].text, FONT_INPUT_1_ACTIVE);
8445             DrawText(mSX, mSY + (2 + 2 * step_nr + 1) * 32,
8446                      "Key:", FONT_INPUT_1_ACTIVE);
8447             DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
8448                      getKeyNameFromKey(*customize_step[step_nr].key),
8449                      font_nr_old);
8450           }
8451           break;
8452
8453         case EVENT_KEYRELEASE:
8454           key_joystick_mapping = 0;
8455           break;
8456
8457         default:
8458           HandleOtherEvents(&event);
8459           break;
8460       }
8461     }
8462
8463     BackToFront();
8464   }
8465
8466   // write new key bindings back to player setup, if successfully finished
8467   if (success)
8468     setup.input[player_nr].key = custom_key;
8469
8470   return success;
8471 }
8472
8473 void CustomizeKeyboard(int player_nr)
8474 {
8475   boolean success = CustomizeKeyboardMain(player_nr);
8476
8477   if (success)
8478   {
8479     int font_nr = FONT_TITLE_1;
8480     int font_height = getFontHeight(font_nr);
8481     int ypos1 = SYSIZE / 2 - font_height * 2;
8482     int ypos2 = SYSIZE / 2 - font_height * 1;
8483     unsigned int wait_frame_delay = 0;
8484     unsigned int wait_frame_delay_value = 2000;
8485
8486     ResetDelayCounter(&wait_frame_delay);
8487
8488     ClearField();
8489
8490     DrawTextSCentered(ypos1, font_nr, "Keyboard");
8491     DrawTextSCentered(ypos2, font_nr, "configured!");
8492
8493     while (!DelayReached(&wait_frame_delay, wait_frame_delay_value))
8494       BackToFront();
8495
8496     ClearEventQueue();
8497   }
8498
8499   DrawSetupScreen_Input();
8500 }
8501
8502 // game controller mapping generator by Gabriel Jacobo <gabomdq@gmail.com>
8503
8504 #define MARKER_BUTTON           1
8505 #define MARKER_AXIS_X           2
8506 #define MARKER_AXIS_Y           3
8507
8508 static boolean ConfigureJoystickMapButtonsAndAxes(SDL_Joystick *joystick)
8509 {
8510   static boolean bitmaps_initialized = FALSE;
8511   boolean screen_initialized = FALSE;
8512   static Bitmap *controller, *button, *axis_x, *axis_y;
8513   char *name;
8514   boolean success = TRUE;
8515   boolean done = FALSE, next = FALSE;
8516   Event event;
8517   int alpha = 200, alpha_step = -1;
8518   int alpha_ticks = 0;
8519   char mapping[4096], temp[256];
8520   int font_name = MENU_SETUP_FONT_TITLE;
8521   int font_info = MENU_SETUP_FONT_TEXT;
8522   int spacing_name = menu.line_spacing_setup[SETUP_MODE_INPUT];
8523   int spacing_line = menu.line_spacing_setup[SETUP_MODE_INPUT];
8524   int spacing_para = menu.paragraph_spacing_setup[SETUP_MODE_INPUT];
8525   int ystep_name = getMenuTextStep(spacing_name, font_name);
8526   int ystep_line = getMenuTextStep(spacing_line, font_info);
8527   int ystep_para = getMenuTextStep(spacing_para, font_info);
8528   int i, j;
8529
8530   struct
8531   {
8532     int x, y;
8533     int marker;
8534     char *field;
8535     int axis, button, hat, hat_value;
8536     char mapping[4096];
8537   }
8538   *step, *prev_step, steps[] =
8539   {
8540     { 356, 155, MARKER_BUTTON, "a",             },
8541     { 396, 122, MARKER_BUTTON, "b",             },
8542     { 320, 125, MARKER_BUTTON, "x",             },
8543     { 358,  95, MARKER_BUTTON, "y",             },
8544     { 162, 125, MARKER_BUTTON, "back",          },
8545     { 216, 125, MARKER_BUTTON, "guide",         },
8546     { 271, 125, MARKER_BUTTON, "start",         },
8547     { 110, 200, MARKER_BUTTON, "dpleft",        },
8548     { 146, 228, MARKER_BUTTON, "dpdown",        },
8549     { 178, 200, MARKER_BUTTON, "dpright",       },
8550     { 146, 172, MARKER_BUTTON, "dpup",          },
8551     {  50,  40, MARKER_BUTTON, "leftshoulder",  },
8552     {  88, -10, MARKER_AXIS_Y, "lefttrigger",   },
8553     { 382,  40, MARKER_BUTTON, "rightshoulder", },
8554     { 346, -10, MARKER_AXIS_Y, "righttrigger",  },
8555     {  73, 141, MARKER_BUTTON, "leftstick",     },
8556     { 282, 210, MARKER_BUTTON, "rightstick",    },
8557     {  73, 141, MARKER_AXIS_X, "leftx",         },
8558     {  73, 141, MARKER_AXIS_Y, "lefty",         },
8559     { 282, 210, MARKER_AXIS_X, "rightx",        },
8560     { 282, 210, MARKER_AXIS_Y, "righty",        },
8561   };
8562
8563   unsigned int event_frame_delay = 0;
8564   unsigned int event_frame_delay_value = GAME_FRAME_DELAY;
8565
8566   ResetDelayCounter(&event_frame_delay);
8567
8568   if (!bitmaps_initialized)
8569   {
8570     controller = LoadCustomImage("joystick/controller.png");
8571     button     = LoadCustomImage("joystick/button.png");
8572     axis_x     = LoadCustomImage("joystick/axis_x.png");
8573     axis_y     = LoadCustomImage("joystick/axis_y.png");
8574
8575     bitmaps_initialized = TRUE;
8576   }
8577
8578   name = getFormattedJoystickName(SDL_JoystickName(joystick));
8579
8580 #if DEBUG_JOYSTICKS
8581   // print info about the joystick we are watching
8582   Debug("joystick", "watching joystick %d: (%s)",
8583         SDL_JoystickInstanceID(joystick), name);
8584   Debug("joystick", "joystick has %d axes, %d hats, %d balls, and %d buttons",
8585         SDL_JoystickNumAxes(joystick), SDL_JoystickNumHats(joystick),
8586         SDL_JoystickNumBalls(joystick), SDL_JoystickNumButtons(joystick));
8587 #endif
8588
8589   // initialize mapping with GUID and name
8590   SDL_JoystickGetGUIDString(SDL_JoystickGetGUID(joystick), temp, sizeof(temp));
8591
8592   snprintf(mapping, sizeof(mapping), "%s,%s,platform:%s,",
8593            temp, name, SDL_GetPlatform());
8594
8595   // loop through all steps (buttons and axes), getting joystick events
8596   for (i = 0; i < SDL_arraysize(steps) && !done;)
8597   {
8598     Bitmap *marker = button;    // initialize with reliable default value
8599
8600     step = &steps[i];
8601     strcpy(step->mapping, mapping);
8602     step->axis = -1;
8603     step->button = -1;
8604     step->hat = -1;
8605     step->hat_value = -1;
8606
8607     marker = (step->marker == MARKER_BUTTON ? button :
8608               step->marker == MARKER_AXIS_X ? axis_x :
8609               step->marker == MARKER_AXIS_Y ? axis_y : marker);
8610
8611     next = FALSE;
8612
8613     while (!done && !next)
8614     {
8615       alpha += alpha_step * (int)(SDL_GetTicks() - alpha_ticks) / 5;
8616       alpha_ticks = SDL_GetTicks();
8617
8618       if (alpha >= 255)
8619       {
8620         alpha = 255;
8621         alpha_step = -1;
8622       }
8623       else if (alpha < 128)
8624       {
8625         alpha = 127;
8626         alpha_step = 1;
8627       }
8628
8629       int controller_x = SX + (SXSIZE - controller->width) / 2;
8630       int controller_y = SY + ystep_line;
8631
8632       int marker_x = controller_x + step->x;
8633       int marker_y = controller_y + step->y;
8634
8635       int ystart1 = mSY - 2 * SY + controller_y + controller->height;
8636       int ystart2 = ystart1 + ystep_name + ystep_line;
8637
8638       ClearField();
8639
8640       DrawTextSCentered(ystart1, font_name, name);
8641
8642       DrawTextSCentered(ystart2, font_info,
8643                         "Press buttons and move axes on");
8644       ystart2 += ystep_line;
8645       DrawTextSCentered(ystart2, font_info,
8646                         "your controller when indicated.");
8647       ystart2 += ystep_line;
8648       DrawTextSCentered(ystart2, font_info,
8649                         "(Your controller may look different.)");
8650       ystart2 += ystep_para;
8651
8652 #if defined(PLATFORM_ANDROID)
8653       DrawTextSCentered(ystart2, font_info,
8654                         "To correct a mistake,");
8655       ystart2 += ystep_line;
8656       DrawTextSCentered(ystart2, font_info,
8657                         "press the 'back' button.");
8658       ystart2 += ystep_line;
8659       DrawTextSCentered(ystart2, font_info,
8660                         "To skip a button or axis,");
8661       ystart2 += ystep_line;
8662       DrawTextSCentered(ystart2, font_info,
8663                         "press the 'menu' button.");
8664 #else
8665       DrawTextSCentered(ystart2, font_info,
8666                         "To correct a mistake,");
8667       ystart2 += ystep_line;
8668       DrawTextSCentered(ystart2, font_info,
8669                         "press the 'backspace' key.");
8670       ystart2 += ystep_line;
8671       DrawTextSCentered(ystart2, font_info,
8672                         "To skip a button or axis,");
8673       ystart2 += ystep_line;
8674       DrawTextSCentered(ystart2, font_info,
8675                         "press the 'return' key.");
8676       ystart2 += ystep_line;
8677       DrawTextSCentered(ystart2, font_info,
8678                         "To exit, press the 'escape' key.");
8679 #endif
8680
8681       BlitBitmapMasked(controller, drawto, 0, 0,
8682                        controller->width, controller->height,
8683                        controller_x, controller_y);
8684
8685       SDL_SetSurfaceBlendMode(marker->surface_masked, SDL_BLENDMODE_BLEND);
8686       SDL_SetSurfaceAlphaMod(marker->surface_masked, alpha);
8687
8688       BlitBitmapMasked(marker, drawto, 0, 0,
8689                        marker->width, marker->height,
8690                        marker_x, marker_y);
8691
8692       if (!screen_initialized)
8693         FadeIn(REDRAW_FIELD);
8694       else
8695         BackToFront();
8696
8697       screen_initialized = TRUE;
8698
8699       while (NextValidEvent(&event))
8700       {
8701         switch (event.type)
8702         {
8703           case SDL_JOYAXISMOTION:
8704             if (event.jaxis.value > 20000 ||
8705                 event.jaxis.value < -20000)
8706             {
8707               for (j = 0; j < i; j++)
8708                 if (steps[j].axis == event.jaxis.axis)
8709                   break;
8710
8711               if (j == i)
8712               {
8713                 if (step->marker != MARKER_AXIS_X &&
8714                     step->marker != MARKER_AXIS_Y)
8715                   break;
8716
8717                 step->axis = event.jaxis.axis;
8718                 strcat(mapping, step->field);
8719                 snprintf(temp, sizeof(temp), ":a%u,", event.jaxis.axis);
8720                 strcat(mapping, temp);
8721                 i++;
8722                 next = TRUE;
8723               }
8724             }
8725
8726             break;
8727
8728           case SDL_JOYHATMOTION:
8729             // ignore centering; we're probably just coming back
8730             // to the center from the previous item we set
8731             if (event.jhat.value == SDL_HAT_CENTERED)
8732               break;
8733
8734             for (j = 0; j < i; j++)
8735               if (steps[j].hat == event.jhat.hat &&
8736                   steps[j].hat_value == event.jhat.value)
8737                 break;
8738
8739             if (j == i)
8740             {
8741               step->hat = event.jhat.hat;
8742               step->hat_value = event.jhat.value;
8743               strcat(mapping, step->field);
8744               snprintf(temp, sizeof(temp), ":h%u.%u,",
8745                        event.jhat.hat, event.jhat.value );
8746               strcat(mapping, temp);
8747               i++;
8748               next = TRUE;
8749             }
8750
8751             break;
8752
8753           case SDL_JOYBALLMOTION:
8754             break;
8755
8756           case SDL_JOYBUTTONUP:
8757             for (j = 0; j < i; j++)
8758               if (steps[j].button == event.jbutton.button)
8759                 break;
8760
8761             if (j == i)
8762             {
8763               step->button = event.jbutton.button;
8764               strcat(mapping, step->field);
8765               snprintf(temp, sizeof(temp), ":b%u,", event.jbutton.button);
8766               strcat(mapping, temp);
8767               i++;
8768               next = TRUE;
8769             }
8770
8771             break;
8772
8773           case SDL_FINGERDOWN:
8774           case SDL_MOUSEBUTTONDOWN:
8775             // skip this step
8776             i++;
8777             next = TRUE;
8778
8779             break;
8780
8781           case SDL_KEYDOWN:
8782             if (event.key.keysym.sym == KSYM_BackSpace ||
8783                 event.key.keysym.sym == KSYM_Back)
8784             {
8785               if (i == 0)
8786               {
8787                 // leave screen
8788                 success = FALSE;
8789                 done = TRUE;
8790
8791                 break;
8792               }
8793
8794               // undo this step
8795               prev_step = &steps[i - 1];
8796               strcpy(mapping, prev_step->mapping);
8797               i--;
8798               next = TRUE;
8799
8800               break;
8801             }
8802
8803             if (event.key.keysym.sym == KSYM_space ||
8804                 event.key.keysym.sym == KSYM_Return ||
8805                 event.key.keysym.sym == KSYM_Menu)
8806             {
8807               // skip this step
8808               i++;
8809               next = TRUE;
8810
8811               break;
8812             }
8813
8814             if (event.key.keysym.sym == KSYM_Escape)
8815             {
8816               // leave screen
8817               success = FALSE;
8818               done = TRUE;
8819             }
8820
8821             break;
8822
8823           case SDL_QUIT:
8824             program.exit_function(0);
8825             break;
8826
8827           default:
8828             break;
8829         }
8830
8831         // do not handle events for longer than standard frame delay period
8832         if (DelayReached(&event_frame_delay, event_frame_delay_value))
8833           break;
8834       }
8835     }
8836   }
8837
8838   if (success)
8839   {
8840 #if DEBUG_JOYSTICKS
8841     Debug("joystick", "New game controller mapping:\n\n%s\n\n", mapping);
8842 #endif
8843
8844     // activate mapping for this game
8845     SDL_GameControllerAddMapping(mapping);
8846
8847     // save mapping to personal mappings
8848     SaveSetup_AddGameControllerMapping(mapping);
8849   }
8850
8851   // wait until the last pending event was removed from event queue
8852   while (NextValidEvent(&event));
8853
8854   return success;
8855 }
8856
8857 static int ConfigureJoystickMain(int player_nr)
8858 {
8859   char *device_name = setup.input[player_nr].joy.device_name;
8860   int joystick_nr = getJoystickNrFromDeviceName(device_name);
8861   boolean joystick_active = CheckJoystickOpened(joystick_nr);
8862   int success = FALSE;
8863   int i;
8864
8865   if (joystick.status == JOYSTICK_NOT_AVAILABLE)
8866     return JOYSTICK_NOT_AVAILABLE;
8867
8868   if (!joystick_active || !setup.input[player_nr].use_joystick)
8869     return JOYSTICK_NOT_AVAILABLE;
8870
8871   FadeSetEnterMenu();
8872   FadeOut(REDRAW_FIELD);
8873
8874   // close all joystick devices (potentially opened as game controllers)
8875   for (i = 0; i < SDL_NumJoysticks(); i++)
8876     SDLCloseJoystick(i);
8877
8878   // open joystick device as plain joystick to configure as game controller
8879   SDL_Joystick *joystick = SDL_JoystickOpen(joystick_nr);
8880
8881   // as the joystick was successfully opened before, this should not happen
8882   if (joystick == NULL)
8883     return FALSE;
8884
8885   // create new game controller mapping (buttons and axes) for joystick device
8886   success = ConfigureJoystickMapButtonsAndAxes(joystick);
8887
8888   // close joystick (and maybe re-open as configured game controller later)
8889   SDL_JoystickClose(joystick);
8890
8891   // re-open all joystick devices (potentially as game controllers)
8892   for (i = 0; i < SDL_NumJoysticks(); i++)
8893     SDLOpenJoystick(i);
8894
8895   // clear all joystick input actions for all joystick devices
8896   SDLClearJoystickState();
8897
8898   return (success ? JOYSTICK_CONFIGURED : JOYSTICK_NOT_CONFIGURED);
8899 }
8900
8901 void ConfigureJoystick(int player_nr)
8902 {
8903   boolean state = ConfigureJoystickMain(player_nr);
8904
8905   if (state != JOYSTICK_NOT_CONFIGURED)
8906   {
8907     boolean success = (state == JOYSTICK_CONFIGURED);
8908     char message1[MAX_OUTPUT_LINESIZE + 1];
8909     char *message2 = (success ? "configured!" : "not available!");
8910     char *device_name = setup.input[player_nr].joy.device_name;
8911     int nr = getJoystickNrFromDeviceName(device_name) + 1;
8912     int font_nr = FONT_TITLE_1;
8913     int font_height = getFontHeight(font_nr);
8914     int ypos1 = SYSIZE / 2 - font_height * 2;
8915     int ypos2 = SYSIZE / 2 - font_height * 1;
8916     unsigned int wait_frame_delay = 0;
8917     unsigned int wait_frame_delay_value = 2000;
8918
8919     ResetDelayCounter(&wait_frame_delay);
8920
8921     ClearField();
8922
8923     sprintf(message1, "Joystick %d", nr);
8924
8925     DrawTextSCentered(ypos1, font_nr, message1);
8926     DrawTextSCentered(ypos2, font_nr, message2);
8927
8928     while (!DelayReached(&wait_frame_delay, wait_frame_delay_value))
8929       BackToFront();
8930
8931     ClearEventQueue();
8932   }
8933
8934   DrawSetupScreen_Input();
8935 }
8936
8937 static void MapScreenMenuGadgets_OverlayTouchButtons(int y)
8938 {
8939   if (y < video.screen_height / 3)
8940   {
8941     // remap touch gadgets to access upper part of the screen
8942     UnmapScreenMenuGadgets(SCREEN_MASK_TOUCH);
8943     MapScreenMenuGadgets(SCREEN_MASK_TOUCH2);
8944   }
8945   else if (y > 2 * video.screen_height / 3)
8946   {
8947     // remap touch gadgets to access lower part of the screen
8948     MapScreenMenuGadgets(SCREEN_MASK_TOUCH);
8949     UnmapScreenMenuGadgets(SCREEN_MASK_TOUCH2);
8950   }
8951 }
8952
8953 static boolean ConfigureVirtualButtonsMain(void)
8954 {
8955   static char *customize_step_text[] =
8956   {
8957     "Move Left",
8958     "Move Right",
8959     "Move Up",
8960     "Move Down",
8961     "Snap Field",
8962     "Drop Element"
8963   };
8964   char grid_button[] =
8965   {
8966     CHAR_GRID_BUTTON_LEFT,
8967     CHAR_GRID_BUTTON_RIGHT,
8968     CHAR_GRID_BUTTON_UP,
8969     CHAR_GRID_BUTTON_DOWN,
8970     CHAR_GRID_BUTTON_SNAP,
8971     CHAR_GRID_BUTTON_DROP
8972   };
8973   enum
8974   {
8975     ACTION_NONE,
8976     ACTION_ESCAPE,
8977     ACTION_BACK,
8978     ACTION_NEXT
8979   };
8980   int font_nr = FONT_INPUT_1_ACTIVE;
8981   int font_height = getFontHeight(font_nr);
8982   int ypos1 = SYSIZE / 2 - font_height * 2;
8983   int ypos2 = SYSIZE / 2 - font_height * 1;
8984   boolean success = FALSE;
8985   boolean finished = FALSE;
8986   int step_nr = 0;
8987   char grid_button_draw = CHAR_GRID_BUTTON_NONE;
8988   char grid_button_old[MAX_GRID_XSIZE][MAX_GRID_YSIZE];
8989   char grid_button_tmp[MAX_GRID_XSIZE][MAX_GRID_YSIZE];
8990   boolean set_grid_button = FALSE;
8991   int nr = GRID_ACTIVE_NR();
8992   int x, y;
8993
8994   for (x = 0; x < MAX_GRID_XSIZE; x++)
8995     for (y = 0; y < MAX_GRID_YSIZE; y++)
8996       grid_button_old[x][y] = grid_button_tmp[x][y] = overlay.grid_button[x][y];
8997
8998   overlay.grid_button_highlight = grid_button[step_nr];
8999
9000   UnmapAllGadgets();
9001
9002   FadeSetEnterMenu();
9003   FadeOut(REDRAW_FIELD);
9004
9005   ClearField();
9006
9007   DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Virtual Buttons");
9008   DrawTextSCentered(ypos1, font_nr, "Select tiles to");
9009   DrawTextSCentered(ypos2, font_nr, customize_step_text[step_nr]);
9010
9011   FadeIn(REDRAW_FIELD);
9012
9013   SetOverlayShowGrid(TRUE);
9014
9015   // map gadgets for setup touch buttons menu screen
9016   MapScreenMenuGadgets(SCREEN_MASK_TOUCH);
9017
9018   while (!finished)
9019   {
9020     Event event;
9021
9022     while (NextValidEvent(&event))
9023     {
9024       int action = ACTION_NONE;
9025
9026       // ---------- handle events and set the resulting action ----------
9027
9028       switch (event.type)
9029       {
9030         case EVENT_USER:
9031           {
9032             UserEvent *user = (UserEvent *)&event;
9033             int id = user->value1;
9034
9035             action = (id == SCREEN_CTRL_ID_TOUCH_PREV_PAGE ||
9036                       id == SCREEN_CTRL_ID_TOUCH_PREV_PAGE2 ? ACTION_BACK :
9037                       id == SCREEN_CTRL_ID_TOUCH_NEXT_PAGE ||
9038                       id == SCREEN_CTRL_ID_TOUCH_NEXT_PAGE2 ? ACTION_NEXT :
9039                       ACTION_NONE);
9040           }
9041           break;
9042
9043         case EVENT_KEYPRESS:
9044           {
9045             Key key = GetEventKey((KeyEvent *)&event, FALSE);
9046
9047             action = (key == KSYM_Escape ?      ACTION_ESCAPE :
9048                       key == KSYM_BackSpace ||
9049                       key == KSYM_Back ?        ACTION_BACK :
9050                       key == KSYM_Return ||
9051                       key == KSYM_Menu ||
9052                       key == KSYM_space ?       ACTION_NEXT :
9053                       ACTION_NONE);
9054           }
9055           break;
9056
9057         case EVENT_KEYRELEASE:
9058           key_joystick_mapping = 0;
9059           break;
9060
9061         case EVENT_BUTTONPRESS:
9062         case EVENT_BUTTONRELEASE:
9063           {
9064             ButtonEvent *button = (ButtonEvent *)&event;
9065
9066             motion_status = FALSE;
9067
9068             if (button->type == EVENT_BUTTONPRESS)
9069               button_status = button->button;
9070             else
9071               button_status = MB_RELEASED;
9072
9073             if (HandleGadgets(button->x, button->y, button_status))
9074             {
9075               // do not handle this button event anymore
9076               break;
9077             }
9078
9079             button->x += video.screen_xoffset;
9080             button->y += video.screen_yoffset;
9081
9082             x = button->x * overlay.grid_xsize / video.screen_width;
9083             y = button->y * overlay.grid_ysize / video.screen_height;
9084
9085             if (button->type == EVENT_BUTTONPRESS)
9086             {
9087               grid_button_draw =
9088                 (overlay.grid_button[x][y] != grid_button[step_nr] ?
9089                  grid_button[step_nr] : CHAR_GRID_BUTTON_NONE);
9090
9091               set_grid_button = TRUE;
9092             }
9093
9094             MapScreenMenuGadgets_OverlayTouchButtons(button->y);
9095           }
9096           break;
9097
9098         case EVENT_MOTIONNOTIFY:
9099           {
9100             MotionEvent *motion = (MotionEvent *)&event;
9101
9102             motion_status = TRUE;
9103
9104             if (HandleGadgets(motion->x, motion->y, button_status))
9105             {
9106               // do not handle this button event anymore
9107               break;
9108             }
9109
9110             motion->x += video.screen_xoffset;
9111             motion->y += video.screen_yoffset;
9112
9113             x = motion->x * overlay.grid_xsize / video.screen_width;
9114             y = motion->y * overlay.grid_ysize / video.screen_height;
9115
9116             set_grid_button = TRUE;
9117
9118             MapScreenMenuGadgets_OverlayTouchButtons(motion->y);
9119           }
9120           break;
9121
9122         case SDL_WINDOWEVENT:
9123           HandleWindowEvent((WindowEvent *) &event);
9124
9125           // check if device has been rotated
9126           if (nr != GRID_ACTIVE_NR())
9127           {
9128             nr = GRID_ACTIVE_NR();
9129
9130             for (x = 0; x < MAX_GRID_XSIZE; x++)
9131               for (y = 0; y < MAX_GRID_YSIZE; y++)
9132                 grid_button_old[x][y] = grid_button_tmp[x][y] =
9133                   overlay.grid_button[x][y];
9134           }
9135
9136           break;
9137
9138         case SDL_APP_WILLENTERBACKGROUND:
9139         case SDL_APP_DIDENTERBACKGROUND:
9140         case SDL_APP_WILLENTERFOREGROUND:
9141         case SDL_APP_DIDENTERFOREGROUND:
9142           HandlePauseResumeEvent((PauseResumeEvent *) &event);
9143           break;
9144
9145         default:
9146           HandleOtherEvents(&event);
9147           break;
9148       }
9149
9150       // ---------- perform action set by handling events ----------
9151
9152       if (action == ACTION_ESCAPE)
9153       {
9154         // abort and restore the old key bindings
9155
9156         for (x = 0; x < MAX_GRID_XSIZE; x++)
9157           for (y = 0; y < MAX_GRID_YSIZE; y++)
9158             overlay.grid_button[x][y] = grid_button_old[x][y];
9159
9160         FadeSkipNextFadeIn();
9161
9162         finished = TRUE;
9163       }
9164       else if (action == ACTION_BACK)
9165       {
9166         // keep the configured key bindings and go to previous page
9167
9168         step_nr--;
9169
9170         if (step_nr < 0)
9171         {
9172           FadeSkipNextFadeIn();
9173
9174           finished = TRUE;
9175         }
9176       }
9177       else if (action == ACTION_NEXT)
9178       {
9179         // keep the configured key bindings and go to next page
9180
9181         step_nr++;
9182
9183         // all virtual buttons configured
9184         if (step_nr == 6)
9185         {
9186           finished = TRUE;
9187           success = TRUE;
9188         }
9189       }
9190
9191       if (action != ACTION_NONE && !finished)
9192       {
9193         for (x = 0; x < MAX_GRID_XSIZE; x++)
9194           for (y = 0; y < MAX_GRID_YSIZE; y++)
9195             grid_button_tmp[x][y] = overlay.grid_button[x][y];
9196
9197         overlay.grid_button_highlight = grid_button[step_nr];
9198
9199         // configure next virtual button
9200
9201         ClearField();
9202
9203         DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Virtual Buttons");
9204         DrawTextSCentered(ypos1, font_nr, "Select tiles to");
9205         DrawTextSCentered(ypos2, font_nr, customize_step_text[step_nr]);
9206       }
9207
9208       if (set_grid_button)
9209       {
9210         overlay.grid_button[x][y] =
9211           (grid_button_draw != CHAR_GRID_BUTTON_NONE ? grid_button_draw :
9212            grid_button_tmp[x][y] == grid_button[step_nr] ? CHAR_GRID_BUTTON_NONE :
9213            grid_button_tmp[x][y]);
9214
9215         set_grid_button = FALSE;
9216       }
9217     }
9218
9219     BackToFront();
9220   }
9221
9222   for (x = 0; x < MAX_GRID_XSIZE; x++)
9223     for (y = 0; y < MAX_GRID_YSIZE; y++)
9224       setup.touch.grid_button[nr][x][y] = overlay.grid_button[x][y];
9225
9226   overlay.grid_button_highlight = CHAR_GRID_BUTTON_NONE;
9227
9228   SetOverlayShowGrid(FALSE);
9229
9230   return success;
9231 }
9232
9233 void ConfigureVirtualButtons(void)
9234 {
9235   boolean success = ConfigureVirtualButtonsMain();
9236
9237   UnmapScreenMenuGadgets(SCREEN_MASK_TOUCH |
9238                          SCREEN_MASK_TOUCH2);
9239
9240   if (success)
9241   {
9242     int font_nr = FONT_TITLE_1;
9243     int font_height = getFontHeight(font_nr);
9244     int ypos1 = SYSIZE / 2 - font_height * 2;
9245     int ypos2 = SYSIZE / 2 - font_height * 1;
9246     unsigned int wait_frame_delay = 0;
9247     unsigned int wait_frame_delay_value = 2000;
9248
9249     ResetDelayCounter(&wait_frame_delay);
9250
9251     ClearField();
9252
9253     DrawTextSCentered(ypos1, font_nr, "Virtual buttons");
9254     DrawTextSCentered(ypos2, font_nr, "configured!");
9255
9256     while (!DelayReached(&wait_frame_delay, wait_frame_delay_value))
9257       BackToFront();
9258
9259     ClearEventQueue();
9260   }
9261 }
9262
9263 void DrawSetupScreen(void)
9264 {
9265   align_xoffset = 0;
9266   align_yoffset = 0;
9267
9268   if (setup_mode == SETUP_MODE_INPUT)
9269     DrawSetupScreen_Input();
9270   else if (setup_mode == SETUP_MODE_CHOOSE_SCORES_TYPE)
9271     DrawChooseTree(&scores_type_current);
9272   else if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED)
9273     DrawChooseTree(&game_speed_current);
9274   else if (setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY)
9275     DrawChooseTree(&scroll_delay_current);
9276   else if (setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
9277     DrawChooseTree(&snapshot_mode_current);
9278   else if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE)
9279     DrawChooseTree(&window_size_current);
9280   else if (setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE)
9281     DrawChooseTree(&scaling_type_current);
9282   else if (setup_mode == SETUP_MODE_CHOOSE_RENDERING)
9283     DrawChooseTree(&rendering_mode_current);
9284   else if (setup_mode == SETUP_MODE_CHOOSE_VSYNC)
9285     DrawChooseTree(&vsync_mode_current);
9286   else if (setup_mode == SETUP_MODE_CHOOSE_GRAPHICS)
9287     DrawChooseTree(&artwork.gfx_current);
9288   else if (setup_mode == SETUP_MODE_CHOOSE_SOUNDS)
9289     DrawChooseTree(&artwork.snd_current);
9290   else if (setup_mode == SETUP_MODE_CHOOSE_MUSIC)
9291     DrawChooseTree(&artwork.mus_current);
9292   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE)
9293     DrawChooseTree(&volume_simple_current);
9294   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS)
9295     DrawChooseTree(&volume_loops_current);
9296   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
9297     DrawChooseTree(&volume_music_current);
9298   else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL)
9299     DrawChooseTree(&touch_control_current);
9300   else if (setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE)
9301     DrawChooseTree(&move_distance_current);
9302   else if (setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE)
9303     DrawChooseTree(&drop_distance_current);
9304   else if (setup_mode == SETUP_MODE_CHOOSE_TRANSPARENCY)
9305     DrawChooseTree(&transparency_current);
9306   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_0)
9307     DrawChooseTree(&grid_size_current[0][0]);
9308   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_0)
9309     DrawChooseTree(&grid_size_current[0][1]);
9310   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_1)
9311     DrawChooseTree(&grid_size_current[1][0]);
9312   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_1)
9313     DrawChooseTree(&grid_size_current[1][1]);
9314   else
9315     DrawSetupScreen_Generic();
9316
9317   PlayMenuSoundsAndMusic();
9318 }
9319
9320 void RedrawSetupScreenAfterFullscreenToggle(void)
9321 {
9322   if (setup_mode == SETUP_MODE_GRAPHICS ||
9323       setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE)
9324   {
9325     // update list selection from "setup.window_scaling_percent"
9326     execSetupGraphics_setWindowSizes(TRUE);
9327
9328     DrawSetupScreen();
9329   }
9330 }
9331
9332 void RedrawSetupScreenAfterScreenRotation(int nr)
9333 {
9334   int x, y;
9335
9336   if (setup_mode == SETUP_MODE_TOUCH)
9337   {
9338     // update virtual button settings (depending on screen orientation)
9339     DrawSetupScreen();
9340   }
9341   else if (setup_mode == SETUP_MODE_CONFIG_VIRT_BUTTONS)
9342   {
9343     // save already configured virtual buttons
9344     for (x = 0; x < MAX_GRID_XSIZE; x++)
9345       for (y = 0; y < MAX_GRID_YSIZE; y++)
9346         setup.touch.grid_button[nr][x][y] = overlay.grid_button[x][y];
9347   }
9348 }
9349
9350 void HandleSetupScreen(int mx, int my, int dx, int dy, int button)
9351 {
9352   if (setup_mode == SETUP_MODE_INPUT)
9353     HandleSetupScreen_Input(mx, my, dx, dy, button);
9354   else if (setup_mode == SETUP_MODE_CHOOSE_SCORES_TYPE)
9355     HandleChooseTree(mx, my, dx, dy, button, &scores_type_current);
9356   else if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED)
9357     HandleChooseTree(mx, my, dx, dy, button, &game_speed_current);
9358   else if (setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY)
9359     HandleChooseTree(mx, my, dx, dy, button, &scroll_delay_current);
9360   else if (setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
9361     HandleChooseTree(mx, my, dx, dy, button, &snapshot_mode_current);
9362   else if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE)
9363     HandleChooseTree(mx, my, dx, dy, button, &window_size_current);
9364   else if (setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE)
9365     HandleChooseTree(mx, my, dx, dy, button, &scaling_type_current);
9366   else if (setup_mode == SETUP_MODE_CHOOSE_RENDERING)
9367     HandleChooseTree(mx, my, dx, dy, button, &rendering_mode_current);
9368   else if (setup_mode == SETUP_MODE_CHOOSE_VSYNC)
9369     HandleChooseTree(mx, my, dx, dy, button, &vsync_mode_current);
9370   else if (setup_mode == SETUP_MODE_CHOOSE_GRAPHICS)
9371     HandleChooseTree(mx, my, dx, dy, button, &artwork.gfx_current);
9372   else if (setup_mode == SETUP_MODE_CHOOSE_SOUNDS)
9373     HandleChooseTree(mx, my, dx, dy, button, &artwork.snd_current);
9374   else if (setup_mode == SETUP_MODE_CHOOSE_MUSIC)
9375     HandleChooseTree(mx, my, dx, dy, button, &artwork.mus_current);
9376   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE)
9377     HandleChooseTree(mx, my, dx, dy, button, &volume_simple_current);
9378   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS)
9379     HandleChooseTree(mx, my, dx, dy, button, &volume_loops_current);
9380   else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
9381     HandleChooseTree(mx, my, dx, dy, button, &volume_music_current);
9382   else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL)
9383     HandleChooseTree(mx, my, dx, dy, button, &touch_control_current);
9384   else if (setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE)
9385     HandleChooseTree(mx, my, dx, dy, button, &move_distance_current);
9386   else if (setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE)
9387     HandleChooseTree(mx, my, dx, dy, button, &drop_distance_current);
9388   else if (setup_mode == SETUP_MODE_CHOOSE_TRANSPARENCY)
9389     HandleChooseTree(mx, my, dx, dy, button, &transparency_current);
9390   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_0)
9391     HandleChooseTree(mx, my, dx, dy, button, &grid_size_current[0][0]);
9392   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_0)
9393     HandleChooseTree(mx, my, dx, dy, button, &grid_size_current[0][1]);
9394   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_XSIZE_1)
9395     HandleChooseTree(mx, my, dx, dy, button, &grid_size_current[1][0]);
9396   else if (setup_mode == SETUP_MODE_CHOOSE_GRID_YSIZE_1)
9397     HandleChooseTree(mx, my, dx, dy, button, &grid_size_current[1][1]);
9398   else
9399     HandleSetupScreen_Generic(mx, my, dx, dy, button);
9400 }
9401
9402 void HandleGameActions(void)
9403 {
9404   if (setup.ask_on_game_over)
9405     CheckGameOver();
9406
9407   if (game.restart_game_message != NULL)
9408   {
9409     RequestRestartGame(game.restart_game_message);
9410
9411     return;
9412   }
9413
9414   if (game_status != GAME_MODE_PLAYING)
9415     return;
9416
9417   GameActions();                // main game loop
9418
9419   if (tape.auto_play && !tape.playing)
9420     AutoPlayTapesContinue();    // continue automatically playing next tape
9421 }
9422
9423
9424 // ---------- new screen button stuff --------------------------------------
9425
9426 static struct
9427 {
9428   int gfx_unpressed, gfx_pressed;
9429   struct MenuPosInfo *pos;
9430   boolean *check_value;
9431   int gadget_id;
9432   int screen_mask;
9433   unsigned int event_mask;
9434   boolean is_touch_button;
9435   char *infotext;
9436 } menubutton_info[NUM_SCREEN_MENUBUTTONS] =
9437 {
9438   {
9439     IMG_MENU_BUTTON_PREV_LEVEL, IMG_MENU_BUTTON_PREV_LEVEL_ACTIVE,
9440     &menu.main.button.prev_level, NULL,
9441     SCREEN_CTRL_ID_PREV_LEVEL,
9442     SCREEN_MASK_MAIN,
9443     GD_EVENT_PRESSED | GD_EVENT_REPEATED,
9444     FALSE, "previous level"
9445   },
9446   {
9447     IMG_MENU_BUTTON_NEXT_LEVEL, IMG_MENU_BUTTON_NEXT_LEVEL_ACTIVE,
9448     &menu.main.button.next_level, NULL,
9449     SCREEN_CTRL_ID_NEXT_LEVEL,
9450     SCREEN_MASK_MAIN,
9451     GD_EVENT_PRESSED | GD_EVENT_REPEATED,
9452     FALSE, "next level"
9453   },
9454   {
9455     IMG_MENU_BUTTON_PREV_LEVEL2, IMG_MENU_BUTTON_PREV_LEVEL2_ACTIVE,
9456     &menu.scores.button.prev_level, NULL,
9457     SCREEN_CTRL_ID_PREV_LEVEL2,
9458     SCREEN_MASK_SCORES | SCREEN_MASK_SCORES_INFO,
9459     GD_EVENT_PRESSED | GD_EVENT_REPEATED,
9460     FALSE, "previous level"
9461   },
9462   {
9463     IMG_MENU_BUTTON_NEXT_LEVEL2, IMG_MENU_BUTTON_NEXT_LEVEL2_ACTIVE,
9464     &menu.scores.button.next_level, NULL,
9465     SCREEN_CTRL_ID_NEXT_LEVEL2,
9466     SCREEN_MASK_SCORES | SCREEN_MASK_SCORES_INFO,
9467     GD_EVENT_PRESSED | GD_EVENT_REPEATED,
9468     FALSE, "next level"
9469   },
9470   {
9471     IMG_MENU_BUTTON_PREV_SCORE, IMG_MENU_BUTTON_PREV_SCORE_ACTIVE,
9472     &menu.scores.button.prev_score, NULL,
9473     SCREEN_CTRL_ID_PREV_SCORE,
9474     SCREEN_MASK_SCORES_INFO,
9475     GD_EVENT_PRESSED | GD_EVENT_REPEATED,
9476     FALSE, "previous score"
9477   },
9478   {
9479     IMG_MENU_BUTTON_NEXT_SCORE, IMG_MENU_BUTTON_NEXT_SCORE_ACTIVE,
9480     &menu.scores.button.next_score, NULL,
9481     SCREEN_CTRL_ID_NEXT_SCORE,
9482     SCREEN_MASK_SCORES_INFO,
9483     GD_EVENT_PRESSED | GD_EVENT_REPEATED,
9484     FALSE, "next score"
9485   },
9486   {
9487     IMG_MENU_BUTTON_PLAY_TAPE, IMG_MENU_BUTTON_PLAY_TAPE,
9488     &menu.scores.button.play_tape, NULL,
9489     SCREEN_CTRL_ID_PLAY_TAPE,
9490     SCREEN_MASK_SCORES_INFO,
9491     GD_EVENT_RELEASED,
9492     FALSE, "play tape"
9493   },
9494   {
9495     IMG_MENU_BUTTON_FIRST_LEVEL, IMG_MENU_BUTTON_FIRST_LEVEL_ACTIVE,
9496     &menu.main.button.first_level, NULL,
9497     SCREEN_CTRL_ID_FIRST_LEVEL,
9498     SCREEN_MASK_MAIN,
9499     GD_EVENT_RELEASED,
9500     FALSE, "first level"
9501   },
9502   {
9503     IMG_MENU_BUTTON_LAST_LEVEL, IMG_MENU_BUTTON_LAST_LEVEL_ACTIVE,
9504     &menu.main.button.last_level, NULL,
9505     SCREEN_CTRL_ID_LAST_LEVEL,
9506     SCREEN_MASK_MAIN,
9507     GD_EVENT_RELEASED,
9508     FALSE, "last level"
9509   },
9510   {
9511     IMG_MENU_BUTTON_LEVEL_NUMBER, IMG_MENU_BUTTON_LEVEL_NUMBER_ACTIVE,
9512     &menu.main.button.level_number, NULL,
9513     SCREEN_CTRL_ID_LEVEL_NUMBER,
9514     SCREEN_MASK_MAIN,
9515     GD_EVENT_RELEASED,
9516     FALSE, "level number"
9517   },
9518   {
9519     IMG_MENU_BUTTON_LEFT, IMG_MENU_BUTTON_LEFT_ACTIVE,
9520     &menu.setup.button.prev_player, NULL,
9521     SCREEN_CTRL_ID_PREV_PLAYER,
9522     SCREEN_MASK_INPUT,
9523     GD_EVENT_PRESSED | GD_EVENT_REPEATED,
9524     FALSE, "previous player"
9525   },
9526   {
9527     IMG_MENU_BUTTON_RIGHT, IMG_MENU_BUTTON_RIGHT_ACTIVE,
9528     &menu.setup.button.next_player, NULL,
9529     SCREEN_CTRL_ID_NEXT_PLAYER,
9530     SCREEN_MASK_INPUT,
9531     GD_EVENT_PRESSED | GD_EVENT_REPEATED,
9532     FALSE, "next player"
9533   },
9534   {
9535     IMG_MENU_BUTTON_INSERT_SOLUTION, IMG_MENU_BUTTON_INSERT_SOLUTION_ACTIVE,
9536     &menu.main.button.insert_solution, NULL,
9537     SCREEN_CTRL_ID_INSERT_SOLUTION,
9538     SCREEN_MASK_MAIN_HAS_SOLUTION,
9539     GD_EVENT_RELEASED,
9540     FALSE, "insert solution tape"
9541   },
9542   {
9543     IMG_MENU_BUTTON_PLAY_SOLUTION, IMG_MENU_BUTTON_PLAY_SOLUTION_ACTIVE,
9544     &menu.main.button.play_solution, NULL,
9545     SCREEN_CTRL_ID_PLAY_SOLUTION,
9546     SCREEN_MASK_MAIN_HAS_SOLUTION,
9547     GD_EVENT_RELEASED,
9548     FALSE, "play solution tape"
9549   },
9550   {
9551     IMG_MENU_BUTTON_SWITCH_ECS_AGA, IMG_MENU_BUTTON_SWITCH_ECS_AGA_ACTIVE,
9552     &menu.main.button.switch_ecs_aga, &setup.prefer_aga_graphics,
9553     SCREEN_CTRL_ID_SWITCH_ECS_AGA,
9554     SCREEN_MASK_MAIN,
9555     GD_EVENT_RELEASED | GD_EVENT_OFF_BORDERS,
9556     FALSE, "switch ECS/AGA chipset"
9557   },
9558   {
9559     IMG_MENU_BUTTON_TOUCH_BACK, IMG_MENU_BUTTON_TOUCH_BACK,
9560     &menu.setup.button.touch_back, NULL,
9561     SCREEN_CTRL_ID_TOUCH_PREV_PAGE,
9562     SCREEN_MASK_TOUCH,
9563     GD_EVENT_RELEASED,
9564     TRUE, "previous page"
9565   },
9566   {
9567     IMG_MENU_BUTTON_TOUCH_NEXT, IMG_MENU_BUTTON_TOUCH_NEXT,
9568     &menu.setup.button.touch_next, NULL,
9569     SCREEN_CTRL_ID_TOUCH_NEXT_PAGE,
9570     SCREEN_MASK_TOUCH,
9571     GD_EVENT_RELEASED,
9572     TRUE, "next page"
9573   },
9574   {
9575     IMG_MENU_BUTTON_TOUCH_BACK2, IMG_MENU_BUTTON_TOUCH_BACK2,
9576     &menu.setup.button.touch_back2, NULL,
9577     SCREEN_CTRL_ID_TOUCH_PREV_PAGE2,
9578     SCREEN_MASK_TOUCH2,
9579     GD_EVENT_RELEASED,
9580     TRUE, "previous page"
9581   },
9582   {
9583     IMG_MENU_BUTTON_TOUCH_NEXT2, IMG_MENU_BUTTON_TOUCH_NEXT2,
9584     &menu.setup.button.touch_next2, NULL,
9585     SCREEN_CTRL_ID_TOUCH_NEXT_PAGE2,
9586     SCREEN_MASK_TOUCH2,
9587     GD_EVENT_RELEASED,
9588     TRUE, "next page"
9589   },
9590 };
9591
9592 static struct
9593 {
9594   int gfx_unpressed, gfx_pressed;
9595   int x, y;
9596   int gadget_id;
9597   char *infotext;
9598 } scrollbutton_info[NUM_SCREEN_SCROLLBUTTONS] =
9599 {
9600   {
9601     IMG_MENU_BUTTON_UP, IMG_MENU_BUTTON_UP_ACTIVE,
9602     -1, -1,     // these values are not constant, but can change at runtime
9603     SCREEN_CTRL_ID_SCROLL_UP,
9604     "scroll up"
9605   },
9606   {
9607     IMG_MENU_BUTTON_DOWN, IMG_MENU_BUTTON_DOWN_ACTIVE,
9608     -1, -1,     // these values are not constant, but can change at runtime
9609     SCREEN_CTRL_ID_SCROLL_DOWN,
9610     "scroll down"
9611   }
9612 };
9613
9614 static struct
9615 {
9616   int gfx_unpressed, gfx_pressed;
9617   int x, y;
9618   int width, height;
9619   int type;
9620   int gadget_id;
9621   char *infotext;
9622 } scrollbar_info[NUM_SCREEN_SCROLLBARS] =
9623 {
9624   {
9625     IMG_MENU_SCROLLBAR, IMG_MENU_SCROLLBAR_ACTIVE,
9626     -1, -1,     // these values are not constant, but can change at runtime
9627     -1, -1,     // these values are not constant, but can change at runtime
9628     GD_TYPE_SCROLLBAR_VERTICAL,
9629     SCREEN_CTRL_ID_SCROLL_VERTICAL,
9630     "scroll level series vertically"
9631   }
9632 };
9633
9634 static struct
9635 {
9636   int graphic;
9637   int gadget_id;
9638   int x, y;
9639   int size;
9640   char *value;
9641   char *infotext;
9642 } textinput_info[NUM_SCREEN_TEXTINPUT] =
9643 {
9644   {
9645     IMG_SETUP_INPUT_TEXT,
9646     SCREEN_CTRL_ID_NETWORK_SERVER,
9647     -1, -1,     // these values are not constant, but can change at runtime
9648     MAX_SETUP_TEXT_INPUT_LEN,
9649     network_server_hostname,
9650     "Network Server Hostname / IP"
9651   },
9652 };
9653
9654 static void CreateScreenMenubuttons(void)
9655 {
9656   struct GadgetInfo *gi;
9657   unsigned int event_mask;
9658   int i;
9659
9660   for (i = 0; i < NUM_SCREEN_MENUBUTTONS; i++)
9661   {
9662     struct MenuPosInfo *pos = menubutton_info[i].pos;
9663     int screen_mask = menubutton_info[i].screen_mask;
9664     boolean is_touch_button = menubutton_info[i].is_touch_button;
9665     boolean is_check_button = menubutton_info[i].check_value != NULL;
9666     boolean is_score_button = (screen_mask & SCREEN_MASK_SCORES_INFO);
9667     boolean has_gfx_pressed = (menubutton_info[i].gfx_pressed ==
9668                                menubutton_info[i].gfx_unpressed);
9669     Bitmap *gd_bitmap_unpressed, *gd_bitmap_pressed;
9670     int gfx_unpressed, gfx_pressed;
9671     int x, y, width, height;
9672     int gd_x1, gd_x2, gd_y1, gd_y2;
9673     int gd_x1a, gd_x2a, gd_y1a, gd_y2a;
9674     int id = menubutton_info[i].gadget_id;
9675     int type = GD_TYPE_NORMAL_BUTTON;
9676     boolean checked = FALSE;
9677
9678     event_mask = menubutton_info[i].event_mask;
9679
9680     x = (is_touch_button ? pos->x : mSX + GDI_ACTIVE_POS(pos->x));
9681     y = (is_touch_button ? pos->y : mSY + GDI_ACTIVE_POS(pos->y));
9682
9683     width  = graphic_info[menubutton_info[i].gfx_pressed].width;
9684     height = graphic_info[menubutton_info[i].gfx_pressed].height;
9685
9686     gfx_unpressed = menubutton_info[i].gfx_unpressed;
9687     gfx_pressed   = menubutton_info[i].gfx_pressed;
9688     gd_bitmap_unpressed = graphic_info[gfx_unpressed].bitmap;
9689     gd_bitmap_pressed   = graphic_info[gfx_pressed].bitmap;
9690     gd_x1 = graphic_info[gfx_unpressed].src_x;
9691     gd_y1 = graphic_info[gfx_unpressed].src_y;
9692     gd_x2 = graphic_info[gfx_pressed].src_x;
9693     gd_y2 = graphic_info[gfx_pressed].src_y;
9694     gd_x1a = gd_x1;
9695     gd_y1a = gd_y1;
9696     gd_x2a = gd_x2;
9697     gd_y2a = gd_y2;
9698
9699     if (has_gfx_pressed)
9700     {
9701       gd_x2 += graphic_info[gfx_pressed].pressed_xoffset;
9702       gd_y2 += graphic_info[gfx_pressed].pressed_yoffset;
9703     }
9704
9705     if (is_check_button)
9706     {
9707       gd_x1a += graphic_info[gfx_unpressed].active_xoffset;
9708       gd_y1a += graphic_info[gfx_unpressed].active_yoffset;
9709       gd_x2a += graphic_info[gfx_pressed].active_xoffset;
9710       gd_y2a += graphic_info[gfx_pressed].active_yoffset;
9711
9712       type = GD_TYPE_CHECK_BUTTON;
9713       checked = *menubutton_info[i].check_value;
9714     }
9715
9716     if (is_score_button)
9717     {
9718       // if x/y set to -1, dynamically place buttons next to title text
9719       int title_width = getTextWidth(INFOTEXT_SCORE_ENTRY, FONT_TITLE_1);
9720
9721       if (pos->x == -1)
9722         x = (id == SCREEN_CTRL_ID_PREV_LEVEL2 ?
9723              SX + (SXSIZE - title_width) / 2 - width * 3 / 2 :
9724              id == SCREEN_CTRL_ID_NEXT_LEVEL2 ?
9725              SX + (SXSIZE + title_width) / 2 + width / 2 : 0);
9726
9727       if (pos->y == -1)
9728         y = (id == SCREEN_CTRL_ID_PREV_LEVEL2 ||
9729              id == SCREEN_CTRL_ID_NEXT_LEVEL2 ? mSY + MENU_TITLE1_YPOS : 0);
9730     }
9731
9732     gi = CreateGadget(GDI_CUSTOM_ID, id,
9733                       GDI_CUSTOM_TYPE_ID, i,
9734                       GDI_IMAGE_ID, gfx_unpressed,
9735                       GDI_INFO_TEXT, menubutton_info[i].infotext,
9736                       GDI_X, x,
9737                       GDI_Y, y,
9738                       GDI_WIDTH, width,
9739                       GDI_HEIGHT, height,
9740                       GDI_TYPE, type,
9741                       GDI_STATE, GD_BUTTON_UNPRESSED,
9742                       GDI_CHECKED, checked,
9743                       GDI_DESIGN_UNPRESSED, gd_bitmap_unpressed, gd_x1, gd_y1,
9744                       GDI_DESIGN_PRESSED, gd_bitmap_pressed, gd_x2, gd_y2,
9745                       GDI_ALT_DESIGN_UNPRESSED, gd_bitmap_unpressed, gd_x1a, gd_y1a,
9746                       GDI_ALT_DESIGN_PRESSED, gd_bitmap_pressed, gd_x2a, gd_y2a,
9747                       GDI_DIRECT_DRAW, FALSE,
9748                       GDI_OVERLAY_TOUCH_BUTTON, is_touch_button,
9749                       GDI_EVENT_MASK, event_mask,
9750                       GDI_CALLBACK_ACTION, HandleScreenGadgets,
9751                       GDI_END);
9752
9753     if (gi == NULL)
9754       Fail("cannot create gadget");
9755
9756     screen_gadget[id] = gi;
9757   }
9758 }
9759
9760 static void CreateScreenScrollbuttons(void)
9761 {
9762   struct GadgetInfo *gi;
9763   unsigned int event_mask;
9764   int i;
9765
9766   // these values are not constant, but can change at runtime
9767   scrollbutton_info[0].x = SC_SCROLL_UP_XPOS;
9768   scrollbutton_info[0].y = SC_SCROLL_UP_YPOS;
9769   scrollbutton_info[1].x = SC_SCROLL_DOWN_XPOS;
9770   scrollbutton_info[1].y = SC_SCROLL_DOWN_YPOS;
9771
9772   for (i = 0; i < NUM_SCREEN_SCROLLBUTTONS; i++)
9773   {
9774     Bitmap *gd_bitmap_unpressed, *gd_bitmap_pressed;
9775     int gfx_unpressed, gfx_pressed;
9776     int x, y, width, height;
9777     int gd_x1, gd_x2, gd_y1, gd_y2;
9778     int id = scrollbutton_info[i].gadget_id;
9779
9780     event_mask = GD_EVENT_PRESSED | GD_EVENT_REPEATED;
9781
9782     x = mSX + scrollbutton_info[i].x + menu.scrollbar_xoffset;
9783     y = mSY + scrollbutton_info[i].y;
9784     width = SC_SCROLLBUTTON_XSIZE;
9785     height = SC_SCROLLBUTTON_YSIZE;
9786
9787     // correct scrollbar position if placed outside menu (playfield) area
9788     if (x > SX + SC_SCROLL_UP_XPOS)
9789       x = SX + SC_SCROLL_UP_XPOS;
9790
9791     if (id == SCREEN_CTRL_ID_SCROLL_DOWN)
9792       y = mSY + (SC_SCROLL_VERTICAL_YPOS +
9793                  (NUM_MENU_ENTRIES_ON_SCREEN - 2) * SC_SCROLLBUTTON_YSIZE);
9794
9795     gfx_unpressed = scrollbutton_info[i].gfx_unpressed;
9796     gfx_pressed   = scrollbutton_info[i].gfx_pressed;
9797     gd_bitmap_unpressed = graphic_info[gfx_unpressed].bitmap;
9798     gd_bitmap_pressed   = graphic_info[gfx_pressed].bitmap;
9799     gd_x1 = graphic_info[gfx_unpressed].src_x;
9800     gd_y1 = graphic_info[gfx_unpressed].src_y;
9801     gd_x2 = graphic_info[gfx_pressed].src_x;
9802     gd_y2 = graphic_info[gfx_pressed].src_y;
9803
9804     gi = CreateGadget(GDI_CUSTOM_ID, id,
9805                       GDI_CUSTOM_TYPE_ID, i,
9806                       GDI_IMAGE_ID, gfx_unpressed,
9807                       GDI_INFO_TEXT, scrollbutton_info[i].infotext,
9808                       GDI_X, x,
9809                       GDI_Y, y,
9810                       GDI_WIDTH, width,
9811                       GDI_HEIGHT, height,
9812                       GDI_TYPE, GD_TYPE_NORMAL_BUTTON,
9813                       GDI_STATE, GD_BUTTON_UNPRESSED,
9814                       GDI_DESIGN_UNPRESSED, gd_bitmap_unpressed, gd_x1, gd_y1,
9815                       GDI_DESIGN_PRESSED, gd_bitmap_pressed, gd_x2, gd_y2,
9816                       GDI_DIRECT_DRAW, FALSE,
9817                       GDI_EVENT_MASK, event_mask,
9818                       GDI_CALLBACK_ACTION, HandleScreenGadgets,
9819                       GDI_END);
9820
9821     if (gi == NULL)
9822       Fail("cannot create gadget");
9823
9824     screen_gadget[id] = gi;
9825   }
9826 }
9827
9828 static void CreateScreenScrollbars(void)
9829 {
9830   int i;
9831
9832   // these values are not constant, but can change at runtime
9833   scrollbar_info[0].x = SC_SCROLL_VERTICAL_XPOS;
9834   scrollbar_info[0].y = SC_SCROLL_VERTICAL_YPOS;
9835   scrollbar_info[0].width  = SC_SCROLL_VERTICAL_XSIZE;
9836   scrollbar_info[0].height = SC_SCROLL_VERTICAL_YSIZE;
9837
9838   for (i = 0; i < NUM_SCREEN_SCROLLBARS; i++)
9839   {
9840     Bitmap *gd_bitmap_unpressed, *gd_bitmap_pressed;
9841     int gfx_unpressed, gfx_pressed;
9842     int x, y, width, height;
9843     int gd_x1, gd_x2, gd_y1, gd_y2;
9844     struct GadgetInfo *gi;
9845     int items_max, items_visible, item_position;
9846     unsigned int event_mask;
9847     int num_page_entries = NUM_MENU_ENTRIES_ON_SCREEN;
9848     int id = scrollbar_info[i].gadget_id;
9849
9850     event_mask = GD_EVENT_MOVING | GD_EVENT_OFF_BORDERS;
9851
9852     x = mSX + scrollbar_info[i].x + menu.scrollbar_xoffset;
9853     y = mSY + scrollbar_info[i].y;
9854     width  = scrollbar_info[i].width;
9855     height = scrollbar_info[i].height;
9856
9857     // correct scrollbar position if placed outside menu (playfield) area
9858     if (x > SX + SC_SCROLL_VERTICAL_XPOS)
9859       x = SX + SC_SCROLL_VERTICAL_XPOS;
9860
9861     if (id == SCREEN_CTRL_ID_SCROLL_VERTICAL)
9862       height = (NUM_MENU_ENTRIES_ON_SCREEN - 2) * SC_SCROLLBUTTON_YSIZE;
9863
9864     items_max = num_page_entries;
9865     items_visible = num_page_entries;
9866     item_position = 0;
9867
9868     gfx_unpressed = scrollbar_info[i].gfx_unpressed;
9869     gfx_pressed   = scrollbar_info[i].gfx_pressed;
9870     gd_bitmap_unpressed = graphic_info[gfx_unpressed].bitmap;
9871     gd_bitmap_pressed   = graphic_info[gfx_pressed].bitmap;
9872     gd_x1 = graphic_info[gfx_unpressed].src_x;
9873     gd_y1 = graphic_info[gfx_unpressed].src_y;
9874     gd_x2 = graphic_info[gfx_pressed].src_x;
9875     gd_y2 = graphic_info[gfx_pressed].src_y;
9876
9877     gi = CreateGadget(GDI_CUSTOM_ID, id,
9878                       GDI_CUSTOM_TYPE_ID, i,
9879                       GDI_IMAGE_ID, gfx_unpressed,
9880                       GDI_INFO_TEXT, scrollbar_info[i].infotext,
9881                       GDI_X, x,
9882                       GDI_Y, y,
9883                       GDI_WIDTH, width,
9884                       GDI_HEIGHT, height,
9885                       GDI_TYPE, scrollbar_info[i].type,
9886                       GDI_SCROLLBAR_ITEMS_MAX, items_max,
9887                       GDI_SCROLLBAR_ITEMS_VISIBLE, items_visible,
9888                       GDI_SCROLLBAR_ITEM_POSITION, item_position,
9889                       GDI_WHEEL_AREA_X, SX,
9890                       GDI_WHEEL_AREA_Y, SY,
9891                       GDI_WHEEL_AREA_WIDTH, SXSIZE,
9892                       GDI_WHEEL_AREA_HEIGHT, SYSIZE,
9893                       GDI_STATE, GD_BUTTON_UNPRESSED,
9894                       GDI_DESIGN_UNPRESSED, gd_bitmap_unpressed, gd_x1, gd_y1,
9895                       GDI_DESIGN_PRESSED, gd_bitmap_pressed, gd_x2, gd_y2,
9896                       GDI_BORDER_SIZE, SC_BORDER_SIZE, SC_BORDER_SIZE,
9897                       GDI_DIRECT_DRAW, FALSE,
9898                       GDI_EVENT_MASK, event_mask,
9899                       GDI_CALLBACK_ACTION, HandleScreenGadgets,
9900                       GDI_END);
9901
9902     if (gi == NULL)
9903       Fail("cannot create gadget");
9904
9905     screen_gadget[id] = gi;
9906   }
9907 }
9908
9909 static void CreateScreenTextInputGadgets(void)
9910 {
9911   int i;
9912
9913   for (i = 0; i < NUM_SCREEN_TEXTINPUT; i++)
9914   {
9915     int graphic = textinput_info[i].graphic;
9916     struct GraphicInfo *gd = &graphic_info[graphic];
9917     int gd_x1 = gd->src_x;
9918     int gd_y1 = gd->src_y;
9919     int gd_x2 = gd->src_x + gd->active_xoffset;
9920     int gd_y2 = gd->src_y + gd->active_yoffset;
9921     struct GadgetInfo *gi;
9922     unsigned int event_mask;
9923     int id = textinput_info[i].gadget_id;
9924     int x = textinput_info[i].x;
9925     int y = textinput_info[i].y;
9926
9927     event_mask = GD_EVENT_TEXT_RETURN | GD_EVENT_TEXT_LEAVING;
9928
9929     gi = CreateGadget(GDI_CUSTOM_ID, id,
9930                       GDI_CUSTOM_TYPE_ID, i,
9931                       GDI_INFO_TEXT, textinput_info[i].infotext,
9932                       GDI_X, SX + x,
9933                       GDI_Y, SY + y,
9934                       GDI_TYPE, GD_TYPE_TEXT_INPUT_ALPHANUMERIC,
9935                       GDI_TEXT_VALUE, textinput_info[i].value,
9936                       GDI_TEXT_SIZE, textinput_info[i].size,
9937                       GDI_TEXT_FONT, getSetupValueFont(TYPE_STRING, NULL),
9938                       GDI_TEXT_FONT_ACTIVE, FONT_TEXT_1,
9939                       GDI_DESIGN_UNPRESSED, gd->bitmap, gd_x1, gd_y1,
9940                       GDI_DESIGN_PRESSED, gd->bitmap, gd_x2, gd_y2,
9941                       GDI_BORDER_SIZE, gd->border_size, gd->border_size,
9942                       GDI_DESIGN_WIDTH, gd->width,
9943                       GDI_EVENT_MASK, event_mask,
9944                       GDI_CALLBACK_ACTION, HandleScreenGadgets,
9945                       GDI_CALLBACK_ACTION_ALWAYS, TRUE,
9946                       GDI_END);
9947
9948     if (gi == NULL)
9949       Fail("cannot create gadget");
9950
9951     screen_gadget[id] = gi;
9952   }
9953 }
9954
9955 void CreateScreenGadgets(void)
9956 {
9957   CreateScreenMenubuttons();
9958
9959   CreateScreenScrollbuttons();
9960   CreateScreenScrollbars();
9961
9962   CreateScreenTextInputGadgets();
9963 }
9964
9965 void FreeScreenGadgets(void)
9966 {
9967   int i;
9968
9969   for (i = 0; i < NUM_SCREEN_GADGETS; i++)
9970     FreeGadget(screen_gadget[i]);
9971 }
9972
9973 static void RedrawScreenMenuGadgets(int screen_mask)
9974 {
9975   int i;
9976
9977   for (i = 0; i < NUM_SCREEN_MENUBUTTONS; i++)
9978     if (screen_mask & menubutton_info[i].screen_mask)
9979       RedrawGadget(screen_gadget[menubutton_info[i].gadget_id]);
9980 }
9981
9982 static void MapScreenMenuGadgets(int screen_mask)
9983 {
9984   int i;
9985
9986   for (i = 0; i < NUM_SCREEN_MENUBUTTONS; i++)
9987     if (screen_mask & menubutton_info[i].screen_mask)
9988       MapGadget(screen_gadget[menubutton_info[i].gadget_id]);
9989 }
9990
9991 static void UnmapScreenMenuGadgets(int screen_mask)
9992 {
9993   int i;
9994
9995   for (i = 0; i < NUM_SCREEN_MENUBUTTONS; i++)
9996   {
9997     if (screen_mask & menubutton_info[i].screen_mask)
9998     {
9999       UnmapGadget(screen_gadget[menubutton_info[i].gadget_id]);
10000
10001       if (screen_mask & SCREEN_MASK_MAIN_HAS_SOLUTION)
10002         DrawBackground(screen_gadget[menubutton_info[i].gadget_id]->x,
10003                        screen_gadget[menubutton_info[i].gadget_id]->y,
10004                        screen_gadget[menubutton_info[i].gadget_id]->width,
10005                        screen_gadget[menubutton_info[i].gadget_id]->height);
10006     }
10007   }
10008 }
10009
10010 static void UpdateScreenMenuGadgets(int screen_mask, boolean map_gadgets)
10011 {
10012   if (map_gadgets)
10013     MapScreenMenuGadgets(screen_mask);
10014   else
10015     UnmapScreenMenuGadgets(screen_mask);
10016 }
10017
10018 static void MapScreenGadgets(int num_entries)
10019 {
10020   int i;
10021
10022   if (num_entries <= NUM_MENU_ENTRIES_ON_SCREEN)
10023     return;
10024
10025   for (i = 0; i < NUM_SCREEN_SCROLLBUTTONS; i++)
10026     MapGadget(screen_gadget[scrollbutton_info[i].gadget_id]);
10027
10028   for (i = 0; i < NUM_SCREEN_SCROLLBARS; i++)
10029     MapGadget(screen_gadget[scrollbar_info[i].gadget_id]);
10030 }
10031
10032 static void UnmapScreenGadgets()
10033 {
10034   int i;
10035
10036   for (i = 0; i < NUM_SCREEN_SCROLLBUTTONS; i++)
10037     UnmapGadget(screen_gadget[scrollbutton_info[i].gadget_id]);
10038
10039   for (i = 0; i < NUM_SCREEN_SCROLLBARS; i++)
10040     UnmapGadget(screen_gadget[scrollbar_info[i].gadget_id]);
10041 }
10042
10043 static void MapScreenTreeGadgets(TreeInfo *ti)
10044 {
10045   MapScreenGadgets(numTreeInfoInGroup(ti));
10046 }
10047
10048 static void UnmapScreenTreeGadgets(void)
10049 {
10050   UnmapScreenGadgets();
10051 }
10052
10053 static void AdjustScoreInfoButtons_SelectScore(int x, int y1, int y2)
10054 {
10055   struct GadgetInfo *gi_1 = screen_gadget[SCREEN_CTRL_ID_PREV_SCORE];
10056   struct GadgetInfo *gi_2 = screen_gadget[SCREEN_CTRL_ID_NEXT_SCORE];
10057   struct MenuPosInfo *pos_1 = menubutton_info[SCREEN_CTRL_ID_PREV_SCORE].pos;
10058   struct MenuPosInfo *pos_2 = menubutton_info[SCREEN_CTRL_ID_NEXT_SCORE].pos;
10059
10060   if (pos_1->x == -1 && pos_1->y == -1)
10061     ModifyGadget(gi_1, GDI_X, x, GDI_Y, y1, GDI_END);
10062
10063   if (pos_2->x == -1 && pos_2->y == -1)
10064     ModifyGadget(gi_2, GDI_X, x, GDI_Y, y2, GDI_END);
10065 }
10066
10067 static void AdjustScoreInfoButtons_PlayTape(int x, int y, boolean visible)
10068 {
10069   struct GadgetInfo *gi = screen_gadget[SCREEN_CTRL_ID_PLAY_TAPE];
10070   struct MenuPosInfo *pos = menubutton_info[SCREEN_CTRL_ID_PLAY_TAPE].pos;
10071
10072   // set gadget position dynamically, pre-defined or off-screen
10073   int xx = (visible ? (pos->x == -1 ? x : pos->x) : POS_OFFSCREEN);
10074   int yy = (visible ? (pos->y == -1 ? y : pos->y) : POS_OFFSCREEN);
10075
10076   ModifyGadget(gi, GDI_X, xx, GDI_Y, yy, GDI_END);
10077   MapGadget(gi);        // (needed if deactivated on last score page)
10078 }
10079
10080 static void HandleScreenGadgets(struct GadgetInfo *gi)
10081 {
10082   int id = gi->custom_id;
10083   int button = gi->event.button;
10084   int step = (button == MB_LEFTBUTTON   ? 1 :
10085               button == MB_MIDDLEBUTTON ? 5 :
10086               button == MB_RIGHTBUTTON  ? 10 : 1);
10087
10088   switch (id)
10089   {
10090     case SCREEN_CTRL_ID_PREV_LEVEL:
10091       HandleMainMenu_SelectLevel(step, -1, NO_DIRECT_LEVEL_SELECT);
10092       break;
10093
10094     case SCREEN_CTRL_ID_NEXT_LEVEL:
10095       HandleMainMenu_SelectLevel(step, +1, NO_DIRECT_LEVEL_SELECT);
10096       break;
10097
10098     case SCREEN_CTRL_ID_PREV_LEVEL2:
10099       HandleHallOfFame_SelectLevel(step, -1);
10100       break;
10101
10102     case SCREEN_CTRL_ID_NEXT_LEVEL2:
10103       HandleHallOfFame_SelectLevel(step, +1);
10104       break;
10105
10106     case SCREEN_CTRL_ID_PREV_SCORE:
10107       HandleScoreInfo_SelectScore(step, -1);
10108       break;
10109
10110     case SCREEN_CTRL_ID_NEXT_SCORE:
10111       HandleScoreInfo_SelectScore(step, +1);
10112       break;
10113
10114     case SCREEN_CTRL_ID_PLAY_TAPE:
10115       HandleScoreInfo_PlayTape();
10116       break;
10117
10118     case SCREEN_CTRL_ID_FIRST_LEVEL:
10119       HandleMainMenu_SelectLevel(MAX_LEVELS, -1, NO_DIRECT_LEVEL_SELECT);
10120       break;
10121
10122     case SCREEN_CTRL_ID_LAST_LEVEL:
10123       HandleMainMenu_SelectLevel(MAX_LEVELS, +1, NO_DIRECT_LEVEL_SELECT);
10124       break;
10125
10126     case SCREEN_CTRL_ID_LEVEL_NUMBER:
10127       CloseDoor(DOOR_CLOSE_2);
10128       SetGameStatus(GAME_MODE_LEVELNR);
10129       DrawChooseLevelNr();
10130       break;
10131
10132     case SCREEN_CTRL_ID_PREV_PLAYER:
10133       HandleSetupScreen_Input_Player(step, -1);
10134       break;
10135
10136     case SCREEN_CTRL_ID_NEXT_PLAYER:
10137       HandleSetupScreen_Input_Player(step, +1);
10138       break;
10139
10140     case SCREEN_CTRL_ID_INSERT_SOLUTION:
10141       InsertSolutionTape();
10142       break;
10143
10144     case SCREEN_CTRL_ID_PLAY_SOLUTION:
10145       PlaySolutionTape();
10146       break;
10147
10148     case SCREEN_CTRL_ID_SWITCH_ECS_AGA:
10149       setup.prefer_aga_graphics = !setup.prefer_aga_graphics;
10150       DrawMainMenu();
10151       break;
10152
10153     case SCREEN_CTRL_ID_TOUCH_PREV_PAGE:
10154     case SCREEN_CTRL_ID_TOUCH_NEXT_PAGE:
10155     case SCREEN_CTRL_ID_TOUCH_PREV_PAGE2:
10156     case SCREEN_CTRL_ID_TOUCH_NEXT_PAGE2:
10157       PushUserEvent(USEREVENT_GADGET_PRESSED, id, 0);
10158       break;
10159
10160     case SCREEN_CTRL_ID_SCROLL_UP:
10161       if (game_status == GAME_MODE_NAMES)
10162         HandleChoosePlayerName(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
10163       else if (game_status == GAME_MODE_LEVELS)
10164         HandleChooseLevelSet(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
10165       else if (game_status == GAME_MODE_LEVELNR)
10166         HandleChooseLevelNr(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
10167       else if (game_status == GAME_MODE_SETUP)
10168         HandleSetupScreen(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
10169       else if (game_status == GAME_MODE_INFO)
10170         HandleInfoScreen(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
10171       else if (game_status == GAME_MODE_SCORES)
10172         HandleHallOfFame(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
10173       break;
10174
10175     case SCREEN_CTRL_ID_SCROLL_DOWN:
10176       if (game_status == GAME_MODE_NAMES)
10177         HandleChoosePlayerName(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
10178       else if (game_status == GAME_MODE_LEVELS)
10179         HandleChooseLevelSet(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
10180       else if (game_status == GAME_MODE_LEVELNR)
10181         HandleChooseLevelNr(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
10182       else if (game_status == GAME_MODE_SETUP)
10183         HandleSetupScreen(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
10184       else if (game_status == GAME_MODE_INFO)
10185         HandleInfoScreen(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
10186       else if (game_status == GAME_MODE_SCORES)
10187         HandleHallOfFame(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
10188       break;
10189
10190     case SCREEN_CTRL_ID_SCROLL_VERTICAL:
10191       if (game_status == GAME_MODE_NAMES)
10192         HandleChoosePlayerName(0,0,999,gi->event.item_position,MB_MENU_INITIALIZE);
10193       else if (game_status == GAME_MODE_LEVELS)
10194         HandleChooseLevelSet(0,0,999,gi->event.item_position,MB_MENU_INITIALIZE);
10195       else if (game_status == GAME_MODE_LEVELNR)
10196         HandleChooseLevelNr(0,0,999,gi->event.item_position,MB_MENU_INITIALIZE);
10197       else if (game_status == GAME_MODE_SETUP)
10198         HandleSetupScreen(0,0, 999,gi->event.item_position,MB_MENU_INITIALIZE);
10199       else if (game_status == GAME_MODE_INFO)
10200         HandleInfoScreen(0,0, 999,gi->event.item_position,MB_MENU_INITIALIZE);
10201       else if (game_status == GAME_MODE_SCORES)
10202         HandleHallOfFame(0,0, 999,gi->event.item_position,MB_MENU_INITIALIZE);
10203       break;
10204
10205     case SCREEN_CTRL_ID_NETWORK_SERVER:
10206     {
10207       if (!strEqual(gi->textinput.value, ""))
10208       {
10209         setString(&setup.network_server_hostname, gi->textinput.value);
10210
10211         network.server_host = setup.network_server_hostname;
10212       }
10213       else
10214       {
10215         setString(&setup.network_server_hostname, STR_NETWORK_AUTO_DETECT);
10216
10217         network.server_host = NULL;
10218       }
10219
10220       if (strEqual(network.server_host, STR_NETWORK_AUTO_DETECT))
10221         network.server_host = NULL;
10222
10223       execSetupGame_setNetworkServerText();
10224
10225       DrawSetupScreen();
10226
10227       break;
10228     }
10229
10230     default:
10231       break;
10232   }
10233 }
10234
10235 void DumpScreenIdentifiers(void)
10236 {
10237   int i;
10238
10239   Print("Active screen elements on current screen:\n");
10240
10241   for (i = 0; main_controls[i].nr != -1; i++)
10242   {
10243     struct MainControlInfo *mci = &main_controls[i];
10244
10245     if (mci->button_graphic != -1)
10246     {
10247       char *token = getTokenFromImageID(mci->button_graphic);
10248
10249       Print("- '%s'\n", token);
10250     }
10251   }
10252
10253   Print("Done.\n");
10254 }
10255
10256 boolean DoScreenAction(int image_id)
10257 {
10258   int i;
10259
10260   if (game_status != GAME_MODE_MAIN)
10261     return FALSE;
10262
10263   for (i = 0; main_controls[i].nr != -1; i++)
10264   {
10265     struct MainControlInfo *mci = &main_controls[i];
10266     struct MenuPosInfo *pos = mci->pos_button;
10267
10268     if (mci->button_graphic == image_id)
10269     {
10270       int x = mSX + pos->x;
10271       int y = mSY + pos->y;
10272
10273       HandleMainMenu(x, y, 0, 0, MB_MENU_CHOICE);
10274
10275       return TRUE;
10276     }
10277   }
10278
10279   return FALSE;
10280 }
10281
10282 void DrawScreenAfterAddingSet(char *tree_subdir_new, int tree_type)
10283 {
10284   // get tree info node of newly added level or artwork set
10285   TreeInfo *tree_node_first = TREE_FIRST_NODE(tree_type);
10286   TreeInfo *tree_node_new = getTreeInfoFromIdentifier(tree_node_first,
10287                                                       tree_subdir_new);
10288   if (tree_node_new == NULL)    // should not happen
10289     return;
10290
10291   // if request dialog is active, do nothing
10292   if (game.request_active)
10293     return;
10294
10295   if (game_status == GAME_MODE_MAIN &&
10296       tree_type == TREE_TYPE_LEVEL_DIR)
10297   {
10298     // when adding new level set in main menu, select it as current level set
10299
10300     // change current level set to newly added level set from zip file
10301     leveldir_current = tree_node_new;
10302
10303     // change current level number to first level of newly added level set
10304     level_nr = leveldir_current->first_level;
10305
10306     // redraw screen to reflect changed level set
10307     DrawMainMenu();
10308
10309     // save this level set and level number as last selected level set
10310     SaveLevelSetup_LastSeries();
10311     SaveLevelSetup_SeriesInfo();
10312   }
10313   else if (game_status == GAME_MODE_LEVELS &&
10314            tree_type == TREE_TYPE_LEVEL_DIR)
10315   {
10316     // when adding new level set in level set menu, set cursor and update screen
10317
10318     leveldir_current = tree_node_new;
10319
10320     DrawChooseTree(&leveldir_current);
10321   }
10322   else if (game_status == GAME_MODE_SETUP)
10323   {
10324     // when adding new artwork set in setup menu, set cursor and update screen
10325
10326     if (setup_mode == SETUP_MODE_CHOOSE_GRAPHICS &&
10327         tree_type == TREE_TYPE_GRAPHICS_DIR)
10328     {
10329       artwork.gfx_current = tree_node_new;
10330
10331       DrawChooseTree(&artwork.gfx_current);
10332     }
10333     else if (setup_mode == SETUP_MODE_CHOOSE_SOUNDS &&
10334              tree_type == TREE_TYPE_SOUNDS_DIR)
10335     {
10336       artwork.snd_current = tree_node_new;
10337
10338       DrawChooseTree(&artwork.snd_current);
10339     }
10340     else if (setup_mode == SETUP_MODE_CHOOSE_MUSIC &&
10341              tree_type == TREE_TYPE_MUSIC_DIR)
10342     {
10343       artwork.mus_current = tree_node_new;
10344
10345       DrawChooseTree(&artwork.mus_current);
10346     }
10347   }
10348 }
10349
10350 static int UploadTapes(void)
10351 {
10352   SetGameStatus(GAME_MODE_LOADING);
10353
10354   FadeSetEnterScreen();
10355   FadeOut(REDRAW_ALL);
10356
10357   ClearRectangle(drawto, 0, 0, WIN_XSIZE, WIN_YSIZE);
10358
10359   FadeIn(REDRAW_ALL);
10360
10361   DrawInitTextHead("Uploading tapes");
10362
10363   global.autoplay_mode = AUTOPLAY_MODE_UPLOAD;
10364   global.autoplay_leveldir = "ALL";
10365   global.autoplay_all = TRUE;
10366
10367   int num_tapes_uploaded = AutoPlayTapes();
10368
10369   global.autoplay_mode = AUTOPLAY_MODE_NONE;
10370   global.autoplay_leveldir = NULL;
10371   global.autoplay_all = FALSE;
10372
10373   SetGameStatus(GAME_MODE_MAIN);
10374
10375   DrawMainMenu();
10376
10377   return num_tapes_uploaded;
10378 }
10379
10380 static boolean OfferUploadTapes(void)
10381 {
10382   if (!Request(setup.has_remaining_tapes ?
10383                "Upload missing tapes to the high score server now?" :
10384                "Upload all your tapes to the high score server now?", REQ_ASK))
10385     return FALSE;
10386
10387   int num_tapes_uploaded = UploadTapes();
10388   char message[100];
10389
10390   if (num_tapes_uploaded < 0)
10391   {
10392     num_tapes_uploaded = -num_tapes_uploaded - 1;
10393
10394     if (num_tapes_uploaded == 0)
10395       sprintf(message, "Upload failed! No tapes uploaded!");
10396     else if (num_tapes_uploaded == 1)
10397       sprintf(message, "Upload failed! Only 1 tape uploaded!");
10398     else
10399       sprintf(message, "Upload failed! Only %d tapes uploaded!",
10400               num_tapes_uploaded);
10401
10402     Request(message, REQ_CONFIRM);
10403
10404     // if uploading tapes failed, add tape upload entry to setup menu
10405     setup.provide_uploading_tapes = TRUE;
10406     setup.has_remaining_tapes = TRUE;
10407
10408     SaveSetup_ServerSetup();
10409
10410     return FALSE;
10411   }
10412
10413   if (num_tapes_uploaded == 0)
10414     sprintf(message, "No tapes uploaded!");
10415   else if (num_tapes_uploaded == 1)
10416     sprintf(message, "1 tape uploaded!");
10417   else
10418     sprintf(message, "%d tapes uploaded!", num_tapes_uploaded);
10419
10420   Request(message, REQ_CONFIRM);
10421
10422   if (num_tapes_uploaded > 0)
10423     Request("New scores will be visible after a few minutes!", REQ_CONFIRM);
10424
10425   // after all tapes have been uploaded, remove entry from setup menu
10426   setup.provide_uploading_tapes = FALSE;
10427   setup.has_remaining_tapes = FALSE;
10428
10429   SaveSetup_ServerSetup();
10430
10431   return TRUE;
10432 }
10433
10434 static void CheckUploadTapes(void)
10435 {
10436   if (!setup.ask_for_uploading_tapes)
10437     return;
10438
10439   // after asking for uploading tapes, do not ask again
10440   setup.ask_for_uploading_tapes = FALSE;
10441   setup.ask_for_remaining_tapes = FALSE;
10442
10443   if (directoryExists(getTapeDir(NULL)))
10444   {
10445     boolean tapes_uploaded = OfferUploadTapes();
10446
10447     if (!tapes_uploaded)
10448     {
10449       Request(setup.has_remaining_tapes ?
10450               "You can upload missing tapes from the setup menu later!" :
10451               "You can upload your tapes from the setup menu later!",
10452               REQ_CONFIRM);
10453     }
10454   }
10455   else
10456   {
10457     // if tapes directory does not exist yet, never offer uploading all tapes
10458     setup.provide_uploading_tapes = FALSE;
10459   }
10460
10461   SaveSetup_ServerSetup();
10462 }
10463
10464 static void UpgradePlayerUUID(void)
10465 {
10466   ApiResetUUIDAsThread(getUUID());
10467 }
10468
10469 static void CheckUpgradePlayerUUID(void)
10470 {
10471   if (setup.player_version > 1)
10472     return;
10473
10474   UpgradePlayerUUID();
10475 }
10476
10477 void CheckApiServerTasks(void)
10478 {
10479   // check if the player's UUID has to be upgraded
10480   CheckUpgradePlayerUUID();
10481
10482   // check if there are any tapes to be uploaded
10483   CheckUploadTapes();
10484 }