X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsystem.h;h=51d783b77ffac3508c2755e187d885be7176412e;hb=1856b32b9d7b3c80596362cf7a3dd8e032cd83fc;hp=d8ca9a29a1e7f4191b32e22d5c4b9a5e213f6ef3;hpb=a1f6dc934c786646efbae4d30177665e3859d38b;p=rocksndiamonds.git diff --git a/src/libgame/system.h b/src/libgame/system.h index d8ca9a29..51d783b7 100644 --- a/src/libgame/system.h +++ b/src/libgame/system.h @@ -197,6 +197,8 @@ #define DEFAULT_KEY_SNAP_RIGHT KSYM_UNDEFINED #define DEFAULT_KEY_SNAP_UP KSYM_UNDEFINED #define DEFAULT_KEY_SNAP_DOWN KSYM_UNDEFINED +#define DEFAULT_KEY_SPEED_FAST KSYM_f +#define DEFAULT_KEY_SPEED_SLOW KSYM_s // default debug setup keys and values #define DEFAULT_FRAME_DELAY_0 20 // 100 % speed @@ -1061,6 +1063,8 @@ struct OptionInfo char *identifier; char *level_nr; + char *drop_file; + int display_nr; boolean mytapes; @@ -1337,8 +1341,8 @@ struct SetupLevelSetupInfo struct SetupEditorCascadeInfo { boolean el_bd; - boolean el_bd_native; - boolean el_bd_effects; + boolean el_bdx; + boolean el_bdx_effects; boolean el_em; boolean el_emc; boolean el_rnd; @@ -1384,6 +1388,9 @@ struct SetupShortcutInfo Key snap_right; Key snap_up; Key snap_down; + + Key speed_fast; + Key speed_slow; }; struct SetupSystemInfo @@ -1441,6 +1448,7 @@ struct SetupInternalInfo boolean menu_shortcuts_tape; boolean menu_shortcuts_sound; boolean menu_shortcuts_snap; + boolean menu_shortcuts_speed; boolean info_title; boolean info_elements; @@ -1491,6 +1499,7 @@ struct SetupInfo boolean team_mode; boolean handicap; boolean skip_levels; + boolean allow_skipping_levels; boolean increment_levels; boolean auto_play_next_level; boolean count_score_after_game; @@ -1518,10 +1527,10 @@ struct SetupInfo boolean bd_skip_hatching; boolean bd_scroll_delay; boolean bd_show_invisible_outbox; - int bd_smooth_movements; // not boolean -- can also be "AUTO" - int bd_pushing_graphics; // not boolean -- can also be "AUTO" - int bd_up_down_graphics; // not boolean -- can also be "AUTO" - int bd_skip_falling_sounds; // not boolean -- can also be "AUTO" + int bd_smooth_movements; // not boolean -- can also be "MODE_AUTO" + int bd_pushing_graphics; // not boolean -- can also be "MODE_AUTO" + int bd_up_down_graphics; // not boolean -- can also be "MODE_AUTO" + int bd_skip_falling_sounds; // not boolean -- can also be "MODE_AUTO" int bd_palette_c64; int bd_palette_c64dtv; int bd_palette_atari; @@ -1536,9 +1545,9 @@ struct SetupInfo char *graphics_set; char *sounds_set; char *music_set; - int override_level_graphics; // not boolean -- can also be "AUTO" - int override_level_sounds; // not boolean -- can also be "AUTO" - int override_level_music; // not boolean -- can also be "AUTO" + int override_level_graphics; // not boolean -- can also be "MODE_AUTO" + int override_level_sounds; // not boolean -- can also be "MODE_AUTO" + int override_level_music; // not boolean -- can also be "MODE_AUTO" int volume_simple; int volume_loops; @@ -2051,6 +2060,7 @@ KeyMod GetKeyModStateFromEvents(void); void StartTextInput(int, int, int, int); void StopTextInput(void); void PushUserEvent(int, int, int); +void PushDropEvent(char *); boolean PendingEscapeKeyEvent(void); void InitJoysticks(void);