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