From d4376779f843b1310a3e0c9a527f1a23698954ab Mon Sep 17 00:00:00 2001 From: terkhen Date: Thu, 28 Jan 2010 20:54:29 +0000 Subject: (svn r18939) -Codechange [FS#3545]: Move train slope steepness to its own function. --- src/train.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/train.h') diff --git a/src/train.h b/src/train.h index f61febf0c..d7b583ee3 100644 --- a/src/train.h +++ b/src/train.h @@ -494,6 +494,15 @@ protected: /* These functions should not be called outside acceleration code. */ { return GetRailTypeInfo(this->railtype)->acceleration_type; } + + /** + * Returns the slope steepness used by this vehicle. + * @return Slope steepness used by the vehicle. + */ + FORCEINLINE uint32 GetSlopeSteepness() const + { + return 20 * _settings_game.vehicle.train_slope_steepness; // 1% slope * slope steepness + } }; #define FOR_ALL_TRAINS(var) FOR_ALL_VEHICLES_OF_TYPE(Train, var) -- cgit v1.2.3-54-g00ecf