From b167c0a3967a62b4cbe98a12f2c4d932ee8df510 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 4 Nov 2011 10:25:33 +0000 Subject: (svn r23095) -Codechange: remove useless divisions/multiplications by TILE_HEIGHT for the AI API code --- src/ai/api/ai_tile.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/ai/api/ai_tile.cpp') diff --git a/src/ai/api/ai_tile.cpp b/src/ai/api/ai_tile.cpp index bda19775b..677c845a3 100644 --- a/src/ai/api/ai_tile.cpp +++ b/src/ai/api/ai_tile.cpp @@ -156,14 +156,14 @@ { if (!::IsValidTile(tile)) return -1; - return ::GetTilePixelZ(tile) / ::TILE_HEIGHT; + return ::GetTileZ(tile); } /* static */ int32 AITile::GetMaxHeight(TileIndex tile) { if (!::IsValidTile(tile)) return -1; - return ::GetTileMaxPixelZ(tile) / ::TILE_HEIGHT; + return ::GetTileMaxZ(tile); } /* static */ int32 AITile::GetCornerHeight(TileIndex tile, Corner corner) @@ -171,8 +171,8 @@ if (!::IsValidTile(tile) || !::IsValidCorner((::Corner)corner)) return -1; uint z; - ::Slope slope = ::GetTilePixelSlope(tile, &z); - return (z + ::GetSlopePixelZInCorner(slope, (::Corner)corner)) / ::TILE_HEIGHT; + ::Slope slope = ::GetTileSlope(tile, &z); + return (z + ::GetSlopeZInCorner(slope, (::Corner)corner)); } /* static */ AICompany::CompanyID AITile::GetOwner(TileIndex tile) -- cgit v1.2.3-54-g00ecf