Add pre-check to auxiliary tile loop flooding test

This commit is contained in:
Jonathan G Rennison 2023-08-17 14:40:07 +01:00
parent 5a062bd5b2
commit cc57ac0eff
2 changed files with 11 additions and 1 deletions

View File

@ -887,7 +887,7 @@ void RunAuxiliaryTileLoop()
TileIndex tile = _aux_tileloop_tile;
while (count--) {
if (!IsNonFloodingWaterTile(tile)) {
if (IsFloodingTypeTile(tile) && !IsNonFloodingWaterTile(tile)) {
FloodingBehaviour fb = GetFloodingBehaviour(tile);
if (fb != FLOOD_NONE) TileLoopWaterFlooding(fb, tile);
}

View File

@ -524,4 +524,14 @@ static inline bool IsNonFloodingWaterTile(TileIndex t)
return IsTileType(t, MP_WATER) && HasBit(_m[t].m3, 0);
}
/**
* Checks whether the tile type could have flooding behaviour
* @return true iff the tile type is one where GetFloodingBehaviour could return a value other than FLOOD_NONE.
*/
static inline bool IsFloodingTypeTile(TileIndex t)
{
static const uint16 mask = (1 << MP_WATER) | (1 << MP_STATION) | (1 << MP_INDUSTRY) | (1 << MP_RAILWAY) | (1 << MP_TREES) | (1 << MP_OBJECT) | (1 << MP_VOID);
return HasBit(mask, GetTileType(t));
}
#endif /* WATER_MAP_H */