X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsystem.h;h=85c26a5f34fd84c1b50939b92bf603fff89972cb;hb=refs%2Fheads%2Fmaster-next-major-release;hp=162ca4890c55ee68ad604c1751262d4da6f24b62;hpb=9882a97f9526e64b5a9c1940ca0cd9994fdd6da9;p=rocksndiamonds.git diff --git a/src/libgame/system.h b/src/libgame/system.h index 162ca489..85c26a5f 100644 --- a/src/libgame/system.h +++ b/src/libgame/system.h @@ -1063,6 +1063,8 @@ struct OptionInfo char *identifier; char *level_nr; + char *drop_file; + int display_nr; boolean mytapes; @@ -1320,6 +1322,7 @@ struct SetupEditorInfo boolean el_by_type; boolean show_element_token; + boolean fast_game_start; boolean show_read_only_warning; @@ -1339,8 +1342,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; @@ -1497,6 +1500,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; @@ -1524,10 +1528,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_falling_sounds; // not boolean -- can also be "MODE_AUTO" int bd_palette_c64; int bd_palette_c64dtv; int bd_palette_atari; @@ -1542,9 +1546,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; @@ -2057,6 +2061,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);