1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
7 // http://www.artsoft.org/
8 // ----------------------------------------------------------------------------
10 // ============================================================================
12 #include "libgame/libgame.h"
26 /* screens on the info screen */
27 #define INFO_MODE_MAIN 0
28 #define INFO_MODE_TITLE 1
29 #define INFO_MODE_ELEMENTS 2
30 #define INFO_MODE_MUSIC 3
31 #define INFO_MODE_CREDITS 4
32 #define INFO_MODE_PROGRAM 5
33 #define INFO_MODE_VERSION 6
34 #define INFO_MODE_LEVELSET 7
36 #define MAX_INFO_MODES 8
38 /* screens on the setup screen */
39 /* (must match GFX_SPECIAL_ARG_SETUP_* values as defined in src/main.h) */
40 /* (should also match corresponding entries in src/conf_gfx.c) */
41 #define SETUP_MODE_MAIN 0
42 #define SETUP_MODE_GAME 1
43 #define SETUP_MODE_EDITOR 2
44 #define SETUP_MODE_GRAPHICS 3
45 #define SETUP_MODE_SOUND 4
46 #define SETUP_MODE_ARTWORK 5
47 #define SETUP_MODE_INPUT 6
48 #define SETUP_MODE_TOUCH 7
49 #define SETUP_MODE_SHORTCUTS 8
50 #define SETUP_MODE_SHORTCUTS_1 9
51 #define SETUP_MODE_SHORTCUTS_2 10
52 #define SETUP_MODE_SHORTCUTS_3 11
53 #define SETUP_MODE_SHORTCUTS_4 12
54 #define SETUP_MODE_SHORTCUTS_5 13
56 /* sub-screens on the setup screen (generic) */
57 #define SETUP_MODE_CHOOSE_ARTWORK 14
58 #define SETUP_MODE_CHOOSE_OTHER 15
60 /* sub-screens on the setup screen (specific) */
61 #define SETUP_MODE_CHOOSE_GAME_SPEED 16
62 #define SETUP_MODE_CHOOSE_SCROLL_DELAY 17
63 #define SETUP_MODE_CHOOSE_SNAPSHOT_MODE 18
64 #define SETUP_MODE_CHOOSE_SCREEN_MODE 19
65 #define SETUP_MODE_CHOOSE_WINDOW_SIZE 20
66 #define SETUP_MODE_CHOOSE_SCALING_TYPE 21
67 #define SETUP_MODE_CHOOSE_GRAPHICS 22
68 #define SETUP_MODE_CHOOSE_SOUNDS 23
69 #define SETUP_MODE_CHOOSE_MUSIC 24
70 #define SETUP_MODE_CHOOSE_VOLUME_SIMPLE 25
71 #define SETUP_MODE_CHOOSE_VOLUME_LOOPS 26
72 #define SETUP_MODE_CHOOSE_VOLUME_MUSIC 27
73 #define SETUP_MODE_CHOOSE_TOUCH_CONTROL 28
74 #define SETUP_MODE_CHOOSE_MOVE_DISTANCE 29
75 #define SETUP_MODE_CHOOSE_DROP_DISTANCE 30
77 #define MAX_SETUP_MODES 31
79 #define MAX_MENU_MODES MAX(MAX_INFO_MODES, MAX_SETUP_MODES)
81 /* for input setup functions */
82 #define SETUPINPUT_SCREEN_POS_START 0
83 #define SETUPINPUT_SCREEN_POS_END (SCR_FIELDY - 4)
84 #define SETUPINPUT_SCREEN_POS_EMPTY1 (SETUPINPUT_SCREEN_POS_START + 3)
85 #define SETUPINPUT_SCREEN_POS_EMPTY2 (SETUPINPUT_SCREEN_POS_END - 1)
87 /* for various menu stuff */
88 #define MENU_SCREEN_START_XPOS 1
89 #define MENU_SCREEN_START_YPOS 2
90 #define MENU_SCREEN_VALUE_XPOS (SCR_FIELDX - 3)
91 #define MENU_SCREEN_MAX_XPOS (SCR_FIELDX - 1)
92 #define MENU_TITLE1_YPOS 8
93 #define MENU_TITLE2_YPOS 46
94 #define MENU_SCREEN_INFO_XSTART 16
95 #define MENU_SCREEN_INFO_YSTART1 100
96 #define MENU_SCREEN_INFO_YSTART2 128
97 #define MENU_SCREEN_INFO_YSTEP (TILEY + 4)
98 #define MENU_SCREEN_INFO_YBOTTOM (SYSIZE - 20)
99 #define MENU_SCREEN_INFO_YSIZE (MENU_SCREEN_INFO_YBOTTOM - \
100 MENU_SCREEN_INFO_YSTART2 - \
102 #define MAX_INFO_ELEMENTS_ON_SCREEN 128
103 #define STD_INFO_ELEMENTS_ON_SCREEN (MENU_SCREEN_INFO_YSIZE / \
104 MENU_SCREEN_INFO_YSTEP)
105 #define NUM_INFO_ELEMENTS_FROM_CONF \
106 (menu.list_size_info[GFX_SPECIAL_ARG_INFO_ELEMENTS] > 0 ? \
107 menu.list_size_info[GFX_SPECIAL_ARG_INFO_ELEMENTS] : \
108 MAX_MENU_ENTRIES_ON_SCREEN)
109 #define NUM_INFO_ELEMENTS_ON_SCREEN MIN(MIN(STD_INFO_ELEMENTS_ON_SCREEN, \
110 MAX_INFO_ELEMENTS_ON_SCREEN), \
111 NUM_INFO_ELEMENTS_FROM_CONF)
112 #define MAX_MENU_ENTRIES_ON_SCREEN (SCR_FIELDY - MENU_SCREEN_START_YPOS)
113 #define MAX_MENU_TEXT_LENGTH_BIG 13
114 #define MAX_MENU_TEXT_LENGTH_MEDIUM (MAX_MENU_TEXT_LENGTH_BIG * 2)
116 /* buttons and scrollbars identifiers */
117 #define SCREEN_CTRL_ID_PREV_LEVEL 0
118 #define SCREEN_CTRL_ID_NEXT_LEVEL 1
119 #define SCREEN_CTRL_ID_PREV_PLAYER 2
120 #define SCREEN_CTRL_ID_NEXT_PLAYER 3
121 #define SCREEN_CTRL_ID_SCROLL_UP 4
122 #define SCREEN_CTRL_ID_SCROLL_DOWN 5
123 #define SCREEN_CTRL_ID_SCROLL_VERTICAL 6
125 #define NUM_SCREEN_GADGETS 7
127 #define NUM_SCREEN_MENUBUTTONS 4
128 #define NUM_SCREEN_SCROLLBUTTONS 2
129 #define NUM_SCREEN_SCROLLBARS 1
131 #define SCREEN_MASK_MAIN (1 << 0)
132 #define SCREEN_MASK_INPUT (1 << 1)
134 /* graphic position and size values for buttons and scrollbars */
135 #define SC_MENUBUTTON_XSIZE TILEX
136 #define SC_MENUBUTTON_YSIZE TILEY
138 #define SC_SCROLLBUTTON_XSIZE TILEX
139 #define SC_SCROLLBUTTON_YSIZE TILEY
141 #define SC_SCROLLBAR_XPOS (SXSIZE - SC_SCROLLBUTTON_XSIZE)
143 #define SC_SCROLL_VERTICAL_XSIZE SC_SCROLLBUTTON_XSIZE
144 #define SC_SCROLL_VERTICAL_YSIZE ((MAX_MENU_ENTRIES_ON_SCREEN - 2) * \
145 SC_SCROLLBUTTON_YSIZE)
147 #define SC_SCROLL_UP_XPOS SC_SCROLLBAR_XPOS
148 #define SC_SCROLL_UP_YPOS (2 * SC_SCROLLBUTTON_YSIZE)
150 #define SC_SCROLL_VERTICAL_XPOS SC_SCROLLBAR_XPOS
151 #define SC_SCROLL_VERTICAL_YPOS (SC_SCROLL_UP_YPOS + \
152 SC_SCROLLBUTTON_YSIZE)
154 #define SC_SCROLL_DOWN_XPOS SC_SCROLLBAR_XPOS
155 #define SC_SCROLL_DOWN_YPOS (SC_SCROLL_VERTICAL_YPOS + \
156 SC_SCROLL_VERTICAL_YSIZE)
158 #define SC_BORDER_SIZE 14
161 /* forward declarations of internal functions */
162 static void HandleScreenGadgets(struct GadgetInfo *);
163 static void HandleSetupScreen_Generic(int, int, int, int, int);
164 static void HandleSetupScreen_Input(int, int, int, int, int);
165 static void CustomizeKeyboard(int);
166 static void CalibrateJoystick(int);
167 static void execSetupGame(void);
168 static void execSetupGraphics(void);
169 static void execSetupSound(void);
170 static void execSetupTouch(void);
171 static void execSetupArtwork(void);
172 static void HandleChooseTree(int, int, int, int, int, TreeInfo **);
174 static void DrawChooseLevelSet(void);
175 static void DrawChooseLevelNr(void);
176 static void DrawInfoScreen(void);
177 static void DrawSetupScreen(void);
179 static void DrawInfoScreen_NotAvailable(char *, char *);
180 static void DrawInfoScreen_HelpAnim(int, int, boolean);
181 static void DrawInfoScreen_HelpText(int, int, int, int);
182 static void HandleInfoScreen_Main(int, int, int, int, int);
183 static void HandleInfoScreen_TitleScreen(int);
184 static void HandleInfoScreen_Elements(int);
185 static void HandleInfoScreen_Music(int);
186 static void HandleInfoScreen_Credits(int);
187 static void HandleInfoScreen_Program(int);
188 static void HandleInfoScreen_Version(int);
190 static void MapScreenMenuGadgets(int);
191 static void MapScreenGadgets(int);
192 static void MapScreenTreeGadgets(TreeInfo *);
194 static struct GadgetInfo *screen_gadget[NUM_SCREEN_GADGETS];
196 static int info_mode = INFO_MODE_MAIN;
197 static int setup_mode = SETUP_MODE_MAIN;
199 static TreeInfo *screen_modes = NULL;
200 static TreeInfo *screen_mode_current = NULL;
202 static TreeInfo *window_sizes = NULL;
203 static TreeInfo *window_size_current = NULL;
205 static TreeInfo *scaling_types = NULL;
206 static TreeInfo *scaling_type_current = NULL;
208 static TreeInfo *scroll_delays = NULL;
209 static TreeInfo *scroll_delay_current = NULL;
211 static TreeInfo *snapshot_modes = NULL;
212 static TreeInfo *snapshot_mode_current = NULL;
214 static TreeInfo *game_speeds = NULL;
215 static TreeInfo *game_speed_current = NULL;
217 static TreeInfo *volumes_simple = NULL;
218 static TreeInfo *volume_simple_current = NULL;
220 static TreeInfo *volumes_loops = NULL;
221 static TreeInfo *volume_loops_current = NULL;
223 static TreeInfo *volumes_music = NULL;
224 static TreeInfo *volume_music_current = NULL;
226 static TreeInfo *touch_controls = NULL;
227 static TreeInfo *touch_control_current = NULL;
229 static TreeInfo *move_distances = NULL;
230 static TreeInfo *move_distance_current = NULL;
232 static TreeInfo *drop_distances = NULL;
233 static TreeInfo *drop_distance_current = NULL;
235 static TreeInfo *level_number = NULL;
236 static TreeInfo *level_number_current = NULL;
238 static unsigned int sync_frame_delay = 0;
239 static unsigned int sync_frame_delay_value = GAME_FRAME_DELAY;
245 } window_sizes_list[] =
250 { 100, "100 % (Default)" },
267 } scaling_types_list[] =
269 { SCALING_QUALITY_NEAREST, "None" },
270 { SCALING_QUALITY_LINEAR, "Linear" },
271 { SCALING_QUALITY_BEST, "Anisotropic" },
280 } game_speeds_list[] =
289 { 1000, "1/1s (Extremely Slow)" },
294 { 29, "1/35s (Original Supaplex)" },
296 { 20, "1/50s (Normal Speed)" },
297 { 14, "1/70s (Maximum Supaplex)" },
301 { 1, "1/1000s (Extremely Fast)" },
311 } scroll_delays_list[] =
313 { 0, "0 Tiles (No Scroll Delay)" },
316 { 3, "3 Tiles (Default)" },
321 { 8, "8 Tiles (Maximum Scroll Delay)"},
330 } snapshot_modes_list[] =
332 { STR_SNAPSHOT_MODE_OFF, "Off" },
333 { STR_SNAPSHOT_MODE_EVERY_STEP, "Every Step" },
334 { STR_SNAPSHOT_MODE_EVERY_MOVE, "Every Move" },
335 { STR_SNAPSHOT_MODE_EVERY_COLLECT, "Every Collect" },
368 } touch_controls_list[] =
370 { TOUCH_CONTROL_VIRTUAL_BUTTONS, "Virtual Buttons" },
371 { TOUCH_CONTROL_WIPE_GESTURES, "Wipe Gestures" },
395 #define DRAW_MODE(s) ((s) >= GAME_MODE_MAIN && \
396 (s) <= GAME_MODE_SETUP ? (s) : \
397 (s) == GAME_MODE_PSEUDO_TYPENAME ? \
398 GAME_MODE_MAIN : GAME_MODE_DEFAULT)
400 /* (there are no draw offset definitions needed for INFO_MODE_TITLE) */
401 #define DRAW_MODE_INFO(i) ((i) >= INFO_MODE_ELEMENTS && \
402 (i) <= INFO_MODE_LEVELSET ? (i) : \
405 #define DRAW_MODE_SETUP(i) ((i) >= SETUP_MODE_MAIN && \
406 (i) <= SETUP_MODE_SHORTCUTS_5 ? (i) : \
407 (i) >= SETUP_MODE_CHOOSE_GRAPHICS && \
408 (i) <= SETUP_MODE_CHOOSE_MUSIC ? \
409 SETUP_MODE_CHOOSE_ARTWORK : \
410 SETUP_MODE_CHOOSE_OTHER)
412 #define DRAW_XOFFSET_INFO(i) (DRAW_MODE_INFO(i) == INFO_MODE_MAIN ? \
413 menu.draw_xoffset[GAME_MODE_INFO] : \
414 menu.draw_xoffset_info[DRAW_MODE_INFO(i)])
415 #define DRAW_YOFFSET_INFO(i) (DRAW_MODE_INFO(i) == INFO_MODE_MAIN ? \
416 menu.draw_yoffset[GAME_MODE_INFO] : \
417 menu.draw_yoffset_info[DRAW_MODE_INFO(i)])
419 #define DRAW_XOFFSET_SETUP(i) (DRAW_MODE_SETUP(i) == SETUP_MODE_MAIN ? \
420 menu.draw_xoffset[GAME_MODE_SETUP] : \
421 menu.draw_xoffset_setup[DRAW_MODE_SETUP(i)])
422 #define DRAW_YOFFSET_SETUP(i) (DRAW_MODE_SETUP(i) == SETUP_MODE_MAIN ? \
423 menu.draw_yoffset[GAME_MODE_SETUP] : \
424 menu.draw_yoffset_setup[DRAW_MODE_SETUP(i)])
426 #define DRAW_XOFFSET(s) ((s) == GAME_MODE_INFO ? \
427 DRAW_XOFFSET_INFO(info_mode) : \
428 (s) == GAME_MODE_SETUP ? \
429 DRAW_XOFFSET_SETUP(setup_mode) : \
430 menu.draw_xoffset[DRAW_MODE(s)])
431 #define DRAW_YOFFSET(s) ((s) == GAME_MODE_INFO ? \
432 DRAW_YOFFSET_INFO(info_mode) : \
433 (s) == GAME_MODE_SETUP ? \
434 DRAW_YOFFSET_SETUP(setup_mode) : \
435 menu.draw_yoffset[DRAW_MODE(s)])
437 #define mSX (SX + DRAW_XOFFSET(game_status))
438 #define mSY (SY + DRAW_YOFFSET(game_status))
440 #define NUM_MENU_ENTRIES_ON_SCREEN (menu.list_size[game_status] > 2 ? \
441 menu.list_size[game_status] : \
442 MAX_MENU_ENTRIES_ON_SCREEN)
444 #define IN_VIS_MENU(x, y) IN_FIELD(x, y, SCR_FIELDX, \
445 NUM_MENU_ENTRIES_ON_SCREEN)
448 /* title display and control definitions */
450 #define MAX_NUM_TITLE_SCREENS (2 * MAX_NUM_TITLE_IMAGES + \
451 2 * MAX_NUM_TITLE_MESSAGES)
453 #define NO_DIRECT_LEVEL_SELECT (-1)
456 static int num_title_screens = 0;
458 struct TitleControlInfo
467 struct TitleControlInfo title_controls[MAX_NUM_TITLE_SCREENS];
469 /* main menu display and control definitions */
471 #define MAIN_CONTROL_NAME 0
472 #define MAIN_CONTROL_LEVELS 1
473 #define MAIN_CONTROL_SCORES 2
474 #define MAIN_CONTROL_EDITOR 3
475 #define MAIN_CONTROL_INFO 4
476 #define MAIN_CONTROL_GAME 5
477 #define MAIN_CONTROL_SETUP 6
478 #define MAIN_CONTROL_QUIT 7
479 #define MAIN_CONTROL_PREV_LEVEL 8
480 #define MAIN_CONTROL_NEXT_LEVEL 9
481 #define MAIN_CONTROL_FIRST_LEVEL 10
482 #define MAIN_CONTROL_LAST_LEVEL 11
483 #define MAIN_CONTROL_LEVEL_NUMBER 12
484 #define MAIN_CONTROL_LEVEL_INFO_1 13
485 #define MAIN_CONTROL_LEVEL_INFO_2 14
486 #define MAIN_CONTROL_LEVEL_NAME 15
487 #define MAIN_CONTROL_LEVEL_AUTHOR 16
488 #define MAIN_CONTROL_LEVEL_YEAR 17
489 #define MAIN_CONTROL_LEVEL_IMPORTED_FROM 18
490 #define MAIN_CONTROL_LEVEL_IMPORTED_BY 19
491 #define MAIN_CONTROL_LEVEL_TESTED_BY 20
492 #define MAIN_CONTROL_TITLE_1 21
493 #define MAIN_CONTROL_TITLE_2 22
494 #define MAIN_CONTROL_TITLE_3 23
496 static char str_main_text_name[10];
497 static char str_main_text_first_level[10];
498 static char str_main_text_last_level[10];
499 static char str_main_text_level_number[10];
501 static char *main_text_name = str_main_text_name;
502 static char *main_text_first_level = str_main_text_first_level;
503 static char *main_text_last_level = str_main_text_last_level;
504 static char *main_text_level_number = str_main_text_level_number;
505 static char *main_text_levels = "Levelset";
506 static char *main_text_scores = "Hall Of Fame";
507 static char *main_text_editor = "Level Creator";
508 static char *main_text_info = "Info Screen";
509 static char *main_text_game = "Start Game";
510 static char *main_text_setup = "Setup";
511 static char *main_text_quit = "Quit";
512 static char *main_text_level_name = level.name;
513 static char *main_text_level_author = level.author;
514 static char *main_text_level_year = NULL;
515 static char *main_text_level_imported_from = NULL;
516 static char *main_text_level_imported_by = NULL;
517 static char *main_text_level_tested_by = NULL;
519 struct MainControlInfo
523 struct MenuPosInfo *pos_button;
526 struct TextPosInfo *pos_text;
529 struct TextPosInfo *pos_input;
533 static struct MainControlInfo main_controls[] =
537 &menu.main.button.name, IMG_MENU_BUTTON_NAME,
538 &menu.main.text.name, &main_text_name,
539 &menu.main.input.name, &setup.player_name,
543 &menu.main.button.levels, IMG_MENU_BUTTON_LEVELS,
544 &menu.main.text.levels, &main_text_levels,
549 &menu.main.button.scores, IMG_MENU_BUTTON_SCORES,
550 &menu.main.text.scores, &main_text_scores,
555 &menu.main.button.editor, IMG_MENU_BUTTON_EDITOR,
556 &menu.main.text.editor, &main_text_editor,
561 &menu.main.button.info, IMG_MENU_BUTTON_INFO,
562 &menu.main.text.info, &main_text_info,
567 &menu.main.button.game, IMG_MENU_BUTTON_GAME,
568 &menu.main.text.game, &main_text_game,
573 &menu.main.button.setup, IMG_MENU_BUTTON_SETUP,
574 &menu.main.text.setup, &main_text_setup,
579 &menu.main.button.quit, IMG_MENU_BUTTON_QUIT,
580 &menu.main.text.quit, &main_text_quit,
584 /* (these two buttons are real gadgets) */
586 MAIN_CONTROL_PREV_LEVEL,
587 &menu.main.button.prev_level, IMG_MENU_BUTTON_PREV_LEVEL,
592 MAIN_CONTROL_NEXT_LEVEL,
593 &menu.main.button.next_level, IMG_MENU_BUTTON_NEXT_LEVEL,
599 MAIN_CONTROL_FIRST_LEVEL,
601 &menu.main.text.first_level, &main_text_first_level,
605 MAIN_CONTROL_LAST_LEVEL,
607 &menu.main.text.last_level, &main_text_last_level,
611 MAIN_CONTROL_LEVEL_NUMBER,
613 &menu.main.text.level_number, &main_text_level_number,
617 MAIN_CONTROL_LEVEL_INFO_1,
619 &menu.main.text.level_info_1, NULL,
623 MAIN_CONTROL_LEVEL_INFO_2,
625 &menu.main.text.level_info_2, NULL,
629 MAIN_CONTROL_LEVEL_NAME,
631 &menu.main.text.level_name, &main_text_level_name,
635 MAIN_CONTROL_LEVEL_AUTHOR,
637 &menu.main.text.level_author, &main_text_level_author,
641 MAIN_CONTROL_LEVEL_YEAR,
643 &menu.main.text.level_year, &main_text_level_year,
647 MAIN_CONTROL_LEVEL_IMPORTED_FROM,
649 &menu.main.text.level_imported_from, &main_text_level_imported_from,
653 MAIN_CONTROL_LEVEL_IMPORTED_BY,
655 &menu.main.text.level_imported_by, &main_text_level_imported_by,
659 MAIN_CONTROL_LEVEL_TESTED_BY,
661 &menu.main.text.level_tested_by, &main_text_level_tested_by,
665 MAIN_CONTROL_TITLE_1,
667 &menu.main.text.title_1, &setup.internal.program_title,
671 MAIN_CONTROL_TITLE_2,
673 &menu.main.text.title_2, &setup.internal.program_copyright,
677 MAIN_CONTROL_TITLE_3,
679 &menu.main.text.title_3, &setup.internal.program_company,
692 static int getTitleScreenGraphic(int nr, boolean initial)
694 return (initial ? IMG_TITLESCREEN_INITIAL_1 : IMG_TITLESCREEN_1) + nr;
697 static struct TitleMessageInfo *getTitleMessageInfo(int nr, boolean initial)
699 return (initial ? &titlemessage_initial[nr] : &titlemessage[nr]);
703 static int getTitleScreenGameMode(boolean initial)
705 return (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
709 static int getTitleMessageGameMode(boolean initial)
711 return (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
715 static int getTitleScreenBackground(boolean initial)
717 return (initial ? IMG_BACKGROUND_TITLE_INITIAL : IMG_BACKGROUND_TITLE);
722 static int getTitleMessageBackground(int nr, boolean initial)
724 return (initial ? IMG_BACKGROUND_TITLE_INITIAL : IMG_BACKGROUND_TITLE);
728 static int getTitleBackground(int nr, boolean initial, boolean is_image)
730 int base = (is_image ?
731 (initial ? IMG_BACKGROUND_TITLESCREEN_INITIAL_1 :
732 IMG_BACKGROUND_TITLESCREEN_1) :
733 (initial ? IMG_BACKGROUND_TITLEMESSAGE_INITIAL_1 :
734 IMG_BACKGROUND_TITLEMESSAGE_1));
735 int graphic_global = (initial ? IMG_BACKGROUND_TITLE_INITIAL :
736 IMG_BACKGROUND_TITLE);
737 int graphic_local = base + nr;
739 if (graphic_info[graphic_local].bitmap != NULL)
740 return graphic_local;
742 if (graphic_info[graphic_global].bitmap != NULL)
743 return graphic_global;
745 return IMG_UNDEFINED;
748 static int getTitleSound(struct TitleControlInfo *tci)
750 boolean is_image = tci->is_image;
751 int initial = tci->initial;
752 int nr = tci->local_nr;
753 int mode = (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
754 int base = (is_image ?
755 (initial ? SND_BACKGROUND_TITLESCREEN_INITIAL_1 :
756 SND_BACKGROUND_TITLESCREEN_1) :
757 (initial ? SND_BACKGROUND_TITLEMESSAGE_INITIAL_1 :
758 SND_BACKGROUND_TITLEMESSAGE_1));
759 int sound_global = menu.sound[mode];
760 int sound_local = base + nr;
763 printf("::: %d, %d, %d: %d ['%s'], %d ['%s']\n",
764 nr, initial, is_image,
765 sound_global, getSoundListEntry(sound_global)->filename,
766 sound_local, getSoundListEntry(sound_local)->filename);
769 if (!strEqual(getSoundListEntry(sound_local)->filename, UNDEFINED_FILENAME))
772 if (!strEqual(getSoundListEntry(sound_global)->filename, UNDEFINED_FILENAME))
775 return SND_UNDEFINED;
778 static int getTitleMusic(struct TitleControlInfo *tci)
780 boolean is_image = tci->is_image;
781 int initial = tci->initial;
782 int nr = tci->local_nr;
783 int mode = (initial ? GAME_MODE_TITLE_INITIAL : GAME_MODE_TITLE);
784 int base = (is_image ?
785 (initial ? MUS_BACKGROUND_TITLESCREEN_INITIAL_1 :
786 MUS_BACKGROUND_TITLESCREEN_1) :
787 (initial ? MUS_BACKGROUND_TITLEMESSAGE_INITIAL_1 :
788 MUS_BACKGROUND_TITLEMESSAGE_1));
789 int music_global = menu.music[mode];
790 int music_local = base + nr;
793 printf("::: %d, %d, %d: %d ['%s'], %d ['%s']\n",
794 nr, initial, is_image,
795 music_global, getMusicListEntry(music_global)->filename,
796 music_local, getMusicListEntry(music_local)->filename);
799 if (!strEqual(getMusicListEntry(music_local)->filename, UNDEFINED_FILENAME))
802 if (!strEqual(getMusicListEntry(music_global)->filename, UNDEFINED_FILENAME))
805 return MUS_UNDEFINED;
808 static struct TitleFadingInfo getTitleFading(struct TitleControlInfo *tci)
810 boolean is_image = tci->is_image;
811 boolean initial = tci->initial;
812 boolean first = tci->first;
813 int nr = tci->local_nr;
814 struct TitleMessageInfo tmi;
815 struct TitleFadingInfo ti;
817 tmi = (is_image ? (initial ? (first ?
818 titlescreen_initial_first[nr] :
819 titlescreen_initial[nr])
821 titlescreen_first[nr] :
823 : (initial ? (first ?
824 titlemessage_initial_first[nr] :
825 titlemessage_initial[nr])
827 titlemessage_first[nr] :
830 ti.fade_mode = tmi.fade_mode;
831 ti.fade_delay = tmi.fade_delay;
832 ti.post_delay = tmi.post_delay;
833 ti.auto_delay = tmi.auto_delay;
838 static int compareTitleControlInfo(const void *object1, const void *object2)
840 const struct TitleControlInfo *tci1 = (struct TitleControlInfo *)object1;
841 const struct TitleControlInfo *tci2 = (struct TitleControlInfo *)object2;
844 if (tci1->initial != tci2->initial)
845 compare_result = (tci1->initial ? -1 : +1);
846 else if (tci1->sort_priority != tci2->sort_priority)
847 compare_result = tci1->sort_priority - tci2->sort_priority;
848 else if (tci1->is_image != tci2->is_image)
849 compare_result = (tci1->is_image ? -1 : +1);
851 compare_result = tci1->local_nr - tci2->local_nr;
853 return compare_result;
856 static void InitializeTitleControlsExt_AddTitleInfo(boolean is_image,
858 int nr, int sort_priority)
860 title_controls[num_title_screens].is_image = is_image;
861 title_controls[num_title_screens].initial = initial;
862 title_controls[num_title_screens].local_nr = nr;
863 title_controls[num_title_screens].sort_priority = sort_priority;
865 title_controls[num_title_screens].first = FALSE; /* will be set later */
870 static void InitializeTitleControls_CheckTitleInfo(boolean initial)
874 for (i = 0; i < MAX_NUM_TITLE_IMAGES; i++)
876 int graphic = getTitleScreenGraphic(i, initial);
877 Bitmap *bitmap = graphic_info[graphic].bitmap;
878 int sort_priority = graphic_info[graphic].sort_priority;
881 InitializeTitleControlsExt_AddTitleInfo(TRUE, initial, i, sort_priority);
884 for (i = 0; i < MAX_NUM_TITLE_MESSAGES; i++)
886 struct TitleMessageInfo *tmi = getTitleMessageInfo(i, initial);
887 char *filename = getLevelSetTitleMessageFilename(i, initial);
888 int sort_priority = tmi->sort_priority;
890 if (filename != NULL)
891 InitializeTitleControlsExt_AddTitleInfo(FALSE, initial, i, sort_priority);
895 static void InitializeTitleControls(boolean show_title_initial)
897 num_title_screens = 0;
899 /* 1st step: initialize title screens for game start (only when starting) */
900 if (show_title_initial)
901 InitializeTitleControls_CheckTitleInfo(TRUE);
903 /* 2nd step: initialize title screens for current level set */
904 InitializeTitleControls_CheckTitleInfo(FALSE);
906 /* sort title screens according to sort_priority and title number */
907 qsort(title_controls, num_title_screens, sizeof(struct TitleControlInfo),
908 compareTitleControlInfo);
910 /* mark first title screen */
911 title_controls[0].first = TRUE;
914 static boolean visibleMenuPos(struct MenuPosInfo *pos)
916 return (pos != NULL && pos->x != -1 && pos->y != -1);
919 static boolean visibleTextPos(struct TextPosInfo *pos)
921 return (pos != NULL && pos->x != -1 && pos->y != -1);
924 static void InitializeMainControls()
926 boolean local_team_mode = (!options.network && setup.team_mode);
929 /* set main control text values to dynamically determined values */
930 sprintf(main_text_name, "%s", local_team_mode ? "Team:" : "Name:");
932 strcpy(main_text_first_level, int2str(leveldir_current->first_level,
933 menu.main.text.first_level.size));
934 strcpy(main_text_last_level, int2str(leveldir_current->last_level,
935 menu.main.text.last_level.size));
936 strcpy(main_text_level_number, int2str(level_nr,
937 menu.main.text.level_number.size));
939 main_text_level_year = leveldir_current->year;
940 main_text_level_imported_from = leveldir_current->imported_from;
941 main_text_level_imported_by = leveldir_current->imported_by;
942 main_text_level_tested_by = leveldir_current->tested_by;
944 /* set main control screen positions to dynamically determined values */
945 for (i = 0; main_controls[i].nr != -1; i++)
947 struct MainControlInfo *mci = &main_controls[i];
949 struct MenuPosInfo *pos_button = mci->pos_button;
950 struct TextPosInfo *pos_text = mci->pos_text;
951 struct TextPosInfo *pos_input = mci->pos_input;
952 char *text = (mci->text ? *mci->text : NULL);
953 char *input = (mci->input ? *mci->input : NULL);
954 int button_graphic = mci->button_graphic;
955 int font_text = (pos_text ? pos_text->font : -1);
956 int font_input = (pos_input ? pos_input->font : -1);
958 int font_text_width = (font_text != -1 ? getFontWidth(font_text) : 0);
959 int font_text_height = (font_text != -1 ? getFontHeight(font_text) : 0);
960 int font_input_width = (font_input != -1 ? getFontWidth(font_input) : 0);
961 int font_input_height = (font_input != -1 ? getFontHeight(font_input) : 0);
962 int text_chars = (text != NULL ? strlen(text) : 0);
963 int input_chars = (input != NULL ? strlen(input) : 0);
966 (button_graphic != -1 ? graphic_info[button_graphic].width : 0);
968 (button_graphic != -1 ? graphic_info[button_graphic].height : 0);
969 int text_width = font_text_width * text_chars;
970 int text_height = font_text_height;
971 int input_width = font_input_width * input_chars;
972 int input_height = font_input_height;
974 if (nr == MAIN_CONTROL_NAME)
976 menu.main.input.name.width = input_width;
977 menu.main.input.name.height = input_height;
980 if (pos_button != NULL) /* (x/y may be -1/-1 here) */
982 pos_button->width = button_width;
983 pos_button->height = button_height;
986 if (pos_text != NULL) /* (x/y may be -1/-1 here) */
988 /* calculate size for non-clickable text -- needed for text alignment */
989 boolean calculate_text_size = (pos_button == NULL && text != NULL);
991 if (pos_text->width == -1 || calculate_text_size)
992 pos_text->width = text_width;
993 if (pos_text->height == -1 || calculate_text_size)
994 pos_text->height = text_height;
996 if (visibleMenuPos(pos_button))
998 if (pos_text->x == -1)
999 pos_text->x = pos_button->x + pos_button->width;
1000 if (pos_text->y == -1)
1002 pos_button->y + (pos_button->height - pos_text->height) / 2;
1006 if (pos_input != NULL) /* (x/y may be -1/-1 here) */
1008 if (visibleTextPos(pos_text))
1010 if (pos_input->x == -1)
1011 pos_input->x = pos_text->x + pos_text->width;
1012 if (pos_input->y == -1)
1013 pos_input->y = pos_text->y;
1016 if (pos_input->width == -1)
1017 pos_input->width = input_width;
1018 if (pos_input->height == -1)
1019 pos_input->height = input_height;
1024 static void DrawPressedGraphicThruMask(int dst_x, int dst_y,
1025 int graphic, boolean pressed)
1027 struct GraphicInfo *g = &graphic_info[graphic];
1030 int xoffset = (pressed ? g->pressed_xoffset : 0);
1031 int yoffset = (pressed ? g->pressed_yoffset : 0);
1033 getFixedGraphicSource(graphic, 0, &src_bitmap, &src_x, &src_y);
1035 BlitBitmapMasked(src_bitmap, drawto, src_x + xoffset, src_y + yoffset,
1036 g->width, g->height, dst_x, dst_y);
1039 static void DrawCursorAndText_Main_Ext(int nr, boolean active_text,
1040 boolean active_input,
1041 boolean pressed_button)
1045 for (i = 0; main_controls[i].nr != -1; i++)
1047 struct MainControlInfo *mci = &main_controls[i];
1049 if (mci->nr == nr || nr == -1)
1051 struct MenuPosInfo *pos_button = mci->pos_button;
1052 struct TextPosInfo *pos_text = mci->pos_text;
1053 struct TextPosInfo *pos_input = mci->pos_input;
1054 char *text = (mci->text ? *mci->text : NULL);
1055 char *input = (mci->input ? *mci->input : NULL);
1056 int button_graphic = mci->button_graphic;
1057 int font_text = (pos_text ? pos_text->font : -1);
1058 int font_input = (pos_input ? pos_input->font : -1);
1062 button_graphic = BUTTON_ACTIVE(button_graphic);
1063 font_text = FONT_ACTIVE(font_text);
1068 font_input = FONT_ACTIVE(font_input);
1071 if (visibleMenuPos(pos_button))
1073 struct MenuPosInfo *pos = pos_button;
1074 int x = mSX + pos->x;
1075 int y = mSY + pos->y;
1077 DrawBackgroundForGraphic(x, y, pos->width, pos->height, button_graphic);
1078 DrawPressedGraphicThruMask(x, y, button_graphic, pressed_button);
1081 if (visibleTextPos(pos_text) && text != NULL)
1083 struct TextPosInfo *pos = pos_text;
1084 int x = mSX + ALIGNED_TEXT_XPOS(pos);
1085 int y = mSY + ALIGNED_TEXT_YPOS(pos);
1088 /* (check why/if this is needed) */
1089 DrawBackgroundForFont(x, y, pos->width, pos->height, font_text);
1091 DrawText(x, y, text, font_text);
1094 if (visibleTextPos(pos_input) && input != NULL)
1096 struct TextPosInfo *pos = pos_input;
1097 int x = mSX + ALIGNED_TEXT_XPOS(pos);
1098 int y = mSY + ALIGNED_TEXT_YPOS(pos);
1101 /* (check why/if this is needed) */
1102 DrawBackgroundForFont(x, y, pos->width, pos->height, font_input);
1104 DrawText(x, y, input, font_input);
1110 static void DrawCursorAndText_Main(int nr, boolean active_text,
1111 boolean pressed_button)
1113 DrawCursorAndText_Main_Ext(nr, active_text, FALSE, pressed_button);
1117 static void DrawCursorAndText_Main_Input(int nr, boolean active_text,
1118 boolean pressed_button)
1120 DrawCursorAndText_Main_Ext(nr, active_text, TRUE, pressed_button);
1124 static struct MainControlInfo *getMainControlInfo(int nr)
1128 for (i = 0; main_controls[i].nr != -1; i++)
1129 if (main_controls[i].nr == nr)
1130 return &main_controls[i];
1135 static boolean insideMenuPosRect(struct MenuPosInfo *rect, int x, int y)
1140 int rect_x = ALIGNED_TEXT_XPOS(rect);
1141 int rect_y = ALIGNED_TEXT_YPOS(rect);
1143 return (x >= rect_x && x < rect_x + rect->width &&
1144 y >= rect_y && y < rect_y + rect->height);
1147 static boolean insideTextPosRect(struct TextPosInfo *rect, int x, int y)
1152 int rect_x = ALIGNED_TEXT_XPOS(rect);
1153 int rect_y = ALIGNED_TEXT_YPOS(rect);
1156 printf("::: insideTextPosRect: (%d, %d), (%d, %d) [%d, %d] (%d, %d) => %d\n",
1157 x, y, rect_x, rect_y, rect->x, rect->y, rect->width, rect->height,
1158 (x >= rect_x && x < rect_x + rect->width &&
1159 y >= rect_y && y < rect_y + rect->height));
1162 return (x >= rect_x && x < rect_x + rect->width &&
1163 y >= rect_y && y < rect_y + rect->height);
1166 static void AdjustScrollbar(int id, int items_max, int items_visible,
1169 struct GadgetInfo *gi = screen_gadget[id];
1171 if (item_position > items_max - items_visible)
1172 item_position = items_max - items_visible;
1174 ModifyGadget(gi, GDI_SCROLLBAR_ITEMS_MAX, items_max,
1175 GDI_SCROLLBAR_ITEMS_VISIBLE, items_visible,
1176 GDI_SCROLLBAR_ITEM_POSITION, item_position, GDI_END);
1179 static void AdjustChooseTreeScrollbar(int id, int first_entry, TreeInfo *ti)
1181 AdjustScrollbar(id, numTreeInfoInGroup(ti), NUM_MENU_ENTRIES_ON_SCREEN,
1185 static void clearMenuListArea()
1187 int scrollbar_xpos = mSX + SC_SCROLLBAR_XPOS + menu.scrollbar_xoffset;
1189 /* correct scrollbar position if placed outside menu (playfield) area */
1190 if (scrollbar_xpos > SX + SC_SCROLLBAR_XPOS)
1191 scrollbar_xpos = SX + SC_SCROLLBAR_XPOS;
1193 /* clear menu list area, but not title or scrollbar */
1194 DrawBackground(mSX, mSY + MENU_SCREEN_START_YPOS * 32,
1195 scrollbar_xpos - mSX, NUM_MENU_ENTRIES_ON_SCREEN * 32);
1198 static void drawCursorExt(int xpos, int ypos, boolean active, int graphic)
1200 static int cursor_array[MAX_LEV_FIELDY];
1201 int x = mSX + TILEX * xpos;
1202 int y = mSY + TILEY * (MENU_SCREEN_START_YPOS + ypos);
1207 cursor_array[ypos] = graphic;
1209 graphic = cursor_array[ypos];
1213 graphic = BUTTON_ACTIVE(graphic);
1215 DrawBackgroundForGraphic(x, y, TILEX, TILEY, graphic);
1216 DrawFixedGraphicThruMaskExt(drawto, x, y, graphic, 0);
1219 static void initCursor(int ypos, int graphic)
1221 drawCursorExt(0, ypos, FALSE, graphic);
1224 static void drawCursor(int ypos, boolean active)
1226 drawCursorExt(0, ypos, active, -1);
1229 static void drawCursorXY(int xpos, int ypos, int graphic)
1231 drawCursorExt(xpos, ypos, FALSE, graphic);
1234 static void drawChooseTreeCursor(int ypos, boolean active)
1236 int last_game_status = game_status; /* save current game status */
1238 drawCursorExt(0, ypos, active, -1);
1240 game_status = last_game_status; /* restore current game status */
1245 DrawTextSCentered(MENU_TITLE1_YPOS, FONT_TITLE_1, getProgramTitleString());
1246 DrawTextSCentered(MENU_TITLE2_YPOS, FONT_TITLE_2,
1247 setup.internal.program_copyright);
1250 void DrawTitleScreenImage(int nr, boolean initial)
1252 int graphic = getTitleScreenGraphic(nr, initial);
1253 Bitmap *bitmap = graphic_info[graphic].bitmap;
1254 int width = graphic_info[graphic].width;
1255 int height = graphic_info[graphic].height;
1256 int src_x = graphic_info[graphic].src_x;
1257 int src_y = graphic_info[graphic].src_y;
1263 if (width > WIN_XSIZE)
1265 /* image width too large for window => center image horizontally */
1266 src_x = (width - WIN_XSIZE) / 2;
1270 if (height > WIN_YSIZE)
1272 /* image height too large for window => center image vertically */
1273 src_y = (height - WIN_YSIZE) / 2;
1277 /* always display title screens centered */
1278 dst_x = (WIN_XSIZE - width) / 2;
1279 dst_y = (WIN_YSIZE - height) / 2;
1281 SetDrawBackgroundMask(REDRAW_ALL);
1282 SetWindowBackgroundImage(getTitleBackground(nr, initial, TRUE));
1284 ClearRectangleOnBackground(drawto, 0, 0, WIN_XSIZE, WIN_YSIZE);
1286 if (DrawingOnBackground(dst_x, dst_y))
1287 BlitBitmapMasked(bitmap, drawto, src_x, src_y, width, height, dst_x, dst_y);
1289 BlitBitmap(bitmap, drawto, src_x, src_y, width, height, dst_x, dst_y);
1291 redraw_mask = REDRAW_ALL;
1294 void DrawTitleScreenMessage(int nr, boolean initial)
1296 char *filename = getLevelSetTitleMessageFilename(nr, initial);
1297 struct TitleMessageInfo *tmi = getTitleMessageInfo(nr, initial);
1298 int last_game_status = game_status; /* save current game status */
1300 if (filename == NULL)
1303 /* force TITLE font on title message screen */
1304 game_status = getTitleMessageGameMode(initial);
1306 /* if chars *and* width set to "-1", automatically determine width */
1307 if (tmi->chars == -1 && tmi->width == -1)
1308 tmi->width = viewport.window[game_status].width;
1310 /* if lines *and* height set to "-1", automatically determine height */
1311 if (tmi->lines == -1 && tmi->height == -1)
1312 tmi->height = viewport.window[game_status].height;
1314 /* if chars set to "-1", automatically determine by text and font width */
1315 if (tmi->chars == -1)
1316 tmi->chars = tmi->width / getFontWidth(tmi->font);
1318 tmi->width = tmi->chars * getFontWidth(tmi->font);
1320 /* if lines set to "-1", automatically determine by text and font height */
1321 if (tmi->lines == -1)
1322 tmi->lines = tmi->height / getFontHeight(tmi->font);
1324 tmi->height = tmi->lines * getFontHeight(tmi->font);
1326 /* if x set to "-1", automatically determine by width and alignment */
1328 tmi->x = -1 * ALIGNED_XPOS(0, tmi->width, tmi->align);
1330 /* if y set to "-1", automatically determine by height and alignment */
1332 tmi->y = -1 * ALIGNED_YPOS(0, tmi->height, tmi->valign);
1334 SetDrawBackgroundMask(REDRAW_ALL);
1335 SetWindowBackgroundImage(getTitleBackground(nr, initial, FALSE));
1337 ClearRectangleOnBackground(drawto, 0, 0, WIN_XSIZE, WIN_YSIZE);
1339 DrawTextFile(ALIGNED_TEXT_XPOS(tmi), ALIGNED_TEXT_YPOS(tmi),
1340 filename, tmi->font, tmi->chars, -1, tmi->lines, 0, -1,
1341 tmi->autowrap, tmi->centered, tmi->parse_comments);
1343 game_status = last_game_status; /* restore current game status */
1346 void DrawTitleScreen()
1348 KeyboardAutoRepeatOff();
1350 HandleTitleScreen(0, 0, 0, 0, MB_MENU_INITIALIZE);
1355 boolean CheckTitleScreen(boolean levelset_has_changed)
1357 static boolean show_title_initial = TRUE;
1358 boolean show_titlescreen = FALSE;
1360 /* needed to be able to skip title screen, if no image or message defined */
1361 InitializeTitleControls(show_title_initial);
1363 if (setup.show_titlescreen && (show_title_initial || levelset_has_changed))
1364 show_titlescreen = TRUE;
1366 /* show initial title images and messages only once at program start */
1367 show_title_initial = FALSE;
1369 return (show_titlescreen && num_title_screens > 0);
1374 static LevelDirTree *leveldir_last_valid = NULL;
1375 boolean levelset_has_changed = FALSE;
1376 int fade_mask = REDRAW_FIELD;
1378 LimitScreenUpdates(FALSE);
1380 FadeSetLeaveScreen();
1382 /* do not fade out here -- function may continue and fade on editor screen */
1385 FadeSoundsAndMusic();
1387 KeyboardAutoRepeatOn();
1390 audio.sound_deactivated = FALSE;
1394 /* needed if last screen was the playing screen, invoked from level editor */
1395 if (level_editor_test_game)
1397 game_status = GAME_MODE_EDITOR;
1403 /* needed if last screen was the setup screen and fullscreen state changed */
1404 // (moved to "execSetupGraphics()" to change fullscreen state directly)
1405 // ToggleFullscreenOrChangeWindowScalingIfNeeded();
1407 /* leveldir_current may be invalid (level group, parent link) */
1408 if (!validLevelSeries(leveldir_current))
1409 leveldir_current = getFirstValidTreeInfoEntry(leveldir_last_valid);
1411 if (leveldir_current != leveldir_last_valid)
1412 levelset_has_changed = TRUE;
1414 /* store valid level series information */
1415 leveldir_last_valid = leveldir_current;
1417 init_last = init; /* switch to new busy animation */
1419 /* needed if last screen (level choice) changed graphics, sounds or music */
1420 ReloadCustomArtwork(0);
1422 /* needed if different viewport properties defined for menues */
1423 ChangeViewportPropertiesIfNeeded();
1425 if (redraw_mask & REDRAW_ALL)
1426 fade_mask = REDRAW_ALL;
1428 if (CheckIfGlobalBorderHasChanged())
1429 fade_mask = REDRAW_ALL;
1433 /* needed if last screen was the editor screen */
1434 UndrawSpecialEditorDoor();
1436 SetDrawtoField(DRAW_BACKBUFFER);
1438 if (CheckTitleScreen(levelset_has_changed))
1440 game_status_last_screen = GAME_MODE_MAIN;
1441 game_status = GAME_MODE_TITLE;
1448 /* level_nr may have been set to value over handicap with level editor */
1449 if (setup.handicap && level_nr > leveldir_current->handicap_level)
1450 level_nr = leveldir_current->handicap_level;
1452 LoadLevel(level_nr);
1453 LoadScore(level_nr);
1455 // set this after "ChangeViewportPropertiesIfNeeded()" (which may reset it)
1456 SetDrawDeactivationMask(REDRAW_NONE);
1457 SetDrawBackgroundMask(REDRAW_FIELD);
1459 SetMainBackgroundImage(IMG_BACKGROUND_MAIN);
1462 if (fade_mask == REDRAW_ALL)
1463 RedrawGlobalBorder();
1468 InitializeMainControls();
1470 DrawCursorAndText_Main(-1, FALSE, FALSE);
1471 DrawPreviewLevelInitial();
1473 HandleMainMenu(0, 0, 0, 0, MB_MENU_INITIALIZE);
1476 if (TAPE_IS_EMPTY(tape))
1478 DrawCompleteVideoDisplay();
1483 /* create gadgets for main menu screen */
1484 FreeScreenGadgets();
1485 CreateScreenGadgets();
1487 /* map gadgets for main menu screen */
1489 MapScreenMenuGadgets(SCREEN_MASK_MAIN);
1491 /* copy actual game door content to door double buffer for OpenDoor() */
1492 BlitBitmap(drawto, bitmap_db_door_1, DX, DY, DXSIZE, DYSIZE, 0, 0);
1493 BlitBitmap(drawto, bitmap_db_door_2, VX, VY, VXSIZE, VYSIZE, 0, 0);
1495 OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
1497 DrawMaskedBorder(fade_mask);
1502 /* update screen area with special editor door */
1503 redraw_mask |= REDRAW_ALL;
1506 SetMouseCursor(CURSOR_DEFAULT);
1510 OpenDoor(DOOR_CLOSE_1 | DOOR_OPEN_2);
1513 static void gotoTopLevelDir()
1515 /* move upwards until inside (but not above) top level directory */
1516 while (leveldir_current->node_parent &&
1517 !strEqual(leveldir_current->node_parent->subdir, STRING_TOP_DIRECTORY))
1519 /* write a "path" into level tree for easy navigation to last level */
1520 if (leveldir_current->node_parent->node_group->cl_first == -1)
1522 int num_leveldirs = numTreeInfoInGroup(leveldir_current);
1523 int leveldir_pos = posTreeInfo(leveldir_current);
1524 int num_page_entries;
1525 int cl_first, cl_cursor;
1527 if (num_leveldirs <= NUM_MENU_ENTRIES_ON_SCREEN)
1528 num_page_entries = num_leveldirs;
1530 num_page_entries = NUM_MENU_ENTRIES_ON_SCREEN;
1532 cl_first = MAX(0, leveldir_pos - num_page_entries + 1);
1533 cl_cursor = leveldir_pos - cl_first;
1535 leveldir_current->node_parent->node_group->cl_first = cl_first;
1536 leveldir_current->node_parent->node_group->cl_cursor = cl_cursor;
1539 leveldir_current = leveldir_current->node_parent;
1543 void HandleTitleScreen(int mx, int my, int dx, int dy, int button)
1545 static unsigned int title_delay = 0;
1546 static int title_screen_nr = 0;
1547 static int last_sound = -1, last_music = -1;
1548 boolean return_to_main_menu = FALSE;
1549 struct TitleControlInfo *tci;
1552 if (button == MB_MENU_INITIALIZE)
1555 title_screen_nr = 0;
1556 tci = &title_controls[title_screen_nr];
1558 last_sound = SND_UNDEFINED;
1559 last_music = MUS_UNDEFINED;
1561 if (num_title_screens != 0)
1563 FadeSetEnterScreen();
1565 /* use individual title fading instead of global "enter screen" fading */
1566 fading = getTitleFading(tci);
1569 if (game_status_last_screen == GAME_MODE_INFO)
1571 if (num_title_screens == 0)
1573 /* switch game mode from title screen mode back to info screen mode */
1574 game_status = GAME_MODE_INFO;
1576 DrawInfoScreen_NotAvailable("Title screen information:",
1577 "No title screen for this level set.");
1582 FadeSoundsAndMusic();
1584 FadeOut(REDRAW_ALL);
1587 /* only required to update logic for redrawing global border */
1590 /* title screens may have different window size */
1591 ChangeViewportPropertiesIfNeeded();
1594 DrawTitleScreenImage(tci->local_nr, tci->initial);
1596 DrawTitleScreenMessage(tci->local_nr, tci->initial);
1598 sound = getTitleSound(tci);
1599 music = getTitleMusic(tci);
1601 if (sound != last_sound)
1602 PlayMenuSoundExt(sound);
1603 if (music != last_music)
1604 PlayMenuMusicExt(music);
1609 SetMouseCursor(CURSOR_NONE);
1613 DelayReached(&title_delay, 0); /* reset delay counter */
1618 if (fading.auto_delay > 0 && DelayReached(&title_delay, fading.auto_delay))
1619 button = MB_MENU_CHOICE;
1621 if (button == MB_MENU_LEAVE)
1623 return_to_main_menu = TRUE;
1625 else if (button == MB_MENU_CHOICE)
1627 if (game_status_last_screen == GAME_MODE_INFO && num_title_screens == 0)
1629 game_status = GAME_MODE_INFO;
1630 info_mode = INFO_MODE_MAIN;
1638 tci = &title_controls[title_screen_nr];
1640 if (title_screen_nr < num_title_screens)
1642 sound = getTitleSound(tci);
1643 music = getTitleMusic(tci);
1645 if (sound == SND_UNDEFINED || sound != last_sound)
1647 if (music == MUS_UNDEFINED || music != last_music)
1650 fading = getTitleFading(tci);
1652 FadeOut(REDRAW_ALL);
1655 DrawTitleScreenImage(tci->local_nr, tci->initial);
1657 DrawTitleScreenMessage(tci->local_nr, tci->initial);
1659 sound = getTitleSound(tci);
1660 music = getTitleMusic(tci);
1662 if (sound != last_sound)
1663 PlayMenuSoundExt(sound);
1664 if (music != last_music)
1665 PlayMenuMusicExt(music);
1672 DelayReached(&title_delay, 0); /* reset delay counter */
1676 FadeSoundsAndMusic();
1678 return_to_main_menu = TRUE;
1682 if (return_to_main_menu)
1684 SetMouseCursor(CURSOR_DEFAULT);
1686 /* force full menu screen redraw after displaying title screens */
1687 redraw_mask = REDRAW_ALL;
1689 if (game_status_last_screen == GAME_MODE_INFO)
1691 game_status = GAME_MODE_INFO;
1692 info_mode = INFO_MODE_MAIN;
1696 else /* default: return to main menu */
1698 game_status = GAME_MODE_MAIN;
1705 void HandleMainMenu_SelectLevel(int step, int direction, int selected_level_nr)
1707 int old_level_nr = level_nr;
1710 if (selected_level_nr != NO_DIRECT_LEVEL_SELECT)
1711 new_level_nr = selected_level_nr;
1713 new_level_nr = old_level_nr + step * direction;
1715 if (new_level_nr < leveldir_current->first_level)
1716 new_level_nr = leveldir_current->first_level;
1717 if (new_level_nr > leveldir_current->last_level)
1718 new_level_nr = leveldir_current->last_level;
1720 if (setup.handicap && new_level_nr > leveldir_current->handicap_level)
1722 /* skipping levels is only allowed when trying to skip single level */
1723 if (setup.skip_levels && new_level_nr == old_level_nr + 1 &&
1724 Request("Level still unsolved! Skip despite handicap?", REQ_ASK))
1726 leveldir_current->handicap_level++;
1727 SaveLevelSetup_SeriesInfo();
1730 new_level_nr = leveldir_current->handicap_level;
1733 if (new_level_nr != old_level_nr)
1735 struct MainControlInfo *mci= getMainControlInfo(MAIN_CONTROL_LEVEL_NUMBER);
1737 PlaySound(SND_MENU_ITEM_SELECTING);
1739 level_nr = new_level_nr;
1741 DrawText(mSX + mci->pos_text->x, mSY + mci->pos_text->y,
1742 int2str(level_nr, menu.main.text.level_number.size),
1743 mci->pos_text->font);
1745 LoadLevel(level_nr);
1746 DrawPreviewLevelInitial();
1750 DrawCompleteVideoDisplay();
1752 /* needed because DrawPreviewLevelInitial() takes some time */
1754 /* SyncDisplay(); */
1758 void HandleMainMenu(int mx, int my, int dx, int dy, int button)
1760 static int choice = MAIN_CONTROL_GAME;
1761 static boolean button_pressed_last = FALSE;
1762 boolean button_pressed = FALSE;
1766 if (button == MB_MENU_INITIALIZE)
1768 DrawCursorAndText_Main(choice, TRUE, FALSE);
1773 if (mx || my) /* mouse input */
1777 for (i = 0; main_controls[i].nr != -1; i++)
1779 if (insideMenuPosRect(main_controls[i].pos_button, mx - mSX, my - mSY) ||
1780 insideTextPosRect(main_controls[i].pos_text, mx - mSX, my - mSY) ||
1781 insideTextPosRect(main_controls[i].pos_input, mx - mSX, my - mSY))
1783 pos = main_controls[i].nr;
1789 // handle pressed/unpressed state for active/inactive menu buttons
1790 // (if pos != -1, "i" contains index position corresponding to "pos")
1792 pos >= MAIN_CONTROL_NAME && pos <= MAIN_CONTROL_QUIT &&
1793 insideMenuPosRect(main_controls[i].pos_button, mx - mSX, my - mSY))
1794 button_pressed = TRUE;
1796 if (button_pressed != button_pressed_last)
1798 DrawCursorAndText_Main(choice, TRUE, button_pressed);
1801 PlaySound(SND_MENU_BUTTON_PRESSING);
1803 PlaySound(SND_MENU_BUTTON_RELEASING);
1806 else if (dx || dy) /* keyboard input */
1808 if (dx > 0 && (choice == MAIN_CONTROL_INFO ||
1809 choice == MAIN_CONTROL_SETUP))
1810 button = MB_MENU_CHOICE;
1815 if (pos == MAIN_CONTROL_LEVELS && dx != 0 && button)
1817 HandleMainMenu_SelectLevel(1, (dx < 0 ? -1 : +1), NO_DIRECT_LEVEL_SELECT);
1819 else if (pos == MAIN_CONTROL_FIRST_LEVEL && !button)
1821 HandleMainMenu_SelectLevel(MAX_LEVELS, -1, NO_DIRECT_LEVEL_SELECT);
1823 else if (pos == MAIN_CONTROL_LAST_LEVEL && !button)
1825 HandleMainMenu_SelectLevel(MAX_LEVELS, +1, NO_DIRECT_LEVEL_SELECT);
1827 else if (pos == MAIN_CONTROL_LEVEL_NUMBER && !button)
1831 CloseDoor(DOOR_CLOSE_2);
1833 game_status = GAME_MODE_LEVELNR;
1835 ChangeViewportPropertiesIfNeeded();
1837 DrawChooseLevelNr();
1839 else if (pos >= MAIN_CONTROL_NAME && pos <= MAIN_CONTROL_QUIT)
1845 PlaySound(SND_MENU_ITEM_ACTIVATING);
1847 DrawCursorAndText_Main(choice, FALSE, FALSE);
1848 DrawCursorAndText_Main(pos, TRUE, button_pressed);
1855 PlaySound(SND_MENU_ITEM_SELECTING);
1857 if (pos == MAIN_CONTROL_NAME)
1859 game_status = GAME_MODE_PSEUDO_TYPENAME;
1861 HandleTypeName(strlen(setup.player_name), 0);
1863 else if (pos == MAIN_CONTROL_LEVELS)
1869 CloseDoor(DOOR_CLOSE_2);
1871 game_status = GAME_MODE_LEVELS;
1873 SaveLevelSetup_LastSeries();
1874 SaveLevelSetup_SeriesInfo();
1876 if (setup.internal.choose_from_top_leveldir)
1879 ChangeViewportPropertiesIfNeeded();
1881 DrawChooseLevelSet();
1884 else if (pos == MAIN_CONTROL_SCORES)
1888 CloseDoor(DOOR_CLOSE_2);
1890 game_status = GAME_MODE_SCORES;
1894 else if (pos == MAIN_CONTROL_EDITOR)
1896 if (leveldir_current->readonly &&
1897 !strEqual(setup.player_name, "Artsoft"))
1898 Request("This level is read only!", REQ_CONFIRM);
1902 CloseDoor(DOOR_CLOSE_2);
1904 game_status = GAME_MODE_EDITOR;
1906 FadeSetEnterScreen();
1910 else if (pos == MAIN_CONTROL_INFO)
1914 CloseDoor(DOOR_CLOSE_2);
1916 game_status = GAME_MODE_INFO;
1917 info_mode = INFO_MODE_MAIN;
1919 ChangeViewportPropertiesIfNeeded();
1923 else if (pos == MAIN_CONTROL_GAME)
1927 StartGameActions(options.network, setup.autorecord, level.random_seed);
1929 else if (pos == MAIN_CONTROL_SETUP)
1933 CloseDoor(DOOR_CLOSE_2);
1935 game_status = GAME_MODE_SETUP;
1936 setup_mode = SETUP_MODE_MAIN;
1938 ChangeViewportPropertiesIfNeeded();
1942 else if (pos == MAIN_CONTROL_QUIT)
1944 SaveLevelSetup_LastSeries();
1945 SaveLevelSetup_SeriesInfo();
1947 if (Request("Do you really want to quit?", REQ_ASK | REQ_STAY_CLOSED))
1948 game_status = GAME_MODE_QUIT;
1953 button_pressed_last = button_pressed;
1957 /* ========================================================================= */
1958 /* info screen functions */
1959 /* ========================================================================= */
1961 static struct TokenInfo *info_info;
1962 static int num_info_info; /* number of info entries shown on screen */
1963 static int max_info_info; /* total number of info entries in list */
1965 static void execInfoTitleScreen()
1967 info_mode = INFO_MODE_TITLE;
1972 static void execInfoElements()
1974 info_mode = INFO_MODE_ELEMENTS;
1979 static void execInfoMusic()
1981 info_mode = INFO_MODE_MUSIC;
1986 static void execInfoCredits()
1988 info_mode = INFO_MODE_CREDITS;
1993 static void execInfoProgram()
1995 info_mode = INFO_MODE_PROGRAM;
2000 static void execInfoVersion()
2002 info_mode = INFO_MODE_VERSION;
2007 static void execInfoLevelSet()
2009 info_mode = INFO_MODE_LEVELSET;
2014 static void execExitInfo()
2016 game_status = GAME_MODE_MAIN;
2021 static struct TokenInfo info_info_main[] =
2023 { TYPE_ENTER_SCREEN, execInfoTitleScreen, "Title Screen" },
2024 { TYPE_ENTER_SCREEN, execInfoElements, "Elements Info" },
2025 { TYPE_ENTER_SCREEN, execInfoMusic, "Music Info" },
2026 { TYPE_ENTER_SCREEN, execInfoCredits, "Credits" },
2027 { TYPE_ENTER_SCREEN, execInfoProgram, "Program Info" },
2028 { TYPE_ENTER_SCREEN, execInfoVersion, "Version Info" },
2029 { TYPE_ENTER_SCREEN, execInfoLevelSet, "Level Set Info" },
2030 { TYPE_EMPTY, NULL, "" },
2031 { TYPE_LEAVE_MENU, execExitInfo, "Exit" },
2036 static int getMenuTextFont(int type)
2038 if (type & (TYPE_SWITCH |
2050 static struct TokenInfo *setup_info;
2051 static struct TokenInfo setup_info_input[];
2053 static struct TokenInfo *menu_info;
2055 static void DrawCursorAndText_Menu_Ext(struct TokenInfo *token_info,
2056 int screen_pos, int menu_info_pos_raw,
2059 int pos = (menu_info_pos_raw < 0 ? screen_pos : menu_info_pos_raw);
2060 struct TokenInfo *ti = &token_info[pos];
2061 int xpos = MENU_SCREEN_START_XPOS;
2062 int ypos = MENU_SCREEN_START_YPOS + screen_pos;
2063 int font_nr = getMenuTextFont(ti->type);
2065 if (token_info == setup_info_input)
2066 font_nr = FONT_MENU_1;
2069 font_nr = FONT_ACTIVE(font_nr);
2071 DrawText(mSX + xpos * 32, mSY + ypos * 32, ti->text, font_nr);
2073 if (ti->type & ~TYPE_SKIP_ENTRY)
2074 drawCursor(screen_pos, active);
2077 static void DrawCursorAndText_Menu(int screen_pos, int menu_info_pos_raw,
2080 DrawCursorAndText_Menu_Ext(menu_info, screen_pos, menu_info_pos_raw, active);
2083 static void DrawCursorAndText_Setup(int screen_pos, int menu_info_pos_raw,
2086 DrawCursorAndText_Menu_Ext(setup_info, screen_pos, menu_info_pos_raw, active);
2089 static char *screen_mode_text;
2090 static char *window_size_text;
2091 static char *scaling_type_text;
2093 static void drawSetupValue(int, int);
2095 static void drawMenuInfoList(int first_entry, int num_page_entries,
2096 int max_page_entries)
2100 if (first_entry + num_page_entries > max_page_entries)
2103 clearMenuListArea();
2105 for (i = 0; i < num_page_entries; i++)
2107 int menu_info_pos = first_entry + i;
2108 struct TokenInfo *si = &menu_info[menu_info_pos];
2109 void *value_ptr = si->value;
2111 /* set some entries to "unchangeable" according to other variables */
2112 if ((value_ptr == &setup.sound_simple && !audio.sound_available) ||
2113 (value_ptr == &setup.sound_loops && !audio.loops_available) ||
2114 (value_ptr == &setup.sound_music && !audio.music_available) ||
2115 (value_ptr == &setup.fullscreen && !video.fullscreen_available) ||
2116 (value_ptr == &screen_mode_text && !video.fullscreen_available) ||
2117 (value_ptr == &window_size_text && !video.window_scaling_available) ||
2118 (value_ptr == &scaling_type_text && !video.window_scaling_available))
2119 si->type |= TYPE_GHOSTED;
2121 if (si->type & (TYPE_ENTER_MENU|TYPE_ENTER_LIST))
2122 initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
2123 else if (si->type & (TYPE_LEAVE_MENU|TYPE_LEAVE_LIST))
2124 initCursor(i, IMG_MENU_BUTTON_LEAVE_MENU);
2125 else if (si->type & ~TYPE_SKIP_ENTRY)
2126 initCursor(i, IMG_MENU_BUTTON);
2128 DrawCursorAndText_Menu(i, menu_info_pos, FALSE);
2130 if (si->type & TYPE_VALUE &&
2131 menu_info == setup_info)
2132 drawSetupValue(i, menu_info_pos);
2136 static void DrawInfoScreen_Main()
2138 int fade_mask = REDRAW_FIELD;
2141 if (redraw_mask & REDRAW_ALL)
2142 fade_mask = REDRAW_ALL;
2144 if (CheckIfGlobalBorderHasChanged())
2145 fade_mask = REDRAW_ALL;
2149 FreeScreenGadgets();
2150 CreateScreenGadgets();
2152 CloseDoor(DOOR_CLOSE_2);
2154 /* (needed after displaying title screens which disable auto repeat) */
2155 KeyboardAutoRepeatOn();
2157 FadeSetLeaveScreen();
2161 ChangeViewportPropertiesIfNeeded();
2163 OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
2167 DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Info Screen");
2169 info_info = info_info_main;
2171 // determine maximal number of info entries that can be displayed on screen
2173 for (i = 0; info_info[i].type != 0 && i < NUM_MENU_ENTRIES_ON_SCREEN; i++)
2176 // determine maximal number of info entries available for menu of info screen
2178 for (i = 0; info_info[i].type != 0; i++)
2181 HandleInfoScreen_Main(0, 0, 0, 0, MB_MENU_INITIALIZE);
2183 MapScreenGadgets(max_info_info);
2189 // needed after returning from title screens with different window size
2190 OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
2193 DrawMaskedBorder(fade_mask);
2200 static void changeSetupValue(int, int, int);
2202 void HandleMenuScreen(int mx, int my, int dx, int dy, int button,
2203 int mode, int num_page_entries, int max_page_entries)
2205 static int num_page_entries_all_last[NUM_SPECIAL_GFX_ARGS][MAX_MENU_MODES];
2206 static int choice_stores[NUM_SPECIAL_GFX_ARGS][MAX_MENU_MODES];
2207 static int first_entry_stores[NUM_SPECIAL_GFX_ARGS][MAX_MENU_MODES];
2208 int *num_page_entries_last = num_page_entries_all_last[game_status];
2209 int *choice_store = choice_stores[game_status];
2210 int *first_entry_store = first_entry_stores[game_status];
2211 int choice = choice_store[mode]; /* starts with 0 */
2212 int first_entry = first_entry_store[mode]; /* starts with 0 */
2214 int y = choice - first_entry;
2216 boolean position_set_by_scrollbar = (dx == 999);
2217 int step = (button == 1 ? 1 : button == 2 ? 5 : 10);
2220 if (button == MB_MENU_INITIALIZE)
2222 // check if number of menu page entries has changed (may happen by change
2223 // of custom artwork definition value for 'list_size' for this menu screen)
2224 // (in this case, the last menu position most probably has to be corrected)
2225 if (num_page_entries != num_page_entries_last[mode])
2227 choice_store[mode] = first_entry_store[mode] = 0;
2229 choice = first_entry = 0;
2232 num_page_entries_last[mode] = num_page_entries;
2235 /* advance to first valid menu entry */
2236 while (choice < num_page_entries &&
2237 menu_info[choice].type & TYPE_SKIP_ENTRY)
2240 if (position_set_by_scrollbar)
2241 first_entry = first_entry_store[mode] = dy;
2243 AdjustScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL, max_page_entries,
2244 NUM_MENU_ENTRIES_ON_SCREEN, first_entry);
2246 drawMenuInfoList(first_entry, num_page_entries, max_page_entries);
2248 if (choice < first_entry)
2250 choice = first_entry;
2252 if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2255 else if (choice > first_entry + num_page_entries - 1)
2257 choice = first_entry + num_page_entries - 1;
2259 if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2263 choice_store[mode] = choice;
2265 DrawCursorAndText_Menu(choice - first_entry, choice, TRUE);
2269 else if (button == MB_MENU_LEAVE)
2271 PlaySound(SND_MENU_ITEM_SELECTING);
2273 for (i = 0; i < max_page_entries; i++)
2275 if (menu_info[i].type & TYPE_LEAVE_MENU)
2277 void (*menu_callback_function)(void) = menu_info[i].value;
2281 menu_callback_function();
2283 break; /* absolutely needed because function changes 'menu_info'! */
2290 if (mx || my) /* mouse input */
2292 x = (mx - mSX) / 32;
2293 y = (my - mSY) / 32 - MENU_SCREEN_START_YPOS;
2295 else if (dx || dy) /* keyboard or scrollbar/scrollbutton input */
2297 /* move cursor instead of scrolling when already at start/end of list */
2298 if (dy == -1 * SCROLL_LINE && first_entry == 0)
2300 else if (dy == +1 * SCROLL_LINE &&
2301 first_entry + num_page_entries == max_page_entries)
2304 /* handle scrolling screen one line or page */
2306 y + dy > num_page_entries - 1)
2308 boolean redraw = FALSE;
2310 if (ABS(dy) == SCROLL_PAGE)
2311 step = num_page_entries - 1;
2313 if (dy < 0 && first_entry > 0)
2315 /* scroll page/line up */
2317 first_entry -= step;
2318 if (first_entry < 0)
2323 else if (dy > 0 && first_entry + num_page_entries < max_page_entries)
2325 /* scroll page/line down */
2327 first_entry += step;
2328 if (first_entry + num_page_entries > max_page_entries)
2329 first_entry = MAX(0, max_page_entries - num_page_entries);
2336 choice += first_entry - first_entry_store[mode];
2338 if (choice < first_entry)
2340 choice = first_entry;
2342 if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2345 else if (choice > first_entry + num_page_entries - 1)
2347 choice = first_entry + num_page_entries - 1;
2349 if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2352 else if (menu_info[choice].type & TYPE_SKIP_ENTRY)
2356 if (choice < first_entry ||
2357 choice > first_entry + num_page_entries - 1)
2358 first_entry += SIGN(dy);
2361 first_entry_store[mode] = first_entry;
2362 choice_store[mode] = choice;
2364 drawMenuInfoList(first_entry, num_page_entries, max_page_entries);
2366 DrawCursorAndText_Menu(choice - first_entry, choice, TRUE);
2368 AdjustScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL, max_page_entries,
2369 NUM_MENU_ENTRIES_ON_SCREEN, first_entry);
2377 int menu_navigation_type = (dx < 0 ? TYPE_LEAVE : TYPE_ENTER);
2379 if (menu_info[choice].type & menu_navigation_type ||
2380 menu_info[choice].type & TYPE_BOOLEAN_STYLE ||
2381 menu_info[choice].type & TYPE_YES_NO_AUTO)
2382 button = MB_MENU_CHOICE;
2387 /* jump to next non-empty menu entry (up or down) */
2388 while (first_entry + y > 0 &&
2389 first_entry + y < max_page_entries - 1 &&
2390 menu_info[first_entry + y].type & TYPE_SKIP_ENTRY)
2393 if (!IN_VIS_MENU(x, y))
2395 choice += y - y_old;
2397 if (choice < first_entry)
2398 first_entry = choice;
2399 else if (choice > first_entry + num_page_entries - 1)
2400 first_entry = choice - num_page_entries + 1;
2402 if (first_entry >= 0 &&
2403 first_entry + num_page_entries <= max_page_entries)
2405 first_entry_store[mode] = first_entry;
2407 if (choice < first_entry)
2408 choice = first_entry;
2409 else if (choice > first_entry + num_page_entries - 1)
2410 choice = first_entry + num_page_entries - 1;
2412 choice_store[mode] = choice;
2414 drawMenuInfoList(first_entry, num_page_entries, max_page_entries);
2416 DrawCursorAndText_Menu(choice - first_entry, choice, TRUE);
2418 AdjustScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL, max_page_entries,
2419 NUM_MENU_ENTRIES_ON_SCREEN, first_entry);
2426 if (!anyScrollbarGadgetActive() &&
2427 IN_VIS_MENU(x, y) &&
2428 mx < screen_gadget[SCREEN_CTRL_ID_SCROLL_VERTICAL]->x &&
2429 y >= 0 && y < num_page_entries)
2433 if (first_entry + y != choice &&
2434 menu_info[first_entry + y].type & ~TYPE_SKIP_ENTRY)
2436 PlaySound(SND_MENU_ITEM_ACTIVATING);
2438 DrawCursorAndText_Menu(choice - first_entry, choice, FALSE);
2439 DrawCursorAndText_Menu(y, first_entry + y, TRUE);
2441 choice = choice_store[mode] = first_entry + y;
2444 else if (!(menu_info[first_entry + y].type & TYPE_GHOSTED))
2446 PlaySound(SND_MENU_ITEM_SELECTING);
2448 /* when selecting key headline, execute function for key value change */
2449 if (menu_info[first_entry + y].type & TYPE_KEYTEXT &&
2450 menu_info[first_entry + y + 1].type & TYPE_KEY)
2453 /* when selecting string value, execute function for list selection */
2454 if (menu_info[first_entry + y].type & TYPE_STRING && y > 0 &&
2455 menu_info[first_entry + y - 1].type & TYPE_ENTER_LIST)
2458 if (menu_info[first_entry + y].type & TYPE_ENTER_OR_LEAVE)
2460 void (*menu_callback_function)(void) =
2461 menu_info[first_entry + y].value;
2463 FadeSetFromType(menu_info[first_entry + y].type);
2465 menu_callback_function();
2467 else if (menu_info[first_entry + y].type & TYPE_VALUE &&
2468 menu_info == setup_info)
2470 changeSetupValue(y, first_entry + y, dx);
2476 void HandleInfoScreen_Main(int mx, int my, int dx, int dy, int button)
2478 menu_info = info_info;
2480 HandleMenuScreen(mx, my, dx, dy, button,
2481 info_mode, num_info_info, max_info_info);
2484 void DrawInfoScreen_NotAvailable(char *text_title, char *text_error)
2486 int ystart1 = mSY - SY + 100;
2487 int ystart2 = mSY - SY + 150;
2488 int ybottom = mSY - SY + SYSIZE - 20;
2490 SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO);
2492 FadeOut(REDRAW_FIELD);
2497 DrawTextSCentered(ystart1, FONT_TEXT_1, text_title);
2498 DrawTextSCentered(ystart2, FONT_TEXT_2, text_error);
2500 DrawTextSCentered(ybottom, FONT_TEXT_4,
2501 "Press any key or button for info menu");
2503 FadeIn(REDRAW_FIELD);
2506 void DrawInfoScreen_HelpAnim(int start, int max_anims, boolean init)
2508 static int infoscreen_step[MAX_INFO_ELEMENTS_ON_SCREEN];
2509 static int infoscreen_frame[MAX_INFO_ELEMENTS_ON_SCREEN];
2510 int xstart = mSX + MENU_SCREEN_INFO_XSTART;
2511 int ystart1 = mSY - SY + MENU_SCREEN_INFO_YSTART1;
2512 int ystart2 = mSY + MENU_SCREEN_INFO_YSTART2;
2513 int ybottom = mSY - SY + MENU_SCREEN_INFO_YBOTTOM;
2514 int ystep = MENU_SCREEN_INFO_YSTEP;
2515 int element, action, direction;
2523 for (i = 0; i < NUM_INFO_ELEMENTS_ON_SCREEN; i++)
2524 infoscreen_step[i] = infoscreen_frame[i] = 0;
2529 DrawTextSCentered(ystart1, FONT_TEXT_1, "The Game Elements:");
2531 DrawTextSCentered(ybottom, FONT_TEXT_4,
2532 "Press any key or button for next page");
2538 while (helpanim_info[j].element != HELPANIM_LIST_END)
2540 if (i >= start + NUM_INFO_ELEMENTS_ON_SCREEN ||
2545 while (helpanim_info[j].element != HELPANIM_LIST_NEXT)
2554 j += infoscreen_step[i - start];
2556 element = helpanim_info[j].element;
2557 action = helpanim_info[j].action;
2558 direction = helpanim_info[j].direction;
2561 element = EL_UNKNOWN;
2563 if (action != -1 && direction != -1)
2564 graphic = el_act_dir2img(element, action, direction);
2565 else if (action != -1)
2566 graphic = el_act2img(element, action);
2567 else if (direction != -1)
2568 graphic = el_dir2img(element, direction);
2570 graphic = el2img(element);
2572 delay = helpanim_info[j++].delay;
2577 if (infoscreen_frame[i - start] == 0)
2580 infoscreen_frame[i - start] = delay - 1;
2584 sync_frame = delay - infoscreen_frame[i - start];
2585 infoscreen_frame[i - start]--;
2588 if (helpanim_info[j].element == HELPANIM_LIST_NEXT)
2590 if (!infoscreen_frame[i - start])
2591 infoscreen_step[i - start] = 0;
2595 if (!infoscreen_frame[i - start])
2596 infoscreen_step[i - start]++;
2597 while (helpanim_info[j].element != HELPANIM_LIST_NEXT)
2603 ClearRectangleOnBackground(drawto, xstart, ystart2 + (i - start) * ystep,
2605 DrawFixedGraphicAnimationExt(drawto, xstart, ystart2 + (i - start) * ystep,
2606 graphic, sync_frame, USE_MASKING);
2609 DrawInfoScreen_HelpText(element, action, direction, i - start);
2614 redraw_mask |= REDRAW_FIELD;
2619 static char *getHelpText(int element, int action, int direction)
2621 char token[MAX_LINE_LEN];
2623 strcpy(token, element_info[element].token_name);
2626 strcat(token, element_action_info[action].suffix);
2628 if (direction != -1)
2629 strcat(token, element_direction_info[MV_DIR_TO_BIT(direction)].suffix);
2631 return getHashEntry(helptext_info, token);
2634 void DrawInfoScreen_HelpText(int element, int action, int direction, int ypos)
2636 int font_nr = FONT_INFO_ELEMENTS;
2637 int font_width = getFontWidth(font_nr);
2638 int sx = mSX + MINI_TILEX + TILEX + MINI_TILEX;
2639 int sy = mSY + 65 + 2 * 32 + 1;
2640 int ystep = TILEY + 4;
2641 int pad_x = sx - SX;
2642 int max_chars_per_line = (SXSIZE - pad_x - MINI_TILEX) / font_width;
2643 int max_lines_per_text = 2;
2646 if (action != -1 && direction != -1) /* element.action.direction */
2647 text = getHelpText(element, action, direction);
2649 if (text == NULL && action != -1) /* element.action */
2650 text = getHelpText(element, action, -1);
2652 if (text == NULL && direction != -1) /* element.direction */
2653 text = getHelpText(element, -1, direction);
2655 if (text == NULL) /* base element */
2656 text = getHelpText(element, -1, -1);
2658 if (text == NULL) /* not found */
2659 text = "No description available";
2661 if (strlen(text) <= max_chars_per_line) /* only one line of text */
2662 sy += getFontHeight(font_nr) / 2;
2664 DrawTextBuffer(sx, sy + ypos * ystep, text, font_nr,
2665 max_chars_per_line, -1, max_lines_per_text, 0, -1,
2666 TRUE, FALSE, FALSE);
2669 void DrawInfoScreen_TitleScreen()
2671 game_status_last_screen = GAME_MODE_INFO;
2672 game_status = GAME_MODE_TITLE;
2677 void HandleInfoScreen_TitleScreen(int button)
2679 HandleTitleScreen(0, 0, 0, 0, button);
2682 void DrawInfoScreen_Elements()
2684 SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_ELEMENTS);
2686 FadeOut(REDRAW_FIELD);
2691 HandleInfoScreen_Elements(MB_MENU_INITIALIZE);
2693 FadeIn(REDRAW_FIELD);
2698 void HandleInfoScreen_Elements(int button)
2700 static unsigned int info_delay = 0;
2701 static int num_anims;
2702 static int num_pages;
2704 int anims_per_page = NUM_INFO_ELEMENTS_ON_SCREEN;
2707 if (button == MB_MENU_INITIALIZE)
2709 boolean new_element = TRUE;
2713 for (i = 0; helpanim_info[i].element != HELPANIM_LIST_END; i++)
2715 if (helpanim_info[i].element == HELPANIM_LIST_NEXT)
2717 else if (new_element)
2720 new_element = FALSE;
2724 num_pages = (num_anims + anims_per_page - 1) / anims_per_page;
2728 if (button == MB_MENU_LEAVE)
2730 PlaySound(SND_MENU_ITEM_SELECTING);
2732 info_mode = INFO_MODE_MAIN;
2737 else if (button == MB_MENU_CHOICE || button == MB_MENU_INITIALIZE)
2739 if (button != MB_MENU_INITIALIZE)
2741 PlaySound(SND_MENU_ITEM_SELECTING);
2746 if (page >= num_pages)
2748 FadeSoundsAndMusic();
2750 info_mode = INFO_MODE_MAIN;
2757 FadeSetNextScreen();
2759 if (button != MB_MENU_INITIALIZE)
2760 FadeOut(REDRAW_FIELD);
2762 DrawInfoScreen_HelpAnim(page * anims_per_page, num_anims, TRUE);
2764 if (button != MB_MENU_INITIALIZE)
2765 FadeIn(REDRAW_FIELD);
2769 if (DelayReached(&info_delay, GameFrameDelay))
2770 if (page < num_pages)
2771 DrawInfoScreen_HelpAnim(page * anims_per_page, num_anims, FALSE);
2773 PlayMenuSoundIfLoop();
2777 void DrawInfoScreen_Music()
2779 SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_MUSIC);
2781 FadeOut(REDRAW_FIELD);
2788 HandleInfoScreen_Music(MB_MENU_INITIALIZE);
2790 FadeIn(REDRAW_FIELD);
2793 void HandleInfoScreen_Music(int button)
2795 static struct MusicFileInfo *list = NULL;
2796 int ystart1 = mSY - SY + 100;
2797 int ystart2 = mSY - SY + 150;
2798 int ybottom = mSY - SY + SYSIZE - 20;
2801 if (button == MB_MENU_INITIALIZE)
2803 list = music_file_info;
2807 FadeSoundsAndMusic();
2812 DrawTextSCentered(ystart1, FONT_TEXT_1,
2813 "No music info for this level set.");
2815 DrawTextSCentered(ybottom, FONT_TEXT_4,
2816 "Press any key or button for info menu");
2822 if (button == MB_MENU_LEAVE)
2824 PlaySound(SND_MENU_ITEM_SELECTING);
2826 FadeSoundsAndMusic();
2828 info_mode = INFO_MODE_MAIN;
2833 else if (button == MB_MENU_CHOICE || button == MB_MENU_INITIALIZE)
2837 if (button != MB_MENU_INITIALIZE)
2839 PlaySound(SND_MENU_ITEM_SELECTING);
2847 FadeSoundsAndMusic();
2849 info_mode = INFO_MODE_MAIN;
2855 FadeSoundsAndMusic();
2857 if (list != music_file_info)
2858 FadeSetNextScreen();
2860 if (button != MB_MENU_INITIALIZE)
2861 FadeOut(REDRAW_FIELD);
2868 int sound = list->music;
2870 if (sound_info[sound].loop)
2871 PlaySoundLoop(sound);
2875 DrawTextSCentered(ystart1, FONT_TEXT_1, "The Game Background Sounds:");
2879 PlayMusic(list->music);
2881 DrawTextSCentered(ystart1, FONT_TEXT_1, "The Game Background Music:");
2884 if (!strEqual(list->title, UNKNOWN_NAME))
2886 if (!strEqual(list->title_header, UNKNOWN_NAME))
2887 DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, list->title_header);
2889 DrawTextFCentered(ystart2 + y++ * dy, FONT_TEXT_3, "\"%s\"", list->title);
2892 if (!strEqual(list->artist, UNKNOWN_NAME))
2894 if (!strEqual(list->artist_header, UNKNOWN_NAME))
2895 DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, list->artist_header);
2897 DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, "by");
2899 DrawTextFCentered(ystart2 + y++ * dy, FONT_TEXT_3, "%s", list->artist);
2902 if (!strEqual(list->album, UNKNOWN_NAME))
2904 if (!strEqual(list->album_header, UNKNOWN_NAME))
2905 DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, list->album_header);
2907 DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, "from the album");
2909 DrawTextFCentered(ystart2 + y++ * dy, FONT_TEXT_3, "\"%s\"", list->album);
2912 if (!strEqual(list->year, UNKNOWN_NAME))
2914 if (!strEqual(list->year_header, UNKNOWN_NAME))
2915 DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, list->year_header);
2917 DrawTextSCentered(ystart2 + y++ * dy, FONT_TEXT_2, "from the year");
2919 DrawTextFCentered(ystart2 + y++ * dy, FONT_TEXT_3, "%s", list->year);
2922 DrawTextSCentered(ybottom, FONT_TEXT_4,
2923 "Press any key or button for next page");
2925 if (button != MB_MENU_INITIALIZE)
2926 FadeIn(REDRAW_FIELD);
2929 if (list != NULL && list->is_sound && sound_info[list->music].loop)
2930 PlaySoundLoop(list->music);
2933 static void DrawInfoScreen_CreditsScreen(int screen_nr)
2935 int ystart1 = mSY - SY + 100;
2936 int ystart2 = mSY - SY + 150;
2937 int ybottom = mSY - SY + SYSIZE - 20;
2943 DrawTextSCentered(ystart1, FONT_TEXT_1, "Credits:");
2947 DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
2948 "Special thanks to");
2949 DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
2951 DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
2953 DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
2954 "\"Boulder Dash\"");
2955 DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_2,
2957 DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_3,
2959 DrawTextSCentered(ystart2 + 6 * ystep, FONT_TEXT_2,
2961 DrawTextSCentered(ystart2 + 7 * ystep, FONT_TEXT_3,
2962 "First Star Software");
2964 else if (screen_nr == 1)
2966 DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
2967 "Special thanks to");
2968 DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
2969 "Klaus Heinz & Volker Wertich");
2970 DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
2972 DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
2973 "\"Emerald Mine\"");
2974 DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_2,
2976 DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_3,
2978 DrawTextSCentered(ystart2 + 6 * ystep, FONT_TEXT_2,
2980 DrawTextSCentered(ystart2 + 7 * ystep, FONT_TEXT_3,
2983 else if (screen_nr == 2)
2985 DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
2986 "Special thanks to");
2987 DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
2988 "Michael Stopp & Philip Jespersen");
2989 DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
2991 DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
2993 DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_2,
2995 DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_3,
2997 DrawTextSCentered(ystart2 + 6 * ystep, FONT_TEXT_2,
2999 DrawTextSCentered(ystart2 + 7 * ystep, FONT_TEXT_3,
3000 "Digital Integration");
3002 else if (screen_nr == 3)
3004 DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
3005 "Special thanks to");
3006 DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
3007 "Hiroyuki Imabayashi");
3008 DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
3010 DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
3012 DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_2,
3014 DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_3,
3016 DrawTextSCentered(ystart2 + 6 * ystep, FONT_TEXT_2,
3018 DrawTextSCentered(ystart2 + 7 * ystep, FONT_TEXT_3,
3021 else if (screen_nr == 4)
3023 DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
3024 "Special thanks to");
3025 DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
3027 DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
3029 DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
3030 "J\xfcrgen Bonhagen");
3031 DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_2,
3032 "for the continuous creation");
3033 DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_2,
3034 "of outstanding level sets");
3036 else if (screen_nr == 5)
3038 DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
3040 DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
3042 DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
3043 "for ideas and inspiration by");
3044 DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
3047 DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_2,
3049 DrawTextSCentered(ystart2 + 6 * ystep, FONT_TEXT_3,
3051 DrawTextSCentered(ystart2 + 7 * ystep, FONT_TEXT_2,
3052 "for ideas and inspiration by");
3053 DrawTextSCentered(ystart2 + 8 * ystep, FONT_TEXT_3,
3056 else if (screen_nr == 6)
3058 DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
3060 DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
3063 DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
3064 "for the code base used for the");
3065 DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_2,
3066 "native Emerald Mine engine");
3068 DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
3069 "for the new Emerald Mine engine");
3072 else if (screen_nr == 7)
3074 DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
3076 DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_3,
3078 DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_2,
3079 "for the initial DOS port");
3081 DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_2,
3083 DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_3,
3085 DrawTextSCentered(ystart2 + 6 * ystep, FONT_TEXT_2,
3086 "for some additional toons");
3088 else if (screen_nr == 8)
3090 DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
3091 "And not to forget:");
3092 DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_2,
3094 DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_3,
3095 "All those who contributed");
3096 DrawTextSCentered(ystart2 + 3 * ystep, FONT_TEXT_3,
3097 "levels to this game");
3098 DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_3,
3102 DrawTextSCentered(ybottom, FONT_TEXT_4,
3103 "Press any key or button for next page");
3106 void DrawInfoScreen_Credits()
3108 SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_CREDITS);
3110 FadeSoundsAndMusic();
3112 FadeOut(REDRAW_FIELD);
3114 HandleInfoScreen_Credits(MB_MENU_INITIALIZE);
3116 FadeIn(REDRAW_FIELD);
3119 void HandleInfoScreen_Credits(int button)
3121 static int screen_nr = 0;
3122 int num_screens = 9;
3124 if (button == MB_MENU_INITIALIZE)
3128 // DrawInfoScreen_CreditsScreen(screen_nr);
3131 if (button == MB_MENU_LEAVE)
3133 PlaySound(SND_MENU_ITEM_SELECTING);
3135 info_mode = INFO_MODE_MAIN;
3140 else if (button == MB_MENU_CHOICE || button == MB_MENU_INITIALIZE)
3142 if (button != MB_MENU_INITIALIZE)
3144 PlaySound(SND_MENU_ITEM_SELECTING);
3149 if (screen_nr >= num_screens)
3151 FadeSoundsAndMusic();
3153 info_mode = INFO_MODE_MAIN;
3160 FadeSetNextScreen();
3162 if (button != MB_MENU_INITIALIZE)
3163 FadeOut(REDRAW_FIELD);
3165 DrawInfoScreen_CreditsScreen(screen_nr);
3167 if (button != MB_MENU_INITIALIZE)
3168 FadeIn(REDRAW_FIELD);
3172 PlayMenuSoundIfLoop();
3176 void DrawInfoScreen_Program()
3178 int ystart1 = mSY - SY + 100;
3179 int ystart2 = mSY - SY + 150;
3180 int ybottom = mSY - SY + SYSIZE - 20;
3183 SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_PROGRAM);
3185 FadeOut(REDRAW_FIELD);
3190 DrawTextSCentered(ystart1, FONT_TEXT_1, "Program Information:");
3192 DrawTextSCentered(ystart2 + 0 * ystep, FONT_TEXT_2,
3193 "This game is Freeware!");
3194 DrawTextSCentered(ystart2 + 1 * ystep, FONT_TEXT_2,
3195 "If you like it, send e-mail to:");
3196 DrawTextSCentered(ystart2 + 2 * ystep, FONT_TEXT_3,
3197 setup.internal.program_email);
3198 DrawTextSCentered(ystart2 + 4 * ystep, FONT_TEXT_2,
3199 "More information and levels:");
3200 DrawTextSCentered(ystart2 + 5 * ystep, FONT_TEXT_3,
3201 setup.internal.program_website);
3202 DrawTextSCentered(ystart2 + 7 * ystep, FONT_TEXT_2,
3203 "If you have created new levels,");
3204 DrawTextSCentered(ystart2 + 8 * ystep, FONT_TEXT_2,
3205 "send them to me to include them!");
3206 DrawTextSCentered(ystart2 + 9 * ystep, FONT_TEXT_2,
3209 DrawTextSCentered(ybottom, FONT_TEXT_4,
3210 "Press any key or button for info menu");
3212 FadeIn(REDRAW_FIELD);
3215 void HandleInfoScreen_Program(int button)
3217 if (button == MB_MENU_LEAVE)
3219 PlaySound(SND_MENU_ITEM_SELECTING);
3221 info_mode = INFO_MODE_MAIN;
3226 else if (button == MB_MENU_CHOICE)
3228 PlaySound(SND_MENU_ITEM_SELECTING);
3230 FadeSoundsAndMusic();
3232 info_mode = INFO_MODE_MAIN;
3237 PlayMenuSoundIfLoop();
3241 void DrawInfoScreen_Version()
3243 int font_header = FONT_TEXT_3;
3244 int font_text = FONT_TEXT_2;
3245 int xstep = getFontWidth(font_text);
3246 int ystep = getFontHeight(font_text);
3247 int ystart1 = mSY - SY + 100;
3248 int ystart2 = mSY - SY + 150;
3249 int ybottom = mSY - SY + SYSIZE - 20;
3250 int xstart1 = mSX - SX + 2 * xstep;
3251 int xstart2 = mSX - SX + 18 * xstep;
3252 int xstart3 = mSX - SX + 28 * xstep;
3253 SDL_version sdl_version_compiled;
3254 const SDL_version *sdl_version_linked;
3255 int driver_name_len = 10;
3256 #if defined(TARGET_SDL2)
3257 SDL_version sdl_version_linked_ext;
3258 const char *driver_name = NULL;
3260 char driver_name[driver_name_len];
3263 SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_VERSION);
3265 FadeOut(REDRAW_FIELD);
3270 DrawTextSCentered(ystart1, FONT_TEXT_1, "Version Information:");
3272 DrawTextF(xstart1, ystart2, font_header, "Name");
3273 DrawTextF(xstart2, ystart2, font_text, getProgramTitleString());
3276 DrawTextF(xstart1, ystart2, font_header, "Version");
3277 DrawTextF(xstart2, ystart2, font_text, getProgramVersionString());
3280 DrawTextF(xstart1, ystart2, font_header, "Platform");
3281 DrawTextF(xstart2, ystart2, font_text, PLATFORM_STRING);
3284 DrawTextF(xstart1, ystart2, font_header, "Target");
3285 DrawTextF(xstart2, ystart2, font_text, TARGET_STRING);
3288 DrawTextF(xstart1, ystart2, font_header, "Compile time");
3289 DrawTextF(xstart2, ystart2, font_text, getCompileDateString());
3291 ystart2 += 3 * ystep;
3292 DrawTextF(xstart1, ystart2, font_header, "Library");
3293 DrawTextF(xstart2, ystart2, font_header, "compiled");
3294 DrawTextF(xstart3, ystart2, font_header, "linked");
3296 SDL_VERSION(&sdl_version_compiled);
3297 #if defined(TARGET_SDL2)
3298 SDL_GetVersion(&sdl_version_linked_ext);
3299 sdl_version_linked = &sdl_version_linked_ext;
3301 sdl_version_linked = SDL_Linked_Version();
3304 ystart2 += 2 * ystep;
3305 DrawTextF(xstart1, ystart2, font_text, "SDL");
3306 DrawTextF(xstart2, ystart2, font_text, "%d.%d.%d",
3307 sdl_version_compiled.major,
3308 sdl_version_compiled.minor,
3309 sdl_version_compiled.patch);
3310 DrawTextF(xstart3, ystart2, font_text, "%d.%d.%d",
3311 sdl_version_linked->major,
3312 sdl_version_linked->minor,
3313 sdl_version_linked->patch);
3315 SDL_IMAGE_VERSION(&sdl_version_compiled);
3316 sdl_version_linked = IMG_Linked_Version();
3319 DrawTextF(xstart1, ystart2, font_text, "SDL_image");
3320 DrawTextF(xstart2, ystart2, font_text, "%d.%d.%d",
3321 sdl_version_compiled.major,
3322 sdl_version_compiled.minor,
3323 sdl_version_compiled.patch);
3324 DrawTextF(xstart3, ystart2, font_text, "%d.%d.%d",
3325 sdl_version_linked->major,
3326 sdl_version_linked->minor,
3327 sdl_version_linked->patch);
3329 SDL_MIXER_VERSION(&sdl_version_compiled);
3330 sdl_version_linked = Mix_Linked_Version();
3333 DrawTextF(xstart1, ystart2, font_text, "SDL_mixer");
3334 DrawTextF(xstart2, ystart2, font_text, "%d.%d.%d",
3335 sdl_version_compiled.major,
3336 sdl_version_compiled.minor,
3337 sdl_version_compiled.patch);
3338 DrawTextF(xstart3, ystart2, font_text, "%d.%d.%d",
3339 sdl_version_linked->major,
3340 sdl_version_linked->minor,
3341 sdl_version_linked->patch);
3343 SDL_NET_VERSION(&sdl_version_compiled);
3344 sdl_version_linked = SDLNet_Linked_Version();
3347 DrawTextF(xstart1, ystart2, font_text, "SDL_net");
3348 DrawTextF(xstart2, ystart2, font_text, "%d.%d.%d",
3349 sdl_version_compiled.major,
3350 sdl_version_compiled.minor,
3351 sdl_version_compiled.patch);
3352 DrawTextF(xstart3, ystart2, font_text, "%d.%d.%d",
3353 sdl_version_linked->major,
3354 sdl_version_linked->minor,
3355 sdl_version_linked->patch);
3357 ystart2 += 3 * ystep;
3358 DrawTextF(xstart1, ystart2, font_header, "Driver");
3359 DrawTextF(xstart2, ystart2, font_header, "Requested");
3360 DrawTextF(xstart3, ystart2, font_header, "Used");
3362 #if defined(TARGET_SDL2)
3363 driver_name = getStringCopyNStatic(SDL_GetVideoDriver(0), driver_name_len);
3365 SDL_VideoDriverName(driver_name, driver_name_len);
3368 ystart2 += 2 * ystep;
3369 DrawTextF(xstart1, ystart2, font_text, "SDL_VideoDriver");
3370 DrawTextF(xstart2, ystart2, font_text, "%s", setup.system.sdl_videodriver);
3371 DrawTextF(xstart3, ystart2, font_text, "%s", driver_name);
3373 #if defined(TARGET_SDL2)
3374 driver_name = getStringCopyNStatic(SDL_GetAudioDriver(0), driver_name_len);
3376 SDL_AudioDriverName(driver_name, driver_name_len);
3380 DrawTextF(xstart1, ystart2, font_text, "SDL_AudioDriver");
3381 DrawTextF(xstart2, ystart2, font_text, "%s", setup.system.sdl_audiodriver);
3382 DrawTextF(xstart3, ystart2, font_text, "%s", driver_name);
3384 DrawTextSCentered(ybottom, FONT_TEXT_4,
3385 "Press any key or button for info menu");
3387 FadeIn(REDRAW_FIELD);
3390 void HandleInfoScreen_Version(int button)
3392 if (button == MB_MENU_LEAVE)
3394 PlaySound(SND_MENU_ITEM_SELECTING);
3396 info_mode = INFO_MODE_MAIN;
3401 else if (button == MB_MENU_CHOICE)
3403 PlaySound(SND_MENU_ITEM_SELECTING);
3405 FadeSoundsAndMusic();
3407 info_mode = INFO_MODE_MAIN;
3412 PlayMenuSoundIfLoop();
3416 void DrawInfoScreen_LevelSet()
3418 struct TitleMessageInfo *tmi = &readme;
3419 char *filename = getLevelSetInfoFilename();
3420 char *title = "Level Set Information:";
3421 int ystart1 = mSY - SY + 100;
3422 int ybottom = mSY - SY + SYSIZE - 20;
3424 if (filename == NULL)
3426 DrawInfoScreen_NotAvailable(title, "No information for this level set.");
3431 SetMainBackgroundImageIfDefined(IMG_BACKGROUND_INFO_LEVELSET);
3433 FadeOut(REDRAW_FIELD);
3438 DrawTextSCentered(ystart1, FONT_TEXT_1, title);
3440 /* if x position set to "-1", automatically determine by playfield width */
3442 tmi->x = SXSIZE / 2;
3444 /* if y position set to "-1", use static default value */
3448 /* if width set to "-1", automatically determine by playfield width */
3449 if (tmi->width == -1)
3450 tmi->width = SXSIZE - 2 * TILEX;
3452 /* if height set to "-1", automatically determine by playfield height */
3453 if (tmi->height == -1)
3454 tmi->height = SYSIZE - 20 - tmi->y - 10;
3456 /* if chars set to "-1", automatically determine by text and font width */
3457 if (tmi->chars == -1)
3458 tmi->chars = tmi->width / getFontWidth(tmi->font);
3460 tmi->width = tmi->chars * getFontWidth(tmi->font);
3462 /* if lines set to "-1", automatically determine by text and font height */
3463 if (tmi->lines == -1)
3464 tmi->lines = tmi->height / getFontHeight(tmi->font);
3466 tmi->height = tmi->lines * getFontHeight(tmi->font);
3468 DrawTextFile(mSX + ALIGNED_TEXT_XPOS(tmi), mSY + ALIGNED_TEXT_YPOS(tmi),
3469 filename, tmi->font, tmi->chars, -1, tmi->lines, 0, -1,
3470 tmi->autowrap, tmi->centered, tmi->parse_comments);
3472 DrawTextSCentered(ybottom, FONT_TEXT_4,
3473 "Press any key or button for info menu");
3475 FadeIn(REDRAW_FIELD);
3478 void HandleInfoScreen_LevelSet(int button)
3480 if (button == MB_MENU_LEAVE)
3482 PlaySound(SND_MENU_ITEM_SELECTING);
3484 info_mode = INFO_MODE_MAIN;
3489 else if (button == MB_MENU_CHOICE)
3491 PlaySound(SND_MENU_ITEM_SELECTING);
3493 FadeSoundsAndMusic();
3495 info_mode = INFO_MODE_MAIN;
3500 PlayMenuSoundIfLoop();
3504 static void DrawInfoScreen()
3506 SetMainBackgroundImage(IMG_BACKGROUND_INFO);
3508 if (info_mode == INFO_MODE_TITLE)
3509 DrawInfoScreen_TitleScreen();
3510 else if (info_mode == INFO_MODE_ELEMENTS)
3511 DrawInfoScreen_Elements();
3512 else if (info_mode == INFO_MODE_MUSIC)
3513 DrawInfoScreen_Music();
3514 else if (info_mode == INFO_MODE_CREDITS)
3515 DrawInfoScreen_Credits();
3516 else if (info_mode == INFO_MODE_PROGRAM)
3517 DrawInfoScreen_Program();
3518 else if (info_mode == INFO_MODE_VERSION)
3519 DrawInfoScreen_Version();
3520 else if (info_mode == INFO_MODE_LEVELSET)
3521 DrawInfoScreen_LevelSet();
3523 DrawInfoScreen_Main();
3525 if (info_mode != INFO_MODE_MAIN &&
3526 info_mode != INFO_MODE_TITLE &&
3527 info_mode != INFO_MODE_MUSIC)
3534 void HandleInfoScreen(int mx, int my, int dx, int dy, int button)
3536 if (info_mode == INFO_MODE_TITLE)
3537 HandleInfoScreen_TitleScreen(button);
3538 else if (info_mode == INFO_MODE_ELEMENTS)
3539 HandleInfoScreen_Elements(button);
3540 else if (info_mode == INFO_MODE_MUSIC)
3541 HandleInfoScreen_Music(button);
3542 else if (info_mode == INFO_MODE_CREDITS)
3543 HandleInfoScreen_Credits(button);
3544 else if (info_mode == INFO_MODE_PROGRAM)
3545 HandleInfoScreen_Program(button);
3546 else if (info_mode == INFO_MODE_VERSION)
3547 HandleInfoScreen_Version(button);
3548 else if (info_mode == INFO_MODE_LEVELSET)
3549 HandleInfoScreen_LevelSet(button);
3551 HandleInfoScreen_Main(mx, my, dx, dy, button);
3555 /* ========================================================================= */
3556 /* type name functions */
3557 /* ========================================================================= */
3559 void HandleTypeName(int newxpos, Key key)
3561 static char last_player_name[MAX_PLAYER_NAME_LEN + 1];
3562 struct MainControlInfo *mci = getMainControlInfo(MAIN_CONTROL_NAME);
3563 struct TextPosInfo *pos = mci->pos_input;
3564 int startx = mSX + ALIGNED_TEXT_XPOS(pos);
3565 int starty = mSY + ALIGNED_TEXT_YPOS(pos);
3566 static int xpos = 0;
3567 int font_nr = pos->font;
3568 int font_active_nr = FONT_ACTIVE(font_nr);
3569 int font_width = getFontWidth(font_active_nr);
3570 char key_char = getValidConfigValueChar(getCharFromKey(key));
3571 boolean is_valid_key_char = (key_char != 0 && (key_char != ' ' || xpos > 0));
3572 boolean is_active = TRUE;
3574 DrawBackgroundForFont(startx,starty, pos->width, pos->height, font_active_nr);
3578 strcpy(last_player_name, setup.player_name);
3582 #if defined(TARGET_SDL2)
3583 SDL_StartTextInput();
3586 else if (is_valid_key_char && xpos < MAX_PLAYER_NAME_LEN)
3588 setup.player_name[xpos] = key_char;
3589 setup.player_name[xpos + 1] = 0;
3593 else if ((key == KSYM_Delete || key == KSYM_BackSpace) && xpos > 0)
3597 setup.player_name[xpos] = 0;
3599 else if (key == KSYM_Return && xpos > 0)
3605 game_status = GAME_MODE_MAIN;
3607 else if (key == KSYM_Escape)
3609 strcpy(setup.player_name, last_player_name);
3613 game_status = GAME_MODE_MAIN;
3618 pos->width = (strlen(setup.player_name) + 1) * font_width;
3619 startx = mSX + ALIGNED_TEXT_XPOS(pos);
3621 DrawText(startx, starty, setup.player_name, font_active_nr);
3622 DrawText(startx + xpos * font_width, starty, "_", font_active_nr);
3626 pos->width = strlen(setup.player_name) * font_width;
3627 startx = mSX + ALIGNED_TEXT_XPOS(pos);
3629 DrawText(startx, starty, setup.player_name, font_nr);
3631 #if defined(TARGET_SDL2)
3632 SDL_StopTextInput();
3638 /* ========================================================================= */
3639 /* tree menu functions */
3640 /* ========================================================================= */
3642 static void DrawChooseTree(TreeInfo **ti_ptr)
3644 int fade_mask = REDRAW_FIELD;
3646 if (CheckIfGlobalBorderHasChanged())
3647 fade_mask = REDRAW_ALL;
3649 if (strEqual((*ti_ptr)->subdir, STRING_TOP_DIRECTORY))
3651 game_status = GAME_MODE_MAIN;
3660 FreeScreenGadgets();
3661 CreateScreenGadgets();
3663 CloseDoor(DOOR_CLOSE_2);
3667 OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
3671 HandleChooseTree(0, 0, 0, 0, MB_MENU_INITIALIZE, ti_ptr);
3672 MapScreenTreeGadgets(*ti_ptr);
3674 DrawMaskedBorder(fade_mask);
3681 static void drawChooseTreeList(int first_entry, int num_page_entries,
3685 char *title_string = NULL;
3686 int yoffset_sets = MENU_TITLE1_YPOS;
3687 int yoffset_setup = 16;
3688 int yoffset = (ti->type == TREE_TYPE_LEVEL_DIR ||
3689 ti->type == TREE_TYPE_LEVEL_NR ? yoffset_sets : yoffset_setup);
3690 int last_game_status = game_status; /* save current game status */
3692 title_string = ti->infotext;
3694 DrawTextSCentered(mSY - SY + yoffset, FONT_TITLE_1, title_string);
3696 clearMenuListArea();
3698 for (i = 0; i < num_page_entries; i++)
3700 TreeInfo *node, *node_first;
3701 int entry_pos = first_entry + i;
3702 int xpos = MENU_SCREEN_START_XPOS;
3703 int ypos = MENU_SCREEN_START_YPOS + i;
3704 int startx = mSX + xpos * 32;
3705 int starty = mSY + ypos * 32;
3706 int font_nr = FONT_TEXT_1;
3707 int font_xoffset = getFontBitmapInfo(font_nr)->draw_xoffset;
3708 int startx_text = startx + font_xoffset;
3709 int startx_scrollbar = mSX + SC_SCROLLBAR_XPOS + menu.scrollbar_xoffset;
3710 int text_size = startx_scrollbar - startx_text;
3711 int max_buffer_len = text_size / getFontWidth(font_nr);
3712 char buffer[max_buffer_len + 1];
3714 node_first = getTreeInfoFirstGroupEntry(ti);
3715 node = getTreeInfoFromPos(node_first, entry_pos);
3717 strncpy(buffer, node->name, max_buffer_len);
3718 buffer[max_buffer_len] = '\0';
3720 DrawText(startx, starty, buffer, font_nr + node->color);
3722 if (node->parent_link)
3723 initCursor(i, IMG_MENU_BUTTON_LEAVE_MENU);
3724 else if (node->level_group)
3725 initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
3727 initCursor(i, IMG_MENU_BUTTON);
3730 game_status = last_game_status; /* restore current game status */
3732 redraw_mask |= REDRAW_FIELD;
3735 static void drawChooseTreeInfo(int entry_pos, TreeInfo *ti)
3737 TreeInfo *node, *node_first;
3738 int x, last_redraw_mask = redraw_mask;
3739 int ypos = MENU_TITLE2_YPOS;
3740 int font_nr = FONT_TITLE_2;
3742 if (ti->type == TREE_TYPE_LEVEL_NR)
3743 DrawTextFCentered(ypos, font_nr, leveldir_current->name);
3745 if (ti->type != TREE_TYPE_LEVEL_DIR)
3748 node_first = getTreeInfoFirstGroupEntry(ti);
3749 node = getTreeInfoFromPos(node_first, entry_pos);
3751 DrawBackgroundForFont(SX, SY + ypos, SXSIZE, getFontHeight(font_nr), font_nr);
3753 if (node->parent_link)
3754 DrawTextFCentered(ypos, font_nr, "leave \"%s\"",
3755 node->node_parent->name);
3756 else if (node->level_group)
3757 DrawTextFCentered(ypos, font_nr, "enter \"%s\"",
3759 else if (ti->type == TREE_TYPE_LEVEL_DIR)
3760 DrawTextFCentered(ypos, font_nr, "%3d %s (%s)",
3761 node->levels, (node->levels > 1 ? "levels" : "level"),
3764 /* let BackToFront() redraw only what is needed */
3765 redraw_mask = last_redraw_mask;
3766 for (x = 0; x < SCR_FIELDX; x++)
3767 MarkTileDirty(x, 1);
3770 static void HandleChooseTree(int mx, int my, int dx, int dy, int button,
3773 TreeInfo *ti = *ti_ptr;
3775 int y = ti->cl_cursor;
3776 int step = (button == 1 ? 1 : button == 2 ? 5 : 10);
3777 int num_entries = numTreeInfoInGroup(ti);
3778 int num_page_entries;
3779 int last_game_status = game_status; /* save current game status */
3780 boolean position_set_by_scrollbar = (dx == 999);
3782 if (num_entries <= NUM_MENU_ENTRIES_ON_SCREEN)
3783 num_page_entries = num_entries;
3785 num_page_entries = NUM_MENU_ENTRIES_ON_SCREEN;
3787 game_status = last_game_status; /* restore current game status */
3789 if (button == MB_MENU_INITIALIZE)
3791 int num_entries = numTreeInfoInGroup(ti);
3792 int entry_pos = posTreeInfo(ti);
3794 if (ti->cl_first == -1)
3796 /* only on initialization */
3797 ti->cl_first = MAX(0, entry_pos - num_page_entries + 1);
3798 ti->cl_cursor = entry_pos - ti->cl_first;
3800 else if (ti->cl_cursor >= num_page_entries ||
3801 (num_entries > num_page_entries &&
3802 num_entries - ti->cl_first < num_page_entries))
3804 /* only after change of list size (by custom graphic configuration) */
3805 ti->cl_first = MAX(0, entry_pos - num_page_entries + 1);
3806 ti->cl_cursor = entry_pos - ti->cl_first;
3809 if (position_set_by_scrollbar)
3812 AdjustChooseTreeScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL,
3815 drawChooseTreeList(ti->cl_first, num_page_entries, ti);
3816 drawChooseTreeInfo(ti->cl_first + ti->cl_cursor, ti);
3817 drawChooseTreeCursor(ti->cl_cursor, TRUE);
3821 else if (button == MB_MENU_LEAVE)
3825 PlaySound(SND_MENU_ITEM_SELECTING);
3827 if (ti->node_parent)
3829 *ti_ptr = ti->node_parent;
3830 DrawChooseTree(ti_ptr);
3832 else if (game_status == GAME_MODE_SETUP)
3834 if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED ||
3835 setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY ||
3836 setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
3838 else if (setup_mode == SETUP_MODE_CHOOSE_SCREEN_MODE ||
3839 setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE ||
3840 setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE)
3841 execSetupGraphics();
3842 else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE ||
3843 setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS ||
3844 setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
3846 else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL ||
3847 setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE ||
3848 setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE)
3855 if (game_status == GAME_MODE_LEVELNR)
3857 int new_level_nr = atoi(level_number_current->identifier);
3859 HandleMainMenu_SelectLevel(0, 0, new_level_nr);
3862 game_status = GAME_MODE_MAIN;
3870 if (mx || my) /* mouse input */
3872 int last_game_status = game_status; /* save current game status */
3874 x = (mx - mSX) / 32;
3875 y = (my - mSY) / 32 - MENU_SCREEN_START_YPOS;
3877 game_status = last_game_status; /* restore current game status */
3879 else if (dx || dy) /* keyboard or scrollbar/scrollbutton input */
3881 /* move cursor instead of scrolling when already at start/end of list */
3882 if (dy == -1 * SCROLL_LINE && ti->cl_first == 0)
3884 else if (dy == +1 * SCROLL_LINE &&
3885 ti->cl_first + num_page_entries == num_entries)
3888 /* handle scrolling screen one line or page */
3889 if (ti->cl_cursor + dy < 0 ||
3890 ti->cl_cursor + dy > num_page_entries - 1)
3892 boolean redraw = FALSE;
3894 if (ABS(dy) == SCROLL_PAGE)
3895 step = num_page_entries - 1;
3897 if (dy < 0 && ti->cl_first > 0)
3899 /* scroll page/line up */
3901 ti->cl_first -= step;
3902 if (ti->cl_first < 0)
3907 else if (dy > 0 && ti->cl_first + num_page_entries < num_entries)
3909 /* scroll page/line down */
3911 ti->cl_first += step;
3912 if (ti->cl_first + num_page_entries > num_entries)
3913 ti->cl_first = MAX(0, num_entries - num_page_entries);
3920 drawChooseTreeList(ti->cl_first, num_page_entries, ti);
3921 drawChooseTreeInfo(ti->cl_first + ti->cl_cursor, ti);
3922 drawChooseTreeCursor(ti->cl_cursor, TRUE);
3924 AdjustChooseTreeScrollbar(SCREEN_CTRL_ID_SCROLL_VERTICAL,
3931 /* handle moving cursor one line */
3932 y = ti->cl_cursor + dy;
3937 TreeInfo *node_first, *node_cursor;
3938 int entry_pos = ti->cl_first + y;
3940 node_first = getTreeInfoFirstGroupEntry(ti);
3941 node_cursor = getTreeInfoFromPos(node_first, entry_pos);
3943 if (node_cursor->node_group)
3947 PlaySound(SND_MENU_ITEM_SELECTING);
3949 node_cursor->cl_first = ti->cl_first;
3950 node_cursor->cl_cursor = ti->cl_cursor;
3951 *ti_ptr = node_cursor->node_group;
3952 DrawChooseTree(ti_ptr);
3957 else if (dx == -1 && ti->node_parent)
3961 PlaySound(SND_MENU_ITEM_SELECTING);
3963 *ti_ptr = ti->node_parent;
3964 DrawChooseTree(ti_ptr);
3969 if (!anyScrollbarGadgetActive() &&
3970 IN_VIS_MENU(x, y) &&
3971 mx < screen_gadget[SCREEN_CTRL_ID_SCROLL_VERTICAL]->x &&
3972 y >= 0 && y < num_page_entries)
3976 if (y != ti->cl_cursor)
3978 PlaySound(SND_MENU_ITEM_ACTIVATING);
3980 drawChooseTreeCursor(ti->cl_cursor, FALSE);
3981 drawChooseTreeCursor(y, TRUE);
3982 drawChooseTreeInfo(ti->cl_first + y, ti);
3989 TreeInfo *node_first, *node_cursor;
3990 int entry_pos = ti->cl_first + y;
3992 PlaySound(SND_MENU_ITEM_SELECTING);
3994 node_first = getTreeInfoFirstGroupEntry(ti);
3995 node_cursor = getTreeInfoFromPos(node_first, entry_pos);
3997 if (node_cursor->node_group)
4001 node_cursor->cl_first = ti->cl_first;
4002 node_cursor->cl_cursor = ti->cl_cursor;
4003 *ti_ptr = node_cursor->node_group;
4004 DrawChooseTree(ti_ptr);
4006 else if (node_cursor->parent_link)
4010 *ti_ptr = node_cursor->node_parent;
4011 DrawChooseTree(ti_ptr);
4017 node_cursor->cl_first = ti->cl_first;
4018 node_cursor->cl_cursor = ti->cl_cursor;
4019 *ti_ptr = node_cursor;
4021 if (ti->type == TREE_TYPE_LEVEL_DIR)
4023 LoadLevelSetup_SeriesInfo();
4025 SaveLevelSetup_LastSeries();
4026 SaveLevelSetup_SeriesInfo();
4030 if (game_status == GAME_MODE_SETUP)
4032 if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED ||
4033 setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY ||
4034 setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
4036 else if (setup_mode == SETUP_MODE_CHOOSE_SCREEN_MODE ||
4037 setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE ||
4038 setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE)
4039 execSetupGraphics();
4040 else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE ||
4041 setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS ||
4042 setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
4044 else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL ||
4045 setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE ||
4046 setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE)
4053 if (game_status == GAME_MODE_LEVELNR)
4055 int new_level_nr = atoi(level_number_current->identifier);
4057 HandleMainMenu_SelectLevel(0, 0, new_level_nr);
4060 game_status = GAME_MODE_MAIN;
4069 void DrawChooseLevelSet()
4071 SetMainBackgroundImage(IMG_BACKGROUND_LEVELS);
4073 DrawChooseTree(&leveldir_current);
4079 void HandleChooseLevelSet(int mx, int my, int dx, int dy, int button)
4081 HandleChooseTree(mx, my, dx, dy, button, &leveldir_current);
4084 void DrawChooseLevelNr()
4088 if (level_number != NULL)
4090 freeTreeInfo(level_number);
4092 level_number = NULL;
4095 for (i = leveldir_current->first_level; i <= leveldir_current->last_level;i++)
4097 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_LEVEL_NR);
4098 char identifier[32], name[32];
4101 /* temporarily load level info to get level name */
4102 LoadLevelInfoOnly(i);
4104 ti->node_top = &level_number;
4105 ti->sort_priority = 10000 + value;
4106 ti->color = (level.no_valid_file ? FC_BLUE :
4107 LevelStats_getSolved(i) ? FC_GREEN :
4108 LevelStats_getPlayed(i) ? FC_YELLOW : FC_RED);
4110 sprintf(identifier, "%d", value);
4111 sprintf(name, "%03d: %s", value,
4112 (level.no_valid_file ? "(no file)" : level.name));
4114 setString(&ti->identifier, identifier);
4115 setString(&ti->name, name);
4116 setString(&ti->name_sorting, name);
4118 pushTreeInfo(&level_number, ti);
4121 /* sort level number values to start with lowest level number */
4122 sortTreeInfo(&level_number);
4124 /* set current level number to current level number */
4125 level_number_current =
4126 getTreeInfoFromIdentifier(level_number, i_to_a(level_nr));
4128 /* if that also fails, set current level number to first available level */
4129 if (level_number_current == NULL)
4130 level_number_current = level_number;
4132 SetMainBackgroundImage(IMG_BACKGROUND_LEVELNR);
4134 DrawChooseTree(&level_number_current);
4140 void HandleChooseLevelNr(int mx, int my, int dx, int dy, int button)
4142 HandleChooseTree(mx, my, dx, dy, button, &level_number_current);
4145 void DrawHallOfFame(int highlight_position)
4147 int fade_mask = REDRAW_FIELD;
4149 /* required before door position may be changed in next step */
4150 CloseDoor(DOOR_CLOSE_ALL);
4152 /* needed if different viewport properties defined for scores */
4153 ChangeViewportPropertiesIfNeeded();
4155 if (CheckIfGlobalBorderHasChanged())
4156 fade_mask = REDRAW_ALL;
4159 FadeSoundsAndMusic();
4161 /* (this is needed when called from GameEnd() after winning a game) */
4162 KeyboardAutoRepeatOn();
4165 /* (this is needed when called from GameEnd() after winning a game) */
4166 SetDrawDeactivationMask(REDRAW_NONE);
4167 SetDrawBackgroundMask(REDRAW_FIELD);
4169 if (highlight_position < 0)
4170 LoadScore(level_nr);
4172 FadeSetEnterScreen();
4181 OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
4183 HandleHallOfFame(highlight_position, 0, 0, 0, MB_MENU_INITIALIZE);
4185 DrawMaskedBorder(fade_mask);
4190 static void drawHallOfFameList(int first_entry, int highlight_position)
4194 SetMainBackgroundImage(IMG_BACKGROUND_SCORES);
4197 DrawTextSCentered(MENU_TITLE1_YPOS, FONT_TITLE_1, "Hall Of Fame");
4198 DrawTextFCentered(MENU_TITLE2_YPOS, FONT_TITLE_2,
4199 "HighScores of Level %d", level_nr);
4201 for (i = 0; i < NUM_MENU_ENTRIES_ON_SCREEN; i++)
4203 int entry = first_entry + i;
4204 boolean active = (entry == highlight_position);
4205 int font_nr1 = (active ? FONT_TEXT_1_ACTIVE : FONT_TEXT_1);
4206 int font_nr2 = (active ? FONT_TEXT_2_ACTIVE : FONT_TEXT_2);
4207 int font_nr3 = (active ? FONT_TEXT_3_ACTIVE : FONT_TEXT_3);
4208 int font_nr4 = (active ? FONT_TEXT_4_ACTIVE : FONT_TEXT_4);
4209 int dx1 = 3 * getFontWidth(font_nr1);
4210 int dx2 = dx1 + getFontWidth(font_nr1);
4211 int dx3 = SXSIZE - 2 * (mSX - SX) - 5 * getFontWidth(font_nr4);
4212 int num_dots = (dx3 - dx2) / getFontWidth(font_nr3);
4213 int sy = mSY + 64 + i * 32;
4215 DrawText(mSX, sy, int2str(entry + 1, 3), font_nr1);
4216 DrawText(mSX + dx1, sy, ".", font_nr1);
4218 for (j = 0; j < num_dots; j++)
4219 DrawText(mSX + dx2 + j * getFontWidth(font_nr3), sy, ".", font_nr3);
4221 if (!strEqual(highscore[entry].Name, EMPTY_PLAYER_NAME))
4222 DrawText(mSX + dx2, sy, highscore[entry].Name, font_nr2);
4224 DrawText(mSX + dx3, sy, int2str(highscore[entry].Score, 5), font_nr4);
4227 redraw_mask |= REDRAW_FIELD;
4230 void HandleHallOfFame(int mx, int my, int dx, int dy, int button)
4232 static int first_entry = 0;
4233 static int highlight_position = 0;
4234 int step = (button == 1 ? 1 : button == 2 ? 5 : 10);
4236 if (button == MB_MENU_INITIALIZE)
4239 highlight_position = mx;
4240 drawHallOfFameList(first_entry, highlight_position);
4245 if (ABS(dy) == SCROLL_PAGE) /* handle scrolling one page */
4246 step = NUM_MENU_ENTRIES_ON_SCREEN - 1;
4250 if (first_entry > 0)
4252 first_entry -= step;
4253 if (first_entry < 0)
4256 drawHallOfFameList(first_entry, highlight_position);
4261 if (first_entry + NUM_MENU_ENTRIES_ON_SCREEN < MAX_SCORE_ENTRIES)
4263 first_entry += step;
4264 if (first_entry + NUM_MENU_ENTRIES_ON_SCREEN > MAX_SCORE_ENTRIES)
4265 first_entry = MAX(0, MAX_SCORE_ENTRIES - NUM_MENU_ENTRIES_ON_SCREEN);
4267 drawHallOfFameList(first_entry, highlight_position);
4270 else if (button == MB_MENU_LEAVE)
4272 PlaySound(SND_MENU_ITEM_SELECTING);
4274 FadeSound(SND_BACKGROUND_SCORES);
4276 game_status = GAME_MODE_MAIN;
4280 else if (button == MB_MENU_CHOICE)
4282 PlaySound(SND_MENU_ITEM_SELECTING);
4284 FadeSound(SND_BACKGROUND_SCORES);
4286 game_status = GAME_MODE_MAIN;
4291 if (game_status == GAME_MODE_SCORES)
4292 PlayMenuSoundIfLoop();
4296 /* ========================================================================= */
4297 /* setup screen functions */
4298 /* ========================================================================= */
4300 static struct TokenInfo *setup_info;
4301 static int num_setup_info; /* number of setup entries shown on screen */
4302 static int max_setup_info; /* total number of setup entries in list */
4304 static char *screen_mode_text;
4305 static char *window_size_text;
4306 static char *scaling_type_text;
4307 static char *scroll_delay_text;
4308 static char *snapshot_mode_text;
4309 static char *game_speed_text;
4310 static char *graphics_set_name;
4311 static char *sounds_set_name;
4312 static char *music_set_name;
4313 static char *volume_simple_text;
4314 static char *volume_loops_text;
4315 static char *volume_music_text;
4316 static char *touch_controls_text;
4317 static char *move_distance_text;
4318 static char *drop_distance_text;
4320 static void execSetupMain()
4322 setup_mode = SETUP_MODE_MAIN;
4327 static void execSetupGame_setGameSpeeds()
4329 if (game_speeds == NULL)
4333 for (i = 0; game_speeds_list[i].value != -1; i++)
4335 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4336 char identifier[32], name[32];
4337 int value = game_speeds_list[i].value;
4338 char *text = game_speeds_list[i].text;
4340 ti->node_top = &game_speeds;
4341 ti->sort_priority = 10000 - value;
4343 sprintf(identifier, "%d", value);
4344 sprintf(name, "%s", text);
4346 setString(&ti->identifier, identifier);
4347 setString(&ti->name, name);
4348 setString(&ti->name_sorting, name);
4349 setString(&ti->infotext, "Game Speed");
4351 pushTreeInfo(&game_speeds, ti);
4354 /* sort game speed values to start with slowest game speed */
4355 sortTreeInfo(&game_speeds);
4357 /* set current game speed to configured game speed value */
4358 game_speed_current =
4359 getTreeInfoFromIdentifier(game_speeds, i_to_a(setup.game_frame_delay));
4361 /* if that fails, set current game speed to reliable default value */
4362 if (game_speed_current == NULL)
4363 game_speed_current =
4364 getTreeInfoFromIdentifier(game_speeds, i_to_a(GAME_FRAME_DELAY));
4366 /* if that also fails, set current game speed to first available speed */
4367 if (game_speed_current == NULL)
4368 game_speed_current = game_speeds;
4371 setup.game_frame_delay = atoi(game_speed_current->identifier);
4373 /* needed for displaying game speed text instead of identifier */
4374 game_speed_text = game_speed_current->name;
4377 static void execSetupGame_setScrollDelays()
4379 if (scroll_delays == NULL)
4383 for (i = 0; scroll_delays_list[i].value != -1; i++)
4385 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4386 char identifier[32], name[32];
4387 int value = scroll_delays_list[i].value;
4388 char *text = scroll_delays_list[i].text;
4390 ti->node_top = &scroll_delays;
4391 ti->sort_priority = value;
4393 sprintf(identifier, "%d", value);
4394 sprintf(name, "%s", text);
4396 setString(&ti->identifier, identifier);
4397 setString(&ti->name, name);
4398 setString(&ti->name_sorting, name);
4399 setString(&ti->infotext, "Scaling Type");
4401 pushTreeInfo(&scroll_delays, ti);
4404 /* sort scaling type values to start with lowest scaling type value */
4405 sortTreeInfo(&scroll_delays);
4407 /* set current scaling type value to configured scaling type value */
4408 scroll_delay_current =
4409 getTreeInfoFromIdentifier(scroll_delays,i_to_a(setup.scroll_delay_value));
4411 /* if that fails, set current scaling type to reliable default value */
4412 if (scroll_delay_current == NULL)
4413 scroll_delay_current =
4414 getTreeInfoFromIdentifier(scroll_delays, i_to_a(STD_SCROLL_DELAY));
4416 /* if that also fails, set current scaling type to first available value */
4417 if (scroll_delay_current == NULL)
4418 scroll_delay_current = scroll_delays;
4421 setup.scroll_delay_value = atoi(scroll_delay_current->identifier);
4423 /* needed for displaying scaling type text instead of identifier */
4424 scroll_delay_text = scroll_delay_current->name;
4427 static void execSetupGame_setSnapshotModes()
4429 if (snapshot_modes == NULL)
4433 for (i = 0; snapshot_modes_list[i].value != NULL; i++)
4435 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4436 char identifier[32], name[32];
4437 char *value = snapshot_modes_list[i].value;
4438 char *text = snapshot_modes_list[i].text;
4440 ti->node_top = &snapshot_modes;
4441 ti->sort_priority = i;
4443 sprintf(identifier, "%s", value);
4444 sprintf(name, "%s", text);
4446 setString(&ti->identifier, identifier);
4447 setString(&ti->name, name);
4448 setString(&ti->name_sorting, name);
4449 setString(&ti->infotext, "Snapshot Mode");
4451 pushTreeInfo(&snapshot_modes, ti);
4454 /* sort snapshot mode values to start with lowest snapshot mode value */
4455 sortTreeInfo(&snapshot_modes);
4457 /* set current snapshot mode value to configured snapshot mode value */
4458 snapshot_mode_current =
4459 getTreeInfoFromIdentifier(snapshot_modes, setup.engine_snapshot_mode);
4461 /* if that fails, set current snapshot mode to reliable default value */
4462 if (snapshot_mode_current == NULL)
4463 snapshot_mode_current =
4464 getTreeInfoFromIdentifier(snapshot_modes, STR_SNAPSHOT_MODE_DEFAULT);
4466 /* if that also fails, set current snapshot mode to first available value */
4467 if (snapshot_mode_current == NULL)
4468 snapshot_mode_current = snapshot_modes;
4471 setup.engine_snapshot_mode = snapshot_mode_current->identifier;
4473 /* needed for displaying snapshot mode text instead of identifier */
4474 snapshot_mode_text = snapshot_mode_current->name;
4477 static void execSetupGame()
4479 execSetupGame_setGameSpeeds();
4480 execSetupGame_setScrollDelays();
4481 execSetupGame_setSnapshotModes();
4483 setup_mode = SETUP_MODE_GAME;
4488 static void execSetupChooseGameSpeed()
4490 setup_mode = SETUP_MODE_CHOOSE_GAME_SPEED;
4495 static void execSetupChooseScrollDelay()
4497 setup_mode = SETUP_MODE_CHOOSE_SCROLL_DELAY;
4502 static void execSetupChooseSnapshotMode()
4504 setup_mode = SETUP_MODE_CHOOSE_SNAPSHOT_MODE;
4509 static void execSetupEditor()
4511 setup_mode = SETUP_MODE_EDITOR;
4516 static void execSetupGraphics_setWindowSizes(boolean update_list)
4518 if (window_sizes != NULL && update_list)
4520 freeTreeInfo(window_sizes);
4522 window_sizes = NULL;
4525 if (window_sizes == NULL)
4527 boolean current_window_size_found = FALSE;
4530 for (i = 0; window_sizes_list[i].value != -1; i++)
4532 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4533 char identifier[32], name[32];
4534 int value = window_sizes_list[i].value;
4535 char *text = window_sizes_list[i].text;
4537 ti->node_top = &window_sizes;
4538 ti->sort_priority = value;
4540 sprintf(identifier, "%d", value);
4541 sprintf(name, "%s", text);
4543 setString(&ti->identifier, identifier);
4544 setString(&ti->name, name);
4545 setString(&ti->name_sorting, name);
4546 setString(&ti->infotext, "Window Scaling");
4548 pushTreeInfo(&window_sizes, ti);
4550 if (value == setup.window_scaling_percent)
4551 current_window_size_found = TRUE;
4554 if (!current_window_size_found)
4556 // add entry for non-preset window scaling value
4558 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4559 char identifier[32], name[32];
4560 int value = setup.window_scaling_percent;
4562 ti->node_top = &window_sizes;
4563 ti->sort_priority = value;
4565 sprintf(identifier, "%d", value);
4566 sprintf(name, "%d %% (Current)", value);
4568 setString(&ti->identifier, identifier);
4569 setString(&ti->name, name);
4570 setString(&ti->name_sorting, name);
4571 setString(&ti->infotext, "Window Scaling");
4573 pushTreeInfo(&window_sizes, ti);
4576 /* sort window size values to start with lowest window size value */
4577 sortTreeInfo(&window_sizes);
4579 /* set current window size value to configured window size value */
4580 window_size_current =
4581 getTreeInfoFromIdentifier(window_sizes,
4582 i_to_a(setup.window_scaling_percent));
4584 /* if that fails, set current window size to reliable default value */
4585 if (window_size_current == NULL)
4586 window_size_current =
4587 getTreeInfoFromIdentifier(window_sizes,
4588 i_to_a(STD_WINDOW_SCALING_PERCENT));
4590 /* if that also fails, set current window size to first available value */
4591 if (window_size_current == NULL)
4592 window_size_current = window_sizes;
4595 setup.window_scaling_percent = atoi(window_size_current->identifier);
4597 /* needed for displaying window size text instead of identifier */
4598 window_size_text = window_size_current->name;
4601 static void execSetupGraphics_setScalingTypes()
4603 if (scaling_types == NULL)
4607 for (i = 0; scaling_types_list[i].value != NULL; i++)
4609 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4610 char identifier[32], name[32];
4611 char *value = scaling_types_list[i].value;
4612 char *text = scaling_types_list[i].text;
4614 ti->node_top = &scaling_types;
4615 ti->sort_priority = i;
4617 sprintf(identifier, "%s", value);
4618 sprintf(name, "%s", text);
4620 setString(&ti->identifier, identifier);
4621 setString(&ti->name, name);
4622 setString(&ti->name_sorting, name);
4623 setString(&ti->infotext, "Anti-Aliasing");
4625 pushTreeInfo(&scaling_types, ti);
4628 /* sort scaling type values to start with lowest scaling type value */
4629 sortTreeInfo(&scaling_types);
4631 /* set current scaling type value to configured scaling type value */
4632 scaling_type_current =
4633 getTreeInfoFromIdentifier(scaling_types, setup.window_scaling_quality);
4635 /* if that fails, set current scaling type to reliable default value */
4636 if (scaling_type_current == NULL)
4637 scaling_type_current =
4638 getTreeInfoFromIdentifier(scaling_types, SCALING_QUALITY_DEFAULT);
4640 /* if that also fails, set current scaling type to first available value */
4641 if (scaling_type_current == NULL)
4642 scaling_type_current = scaling_types;
4645 setup.window_scaling_quality = scaling_type_current->identifier;
4647 /* needed for displaying scaling type text instead of identifier */
4648 scaling_type_text = scaling_type_current->name;
4651 static void execSetupGraphics_setScreenModes()
4653 // if (screen_modes == NULL && video.fullscreen_available)
4654 if (screen_modes == NULL && video.fullscreen_modes != NULL)
4658 for (i = 0; video.fullscreen_modes[i].width != -1; i++)
4660 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4661 char identifier[32], name[32];
4662 int x = video.fullscreen_modes[i].width;
4663 int y = video.fullscreen_modes[i].height;
4666 get_aspect_ratio_from_screen_mode(&video.fullscreen_modes[i], &xx, &yy);
4668 ti->node_top = &screen_modes;
4669 ti->sort_priority = x * 10000 + y;
4671 sprintf(identifier, "%dx%d", x, y);
4672 sprintf(name, "%d x %d [%d:%d]", x, y, xx, yy);
4674 setString(&ti->identifier, identifier);
4675 setString(&ti->name, name);
4676 setString(&ti->name_sorting, name);
4677 setString(&ti->infotext, "Fullscreen Mode");
4679 pushTreeInfo(&screen_modes, ti);
4682 /* sort fullscreen modes to start with lowest available screen resolution */
4683 sortTreeInfo(&screen_modes);
4685 /* set current screen mode for fullscreen mode to configured setup value */
4686 screen_mode_current = getTreeInfoFromIdentifier(screen_modes,
4687 setup.fullscreen_mode);
4689 /* if that fails, set current screen mode to reliable default value */
4690 if (screen_mode_current == NULL)
4691 screen_mode_current = getTreeInfoFromIdentifier(screen_modes,
4692 DEFAULT_FULLSCREEN_MODE);
4694 /* if that also fails, set current screen mode to first available mode */
4695 if (screen_mode_current == NULL)
4696 screen_mode_current = screen_modes;
4698 if (screen_mode_current == NULL)
4699 video.fullscreen_available = FALSE;
4702 // if (video.fullscreen_available)
4703 if (screen_mode_current != NULL)
4705 setup.fullscreen_mode = screen_mode_current->identifier;
4707 /* needed for displaying screen mode name instead of identifier */
4708 screen_mode_text = screen_mode_current->name;
4712 static void execSetupGraphics()
4714 if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE)
4716 // update "setup.window_scaling_percent" from list selection
4717 execSetupGraphics_setWindowSizes(FALSE);
4721 // update list selection from "setup.window_scaling_percent"
4722 execSetupGraphics_setWindowSizes(TRUE);
4725 execSetupGraphics_setScalingTypes();
4726 execSetupGraphics_setScreenModes();
4728 setup_mode = SETUP_MODE_GRAPHICS;
4732 #if defined(TARGET_SDL2)
4733 // window scaling may have changed at this point
4734 ToggleFullscreenOrChangeWindowScalingIfNeeded();
4736 // window scaling quality may have changed at this point
4737 if (!strEqual(setup.window_scaling_quality, video.window_scaling_quality))
4738 SDLSetWindowScalingQuality(setup.window_scaling_quality);
4742 #if !defined(PLATFORM_ANDROID)
4743 #if defined(TARGET_SDL2)
4744 static void execSetupChooseWindowSize()
4746 setup_mode = SETUP_MODE_CHOOSE_WINDOW_SIZE;
4751 static void execSetupChooseScalingType()
4753 setup_mode = SETUP_MODE_CHOOSE_SCALING_TYPE;
4758 static void execSetupChooseScreenMode()
4760 if (!video.fullscreen_available)
4763 setup_mode = SETUP_MODE_CHOOSE_SCREEN_MODE;
4770 static void execSetupChooseVolumeSimple()
4772 setup_mode = SETUP_MODE_CHOOSE_VOLUME_SIMPLE;
4777 static void execSetupChooseVolumeLoops()
4779 setup_mode = SETUP_MODE_CHOOSE_VOLUME_LOOPS;
4784 static void execSetupChooseVolumeMusic()
4786 setup_mode = SETUP_MODE_CHOOSE_VOLUME_MUSIC;
4791 static void execSetupSound()
4793 if (volumes_simple == NULL)
4795 boolean current_volume_simple_found = FALSE;
4798 for (i = 0; volumes_list[i].value != -1; i++)
4800 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4801 char identifier[32], name[32];
4802 int value = volumes_list[i].value;
4803 char *text = volumes_list[i].text;
4805 ti->node_top = &volumes_simple;
4806 ti->sort_priority = value;
4808 sprintf(identifier, "%d", value);
4809 sprintf(name, "%s", text);
4811 setString(&ti->identifier, identifier);
4812 setString(&ti->name, name);
4813 setString(&ti->name_sorting, name);
4814 setString(&ti->infotext, "Sound Volume");
4816 pushTreeInfo(&volumes_simple, ti);
4818 if (value == setup.volume_simple)
4819 current_volume_simple_found = TRUE;
4822 if (!current_volume_simple_found)
4824 // add entry for non-preset volume value
4826 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4827 char identifier[32], name[32];
4828 int value = setup.volume_simple;
4830 ti->node_top = &volumes_simple;
4831 ti->sort_priority = value;
4833 sprintf(identifier, "%d", value);
4834 sprintf(name, "%d %% (Current)", value);
4836 setString(&ti->identifier, identifier);
4837 setString(&ti->name, name);
4838 setString(&ti->name_sorting, name);
4839 setString(&ti->infotext, "Sound Volume");
4841 pushTreeInfo(&volumes_simple, ti);
4844 /* sort volume values to start with lowest volume value */
4845 sortTreeInfo(&volumes_simple);
4847 /* set current volume value to configured volume value */
4848 volume_simple_current =
4849 getTreeInfoFromIdentifier(volumes_simple,i_to_a(setup.volume_simple));
4851 /* if that fails, set current volume to reliable default value */
4852 if (volume_simple_current == NULL)
4853 volume_simple_current =
4854 getTreeInfoFromIdentifier(volumes_simple, i_to_a(100));
4856 /* if that also fails, set current volume to first available value */
4857 if (volume_simple_current == NULL)
4858 volume_simple_current = volumes_simple;
4861 if (volumes_loops == NULL)
4863 boolean current_volume_loops_found = FALSE;
4866 for (i = 0; volumes_list[i].value != -1; i++)
4868 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4869 char identifier[32], name[32];
4870 int value = volumes_list[i].value;
4871 char *text = volumes_list[i].text;
4873 ti->node_top = &volumes_loops;
4874 ti->sort_priority = value;
4876 sprintf(identifier, "%d", value);
4877 sprintf(name, "%s", text);
4879 setString(&ti->identifier, identifier);
4880 setString(&ti->name, name);
4881 setString(&ti->name_sorting, name);
4882 setString(&ti->infotext, "Loops Volume");
4884 pushTreeInfo(&volumes_loops, ti);
4886 if (value == setup.volume_loops)
4887 current_volume_loops_found = TRUE;
4890 if (!current_volume_loops_found)
4892 // add entry for non-preset volume value
4894 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4895 char identifier[32], name[32];
4896 int value = setup.volume_loops;
4898 ti->node_top = &volumes_loops;
4899 ti->sort_priority = value;
4901 sprintf(identifier, "%d", value);
4902 sprintf(name, "%d %% (Current)", value);
4904 setString(&ti->identifier, identifier);
4905 setString(&ti->name, name);
4906 setString(&ti->name_sorting, name);
4907 setString(&ti->infotext, "Loops Volume");
4909 pushTreeInfo(&volumes_loops, ti);
4912 /* sort volume values to start with lowest volume value */
4913 sortTreeInfo(&volumes_loops);
4915 /* set current volume value to configured volume value */
4916 volume_loops_current =
4917 getTreeInfoFromIdentifier(volumes_loops,i_to_a(setup.volume_loops));
4919 /* if that fails, set current volume to reliable default value */
4920 if (volume_loops_current == NULL)
4921 volume_loops_current =
4922 getTreeInfoFromIdentifier(volumes_loops, i_to_a(100));
4924 /* if that also fails, set current volume to first available value */
4925 if (volume_loops_current == NULL)
4926 volume_loops_current = volumes_loops;
4929 if (volumes_music == NULL)
4931 boolean current_volume_music_found = FALSE;
4934 for (i = 0; volumes_list[i].value != -1; i++)
4936 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4937 char identifier[32], name[32];
4938 int value = volumes_list[i].value;
4939 char *text = volumes_list[i].text;
4941 ti->node_top = &volumes_music;
4942 ti->sort_priority = value;
4944 sprintf(identifier, "%d", value);
4945 sprintf(name, "%s", text);
4947 setString(&ti->identifier, identifier);
4948 setString(&ti->name, name);
4949 setString(&ti->name_sorting, name);
4950 setString(&ti->infotext, "Music Volume");
4952 pushTreeInfo(&volumes_music, ti);
4954 if (value == setup.volume_music)
4955 current_volume_music_found = TRUE;
4958 if (!current_volume_music_found)
4960 // add entry for non-preset volume value
4962 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
4963 char identifier[32], name[32];
4964 int value = setup.volume_music;
4966 ti->node_top = &volumes_music;
4967 ti->sort_priority = value;
4969 sprintf(identifier, "%d", value);
4970 sprintf(name, "%d %% (Current)", value);
4972 setString(&ti->identifier, identifier);
4973 setString(&ti->name, name);
4974 setString(&ti->name_sorting, name);
4975 setString(&ti->infotext, "Music Volume");
4977 pushTreeInfo(&volumes_music, ti);
4980 /* sort volume values to start with lowest volume value */
4981 sortTreeInfo(&volumes_music);
4983 /* set current volume value to configured volume value */
4984 volume_music_current =
4985 getTreeInfoFromIdentifier(volumes_music,i_to_a(setup.volume_music));
4987 /* if that fails, set current volume to reliable default value */
4988 if (volume_music_current == NULL)
4989 volume_music_current =
4990 getTreeInfoFromIdentifier(volumes_music, i_to_a(100));
4992 /* if that also fails, set current volume to first available value */
4993 if (volume_music_current == NULL)
4994 volume_music_current = volumes_music;
4997 setup.volume_simple = atoi(volume_simple_current->identifier);
4998 setup.volume_loops = atoi(volume_loops_current->identifier);
4999 setup.volume_music = atoi(volume_music_current->identifier);
5001 /* needed for displaying volume text instead of identifier */
5002 volume_simple_text = volume_simple_current->name;
5003 volume_loops_text = volume_loops_current->name;
5004 volume_music_text = volume_music_current->name;
5006 setup_mode = SETUP_MODE_SOUND;
5011 static void execSetupChooseTouchControls()
5013 setup_mode = SETUP_MODE_CHOOSE_TOUCH_CONTROL;
5018 static void execSetupChooseMoveDistance()
5020 setup_mode = SETUP_MODE_CHOOSE_MOVE_DISTANCE;
5025 static void execSetupChooseDropDistance()
5027 setup_mode = SETUP_MODE_CHOOSE_DROP_DISTANCE;
5032 static void execSetupTouch()
5034 if (touch_controls == NULL)
5038 for (i = 0; touch_controls_list[i].value != NULL; i++)
5040 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5041 char identifier[32], name[32];
5042 char *value = touch_controls_list[i].value;
5043 char *text = touch_controls_list[i].text;
5045 ti->node_top = &touch_controls;
5046 ti->sort_priority = i;
5048 sprintf(identifier, "%s", value);
5049 sprintf(name, "%s", text);
5051 setString(&ti->identifier, identifier);
5052 setString(&ti->name, name);
5053 setString(&ti->name_sorting, name);
5054 setString(&ti->infotext, "Control Type");
5056 pushTreeInfo(&touch_controls, ti);
5059 /* sort touch control values to start with lowest touch control value */
5060 sortTreeInfo(&touch_controls);
5062 /* set current touch control value to configured touch control value */
5063 touch_control_current =
5064 getTreeInfoFromIdentifier(touch_controls, setup.touch.control_type);
5066 /* if that fails, set current touch control to reliable default value */
5067 if (touch_control_current == NULL)
5068 touch_control_current =
5069 getTreeInfoFromIdentifier(touch_controls, TOUCH_CONTROL_DEFAULT);
5071 /* if that also fails, set current touch control to first available value */
5072 if (touch_control_current == NULL)
5073 touch_control_current = touch_controls;
5076 if (move_distances == NULL)
5080 for (i = 0; distances_list[i].value != -1; i++)
5082 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5083 char identifier[32], name[32];
5084 int value = distances_list[i].value;
5085 char *text = distances_list[i].text;
5087 ti->node_top = &move_distances;
5088 ti->sort_priority = value;
5090 sprintf(identifier, "%d", value);
5091 sprintf(name, "%s", text);
5093 setString(&ti->identifier, identifier);
5094 setString(&ti->name, name);
5095 setString(&ti->name_sorting, name);
5096 setString(&ti->infotext, "Move Distance");
5098 pushTreeInfo(&move_distances, ti);
5101 /* sort distance values to start with lowest distance value */
5102 sortTreeInfo(&move_distances);
5104 /* set current distance value to configured distance value */
5105 move_distance_current =
5106 getTreeInfoFromIdentifier(move_distances,
5107 i_to_a(setup.touch.move_distance));
5109 /* if that fails, set current distance to reliable default value */
5110 if (move_distance_current == NULL)
5111 move_distance_current =
5112 getTreeInfoFromIdentifier(move_distances, i_to_a(1));
5114 /* if that also fails, set current distance to first available value */
5115 if (move_distance_current == NULL)
5116 move_distance_current = move_distances;
5119 if (drop_distances == NULL)
5123 for (i = 0; distances_list[i].value != -1; i++)
5125 TreeInfo *ti = newTreeInfo_setDefaults(TREE_TYPE_UNDEFINED);
5126 char identifier[32], name[32];
5127 int value = distances_list[i].value;
5128 char *text = distances_list[i].text;
5130 ti->node_top = &drop_distances;
5131 ti->sort_priority = value;
5133 sprintf(identifier, "%d", value);
5134 sprintf(name, "%s", text);
5136 setString(&ti->identifier, identifier);
5137 setString(&ti->name, name);
5138 setString(&ti->name_sorting, name);
5139 setString(&ti->infotext, "Drop Distance");
5141 pushTreeInfo(&drop_distances, ti);
5144 /* sort distance values to start with lowest distance value */
5145 sortTreeInfo(&drop_distances);
5147 /* set current distance value to configured distance value */
5148 drop_distance_current =
5149 getTreeInfoFromIdentifier(drop_distances,
5150 i_to_a(setup.touch.drop_distance));
5152 /* if that fails, set current distance to reliable default value */
5153 if (drop_distance_current == NULL)
5154 drop_distance_current =
5155 getTreeInfoFromIdentifier(drop_distances, i_to_a(1));
5157 /* if that also fails, set current distance to first available value */
5158 if (drop_distance_current == NULL)
5159 drop_distance_current = drop_distances;
5162 setup.touch.control_type = touch_control_current->identifier;
5163 setup.touch.move_distance = atoi(move_distance_current->identifier);
5164 setup.touch.drop_distance = atoi(drop_distance_current->identifier);
5166 /* needed for displaying volume text instead of identifier */
5167 touch_controls_text = touch_control_current->name;
5168 move_distance_text = move_distance_current->name;
5169 drop_distance_text = drop_distance_current->name;
5171 setup_mode = SETUP_MODE_TOUCH;
5176 static void execSetupArtwork()
5179 printf("::: '%s', '%s', '%s'\n",
5180 artwork.gfx_current->subdir,
5181 artwork.gfx_current->fullpath,
5182 artwork.gfx_current->basepath);
5185 setup.graphics_set = artwork.gfx_current->identifier;
5186 setup.sounds_set = artwork.snd_current->identifier;
5187 setup.music_set = artwork.mus_current->identifier;
5189 /* needed if last screen (setup choice) changed graphics, sounds or music */
5190 ReloadCustomArtwork(0);
5192 /* needed for displaying artwork name instead of artwork identifier */
5193 graphics_set_name = artwork.gfx_current->name;
5194 sounds_set_name = artwork.snd_current->name;
5195 music_set_name = artwork.mus_current->name;
5197 setup_mode = SETUP_MODE_ARTWORK;
5202 static void execSetupChooseGraphics()
5204 setup_mode = SETUP_MODE_CHOOSE_GRAPHICS;
5209 static void execSetupChooseSounds()
5211 setup_mode = SETUP_MODE_CHOOSE_SOUNDS;
5216 static void execSetupChooseMusic()
5218 setup_mode = SETUP_MODE_CHOOSE_MUSIC;
5223 #if !defined(PLATFORM_ANDROID)
5224 static void execSetupInput()
5226 setup_mode = SETUP_MODE_INPUT;
5232 static void execSetupShortcuts()
5234 setup_mode = SETUP_MODE_SHORTCUTS;
5239 static void execSetupShortcuts1()
5241 setup_mode = SETUP_MODE_SHORTCUTS_1;
5246 static void execSetupShortcuts2()
5248 setup_mode = SETUP_MODE_SHORTCUTS_2;
5253 static void execSetupShortcuts3()
5255 setup_mode = SETUP_MODE_SHORTCUTS_3;
5260 static void execSetupShortcuts4()
5262 setup_mode = SETUP_MODE_SHORTCUTS_4;
5267 static void execSetupShortcuts5()
5269 setup_mode = SETUP_MODE_SHORTCUTS_5;
5274 static void execExitSetup()
5276 game_status = GAME_MODE_MAIN;
5281 static void execSaveAndExitSetup()
5287 static struct TokenInfo setup_info_main[] =
5289 { TYPE_ENTER_MENU, execSetupGame, "Game & Menu" },
5290 { TYPE_ENTER_MENU, execSetupEditor, "Editor" },
5291 { TYPE_ENTER_MENU, execSetupGraphics, "Graphics" },
5292 { TYPE_ENTER_MENU, execSetupSound, "Sound & Music" },
5293 { TYPE_ENTER_MENU, execSetupArtwork, "Custom Artwork" },
5294 #if !defined(PLATFORM_ANDROID)
5295 { TYPE_ENTER_MENU, execSetupInput, "Input Devices" },
5296 { TYPE_ENTER_MENU, execSetupTouch, "Touch Controls" },
5298 { TYPE_ENTER_MENU, execSetupTouch, "Touch Controls" },
5300 { TYPE_ENTER_MENU, execSetupShortcuts, "Key Shortcuts" },
5301 { TYPE_EMPTY, NULL, "" },
5302 { TYPE_LEAVE_MENU, execExitSetup, "Exit" },
5303 { TYPE_LEAVE_MENU, execSaveAndExitSetup, "Save and Exit" },
5308 static struct TokenInfo setup_info_game[] =
5310 { TYPE_SWITCH, &setup.team_mode, "Team-Mode (Multi-Player):" },
5311 { TYPE_YES_NO, &setup.input_on_focus, "Only Move Focussed Player:" },
5312 { TYPE_SWITCH, &setup.handicap, "Handicap:" },
5313 { TYPE_SWITCH, &setup.skip_levels, "Skip Unsolved Levels:" },
5314 { TYPE_SWITCH, &setup.time_limit, "Time Limit:" },
5315 { TYPE_SWITCH, &setup.autorecord, "Auto-Record Tapes:" },
5316 { TYPE_ENTER_LIST, execSetupChooseGameSpeed, "Game Speed:" },
5317 { TYPE_STRING, &game_speed_text, "" },
5319 { TYPE_ENTER_LIST, execSetupChooseScrollDelay, "Scroll Delay:" },
5320 { TYPE_STRING, &scroll_delay_text, "" },
5322 { TYPE_ENTER_LIST, execSetupChooseSnapshotMode,"Game Engine Snapshot Mode:" },
5323 { TYPE_STRING, &snapshot_mode_text, "" },
5324 { TYPE_SWITCH, &setup.show_snapshot_buttons,"Show Snapshot Buttons:" },
5325 { TYPE_EMPTY, NULL, "" },
5326 { TYPE_LEAVE_MENU, execSetupMain, "Back" },
5331 static struct TokenInfo setup_info_editor[] =
5334 { TYPE_SWITCH, &setup.editor.el_boulderdash, "Boulder Dash:" },
5335 { TYPE_SWITCH, &setup.editor.el_emerald_mine, "Emerald Mine:" },
5336 { TYPE_SWITCH, &setup.editor.el_emerald_mine_club, "Emerald Mine Club:" },
5337 { TYPE_SWITCH, &setup.editor.el_more, "Rocks'n'Diamonds:" },
5338 { TYPE_SWITCH, &setup.editor.el_sokoban, "Sokoban:" },
5339 { TYPE_SWITCH, &setup.editor.el_supaplex, "Supaplex:" },
5340 { TYPE_SWITCH, &setup.editor.el_diamond_caves, "Diamond Caves II:" },
5341 { TYPE_SWITCH, &setup.editor.el_dx_boulderdash,"DX-Boulderdash:" },
5343 { TYPE_SWITCH, &setup.editor.el_chars, "Text Characters:" },
5344 { TYPE_SWITCH, &setup.editor.el_steel_chars, "Text Characters (Steel):" },
5345 { TYPE_SWITCH, &setup.editor.el_custom, "Custom & Group Elements:" },
5347 { TYPE_SWITCH, &setup.editor.el_headlines, "Headlines:" },
5349 { TYPE_SWITCH, &setup.editor.el_user_defined, "User defined element list:" },
5350 { TYPE_SWITCH, &setup.editor.el_dynamic, "Dynamic level elements:" },
5351 { TYPE_EMPTY, NULL, "" },
5353 { TYPE_SWITCH, &setup.editor.el_by_game, "Show elements by game:" },
5354 { TYPE_SWITCH, &setup.editor.el_by_type, "Show elements by type:" },
5355 { TYPE_EMPTY, NULL, "" },
5357 { TYPE_SWITCH, &setup.editor.show_element_token, "Show element token:" },
5358 { TYPE_EMPTY, NULL, "" },
5359 { TYPE_LEAVE_MENU, execSetupMain, "Back" },
5364 static struct TokenInfo setup_info_graphics[] =
5366 #if !defined(PLATFORM_ANDROID)
5367 { TYPE_SWITCH, &setup.fullscreen, "Fullscreen:" },
5368 #if defined(TARGET_SDL2)
5369 { TYPE_ENTER_LIST, execSetupChooseWindowSize, "Window Scaling:" },
5370 { TYPE_STRING, &window_size_text, "" },
5371 { TYPE_ENTER_LIST, execSetupChooseScalingType, "Anti-Aliasing:" },
5372 { TYPE_STRING, &scaling_type_text, "" },
5374 { TYPE_ENTER_LIST, execSetupChooseScreenMode, "Fullscreen Mode:" },
5375 { TYPE_STRING, &screen_mode_text, "" },
5379 { TYPE_ENTER_LIST, execSetupChooseScrollDelay, "Scroll Delay:" },
5380 { TYPE_STRING, &scroll_delay_text, "" },
5382 { TYPE_SWITCH, &setup.fade_screens, "Fade Screens:" },
5383 { TYPE_SWITCH, &setup.quick_switch, "Quick Player Focus Switch:" },
5384 { TYPE_SWITCH, &setup.quick_doors, "Quick Menu Doors:" },
5385 { TYPE_SWITCH, &setup.show_titlescreen,"Show Title Screens:" },
5386 { TYPE_SWITCH, &setup.toons, "Show Menu Animations:" },
5387 { TYPE_ECS_AGA, &setup.prefer_aga_graphics,"EMC graphics preference:" },
5388 { TYPE_SWITCH, &setup.sp_show_border_elements,"Supaplex Border Elements:" },
5389 { TYPE_SWITCH, &setup.small_game_graphics, "Small Game Graphics:" },
5390 { TYPE_EMPTY, NULL, "" },
5391 { TYPE_LEAVE_MENU, execSetupMain, "Back" },
5396 static struct TokenInfo setup_info_sound[] =
5398 { TYPE_SWITCH, &setup.sound_simple, "Sound Effects (Normal):" },
5399 { TYPE_SWITCH, &setup.sound_loops, "Sound Effects (Looping):" },
5400 { TYPE_SWITCH, &setup.sound_music, "Music:" },
5401 { TYPE_EMPTY, NULL, "" },
5402 { TYPE_ENTER_LIST, execSetupChooseVolumeSimple, "Sound Volume (Normal):" },
5403 { TYPE_STRING, &volume_simple_text, "" },
5404 { TYPE_ENTER_LIST, execSetupChooseVolumeLoops, "Sound Volume (Looping):" },
5405 { TYPE_STRING, &volume_loops_text, "" },
5406 { TYPE_ENTER_LIST, execSetupChooseVolumeMusic, "Music Volume:" },
5407 { TYPE_STRING, &volume_music_text, "" },
5408 { TYPE_EMPTY, NULL, "" },
5409 { TYPE_LEAVE_MENU, execSetupMain, "Back" },
5414 static struct TokenInfo setup_info_artwork[] =
5416 { TYPE_ENTER_LIST, execSetupChooseGraphics,"Custom Graphics:" },
5417 { TYPE_STRING, &graphics_set_name, "" },
5418 { TYPE_ENTER_LIST, execSetupChooseSounds, "Custom Sounds:" },
5419 { TYPE_STRING, &sounds_set_name, "" },
5420 { TYPE_ENTER_LIST, execSetupChooseMusic, "Custom Music:" },
5421 { TYPE_STRING, &music_set_name, "" },
5422 { TYPE_EMPTY, NULL, "" },
5423 { TYPE_YES_NO_AUTO,&setup.override_level_graphics,"Override Level Graphics:"},
5424 { TYPE_YES_NO_AUTO,&setup.override_level_sounds, "Override Level Sounds:" },
5425 { TYPE_YES_NO_AUTO,&setup.override_level_music, "Override Level Music:" },
5426 { TYPE_EMPTY, NULL, "" },
5427 { TYPE_LEAVE_MENU, execSetupMain, "Back" },
5432 static struct TokenInfo setup_info_input[] =
5434 { TYPE_SWITCH, NULL, "Player:" },
5435 { TYPE_SWITCH, NULL, "Device:" },
5436 { TYPE_ENTER_MENU, NULL, "" },
5437 { TYPE_EMPTY, NULL, "" },
5438 { TYPE_EMPTY, NULL, "" },
5439 { TYPE_EMPTY, NULL, "" },
5440 { TYPE_EMPTY, NULL, "" },
5441 { TYPE_EMPTY, NULL, "" },
5442 { TYPE_EMPTY, NULL, "" },
5443 { TYPE_EMPTY, NULL, "" },
5444 { TYPE_EMPTY, NULL, "" },
5445 { TYPE_EMPTY, NULL, "" },
5446 { TYPE_EMPTY, NULL, "" },
5447 { TYPE_LEAVE_MENU, execSetupMain, "Back" },
5452 static struct TokenInfo setup_info_touch[] =
5454 { TYPE_ENTER_LIST, execSetupChooseTouchControls, "Touch Control Type:" },
5455 { TYPE_STRING, &touch_controls_text, "" },
5456 { TYPE_EMPTY, NULL, "" },
5457 { TYPE_ENTER_LIST, execSetupChooseMoveDistance, "Move Trigger Distance:" },
5458 { TYPE_STRING, &move_distance_text, "" },
5459 { TYPE_ENTER_LIST, execSetupChooseDropDistance, "Drop Trigger Distance:" },
5460 { TYPE_STRING, &drop_distance_text, "" },
5461 { TYPE_EMPTY, NULL, "" },
5462 { TYPE_LEAVE_MENU, execSetupMain, "Back" },
5467 static struct TokenInfo setup_info_shortcuts[] =
5469 { TYPE_ENTER_MENU, execSetupShortcuts1, "Various Keys" },
5470 { TYPE_ENTER_MENU, execSetupShortcuts2, "Player Focus" },
5471 { TYPE_ENTER_MENU, execSetupShortcuts3, "Tape Buttons" },
5472 { TYPE_ENTER_MENU, execSetupShortcuts4, "Sound & Music" },
5473 { TYPE_ENTER_MENU, execSetupShortcuts5, "TAS Snap Keys" },
5474 { TYPE_EMPTY, NULL, "" },
5475 { TYPE_LEAVE_MENU, execSetupMain, "Back" },
5480 static struct TokenInfo setup_info_shortcuts_1[] =
5482 { TYPE_KEYTEXT, NULL, "Quick Save Game to Tape:", },
5483 { TYPE_KEY, &setup.shortcut.save_game, "" },
5484 { TYPE_KEYTEXT, NULL, "Quick Load Game from Tape:", },
5485 { TYPE_KEY, &setup.shortcut.load_game, "" },
5486 { TYPE_KEYTEXT, NULL, "Start Game & Toggle Pause:", },
5487 { TYPE_KEY, &setup.shortcut.toggle_pause, "" },
5488 { TYPE_EMPTY, NULL, "" },
5489 { TYPE_YES_NO, &setup.ask_on_escape, "Ask on 'Esc' Key:" },
5490 { TYPE_YES_NO, &setup.ask_on_escape_editor, "Ask on 'Esc' Key (Editor):" },
5491 { TYPE_EMPTY, NULL, "" },
5492 { TYPE_LEAVE_MENU, execSetupShortcuts, "Back" },
5497 static struct TokenInfo setup_info_shortcuts_2[] =
5499 { TYPE_KEYTEXT, NULL, "Set Focus to Player 1:", },
5500 { TYPE_KEY, &setup.shortcut.focus_player[0], "" },
5501 { TYPE_KEYTEXT, NULL, "Set Focus to Player 2:", },
5502 { TYPE_KEY, &setup.shortcut.focus_player[1], "" },
5503 { TYPE_KEYTEXT, NULL, "Set Focus to Player 3:", },
5504 { TYPE_KEY, &setup.shortcut.focus_player[2], "" },
5505 { TYPE_KEYTEXT, NULL, "Set Focus to Player 4:", },
5506 { TYPE_KEY, &setup.shortcut.focus_player[3], "" },
5507 { TYPE_KEYTEXT, NULL, "Set Focus to All Players:", },
5508 { TYPE_KEY, &setup.shortcut.focus_player_all, "" },
5509 { TYPE_EMPTY, NULL, "" },
5510 { TYPE_LEAVE_MENU, execSetupShortcuts, "Back" },
5515 static struct TokenInfo setup_info_shortcuts_3[] =
5517 { TYPE_KEYTEXT, NULL, "Eject Tape:", },
5518 { TYPE_KEY, &setup.shortcut.tape_eject, "" },
5519 { TYPE_KEYTEXT, NULL, "Warp / Single Step:", },
5520 { TYPE_KEY, &setup.shortcut.tape_extra, "" },
5521 { TYPE_KEYTEXT, NULL, "Stop Tape:", },
5522 { TYPE_KEY, &setup.shortcut.tape_stop, "" },
5523 { TYPE_KEYTEXT, NULL, "Pause / Unpause Tape:",},
5524 { TYPE_KEY, &setup.shortcut.tape_pause, "" },
5525 { TYPE_KEYTEXT, NULL, "Record Tape:", },
5526 { TYPE_KEY, &setup.shortcut.tape_record, "" },
5527 { TYPE_KEYTEXT, NULL, "Play Tape:", },
5528 { TYPE_KEY, &setup.shortcut.tape_play, "" },
5529 { TYPE_EMPTY, NULL, "" },
5530 { TYPE_LEAVE_MENU, execSetupShortcuts, "Back" },
5535 static struct TokenInfo setup_info_shortcuts_4[] =
5537 { TYPE_KEYTEXT, NULL, "Toggle Sound Effects (Normal):", },
5538 { TYPE_KEY, &setup.shortcut.sound_simple, "" },
5539 { TYPE_KEYTEXT, NULL, "Toggle Sound Effects (Looping):", },
5540 { TYPE_KEY, &setup.shortcut.sound_loops, "" },
5541 { TYPE_KEYTEXT, NULL, "Toggle Music:", },
5542 { TYPE_KEY, &setup.shortcut.sound_music, "" },
5543 { TYPE_EMPTY, NULL, "" },
5544 { TYPE_LEAVE_MENU, execSetupShortcuts, "Back" },
5549 static struct TokenInfo setup_info_shortcuts_5[] =
5551 { TYPE_KEYTEXT, NULL, "Snap Left:", },
5552 { TYPE_KEY, &setup.shortcut.snap_left, "" },
5553 { TYPE_KEYTEXT, NULL, "Snap Right:", },
5554 { TYPE_KEY, &setup.shortcut.snap_right, "" },
5555 { TYPE_KEYTEXT, NULL, "Snap Up:", },
5556 { TYPE_KEY, &setup.shortcut.snap_up, "" },
5557 { TYPE_KEYTEXT, NULL, "Snap Down:", },
5558 { TYPE_KEY, &setup.shortcut.snap_down, "" },
5559 { TYPE_EMPTY, NULL, "" },
5560 { TYPE_LEAVE_MENU, execSetupShortcuts, "Back" },
5565 static Key getSetupKey()
5567 Key key = KSYM_UNDEFINED;
5568 boolean got_key_event = FALSE;
5570 while (!got_key_event)
5572 if (PendingEvent()) /* got event */
5580 case EVENT_KEYPRESS:
5582 key = GetEventKey((KeyEvent *)&event, TRUE);
5584 /* press 'Escape' or 'Enter' to keep the existing key binding */
5585 if (key == KSYM_Escape || key == KSYM_Return)
5586 key = KSYM_UNDEFINED; /* keep old value */
5588 got_key_event = TRUE;
5592 case EVENT_KEYRELEASE:
5593 key_joystick_mapping = 0;
5597 HandleOtherEvents(&event);
5605 WaitUntilDelayReached(&sync_frame_delay, sync_frame_delay_value);
5611 static int getSetupValueFont(int type, void *value)
5613 if (type & TYPE_KEY)
5614 return (type & TYPE_QUERY ? FONT_INPUT_1_ACTIVE : FONT_VALUE_1);
5615 else if (type & TYPE_STRING)
5616 return FONT_VALUE_2;
5617 else if (type & TYPE_ECS_AGA)
5618 return FONT_VALUE_1;
5619 else if (type & TYPE_BOOLEAN_STYLE)
5620 return (*(boolean *)value ? FONT_OPTION_ON : FONT_OPTION_OFF);
5621 else if (type & TYPE_YES_NO_AUTO)
5622 return (*(int *)value == AUTO ? FONT_OPTION_ON :
5623 *(int *)value == FALSE ? FONT_OPTION_OFF : FONT_OPTION_ON);
5625 return FONT_VALUE_1;
5628 static void drawSetupValue(int screen_pos, int setup_info_pos_raw)
5630 int si_pos = (setup_info_pos_raw < 0 ? screen_pos : setup_info_pos_raw);
5631 struct TokenInfo *si = &setup_info[si_pos];
5632 boolean font_draw_xoffset_modified = FALSE;
5633 int font_draw_xoffset_old = -1;
5634 int xoffset = (num_setup_info < max_setup_info ? -1 : 0);
5635 int menu_screen_value_xpos = MENU_SCREEN_VALUE_XPOS + xoffset;
5636 int menu_screen_max_xpos = MENU_SCREEN_MAX_XPOS + xoffset;
5637 int xpos = menu_screen_value_xpos;
5638 int ypos = MENU_SCREEN_START_YPOS + screen_pos;
5639 int startx = mSX + xpos * 32;
5640 int starty = mSY + ypos * 32;
5641 int font_nr, font_width;
5642 int type = si->type;
5643 void *value = si->value;
5644 char *value_string = getSetupValue(type, value);
5647 if (value_string == NULL)
5650 if (type & TYPE_KEY)
5652 xpos = MENU_SCREEN_START_XPOS;
5654 if (type & TYPE_QUERY)
5655 value_string = "<press key>";
5657 else if (type & TYPE_STRING)
5659 int max_value_len = (SCR_FIELDX - 2) * 2;
5661 xpos = MENU_SCREEN_START_XPOS;
5663 if (strlen(value_string) > max_value_len)
5664 value_string[max_value_len] = '\0';
5666 else if (type & TYPE_YES_NO_AUTO)
5668 xpos = menu_screen_value_xpos - 1;
5671 startx = mSX + xpos * 32;
5672 starty = mSY + ypos * 32;
5673 font_nr = getSetupValueFont(type, value);
5674 font_width = getFontWidth(font_nr);
5676 /* downward compatibility correction for Juergen Bonhagen's menu settings */
5677 if (setup_mode != SETUP_MODE_INPUT)
5679 int max_menu_text_length_big = (menu_screen_value_xpos -
5680 MENU_SCREEN_START_XPOS);
5681 int max_menu_text_length_medium = max_menu_text_length_big * 2;
5682 int check_font_nr = FONT_OPTION_ON; /* known font that needs correction */
5683 int font1_xoffset = getFontBitmapInfo(font_nr)->draw_xoffset;
5684 int font2_xoffset = getFontBitmapInfo(check_font_nr)->draw_xoffset;
5685 int text_startx = mSX + MENU_SCREEN_START_XPOS * 32;
5686 int text_font_nr = getMenuTextFont(FONT_MENU_2);
5687 int text_font_xoffset = getFontBitmapInfo(text_font_nr)->draw_xoffset;
5688 int text_width = max_menu_text_length_medium * getFontWidth(text_font_nr);
5689 boolean correct_font_draw_xoffset = FALSE;
5691 if (xpos == MENU_SCREEN_START_XPOS &&
5692 startx + font1_xoffset < text_startx + text_font_xoffset)
5693 correct_font_draw_xoffset = TRUE;
5695 if (xpos == menu_screen_value_xpos &&
5696 startx + font2_xoffset < text_startx + text_width + text_font_xoffset)
5697 correct_font_draw_xoffset = TRUE;
5699 /* check if setup value would overlap with setup text when printed */
5700 /* (this can happen for extreme/wrong values for font draw offset) */
5701 if (correct_font_draw_xoffset)
5703 font_draw_xoffset_old = getFontBitmapInfo(font_nr)->draw_xoffset;
5704 font_draw_xoffset_modified = TRUE;
5706 if (type & TYPE_KEY)
5707 getFontBitmapInfo(font_nr)->draw_xoffset += 2 * getFontWidth(font_nr);
5708 else if (!(type & TYPE_STRING))
5709 getFontBitmapInfo(font_nr)->draw_xoffset = text_font_xoffset + 20 -
5710 max_menu_text_length_medium * (16 - getFontWidth(text_font_nr));
5714 for (i = 0; i <= menu_screen_max_xpos - xpos; i++)
5715 DrawText(startx + i * font_width, starty, " ", font_nr);
5717 DrawText(startx, starty, value_string, font_nr);
5719 if (font_draw_xoffset_modified)
5720 getFontBitmapInfo(font_nr)->draw_xoffset = font_draw_xoffset_old;
5723 static void changeSetupValue(int screen_pos, int setup_info_pos_raw, int dx)
5725 int si_pos = (setup_info_pos_raw < 0 ? screen_pos : setup_info_pos_raw);
5726 struct TokenInfo *si = &setup_info[si_pos];
5728 if (si->type & TYPE_BOOLEAN_STYLE)
5730 *(boolean *)si->value ^= TRUE;
5732 else if (si->type & TYPE_YES_NO_AUTO)
5736 (*(int *)si->value == AUTO ? TRUE :
5737 *(int *)si->value == TRUE ? FALSE : AUTO) :
5738 (*(int *)si->value == TRUE ? AUTO :
5739 *(int *)si->value == AUTO ? FALSE : TRUE));
5741 else if (si->type & TYPE_KEY)
5745 si->type |= TYPE_QUERY;
5746 drawSetupValue(screen_pos, setup_info_pos_raw);
5747 si->type &= ~TYPE_QUERY;
5749 key = getSetupKey();
5750 if (key != KSYM_UNDEFINED)
5751 *(Key *)si->value = key;
5754 drawSetupValue(screen_pos, setup_info_pos_raw);
5756 // fullscreen state may have changed at this point
5757 if (si->value == &setup.fullscreen)
5758 ToggleFullscreenOrChangeWindowScalingIfNeeded();
5761 static void DrawSetupScreen_Generic()
5763 int fade_mask = REDRAW_FIELD;
5764 boolean redraw_all = FALSE;
5765 char *title_string = NULL;
5768 if (CheckIfGlobalBorderHasChanged())
5769 fade_mask = REDRAW_ALL;
5773 FreeScreenGadgets();
5774 CreateScreenGadgets();
5776 CloseDoor(DOOR_CLOSE_2);
5778 if (redraw_mask & REDRAW_ALL)
5783 OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
5787 if (setup_mode == SETUP_MODE_MAIN)
5789 setup_info = setup_info_main;
5790 title_string = "Setup";
5792 else if (setup_mode == SETUP_MODE_GAME)
5794 setup_info = setup_info_game;
5795 title_string = "Setup Game";
5797 else if (setup_mode == SETUP_MODE_EDITOR)
5799 setup_info = setup_info_editor;
5800 title_string = "Setup Editor";
5802 else if (setup_mode == SETUP_MODE_GRAPHICS)
5804 setup_info = setup_info_graphics;
5805 title_string = "Setup Graphics";
5807 else if (setup_mode == SETUP_MODE_SOUND)
5809 setup_info = setup_info_sound;
5810 title_string = "Setup Sound";
5812 else if (setup_mode == SETUP_MODE_ARTWORK)
5814 setup_info = setup_info_artwork;
5815 title_string = "Custom Artwork";
5817 else if (setup_mode == SETUP_MODE_TOUCH)
5819 setup_info = setup_info_touch;
5820 title_string = "Setup Touch Ctrls";
5822 else if (setup_mode == SETUP_MODE_SHORTCUTS)
5824 setup_info = setup_info_shortcuts;
5825 title_string = "Setup Shortcuts";
5827 else if (setup_mode == SETUP_MODE_SHORTCUTS_1)
5829 setup_info = setup_info_shortcuts_1;
5830 title_string = "Setup Shortcuts";
5832 else if (setup_mode == SETUP_MODE_SHORTCUTS_2)
5834 setup_info = setup_info_shortcuts_2;
5835 title_string = "Setup Shortcuts";
5837 else if (setup_mode == SETUP_MODE_SHORTCUTS_3)
5839 setup_info = setup_info_shortcuts_3;
5840 title_string = "Setup Shortcuts";
5842 else if (setup_mode == SETUP_MODE_SHORTCUTS_4)
5844 setup_info = setup_info_shortcuts_4;
5845 title_string = "Setup Shortcuts";
5847 else if (setup_mode == SETUP_MODE_SHORTCUTS_5)
5849 setup_info = setup_info_shortcuts_5;
5850 title_string = "Setup Shortcuts";
5853 DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, title_string);
5855 // determine maximal number of setup entries that can be displayed on screen
5857 for (i = 0; setup_info[i].type != 0 && i < NUM_MENU_ENTRIES_ON_SCREEN; i++)
5860 // determine maximal number of setup entries available for this setup screen
5862 for (i = 0; setup_info[i].type != 0; i++)
5865 HandleSetupScreen_Generic(0, 0, 0, 0, MB_MENU_INITIALIZE);
5867 MapScreenGadgets(max_setup_info);
5870 redraw_mask = fade_mask = REDRAW_ALL;
5872 DrawMaskedBorder(fade_mask);
5879 void HandleSetupScreen_Generic(int mx, int my, int dx, int dy, int button)
5881 menu_info = setup_info;
5883 HandleMenuScreen(mx, my, dx, dy, button,
5884 setup_mode, num_setup_info, max_setup_info);
5887 void DrawSetupScreen_Input()
5891 FadeOut(REDRAW_FIELD);
5895 setup_info = setup_info_input;
5897 DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Setup Input");
5899 DrawTextSCentered(SYSIZE - 20, FONT_TITLE_2,
5900 "Joysticks deactivated on this screen");
5902 for (i = 0; setup_info[i].type != 0 && i < MAX_MENU_ENTRIES_ON_SCREEN; i++)
5904 if (setup_info[i].type & (TYPE_ENTER_MENU|TYPE_ENTER_LIST))
5905 initCursor(i, IMG_MENU_BUTTON_ENTER_MENU);
5906 else if (setup_info[i].type & (TYPE_LEAVE_MENU|TYPE_LEAVE_LIST))
5907 initCursor(i, IMG_MENU_BUTTON_LEAVE_MENU);
5908 else if (setup_info[i].type & ~TYPE_SKIP_ENTRY)
5909 initCursor(i, IMG_MENU_BUTTON);
5911 DrawCursorAndText_Setup(i, -1, FALSE);
5914 /* create gadgets for setup input menu screen */
5915 FreeScreenGadgets();
5916 CreateScreenGadgets();
5918 /* map gadgets for setup input menu screen */
5919 MapScreenMenuGadgets(SCREEN_MASK_INPUT);
5921 HandleSetupScreen_Input(0, 0, 0, 0, MB_MENU_INITIALIZE);
5923 FadeIn(REDRAW_FIELD);
5928 static void setJoystickDeviceToNr(char *device_name, int device_nr)
5930 if (device_name == NULL)
5933 if (device_nr < 0 || device_nr >= MAX_PLAYERS)
5936 if (strlen(device_name) > 1)
5938 char c1 = device_name[strlen(device_name) - 1];
5939 char c2 = device_name[strlen(device_name) - 2];
5941 if (c1 >= '0' && c1 <= '9' && !(c2 >= '0' && c2 <= '9'))
5942 device_name[strlen(device_name) - 1] = '0' + (char)(device_nr % 10);
5945 strncpy(device_name, getDeviceNameFromJoystickNr(device_nr),
5946 strlen(device_name));
5949 static void drawPlayerSetupInputInfo(int player_nr, boolean active)
5952 static struct SetupKeyboardInfo custom_key;
5959 { &custom_key.left, "Joystick Left" },
5960 { &custom_key.right, "Joystick Right" },
5961 { &custom_key.up, "Joystick Up" },
5962 { &custom_key.down, "Joystick Down" },
5963 { &custom_key.snap, "Button 1" },
5964 { &custom_key.drop, "Button 2" }
5966 static char *joystick_name[MAX_PLAYERS] =
5973 int text_font_nr = (active ? FONT_MENU_1_ACTIVE : FONT_MENU_1);
5977 custom_key = setup.input[player_nr].key;
5979 DrawText(mSX + 11 * 32, mSY + 2 * 32, int2str(player_nr + 1, 1),
5980 FONT_INPUT_1_ACTIVE);
5982 ClearRectangleOnBackground(drawto, mSX + 8 * TILEX, mSY + 2 * TILEY,
5984 DrawFixedGraphicThruMaskExt(drawto, mSX + 8 * TILEX, mSY + 2 * TILEY,
5985 PLAYER_NR_GFX(IMG_PLAYER_1, player_nr), 0);
5987 if (setup.input[player_nr].use_joystick)
5989 char *device_name = setup.input[player_nr].joy.device_name;
5990 char *text = joystick_name[getJoystickNrFromDeviceName(device_name)];
5991 int font_nr = (joystick.fd[player_nr] < 0 ? FONT_VALUE_OLD : FONT_VALUE_1);
5993 DrawText(mSX + 8 * 32, mSY + 3 * 32, text, font_nr);
5994 DrawText(mSX + 32, mSY + 4 * 32, "Calibrate", text_font_nr);
5998 DrawText(mSX + 8 * 32, mSY + 3 * 32, "Keyboard ", FONT_VALUE_1);
5999 DrawText(mSX + 1 * 32, mSY + 4 * 32, "Customize", text_font_nr);
6002 DrawText(mSX + 32, mSY + 5 * 32, "Actual Settings:", FONT_MENU_1);
6004 drawCursorXY(1, 4, IMG_MENU_BUTTON_LEFT);
6005 drawCursorXY(1, 5, IMG_MENU_BUTTON_RIGHT);
6006 drawCursorXY(1, 6, IMG_MENU_BUTTON_UP);
6007 drawCursorXY(1, 7, IMG_MENU_BUTTON_DOWN);
6009 DrawText(mSX + 2 * 32, mSY + 6 * 32, ":", FONT_VALUE_OLD);
6010 DrawText(mSX + 2 * 32, mSY + 7 * 32, ":", FONT_VALUE_OLD);
6011 DrawText(mSX + 2 * 32, mSY + 8 * 32, ":", FONT_VALUE_OLD);
6012 DrawText(mSX + 2 * 32, mSY + 9 * 32, ":", FONT_VALUE_OLD);
6013 DrawText(mSX + 1 * 32, mSY + 10 * 32, "Snap Field:", FONT_VALUE_OLD);
6014 DrawText(mSX + 1 * 32, mSY + 12 * 32, "Drop Element:", FONT_VALUE_OLD);
6016 for (i = 0; i < 6; i++)
6018 int ypos = 6 + i + (i > 3 ? i-3 : 0);
6020 DrawText(mSX + 3 * 32, mSY + ypos * 32,
6022 DrawText(mSX + 3 * 32, mSY + ypos * 32,
6023 (setup.input[player_nr].use_joystick ?
6025 getKeyNameFromKey(*custom[i].key)), FONT_VALUE_1);
6029 static int input_player_nr = 0;
6031 void HandleSetupScreen_Input_Player(int step, int direction)
6033 int old_player_nr = input_player_nr;
6036 new_player_nr = old_player_nr + step * direction;
6037 if (new_player_nr < 0)
6039 if (new_player_nr > MAX_PLAYERS - 1)
6040 new_player_nr = MAX_PLAYERS - 1;
6042 if (new_player_nr != old_player_nr)
6044 input_player_nr = new_player_nr;
6046 drawPlayerSetupInputInfo(input_player_nr, FALSE);
6050 void HandleSetupScreen_Input(int mx, int my, int dx, int dy, int button)
6052 static int choice = 0;
6055 int pos_start = SETUPINPUT_SCREEN_POS_START;
6056 int pos_empty1 = SETUPINPUT_SCREEN_POS_EMPTY1;
6057 int pos_empty2 = SETUPINPUT_SCREEN_POS_EMPTY2;
6058 int pos_end = SETUPINPUT_SCREEN_POS_END;
6060 if (button == MB_MENU_INITIALIZE)
6062 drawPlayerSetupInputInfo(input_player_nr, (choice == 2));
6064 DrawCursorAndText_Setup(choice, -1, TRUE);
6068 else if (button == MB_MENU_LEAVE)
6070 setup_mode = SETUP_MODE_MAIN;
6077 if (mx || my) /* mouse input */
6079 x = (mx - mSX) / 32;
6080 y = (my - mSY) / 32 - MENU_SCREEN_START_YPOS;
6082 else if (dx || dy) /* keyboard input */
6084 if (dx && choice == 0)
6085 x = (dx < 0 ? 10 : 12);
6086 else if ((dx && choice == 1) ||
6087 (dx == +1 && choice == 2) ||
6088 (dx == -1 && choice == pos_end))
6089 button = MB_MENU_CHOICE;
6093 if (y >= pos_empty1 && y <= pos_empty2)
6094 y = (dy > 0 ? pos_empty2 + 1 : pos_empty1 - 1);
6097 if (y == 0 && dx != 0 && button)
6099 HandleSetupScreen_Input_Player(1, dx < 0 ? -1 : +1);
6101 else if (IN_VIS_FIELD(x, y) && // (does not use "IN_VIS_MENU()" yet)
6102 y >= pos_start && y <= pos_end &&
6103 !(y >= pos_empty1 && y <= pos_empty2))
6109 DrawCursorAndText_Setup(choice, -1, FALSE);
6110 DrawCursorAndText_Setup(y, -1, TRUE);
6112 drawPlayerSetupInputInfo(input_player_nr, (y == 2));
6121 char *device_name = setup.input[input_player_nr].joy.device_name;
6123 if (!setup.input[input_player_nr].use_joystick)
6125 int new_device_nr = (dx >= 0 ? 0 : MAX_PLAYERS - 1);
6127 setJoystickDeviceToNr(device_name, new_device_nr);
6128 setup.input[input_player_nr].use_joystick = TRUE;
6132 int device_nr = getJoystickNrFromDeviceName(device_name);
6133 int new_device_nr = device_nr + (dx >= 0 ? +1 : -1);
6135 if (new_device_nr < 0 || new_device_nr >= MAX_PLAYERS)
6136 setup.input[input_player_nr].use_joystick = FALSE;
6138 setJoystickDeviceToNr(device_name, new_device_nr);
6141 drawPlayerSetupInputInfo(input_player_nr, FALSE);
6145 if (setup.input[input_player_nr].use_joystick)
6148 CalibrateJoystick(input_player_nr);
6151 CustomizeKeyboard(input_player_nr);
6153 else if (y == pos_end)
6159 setup_mode = SETUP_MODE_MAIN;
6166 void CustomizeKeyboard(int player_nr)
6170 boolean finished = FALSE;
6171 static struct SetupKeyboardInfo custom_key;
6176 } customize_step[] =
6178 { &custom_key.left, "Move Left" },
6179 { &custom_key.right, "Move Right" },
6180 { &custom_key.up, "Move Up" },
6181 { &custom_key.down, "Move Down" },
6182 { &custom_key.snap, "Snap Field" },
6183 { &custom_key.drop, "Drop Element" }
6186 /* read existing key bindings from player setup */
6187 custom_key = setup.input[player_nr].key;
6190 FadeOut(REDRAW_FIELD);
6194 DrawTextSCentered(mSY - SY + 16, FONT_TITLE_1, "Keyboard Input");
6197 DrawText(mSX, mSY + (2 + 2 * step_nr) * 32,
6198 customize_step[step_nr].text, FONT_INPUT_1_ACTIVE);
6199 DrawText(mSX, mSY + (2 + 2 * step_nr + 1) * 32,
6200 "Key:", FONT_INPUT_1_ACTIVE);
6201 DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
6202 getKeyNameFromKey(*customize_step[step_nr].key), FONT_VALUE_OLD);
6204 FadeIn(REDRAW_FIELD);
6210 if (PendingEvent()) /* got event */
6218 case EVENT_KEYPRESS:
6220 Key key = GetEventKey((KeyEvent *)&event, FALSE);
6222 if (key == KSYM_Escape || (key == KSYM_Return && step_nr == 6))
6224 if (key == KSYM_Escape)
6225 FadeSkipNextFadeIn();
6231 /* all keys configured -- wait for "Escape" or "Return" key */
6235 /* press 'Enter' to keep the existing key binding */
6236 if (key == KSYM_Return)
6237 key = *customize_step[step_nr].key;
6239 /* check if key already used */
6240 for (i = 0; i < step_nr; i++)
6241 if (*customize_step[i].key == key)
6246 /* got new key binding */
6247 *customize_step[step_nr].key = key;
6248 DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
6250 DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
6251 getKeyNameFromKey(key), FONT_VALUE_1);
6254 /* un-highlight last query */
6255 DrawText(mSX, mSY + (2 + 2 * (step_nr - 1)) * 32,
6256 customize_step[step_nr - 1].text, FONT_MENU_1);
6257 DrawText(mSX, mSY + (2 + 2 * (step_nr - 1) + 1) * 32,
6258 "Key:", FONT_MENU_1);
6260 /* press 'Enter' to leave */
6263 DrawText(mSX + 16, mSY + 15 * 32 + 16,
6264 "Press Enter", FONT_TITLE_1);
6268 /* query next key binding */
6269 DrawText(mSX, mSY + (2 + 2 * step_nr) * 32,
6270 customize_step[step_nr].text, FONT_INPUT_1_ACTIVE);
6271 DrawText(mSX, mSY + (2 + 2 * step_nr + 1) * 32,
6272 "Key:", FONT_INPUT_1_ACTIVE);
6273 DrawText(mSX + 4 * 32, mSY + (2 + 2 * step_nr + 1) * 32,
6274 getKeyNameFromKey(*customize_step[step_nr].key),
6279 case EVENT_KEYRELEASE:
6280 key_joystick_mapping = 0;
6284 HandleOtherEvents(&event);
6292 WaitUntilDelayReached(&sync_frame_delay, sync_frame_delay_value);
6295 /* write new key bindings back to player setup */
6296 setup.input[player_nr].key = custom_key;
6299 DrawSetupScreen_Input();
6302 static boolean CalibrateJoystickMain(int player_nr)
6304 int new_joystick_xleft = JOYSTICK_XMIDDLE;
6305 int new_joystick_xright = JOYSTICK_XMIDDLE;
6306 int new_joystick_yupper = JOYSTICK_YMIDDLE;
6307 int new_joystick_ylower = JOYSTICK_YMIDDLE;
6308 int new_joystick_xmiddle, new_joystick_ymiddle;
6310 int joystick_fd = joystick.fd[player_nr];
6311 int x, y, last_x, last_y, xpos = 8, ypos = 3;
6312 boolean check[3][3];
6313 int check_remaining = 3 * 3;
6318 if (joystick.status == JOYSTICK_NOT_AVAILABLE)
6321 if (joystick_fd < 0 || !setup.input[player_nr].use_joystick)
6325 FadeOut(REDRAW_FIELD);
6329 for (y = 0; y < 3; y++)
6331 for (x = 0; x < 3; x++)
6333 DrawFixedGraphic(xpos + x - 1, ypos + y - 1, IMG_MENU_CALIBRATE_BLUE, 0);
6334 check[x][y] = FALSE;
6338 DrawTextSCentered(mSY - SY + 6 * 32, FONT_TITLE_1, "Rotate joystick");
6339 DrawTextSCentered(mSY - SY + 7 * 32, FONT_TITLE_1, "in all directions");
6340 DrawTextSCentered(mSY - SY + 9 * 32, FONT_TITLE_1, "if all balls");
6341 DrawTextSCentered(mSY - SY + 10 * 32, FONT_TITLE_1, "are marked,");
6342 DrawTextSCentered(mSY - SY + 11 * 32, FONT_TITLE_1, "center joystick");
6343 DrawTextSCentered(mSY - SY + 12 * 32, FONT_TITLE_1, "and");
6344 DrawTextSCentered(mSY - SY + 13 * 32, FONT_TITLE_1, "press any button!");
6346 joy_value = Joystick(player_nr);
6347 last_x = (joy_value & JOY_LEFT ? -1 : joy_value & JOY_RIGHT ? +1 : 0);
6348 last_y = (joy_value & JOY_UP ? -1 : joy_value & JOY_DOWN ? +1 : 0);
6350 /* eventually uncalibrated center position (joystick could be uncentered) */
6351 if (!ReadJoystick(joystick_fd, &joy_x, &joy_y, NULL, NULL))
6354 new_joystick_xmiddle = joy_x;
6355 new_joystick_ymiddle = joy_y;
6357 DrawFixedGraphic(xpos + last_x, ypos + last_y, IMG_MENU_CALIBRATE_RED, 0);
6359 FadeIn(REDRAW_FIELD);
6361 while (Joystick(player_nr) & JOY_BUTTON); /* wait for released button */
6366 if (PendingEvent()) /* got event */
6374 case EVENT_KEYPRESS:
6375 switch (GetEventKey((KeyEvent *)&event, TRUE))
6378 if (check_remaining == 0)
6383 FadeSkipNextFadeIn();
6392 case EVENT_KEYRELEASE:
6393 key_joystick_mapping = 0;
6397 HandleOtherEvents(&event);
6402 if (!ReadJoystick(joystick_fd, &joy_x, &joy_y, NULL, NULL))
6405 new_joystick_xleft = MIN(new_joystick_xleft, joy_x);
6406 new_joystick_xright = MAX(new_joystick_xright, joy_x);
6407 new_joystick_yupper = MIN(new_joystick_yupper, joy_y);
6408 new_joystick_ylower = MAX(new_joystick_ylower, joy_y);
6410 setup.input[player_nr].joy.xleft = new_joystick_xleft;
6411 setup.input[player_nr].joy.yupper = new_joystick_yupper;
6412 setup.input[player_nr].joy.xright = new_joystick_xright;
6413 setup.input[player_nr].joy.ylower = new_joystick_ylower;
6414 setup.input[player_nr].joy.xmiddle = new_joystick_xmiddle;
6415 setup.input[player_nr].joy.ymiddle = new_joystick_ymiddle;
6417 CheckJoystickData();
6419 joy_value = Joystick(player_nr);
6421 if (joy_value & JOY_BUTTON && check_remaining == 0)
6424 x = (joy_value & JOY_LEFT ? -1 : joy_value & JOY_RIGHT ? +1 : 0);
6425 y = (joy_value & JOY_UP ? -1 : joy_value & JOY_DOWN ? +1 : 0);
6427 if (x != last_x || y != last_y)
6429 DrawFixedGraphic(xpos + last_x, ypos + last_y,
6430 IMG_MENU_CALIBRATE_YELLOW, 0);
6431 DrawFixedGraphic(xpos + x, ypos + y,
6432 IMG_MENU_CALIBRATE_RED, 0);
6437 if (check_remaining > 0 && !check[x+1][y+1])
6439 check[x+1][y+1] = TRUE;
6447 WaitUntilDelayReached(&sync_frame_delay, sync_frame_delay_value);
6450 /* calibrated center position (joystick should now be centered) */
6451 if (!ReadJoystick(joystick_fd, &joy_x, &joy_y, NULL, NULL))
6454 new_joystick_xmiddle = joy_x;
6455 new_joystick_ymiddle = joy_y;
6459 /* wait until the last pressed button was released */
6460 while (Joystick(player_nr) & JOY_BUTTON)
6462 if (PendingEvent()) /* got event */
6467 HandleOtherEvents(&event);
6469 WaitUntilDelayReached(&sync_frame_delay, sync_frame_delay_value);
6476 void CalibrateJoystick(int player_nr)
6478 if (!CalibrateJoystickMain(player_nr))
6480 char *device_name = setup.input[player_nr].joy.device_name;
6481 int nr = getJoystickNrFromDeviceName(device_name) + 1;
6482 int xpos = mSX - SX;
6483 int ypos = mSY - SY;
6487 DrawTextF(xpos + 16, ypos + 6 * 32, FONT_TITLE_1, " JOYSTICK %d ", nr);
6488 DrawTextF(xpos + 16, ypos + 7 * 32, FONT_TITLE_1, " NOT AVAILABLE! ");
6491 Delay(2000); /* show error message for a short time */
6496 DrawSetupScreen_Input();
6499 void DrawSetupScreen()
6501 DeactivateJoystick();
6503 SetMainBackgroundImage(IMG_BACKGROUND_SETUP);
6505 if (setup_mode == SETUP_MODE_INPUT)
6506 DrawSetupScreen_Input();
6507 else if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED)
6508 DrawChooseTree(&game_speed_current);
6509 else if (setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY)
6510 DrawChooseTree(&scroll_delay_current);
6511 else if (setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
6512 DrawChooseTree(&snapshot_mode_current);
6513 else if (setup_mode == SETUP_MODE_CHOOSE_SCREEN_MODE)
6514 DrawChooseTree(&screen_mode_current);
6515 else if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE)
6516 DrawChooseTree(&window_size_current);
6517 else if (setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE)
6518 DrawChooseTree(&scaling_type_current);
6519 else if (setup_mode == SETUP_MODE_CHOOSE_GRAPHICS)
6520 DrawChooseTree(&artwork.gfx_current);
6521 else if (setup_mode == SETUP_MODE_CHOOSE_SOUNDS)
6522 DrawChooseTree(&artwork.snd_current);
6523 else if (setup_mode == SETUP_MODE_CHOOSE_MUSIC)
6524 DrawChooseTree(&artwork.mus_current);
6525 else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE)
6526 DrawChooseTree(&volume_simple_current);
6527 else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS)
6528 DrawChooseTree(&volume_loops_current);
6529 else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
6530 DrawChooseTree(&volume_music_current);
6531 else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL)
6532 DrawChooseTree(&touch_control_current);
6533 else if (setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE)
6534 DrawChooseTree(&move_distance_current);
6535 else if (setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE)
6536 DrawChooseTree(&drop_distance_current);
6538 DrawSetupScreen_Generic();
6544 void RedrawSetupScreenAfterFullscreenToggle()
6546 if (setup_mode == SETUP_MODE_GRAPHICS ||
6547 setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE)
6549 // update list selection from "setup.window_scaling_percent"
6550 execSetupGraphics_setWindowSizes(TRUE);
6556 void HandleSetupScreen(int mx, int my, int dx, int dy, int button)
6558 if (setup_mode == SETUP_MODE_INPUT)
6559 HandleSetupScreen_Input(mx, my, dx, dy, button);
6560 else if (setup_mode == SETUP_MODE_CHOOSE_GAME_SPEED)
6561 HandleChooseTree(mx, my, dx, dy, button, &game_speed_current);
6562 else if (setup_mode == SETUP_MODE_CHOOSE_SCROLL_DELAY)
6563 HandleChooseTree(mx, my, dx, dy, button, &scroll_delay_current);
6564 else if (setup_mode == SETUP_MODE_CHOOSE_SNAPSHOT_MODE)
6565 HandleChooseTree(mx, my, dx, dy, button, &snapshot_mode_current);
6566 else if (setup_mode == SETUP_MODE_CHOOSE_SCREEN_MODE)
6567 HandleChooseTree(mx, my, dx, dy, button, &screen_mode_current);
6568 else if (setup_mode == SETUP_MODE_CHOOSE_WINDOW_SIZE)
6569 HandleChooseTree(mx, my, dx, dy, button, &window_size_current);
6570 else if (setup_mode == SETUP_MODE_CHOOSE_SCALING_TYPE)
6571 HandleChooseTree(mx, my, dx, dy, button, &scaling_type_current);
6572 else if (setup_mode == SETUP_MODE_CHOOSE_GRAPHICS)
6573 HandleChooseTree(mx, my, dx, dy, button, &artwork.gfx_current);
6574 else if (setup_mode == SETUP_MODE_CHOOSE_SOUNDS)
6575 HandleChooseTree(mx, my, dx, dy, button, &artwork.snd_current);
6576 else if (setup_mode == SETUP_MODE_CHOOSE_MUSIC)
6577 HandleChooseTree(mx, my, dx, dy, button, &artwork.mus_current);
6578 else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_SIMPLE)
6579 HandleChooseTree(mx, my, dx, dy, button, &volume_simple_current);
6580 else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_LOOPS)
6581 HandleChooseTree(mx, my, dx, dy, button, &volume_loops_current);
6582 else if (setup_mode == SETUP_MODE_CHOOSE_VOLUME_MUSIC)
6583 HandleChooseTree(mx, my, dx, dy, button, &volume_music_current);
6584 else if (setup_mode == SETUP_MODE_CHOOSE_TOUCH_CONTROL)
6585 HandleChooseTree(mx, my, dx, dy, button, &touch_control_current);
6586 else if (setup_mode == SETUP_MODE_CHOOSE_MOVE_DISTANCE)
6587 HandleChooseTree(mx, my, dx, dy, button, &move_distance_current);
6588 else if (setup_mode == SETUP_MODE_CHOOSE_DROP_DISTANCE)
6589 HandleChooseTree(mx, my, dx, dy, button, &drop_distance_current);
6591 HandleSetupScreen_Generic(mx, my, dx, dy, button);
6594 void HandleGameActions()
6596 if (game_status != GAME_MODE_PLAYING)
6599 GameActions(); /* main game loop */
6601 if (tape.auto_play && !tape.playing)
6602 AutoPlayTape(); /* continue automatically playing next tape */
6606 /* ---------- new screen button stuff -------------------------------------- */
6608 static void getScreenMenuButtonPos(int *x, int *y, int gadget_id)
6612 case SCREEN_CTRL_ID_PREV_LEVEL:
6613 *x = mSX + GDI_ACTIVE_POS(menu.main.button.prev_level.x);
6614 *y = mSY + GDI_ACTIVE_POS(menu.main.button.prev_level.y);
6617 case SCREEN_CTRL_ID_NEXT_LEVEL:
6618 *x = mSX + GDI_ACTIVE_POS(menu.main.button.next_level.x);
6619 *y = mSY + GDI_ACTIVE_POS(menu.main.button.next_level.y);
6622 case SCREEN_CTRL_ID_PREV_PLAYER:
6623 *x = mSX + TILEX * 10;
6624 *y = mSY + TILEY * MENU_SCREEN_START_YPOS;
6627 case SCREEN_CTRL_ID_NEXT_PLAYER:
6628 *x = mSX + TILEX * 12;
6629 *y = mSY + TILEY * MENU_SCREEN_START_YPOS;
6633 Error(ERR_EXIT, "unknown gadget ID %d", gadget_id);
6639 int gfx_unpressed, gfx_pressed;
6640 void (*get_gadget_position)(int *, int *, int);
6644 } menubutton_info[NUM_SCREEN_MENUBUTTONS] =
6647 IMG_MENU_BUTTON_PREV_LEVEL, IMG_MENU_BUTTON_PREV_LEVEL_ACTIVE,
6648 getScreenMenuButtonPos,
6649 SCREEN_CTRL_ID_PREV_LEVEL,
6654 IMG_MENU_BUTTON_NEXT_LEVEL, IMG_MENU_BUTTON_NEXT_LEVEL_ACTIVE,
6655 getScreenMenuButtonPos,
6656 SCREEN_CTRL_ID_NEXT_LEVEL,
6661 IMG_MENU_BUTTON_LEFT, IMG_MENU_BUTTON_LEFT_ACTIVE,
6662 getScreenMenuButtonPos,
6663 SCREEN_CTRL_ID_PREV_PLAYER,
6668 IMG_MENU_BUTTON_RIGHT, IMG_MENU_BUTTON_RIGHT_ACTIVE,
6669 getScreenMenuButtonPos,
6670 SCREEN_CTRL_ID_NEXT_PLAYER,
6678 int gfx_unpressed, gfx_pressed;
6682 } scrollbutton_info[NUM_SCREEN_SCROLLBUTTONS] =
6685 IMG_MENU_BUTTON_UP, IMG_MENU_BUTTON_UP_ACTIVE,
6686 -1, -1, /* these values are not constant, but can change at runtime */
6687 SCREEN_CTRL_ID_SCROLL_UP,
6691 IMG_MENU_BUTTON_DOWN, IMG_MENU_BUTTON_DOWN_ACTIVE,
6692 -1, -1, /* these values are not constant, but can change at runtime */
6693 SCREEN_CTRL_ID_SCROLL_DOWN,
6700 int gfx_unpressed, gfx_pressed;
6706 } scrollbar_info[NUM_SCREEN_SCROLLBARS] =
6709 IMG_MENU_SCROLLBAR, IMG_MENU_SCROLLBAR_ACTIVE,
6710 -1, -1, /* these values are not constant, but can change at runtime */
6711 -1, -1, /* these values are not constant, but can change at runtime */
6712 GD_TYPE_SCROLLBAR_VERTICAL,
6713 SCREEN_CTRL_ID_SCROLL_VERTICAL,
6714 "scroll level series vertically"
6718 static void CreateScreenMenubuttons()
6720 struct GadgetInfo *gi;
6721 unsigned int event_mask;
6724 for (i = 0; i < NUM_SCREEN_MENUBUTTONS; i++)
6726 Bitmap *gd_bitmap_unpressed, *gd_bitmap_pressed;
6727 int gfx_unpressed, gfx_pressed;
6728 int x, y, width, height;
6729 int gd_x1, gd_x2, gd_y1, gd_y2;
6730 int id = menubutton_info[i].gadget_id;
6732 event_mask = GD_EVENT_PRESSED | GD_EVENT_REPEATED;
6734 menubutton_info[i].get_gadget_position(&x, &y, id);
6736 width = SC_MENUBUTTON_XSIZE;
6737 height = SC_MENUBUTTON_YSIZE;
6739 gfx_unpressed = menubutton_info[i].gfx_unpressed;
6740 gfx_pressed = menubutton_info[i].gfx_pressed;
6741 gd_bitmap_unpressed = graphic_info[gfx_unpressed].bitmap;
6742 gd_bitmap_pressed = graphic_info[gfx_pressed].bitmap;
6743 gd_x1 = graphic_info[gfx_unpressed].src_x;
6744 gd_y1 = graphic_info[gfx_unpressed].src_y;
6745 gd_x2 = graphic_info[gfx_pressed].src_x;
6746 gd_y2 = graphic_info[gfx_pressed].src_y;
6748 gi = CreateGadget(GDI_CUSTOM_ID, id,
6749 GDI_CUSTOM_TYPE_ID, i,
6750 GDI_INFO_TEXT, menubutton_info[i].infotext,
6755 GDI_TYPE, GD_TYPE_NORMAL_BUTTON,
6756 GDI_STATE, GD_BUTTON_UNPRESSED,
6757 GDI_DESIGN_UNPRESSED, gd_bitmap_unpressed, gd_x1, gd_y1,
6758 GDI_DESIGN_PRESSED, gd_bitmap_pressed, gd_x2, gd_y2,
6759 GDI_DIRECT_DRAW, FALSE,
6760 GDI_EVENT_MASK, event_mask,
6761 GDI_CALLBACK_ACTION, HandleScreenGadgets,
6765 Error(ERR_EXIT, "cannot create gadget");
6767 screen_gadget[id] = gi;
6771 static void CreateScreenScrollbuttons()
6773 struct GadgetInfo *gi;
6774 unsigned int event_mask;
6777 /* these values are not constant, but can change at runtime */
6778 scrollbutton_info[0].x = SC_SCROLL_UP_XPOS;
6779 scrollbutton_info[0].y = SC_SCROLL_UP_YPOS;
6780 scrollbutton_info[1].x = SC_SCROLL_DOWN_XPOS;
6781 scrollbutton_info[1].y = SC_SCROLL_DOWN_YPOS;
6783 for (i = 0; i < NUM_SCREEN_SCROLLBUTTONS; i++)
6785 Bitmap *gd_bitmap_unpressed, *gd_bitmap_pressed;
6786 int gfx_unpressed, gfx_pressed;
6787 int x, y, width, height;
6788 int gd_x1, gd_x2, gd_y1, gd_y2;
6789 int id = scrollbutton_info[i].gadget_id;
6791 event_mask = GD_EVENT_PRESSED | GD_EVENT_REPEATED;
6793 x = mSX + scrollbutton_info[i].x + menu.scrollbar_xoffset;
6794 y = mSY + scrollbutton_info[i].y;
6795 width = SC_SCROLLBUTTON_XSIZE;
6796 height = SC_SCROLLBUTTON_YSIZE;
6798 /* correct scrollbar position if placed outside menu (playfield) area */
6799 if (x > SX + SC_SCROLL_UP_XPOS)
6800 x = SX + SC_SCROLL_UP_XPOS;
6802 if (id == SCREEN_CTRL_ID_SCROLL_DOWN)
6803 y = mSY + (SC_SCROLL_VERTICAL_YPOS +
6804 (NUM_MENU_ENTRIES_ON_SCREEN - 2) * SC_SCROLLBUTTON_YSIZE);
6806 gfx_unpressed = scrollbutton_info[i].gfx_unpressed;
6807 gfx_pressed = scrollbutton_info[i].gfx_pressed;
6808 gd_bitmap_unpressed = graphic_info[gfx_unpressed].bitmap;
6809 gd_bitmap_pressed = graphic_info[gfx_pressed].bitmap;
6810 gd_x1 = graphic_info[gfx_unpressed].src_x;
6811 gd_y1 = graphic_info[gfx_unpressed].src_y;
6812 gd_x2 = graphic_info[gfx_pressed].src_x;
6813 gd_y2 = graphic_info[gfx_pressed].src_y;
6815 gi = CreateGadget(GDI_CUSTOM_ID, id,
6816 GDI_CUSTOM_TYPE_ID, i,
6817 GDI_INFO_TEXT, scrollbutton_info[i].infotext,
6822 GDI_TYPE, GD_TYPE_NORMAL_BUTTON,
6823 GDI_STATE, GD_BUTTON_UNPRESSED,
6824 GDI_DESIGN_UNPRESSED, gd_bitmap_unpressed, gd_x1, gd_y1,
6825 GDI_DESIGN_PRESSED, gd_bitmap_pressed, gd_x2, gd_y2,
6826 GDI_DIRECT_DRAW, FALSE,
6827 GDI_EVENT_MASK, event_mask,
6828 GDI_CALLBACK_ACTION, HandleScreenGadgets,
6832 Error(ERR_EXIT, "cannot create gadget");
6834 screen_gadget[id] = gi;
6838 static void CreateScreenScrollbars()
6842 /* these values are not constant, but can change at runtime */
6843 scrollbar_info[0].x = SC_SCROLL_VERTICAL_XPOS;
6844 scrollbar_info[0].y = SC_SCROLL_VERTICAL_YPOS;
6845 scrollbar_info[0].width = SC_SCROLL_VERTICAL_XSIZE;
6846 scrollbar_info[0].height = SC_SCROLL_VERTICAL_YSIZE;
6848 for (i = 0; i < NUM_SCREEN_SCROLLBARS; i++)
6850 Bitmap *gd_bitmap_unpressed, *gd_bitmap_pressed;
6851 int gfx_unpressed, gfx_pressed;
6852 int x, y, width, height;
6853 int gd_x1, gd_x2, gd_y1, gd_y2;
6854 struct GadgetInfo *gi;
6855 int items_max, items_visible, item_position;
6856 unsigned int event_mask;
6857 int num_page_entries = NUM_MENU_ENTRIES_ON_SCREEN;
6858 int id = scrollbar_info[i].gadget_id;
6860 event_mask = GD_EVENT_MOVING | GD_EVENT_OFF_BORDERS;
6862 x = mSX + scrollbar_info[i].x + menu.scrollbar_xoffset;
6863 y = mSY + scrollbar_info[i].y;
6864 width = scrollbar_info[i].width;
6865 height = scrollbar_info[i].height;
6867 /* correct scrollbar position if placed outside menu (playfield) area */
6868 if (x > SX + SC_SCROLL_VERTICAL_XPOS)
6869 x = SX + SC_SCROLL_VERTICAL_XPOS;
6871 if (id == SCREEN_CTRL_ID_SCROLL_VERTICAL)
6872 height = (NUM_MENU_ENTRIES_ON_SCREEN - 2) * SC_SCROLLBUTTON_YSIZE;
6874 items_max = num_page_entries;
6875 items_visible = num_page_entries;
6878 gfx_unpressed = scrollbar_info[i].gfx_unpressed;
6879 gfx_pressed = scrollbar_info[i].gfx_pressed;
6880 gd_bitmap_unpressed = graphic_info[gfx_unpressed].bitmap;
6881 gd_bitmap_pressed = graphic_info[gfx_pressed].bitmap;
6882 gd_x1 = graphic_info[gfx_unpressed].src_x;
6883 gd_y1 = graphic_info[gfx_unpressed].src_y;
6884 gd_x2 = graphic_info[gfx_pressed].src_x;
6885 gd_y2 = graphic_info[gfx_pressed].src_y;
6887 gi = CreateGadget(GDI_CUSTOM_ID, id,
6888 GDI_CUSTOM_TYPE_ID, i,
6889 GDI_INFO_TEXT, scrollbar_info[i].infotext,
6894 GDI_TYPE, scrollbar_info[i].type,
6895 GDI_SCROLLBAR_ITEMS_MAX, items_max,
6896 GDI_SCROLLBAR_ITEMS_VISIBLE, items_visible,
6897 GDI_SCROLLBAR_ITEM_POSITION, item_position,
6898 GDI_WHEEL_AREA_X, SX,
6899 GDI_WHEEL_AREA_Y, SY,
6900 GDI_WHEEL_AREA_WIDTH, SXSIZE,
6901 GDI_WHEEL_AREA_HEIGHT, SYSIZE,
6902 GDI_STATE, GD_BUTTON_UNPRESSED,
6903 GDI_DESIGN_UNPRESSED, gd_bitmap_unpressed, gd_x1, gd_y1,
6904 GDI_DESIGN_PRESSED, gd_bitmap_pressed, gd_x2, gd_y2,
6905 GDI_BORDER_SIZE, SC_BORDER_SIZE, SC_BORDER_SIZE,
6906 GDI_DIRECT_DRAW, FALSE,
6907 GDI_EVENT_MASK, event_mask,
6908 GDI_CALLBACK_ACTION, HandleScreenGadgets,
6912 Error(ERR_EXIT, "cannot create gadget");
6914 screen_gadget[id] = gi;
6918 void CreateScreenGadgets()
6920 int last_game_status = game_status; /* save current game status */
6922 CreateScreenMenubuttons();
6924 CreateScreenScrollbuttons();
6925 CreateScreenScrollbars();
6927 game_status = last_game_status; /* restore current game status */
6930 void FreeScreenGadgets()
6934 for (i = 0; i < NUM_SCREEN_GADGETS; i++)
6935 FreeGadget(screen_gadget[i]);
6938 void MapScreenMenuGadgets(int screen_mask)
6942 for (i = 0; i < NUM_SCREEN_MENUBUTTONS; i++)
6943 if (screen_mask & menubutton_info[i].screen_mask)
6944 MapGadget(screen_gadget[menubutton_info[i].gadget_id]);
6947 void MapScreenGadgets(int num_entries)
6951 if (num_entries <= NUM_MENU_ENTRIES_ON_SCREEN)
6954 for (i = 0; i < NUM_SCREEN_SCROLLBUTTONS; i++)
6955 MapGadget(screen_gadget[scrollbutton_info[i].gadget_id]);
6957 for (i = 0; i < NUM_SCREEN_SCROLLBARS; i++)
6958 MapGadget(screen_gadget[scrollbar_info[i].gadget_id]);
6961 void MapScreenTreeGadgets(TreeInfo *ti)
6963 MapScreenGadgets(numTreeInfoInGroup(ti));
6966 static void HandleScreenGadgets(struct GadgetInfo *gi)
6968 int id = gi->custom_id;
6969 int button = gi->event.button;
6970 int step = (button == 1 ? 1 : button == 2 ? 5 : 10);
6974 case SCREEN_CTRL_ID_PREV_LEVEL:
6975 HandleMainMenu_SelectLevel(step, -1, NO_DIRECT_LEVEL_SELECT);
6978 case SCREEN_CTRL_ID_NEXT_LEVEL:
6979 HandleMainMenu_SelectLevel(step, +1, NO_DIRECT_LEVEL_SELECT);
6982 case SCREEN_CTRL_ID_PREV_PLAYER:
6983 HandleSetupScreen_Input_Player(step, -1);
6986 case SCREEN_CTRL_ID_NEXT_PLAYER:
6987 HandleSetupScreen_Input_Player(step, +1);
6990 case SCREEN_CTRL_ID_SCROLL_UP:
6991 if (game_status == GAME_MODE_LEVELS)
6992 HandleChooseLevelSet(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
6993 else if (game_status == GAME_MODE_LEVELNR)
6994 HandleChooseLevelNr(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
6995 else if (game_status == GAME_MODE_SETUP)
6996 HandleSetupScreen(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
6997 else if (game_status == GAME_MODE_INFO)
6998 HandleInfoScreen(0,0, 0, -1 * SCROLL_LINE, MB_MENU_MARK);
7001 case SCREEN_CTRL_ID_SCROLL_DOWN:
7002 if (game_status == GAME_MODE_LEVELS)
7003 HandleChooseLevelSet(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
7004 else if (game_status == GAME_MODE_LEVELNR)
7005 HandleChooseLevelNr(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
7006 else if (game_status == GAME_MODE_SETUP)
7007 HandleSetupScreen(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
7008 else if (game_status == GAME_MODE_INFO)
7009 HandleInfoScreen(0,0, 0, +1 * SCROLL_LINE, MB_MENU_MARK);
7012 case SCREEN_CTRL_ID_SCROLL_VERTICAL:
7013 if (game_status == GAME_MODE_LEVELS)
7014 HandleChooseLevelSet(0,0,999,gi->event.item_position,MB_MENU_INITIALIZE);
7015 else if (game_status == GAME_MODE_LEVELNR)
7016 HandleChooseLevelNr(0,0,999,gi->event.item_position,MB_MENU_INITIALIZE);
7017 else if (game_status == GAME_MODE_SETUP)
7018 HandleSetupScreen(0,0, 999,gi->event.item_position,MB_MENU_INITIALIZE);
7019 else if (game_status == GAME_MODE_INFO)
7020 HandleInfoScreen(0,0, 999,gi->event.item_position,MB_MENU_INITIALIZE);