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