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