From 262b8e18ed8cb58afb40a816ac0fdedfe3a7db5f Mon Sep 17 00:00:00 2001 From: haranp Date: Wed, 30 Jul 2008 10:53:06 +0000 Subject: Massive overhaul to move towards coord_def(). This might have introduced some bugs: I now get intermittent crashes on startup (this might have to do with the changes to special_room.) Sorry about that - committing before I need to do any more big conflict resolutions. Fixes coming later. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6732 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/travel.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'crawl-ref/source/travel.h') diff --git a/crawl-ref/source/travel.h b/crawl-ref/source/travel.h index 752c285044..95ede43a98 100644 --- a/crawl-ref/source/travel.h +++ b/crawl-ref/source/travel.h @@ -82,7 +82,7 @@ bool is_traversable(dungeon_feature_type grid); void explore_pickup_event(int did_pickup, int tried_pickup); bool is_excluded(const coord_def &p); -void find_travel_pos(int you_x, int you_y, char *move_x, char *move_y, +void find_travel_pos(const coord_def& youpos, char *move_x, char *move_y, std::vector* coords = NULL); bool is_travelsafe_square(int x, int y, bool ignore_hostile = false, @@ -109,7 +109,7 @@ void start_translevel_travel(const travel_target &pos); void start_translevel_travel(bool prompt_for_destination = true); -void start_travel(int x, int y); +void start_travel(const coord_def& p); command_type travel(); @@ -483,8 +483,9 @@ struct LevelInfo void update(); // Update LevelInfo to be correct for the // current level. - // Updates/creates a StairInfo for the stair at (x, y) in grid coordinates - void update_stair(int x, int y, const level_pos &p, bool guess = false); + // Updates/creates a StairInfo for the stair at stairpos in grid coordinates + void update_stair(const coord_def& stairpos, const level_pos &p, + bool guess = false); // Clears all stair info for stairs matching this grid type. void clear_stairs(dungeon_feature_type grid); -- cgit v1.2.3-54-g00ecf