X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fmain.h;h=5a85ae2882c03fc983db4ffda1939db69fc7fcef;hb=aa7bc38aa03e7b7cfbe96175a96c7b97922003bd;hp=999c24a74205ca8ffd96cbf69df9a50936161fb9;hpb=4eff89df72ffc45c4ad59fcd01860eb8f4179b9c;p=rocksndiamonds.git diff --git a/src/main.h b/src/main.h index 999c24a7..5a85ae28 100644 --- a/src/main.h +++ b/src/main.h @@ -905,6 +905,29 @@ (e) == EL_BD_PLAYER_GLUED || \ (e) == EL_BD_PLAYER_STIRRING) +#define IS_BD_BITER(e) ((e) == EL_BD_BITER || \ + (e) == EL_BD_BITER_RIGHT || \ + (e) == EL_BD_BITER_UP || \ + (e) == EL_BD_BITER_LEFT || \ + (e) == EL_BD_BITER_DOWN) + +#define IS_BD_EXPANDABLE_WALL(e) ((e) == EL_BD_EXPANDABLE_WALL_HORIZONTAL || \ + (e) == EL_BD_EXPANDABLE_WALL_VERTICAL || \ + (e) == EL_BD_EXPANDABLE_WALL_ANY || \ + (e) == EL_BD_EXPANDABLE_STEELWALL_HORIZONTAL ||\ + (e) == EL_BD_EXPANDABLE_STEELWALL_VERTICAL || \ + (e) == EL_BD_EXPANDABLE_STEELWALL_ANY) + +#define IS_BD_CONVEYOR_BELT(e) ((e) == EL_BD_CONVEYOR_LEFT || \ + (e) == EL_BD_CONVEYOR_LEFT_ACTIVE || \ + (e) == EL_BD_CONVEYOR_RIGHT || \ + (e) == EL_BD_CONVEYOR_RIGHT_ACTIVE) + +#define IS_BD_CONVEYOR_BELT_SWITCH(e) ((e) == EL_BD_CONVEYOR_SWITCH || \ + (e) == EL_BD_CONVEYOR_SWITCH_ACTIVE || \ + (e) == EL_BD_CONVEYOR_DIR_SWITCH_NORMAL || \ + (e) == EL_BD_CONVEYOR_DIR_SWITCH_CHANGED) + #define IS_SOKOBAN_OBJECT_OR_FIELD(e) ((e) == EL_SOKOBAN_OBJECT || \ (e) == EL_SOKOBAN_FIELD_EMPTY || \ (e) == EL_SOKOBAN_FIELD_FULL) @@ -2073,8 +2096,8 @@ #define EL_BD_CONVEYOR_RIGHT_ACTIVE 1318 #define EL_BD_CONVEYOR_SWITCH 1319 #define EL_BD_CONVEYOR_SWITCH_ACTIVE 1320 -#define EL_BD_CONVEYOR_DIR_SWITCH_LEFT 1321 -#define EL_BD_CONVEYOR_DIR_SWITCH_RIGHT 1322 +#define EL_BD_CONVEYOR_DIR_SWITCH_NORMAL 1321 +#define EL_BD_CONVEYOR_DIR_SWITCH_CHANGED 1322 #define EL_BD_GRAVITY_SWITCH 1323 #define EL_BD_GRAVITY_SWITCH_ACTIVE 1324 #define EL_BD_ACID 1325 @@ -3493,6 +3516,7 @@ struct LevelInfo boolean bd_intermission; // BD level is intermission boolean bd_diagonal_movements; // BD style diagonal movements boolean bd_topmost_player_active; // BD engine uses first player found on playfield + int bd_snap_element; // BD element that is created when player is snapping int bd_pushing_prob; // BD player probability to push rocks int bd_pushing_prob_with_sweet; // BD player probability to push rocks after eating sweet boolean bd_push_mega_rock_with_sweet; // BD player can push mega rocks after eating sweet @@ -3515,6 +3539,31 @@ struct LevelInfo int bd_amoeba_2_content_enclosed; // BD amoeba 2 changes to this element if enclosed int bd_amoeba_2_content_exploding; // BD amoeba 2 changes to this element if exploding int bd_amoeba_2_content_looks_like; // BD amoeba 2 looks like this other game element + int bd_clock_extra_time; // BD engine extra time when collecting clock + boolean bd_voodoo_collects_diamonds; // BD voodoo doll can collect diamonds for the player + boolean bd_voodoo_hurt_kills_player; // BD voodoo doll hurt in any way, player is killed + boolean bd_voodoo_dies_by_rock; // BD voodoo doll can be killed by a falling rock + boolean bd_voodoo_vanish_by_explosion;// BD voodoo doll can be destroyed by explosions + int bd_voodoo_penalty_time; // BD engine penalty time when voodoo doll destroyed + boolean bd_slime_is_predictable; // BD slime uses predictable random number generator + boolean bd_slime_correct_random; // BD slime needs corrected random number generator + int bd_slime_permeability_rate; // BD slime permeability rate for unpredictable slime + int bd_slime_permeability_bits_c64; // BD slime permeability bits for predictable slime + int bd_slime_random_seed_c64; // BD slime random number seed for predictable slime + int bd_cave_random_seed_c64; // BD cave random number seed for predictable slime + int bd_acid_eats_element; // BD acid eats this game element when spreading + int bd_acid_spread_rate; // BD acid probability of spreading (in percent) + int bd_acid_turns_to_element; // BD acid target element after spreading + int bd_biter_move_delay; // BD biter delay between movements (in BD frames) + int bd_biter_eats_element; // BD biter eats this game element when moving + int bd_bladder_converts_by_element; // BD bladder converts to clock by touching this element + boolean bd_change_expanding_wall; // BD expanding wall direction is changed if enabled + boolean bd_replicators_active; // BD replicators start in active state if enabled + int bd_replicator_create_delay; // BD replicator delay between replications (in BD frames) + boolean bd_conveyor_belts_active; // BD conveyor belts start in active state if enabled + boolean bd_conveyor_belts_changed; // BD conveyor belts direction is changed if enabled + boolean bd_water_cannot_flow_down; // BD water does not flow downwards if enabled + boolean em_slippery_gems; // EM style "gems slip from wall" behaviour boolean em_explodes_by_fire; // EM style chain explosion behaviour boolean use_spring_bug; // for compatibility with old levels