2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-08-08 10:59:30 +00:00
|
|
|
/** @file object_map.h Map accessors for object tiles. */
|
2007-04-04 04:08:47 +00:00
|
|
|
|
2010-08-08 10:59:30 +00:00
|
|
|
#ifndef OBJECT_MAP_H
|
|
|
|
#define OBJECT_MAP_H
|
2006-09-28 18:42:35 +00:00
|
|
|
|
2010-08-11 14:14:06 +00:00
|
|
|
#include "water_map.h"
|
2010-08-08 10:59:30 +00:00
|
|
|
#include "object_type.h"
|
2006-03-23 20:47:56 +00:00
|
|
|
|
2021-12-04 21:45:33 +00:00
|
|
|
enum ObjectGround {
|
|
|
|
OBJECT_GROUND_GRASS = 0, ///< Grass or bare
|
|
|
|
OBJECT_GROUND_SNOW_DESERT = 1, ///< Snow or desert
|
2021-12-05 21:20:58 +00:00
|
|
|
OBJECT_GROUND_SHORE = 2, ///< Shore
|
2021-12-04 21:45:33 +00:00
|
|
|
};
|
|
|
|
|
2013-10-12 16:30:42 +00:00
|
|
|
ObjectType GetObjectType(TileIndex t);
|
2006-03-23 20:47:56 +00:00
|
|
|
|
2010-08-13 12:45:26 +00:00
|
|
|
/**
|
2013-10-12 16:30:22 +00:00
|
|
|
* Check whether the object on a tile is of a specific type.
|
|
|
|
* @param t Tile to test.
|
|
|
|
* @param type Type to test.
|
2010-08-08 10:59:30 +00:00
|
|
|
* @pre IsTileType(t, MP_OBJECT)
|
2013-10-12 16:30:22 +00:00
|
|
|
* @return True if type matches.
|
2007-04-18 18:20:31 +00:00
|
|
|
*/
|
2013-10-12 16:30:22 +00:00
|
|
|
static inline bool IsObjectType(TileIndex t, ObjectType type)
|
2006-03-23 20:47:56 +00:00
|
|
|
{
|
2013-10-12 16:30:22 +00:00
|
|
|
return GetObjectType(t) == type;
|
2006-03-23 20:47:56 +00:00
|
|
|
}
|
|
|
|
|
2007-04-18 18:20:31 +00:00
|
|
|
/**
|
2013-10-12 16:30:22 +00:00
|
|
|
* Check whether a tile is a object tile of a specific type.
|
|
|
|
* @param t Tile to test.
|
|
|
|
* @param type Type to test.
|
|
|
|
* @return True if type matches.
|
2007-04-18 18:20:31 +00:00
|
|
|
*/
|
2013-10-12 16:30:22 +00:00
|
|
|
static inline bool IsObjectTypeTile(TileIndex t, ObjectType type)
|
2006-03-23 20:47:56 +00:00
|
|
|
{
|
2013-10-12 16:30:22 +00:00
|
|
|
return IsTileType(t, MP_OBJECT) && GetObjectType(t) == type;
|
2006-03-23 20:47:56 +00:00
|
|
|
}
|
|
|
|
|
2007-04-18 18:20:31 +00:00
|
|
|
/**
|
2013-10-12 16:30:22 +00:00
|
|
|
* Get the index of which object this tile is attached to.
|
|
|
|
* @param t the tile
|
2010-08-08 10:59:30 +00:00
|
|
|
* @pre IsTileType(t, MP_OBJECT)
|
2013-10-12 16:30:22 +00:00
|
|
|
* @return The ObjectID of the object.
|
2007-04-18 18:20:31 +00:00
|
|
|
*/
|
2013-10-12 16:30:22 +00:00
|
|
|
static inline ObjectID GetObjectIndex(TileIndex t)
|
2007-03-08 14:34:32 +00:00
|
|
|
{
|
2018-07-26 18:13:35 +00:00
|
|
|
assert_tile(IsTileType(t, MP_OBJECT), t);
|
2013-10-12 16:35:50 +00:00
|
|
|
return _m[t].m2 | _m[t].m5 << 16;
|
2007-03-08 14:34:32 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 22:26:21 +00:00
|
|
|
/**
|
|
|
|
* Get the random bits of this tile.
|
|
|
|
* @param t The tile to get the bits for.
|
|
|
|
* @pre IsTileType(t, MP_OBJECT)
|
|
|
|
* @return The random bits.
|
|
|
|
*/
|
|
|
|
static inline byte GetObjectRandomBits(TileIndex t)
|
|
|
|
{
|
2018-07-26 18:13:35 +00:00
|
|
|
assert_tile(IsTileType(t, MP_OBJECT), t);
|
2010-08-27 22:26:21 +00:00
|
|
|
return _m[t].m3;
|
|
|
|
}
|
|
|
|
|
2021-12-04 21:45:33 +00:00
|
|
|
/**
|
|
|
|
* Get the ground type of ths tile.
|
|
|
|
* @param t The tile to get the ground type of.
|
|
|
|
* @pre IsTileType(t, MP_OBJECT)
|
|
|
|
* @return The ground type.
|
|
|
|
*/
|
|
|
|
static inline ObjectGround GetObjectGroundType(TileIndex t)
|
|
|
|
{
|
|
|
|
assert_tile(IsTileType(t, MP_OBJECT), t);
|
|
|
|
return (ObjectGround)GB(_m[t].m4, 2, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the ground density of this tile.
|
|
|
|
* Only meaningful for some ground types.
|
|
|
|
* @param t The tile to get the density of.
|
|
|
|
* @pre IsTileType(t, MP_OBJECT)
|
|
|
|
* @return the density
|
|
|
|
*/
|
|
|
|
static inline uint GetObjectGroundDensity(TileIndex t)
|
|
|
|
{
|
|
|
|
assert_tile(IsTileType(t, MP_OBJECT), t);
|
|
|
|
return GB(_m[t].m4, 0, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the ground density of this tile.
|
|
|
|
* Only meaningful for some ground types.
|
|
|
|
* @param t The tile to set the density of.
|
|
|
|
* @param d the new density
|
|
|
|
* @pre IsTileType(t, MP_OBJECT)
|
|
|
|
*/
|
|
|
|
static inline void SetObjectGroundDensity(TileIndex t, uint d)
|
|
|
|
{
|
|
|
|
assert_tile(IsTileType(t, MP_OBJECT), t);
|
|
|
|
SB(_m[t].m4, 0, 2, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the counter used to advance to the next ground density type.
|
|
|
|
* @param t The tile to get the counter of.
|
|
|
|
* @pre IsTileType(t, MP_OBJECT)
|
|
|
|
* @return The value of the counter
|
|
|
|
*/
|
|
|
|
static inline uint GetObjectGroundCounter(TileIndex t)
|
|
|
|
{
|
|
|
|
assert_tile(IsTileType(t, MP_OBJECT), t);
|
|
|
|
return GB(_m[t].m4, 5, 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Increments the counter used to advance to the next ground density type.
|
|
|
|
* @param t the tile to increment the counter of
|
|
|
|
* @param c the amount to increment the counter with
|
|
|
|
* @pre IsTileType(t, MP_OBJECT)
|
|
|
|
*/
|
|
|
|
static inline void AddObjectGroundCounter(TileIndex t, int c)
|
|
|
|
{
|
|
|
|
assert_tile(IsTileType(t, MP_OBJECT), t);
|
|
|
|
_m[t].m4 += c << 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the counter used to advance to the next ground density type.
|
|
|
|
* @param t The tile to set the counter of.
|
|
|
|
* @param c The amount to set the counter to.
|
|
|
|
* @pre IsTileType(t, MP_OBJECT)
|
|
|
|
*/
|
|
|
|
static inline void SetObjectGroundCounter(TileIndex t, uint c)
|
|
|
|
{
|
|
|
|
assert_tile(IsTileType(t, MP_OBJECT), t);
|
|
|
|
SB(_m[t].m4, 5, 3, c);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets ground type and density in one go, also sets the counter to 0
|
|
|
|
* @param t the tile to set the ground type and density for
|
|
|
|
* @param type the new ground type of the tile
|
|
|
|
* @param density the density of the ground tile
|
|
|
|
* @pre IsTileType(t, MP_OBJECT)
|
|
|
|
*/
|
|
|
|
static inline void SetObjectGroundTypeDensity(TileIndex t, ObjectGround type, uint density)
|
|
|
|
{
|
|
|
|
assert_tile(IsTileType(t, MP_OBJECT), t);
|
|
|
|
_m[t].m4 = 0 << 5 | type << 2 | density;
|
|
|
|
}
|
2006-03-31 09:09:26 +00:00
|
|
|
|
2022-01-23 13:17:13 +00:00
|
|
|
static inline ObjectEffectiveFoundationType GetObjectEffectiveFoundationType(TileIndex t)
|
2021-12-05 21:20:58 +00:00
|
|
|
{
|
|
|
|
assert_tile(IsTileType(t, MP_OBJECT), t);
|
2022-01-23 13:17:13 +00:00
|
|
|
return (ObjectEffectiveFoundationType)GB(_me[t].m6, 0, 2);
|
2021-12-05 21:20:58 +00:00
|
|
|
}
|
|
|
|
|
2022-01-23 13:17:13 +00:00
|
|
|
static inline void SetObjectEffectiveFoundationType(TileIndex t, ObjectEffectiveFoundationType foundation_type)
|
2021-12-05 21:20:58 +00:00
|
|
|
{
|
|
|
|
assert_tile(IsTileType(t, MP_OBJECT), t);
|
2022-01-23 13:17:13 +00:00
|
|
|
SB(_me[t].m6, 0, 2, foundation_type);
|
2021-12-05 21:20:58 +00:00
|
|
|
}
|
|
|
|
|
2022-02-07 01:16:45 +00:00
|
|
|
static inline bool GetObjectHasViewportMapViewOverride(TileIndex t)
|
|
|
|
{
|
|
|
|
assert_tile(IsTileType(t, MP_OBJECT), t);
|
|
|
|
return HasBit(_m[t].m4, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void SetObjectHasViewportMapViewOverride(TileIndex t, bool map_view_override)
|
|
|
|
{
|
|
|
|
assert_tile(IsTileType(t, MP_OBJECT), t);
|
|
|
|
SB(_m[t].m4, 4, 1, map_view_override ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
2007-04-18 18:20:31 +00:00
|
|
|
/**
|
2010-08-08 10:59:30 +00:00
|
|
|
* Make an Object tile.
|
|
|
|
* @param t The tile to make and object tile.
|
2010-08-03 08:09:45 +00:00
|
|
|
* @param o The new owner of the tile.
|
2010-08-13 12:45:26 +00:00
|
|
|
* @param index Index to the object.
|
2013-01-08 22:46:42 +00:00
|
|
|
* @param wc Water class for this object.
|
2010-08-27 22:26:21 +00:00
|
|
|
* @param random Random data to store on the tile
|
2007-04-18 18:20:31 +00:00
|
|
|
*/
|
2013-10-12 16:30:42 +00:00
|
|
|
static inline void MakeObject(TileIndex t, Owner o, ObjectID index, WaterClass wc, byte random)
|
2006-03-23 20:47:56 +00:00
|
|
|
{
|
2010-08-08 10:59:30 +00:00
|
|
|
SetTileType(t, MP_OBJECT);
|
2006-03-23 20:47:56 +00:00
|
|
|
SetTileOwner(t, o);
|
2010-08-11 14:14:06 +00:00
|
|
|
SetWaterClass(t, wc);
|
2010-08-03 08:58:12 +00:00
|
|
|
_m[t].m2 = index;
|
2010-08-27 22:26:21 +00:00
|
|
|
_m[t].m3 = random;
|
2006-03-23 20:47:56 +00:00
|
|
|
_m[t].m4 = 0;
|
2013-10-12 16:35:50 +00:00
|
|
|
_m[t].m5 = index >> 16;
|
2014-09-21 11:23:33 +00:00
|
|
|
SB(_me[t].m6, 2, 4, 0);
|
2009-03-08 16:10:39 +00:00
|
|
|
_me[t].m7 = 0;
|
2006-03-23 20:47:56 +00:00
|
|
|
}
|
|
|
|
|
2010-08-08 10:59:30 +00:00
|
|
|
#endif /* OBJECT_MAP_H */
|