From bdd64495cd7af3fa064ed58a5419845eb78def46 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 5 Apr 2008 10:55:50 +0000 Subject: (svn r12575) -Codechange: unduplicate Process*Orders for trains, ships and road vehicles. --- src/vehicle_base.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/vehicle_base.h') diff --git a/src/vehicle_base.h b/src/vehicle_base.h index c2eb7f9e9..2aaba064a 100644 --- a/src/vehicle_base.h +++ b/src/vehicle_base.h @@ -488,6 +488,15 @@ public: inline bool IsOrderListShared() const { return this->next_shared != NULL || this->prev_shared != NULL; }; bool NeedsAutorenewing(const Player *p) const; + + /** + * Determine the location for the station where the vehicle goes to next. + * Things done for example are allocating slots in a road stop or exact + * location of the platform is determined for ships. + * @param station the station to make the next location of the vehicle. + * @return the location (tile) to aim for. + */ + virtual TileIndex GetOrderStationLocation(StationID station) { return INVALID_TILE; } }; /** -- cgit v1.2.3-54-g00ecf