# HG changeset patch # User KUDr # Date 1172266603 0 # Node ID 226c021a4d402670f22df963c67ccad1f3e99063 # Parent 60867a3aff90d3206a54d33183074e908f5bbf0c (svn r8867) -Fix(r8866): revert yapf_costrail.hpp commited by mistake, helpers.hpp had wrong line ending diff --git a/src/helpers.hpp b/src/helpers.hpp --- a/src/helpers.hpp +++ b/src/helpers.hpp @@ -81,10 +81,10 @@ /** Informative template class exposing basic enumeration properties used by several * other templates below. Here we have only forward declaration. For each enum type * we will create specialization derived from MakeEnumPropsT<>. - * i.e.: - * template <> struct EnumPropsT : MakeEnumPropsT {}; - * followed by: - * typedef TinyEnumT TrackByte; + * i.e.: + * template <> struct EnumPropsT : MakeEnumPropsT {}; + * followed by: + * typedef TinyEnumT TrackByte; */ template struct EnumPropsT; diff --git a/src/yapf/yapf_costrail.hpp b/src/yapf/yapf_costrail.hpp --- a/src/yapf/yapf_costrail.hpp +++ b/src/yapf/yapf_costrail.hpp @@ -66,7 +66,7 @@ } /** return one tile cost. If tile is a tunnel entry, it is moved to the end of tunnel */ - FORCEINLINE int OneTileCost(TileIndex prev_tile, TileIndex& tile, Trackdir trackdir) + FORCEINLINE int OneTileCost(TileIndex& tile, Trackdir trackdir) { int cost = 0; // set base cost @@ -81,7 +81,7 @@ case MP_STATION: // penalty for passing station tiles - cost += Yapf().PfGetSettings().rail_station_penalty * DistanceManhattan(prev_tile, tile); + cost += Yapf().PfGetSettings().rail_station_penalty; break; default: @@ -202,7 +202,7 @@ bool target_seen = Yapf().PfDetectDestination(tile, trackdir); while (true) { - segment_cost += Yapf().OneTileCost(prev_tile, tile, trackdir); + segment_cost += Yapf().OneTileCost(tile, trackdir); segment_cost += Yapf().CurveCost(prev_trackdir, trackdir); segment_cost += Yapf().SlopeCost(tile, trackdir); segment_cost += Yapf().SignalCost(n, tile, trackdir);