Home
last modified time | relevance | path

Searched refs:force_stair (Results 1 – 2 of 2) sorted by relevance

/dports/games/stonesoup/crawl-0.27.1/crawl-ref/source/
H A Dstairs.h16 void take_stairs(dungeon_feature_type force_stair = DNGN_UNSEEN,
19 void down_stairs(dungeon_feature_type force_stair = DNGN_UNSEEN,
21 void up_stairs(dungeon_feature_type force_stair = DNGN_UNSEEN, bool update_travel_cache = true);
H A Dstairs.cc935 void take_stairs(dungeon_feature_type force_stair, bool going_up, in take_stairs() argument
939 dungeon_feature_type how = force_stair ? force_stair : old_feat; in take_stairs()
942 const bool known_shaft = (!force_stair in take_stairs()
944 || (force_stair == DNGN_TRAP_SHAFT in take_stairs()
947 const bool shaft = known_shaft || force_stair == DNGN_TRAP_SHAFT; in take_stairs()
949 level_id whither = _travel_destination(how, bool(force_stair), going_up, in take_stairs()
959 bool(force_stair) && !force_known_shaft, in take_stairs()
963 void up_stairs(dungeon_feature_type force_stair, bool update_travel_cache) in up_stairs() argument
965 take_stairs(force_stair, true, false, update_travel_cache); in up_stairs()
1125 void down_stairs(dungeon_feature_type force_stair, bool force_known_shaft, bool update_travel_cache) in down_stairs() argument
[all …]