2006-02-01 15:31:21 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/** @file clear_map.h Map accessors for 'clear' tiles */
|
2007-02-23 11:50:43 +00:00
|
|
|
|
2006-03-05 11:18:34 +00:00
|
|
|
#ifndef CLEAR_MAP_H
|
|
|
|
#define CLEAR_MAP_H
|
2006-02-01 15:31:21 +00:00
|
|
|
|
2007-01-09 21:43:32 +00:00
|
|
|
#include "bridge_map.h"
|
2008-01-07 14:02:26 +00:00
|
|
|
#include "industry_type.h"
|
2006-02-01 15:31:21 +00:00
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Ground types. Valid densities in comments after the enum.
|
2006-02-01 15:31:21 +00:00
|
|
|
*/
|
2007-03-07 12:11:48 +00:00
|
|
|
enum ClearGround {
|
2007-02-23 11:50:43 +00:00
|
|
|
CLEAR_GRASS = 0, ///< 0-3
|
|
|
|
CLEAR_ROUGH = 1, ///< 3
|
|
|
|
CLEAR_ROCKS = 2, ///< 3
|
|
|
|
CLEAR_FIELDS = 3, ///< 3
|
|
|
|
CLEAR_SNOW = 4, ///< 0-3
|
|
|
|
CLEAR_DESERT = 5 ///< 1,3
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2006-02-01 15:31:21 +00:00
|
|
|
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Get the type of clear tile.
|
|
|
|
* @param t the tile to get the clear ground type of
|
|
|
|
* @pre IsTileType(t, MP_CLEAR)
|
|
|
|
* @return the ground type
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline ClearGround GetClearGround(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_CLEAR));
|
2007-01-10 18:56:51 +00:00
|
|
|
return (ClearGround)GB(_m[t].m5, 2, 3);
|
2006-03-30 09:29:01 +00:00
|
|
|
}
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Set the type of clear tile.
|
|
|
|
* @param t the tile to set the clear ground type of
|
|
|
|
* @param ct the ground type
|
|
|
|
* @pre IsTileType(t, MP_CLEAR)
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline bool IsClearGround(TileIndex t, ClearGround ct)
|
|
|
|
{
|
|
|
|
return GetClearGround(t) == ct;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Get the density of a non-field clear tile.
|
|
|
|
* @param t the tile to get the density of
|
|
|
|
* @pre IsTileType(t, MP_CLEAR)
|
|
|
|
* @return the density
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline uint GetClearDensity(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_CLEAR));
|
|
|
|
return GB(_m[t].m5, 0, 2);
|
|
|
|
}
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Increment the density of a non-field clear tile.
|
|
|
|
* @param t the tile to increment the density of
|
|
|
|
* @param d the amount to increment the density with
|
|
|
|
* @pre IsTileType(t, MP_CLEAR)
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline void AddClearDensity(TileIndex t, int d)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_CLEAR)); // XXX incomplete
|
|
|
|
_m[t].m5 += d;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Get the counter used to advance to the next clear density/field type.
|
|
|
|
* @param t the tile to get the counter of
|
|
|
|
* @pre IsTileType(t, MP_CLEAR)
|
|
|
|
* @return the value of the counter
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline uint GetClearCounter(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_CLEAR));
|
|
|
|
return GB(_m[t].m5, 5, 3);
|
|
|
|
}
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Increments the counter used to advance to the next clear density/field type.
|
|
|
|
* @param t the tile to increment the counter of
|
|
|
|
* @param c the amount to increment the counter with
|
|
|
|
* @pre IsTileType(t, MP_CLEAR)
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline void AddClearCounter(TileIndex t, int c)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_CLEAR)); // XXX incomplete
|
|
|
|
_m[t].m5 += c << 5;
|
|
|
|
}
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Sets the counter used to advance to the next clear density/field type.
|
|
|
|
* @param t the tile to set the counter of
|
|
|
|
* @param c the amount to set the counter to
|
|
|
|
* @pre IsTileType(t, MP_CLEAR)
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline void SetClearCounter(TileIndex t, uint c)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_CLEAR)); // XXX incomplete
|
|
|
|
SB(_m[t].m5, 5, 3, c);
|
|
|
|
}
|
2006-02-01 15:31:21 +00:00
|
|
|
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* 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_CLEAR)
|
|
|
|
*/
|
2006-02-01 15:31:21 +00:00
|
|
|
static inline void SetClearGroundDensity(TileIndex t, ClearGround type, uint density)
|
|
|
|
{
|
2006-03-30 09:29:01 +00:00
|
|
|
assert(IsTileType(t, MP_CLEAR)); // XXX incomplete
|
2006-02-01 15:31:21 +00:00
|
|
|
_m[t].m5 = 0 << 5 | type << 2 | density;
|
|
|
|
}
|
|
|
|
|
2006-03-30 09:29:01 +00:00
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Get the field type (production stage) of the field
|
|
|
|
* @param t the field to get the type of
|
|
|
|
* @pre GetClearGround(t) == CLEAR_FIELDS
|
|
|
|
* @return the field type
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline uint GetFieldType(TileIndex t)
|
|
|
|
{
|
2006-04-04 21:35:13 +00:00
|
|
|
assert(GetClearGround(t) == CLEAR_FIELDS);
|
2006-03-30 09:29:01 +00:00
|
|
|
return GB(_m[t].m3, 0, 4);
|
|
|
|
}
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Set the field type (production stage) of the field
|
|
|
|
* @param t the field to get the type of
|
|
|
|
* @param f the field type
|
|
|
|
* @pre GetClearGround(t) == CLEAR_FIELDS
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline void SetFieldType(TileIndex t, uint f)
|
|
|
|
{
|
2006-04-04 21:35:13 +00:00
|
|
|
assert(GetClearGround(t) == CLEAR_FIELDS); // XXX incomplete
|
2006-03-30 09:29:01 +00:00
|
|
|
SB(_m[t].m3, 0, 4, f);
|
|
|
|
}
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Get the industry (farm) that made the field
|
|
|
|
* @param t the field to get creating industry of
|
|
|
|
* @pre GetClearGround(t) == CLEAR_FIELDS
|
|
|
|
* @return the industry that made the field
|
|
|
|
*/
|
|
|
|
static inline IndustryID GetIndustryIndexOfField(TileIndex t)
|
2006-08-20 18:44:26 +00:00
|
|
|
{
|
|
|
|
assert(GetClearGround(t) == CLEAR_FIELDS);
|
2007-04-03 21:51:40 +00:00
|
|
|
return(IndustryID) _m[t].m2;
|
2006-08-20 18:44:26 +00:00
|
|
|
}
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Set the industry (farm) that made the field
|
|
|
|
* @param t the field to get creating industry of
|
|
|
|
* @param i the industry that made the field
|
|
|
|
* @pre GetClearGround(t) == CLEAR_FIELDS
|
|
|
|
*/
|
|
|
|
static inline void SetIndustryIndexOfField(TileIndex t, IndustryID i)
|
2006-08-20 18:44:26 +00:00
|
|
|
{
|
|
|
|
assert(GetClearGround(t) == CLEAR_FIELDS);
|
|
|
|
_m[t].m2 = i;
|
|
|
|
}
|
2006-02-05 11:54:25 +00:00
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Is there a fence at the south eastern border?
|
|
|
|
* @param t the tile to check for fences
|
|
|
|
* @pre IsTileType(t, MP_CLEAR) || IsTileType(t, MP_TREES)
|
|
|
|
* @return 0 if there is no fence, otherwise the fence type
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline uint GetFenceSE(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_CLEAR) || IsTileType(t, MP_TREES));
|
|
|
|
return GB(_m[t].m4, 2, 3);
|
|
|
|
}
|
2006-02-05 11:54:25 +00:00
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Sets the type of fence (and whether there is one) for the south
|
|
|
|
* eastern border.
|
|
|
|
* @param t the tile to check for fences
|
|
|
|
* @param h 0 if there is no fence, otherwise the fence type
|
|
|
|
* @pre IsTileType(t, MP_CLEAR) || IsTileType(t, MP_TREES)
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline void SetFenceSE(TileIndex t, uint h)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_CLEAR) || IsTileType(t, MP_TREES)); // XXX incomplete
|
|
|
|
SB(_m[t].m4, 2, 3, h);
|
|
|
|
}
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Is there a fence at the south western border?
|
|
|
|
* @param t the tile to check for fences
|
|
|
|
* @pre IsTileType(t, MP_CLEAR) || IsTileType(t, MP_TREES)
|
|
|
|
* @return 0 if there is no fence, otherwise the fence type
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline uint GetFenceSW(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_CLEAR) || IsTileType(t, MP_TREES));
|
|
|
|
return GB(_m[t].m4, 5, 3);
|
|
|
|
}
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Sets the type of fence (and whether there is one) for the south
|
|
|
|
* western border.
|
|
|
|
* @param t the tile to check for fences
|
|
|
|
* @param h 0 if there is no fence, otherwise the fence type
|
|
|
|
* @pre IsTileType(t, MP_CLEAR) || IsTileType(t, MP_TREES)
|
|
|
|
*/
|
2006-03-30 09:29:01 +00:00
|
|
|
static inline void SetFenceSW(TileIndex t, uint h)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_CLEAR) || IsTileType(t, MP_TREES)); // XXX incomplete
|
|
|
|
SB(_m[t].m4, 5, 3, h);
|
|
|
|
}
|
2006-02-05 11:54:25 +00:00
|
|
|
|
2006-02-24 19:56:24 +00:00
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Make a clear tile.
|
|
|
|
* @param t the tile to make a clear tile
|
|
|
|
* @param g the type of ground
|
|
|
|
* @param density the density of the grass/snow/desert etc
|
|
|
|
*/
|
2006-02-24 19:56:24 +00:00
|
|
|
static inline void MakeClear(TileIndex t, ClearGround g, uint density)
|
|
|
|
{
|
2007-01-09 21:43:32 +00:00
|
|
|
/* If this is a non-bridgeable tile, clear the bridge bits while the rest
|
|
|
|
* of the tile information is still here. */
|
2007-01-11 02:05:13 +00:00
|
|
|
if (!MayHaveBridgeAbove(t)) SB(_m[t].m6, 6, 2, 0);
|
2007-01-09 21:43:32 +00:00
|
|
|
|
2006-02-24 19:56:24 +00:00
|
|
|
SetTileType(t, MP_CLEAR);
|
|
|
|
SetTileOwner(t, OWNER_NONE);
|
|
|
|
_m[t].m2 = 0;
|
|
|
|
_m[t].m3 = 0;
|
|
|
|
_m[t].m4 = 0 << 5 | 0 << 2;
|
2006-03-22 08:48:50 +00:00
|
|
|
SetClearGroundDensity(t, g, density);
|
2007-02-23 11:50:43 +00:00
|
|
|
SB(_m[t].m6, 2, 4, 0); // Clear the rest of m6, bits 2 to 5
|
2006-03-22 08:48:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/**
|
|
|
|
* Make a (farm) field tile.
|
|
|
|
* @param t the tile to make a farm field
|
|
|
|
* @param field_type the 'growth' level of the field
|
|
|
|
* @param industry the industry this tile belongs to
|
|
|
|
*/
|
|
|
|
static inline void MakeField(TileIndex t, uint field_type, IndustryID industry)
|
2006-03-22 08:48:50 +00:00
|
|
|
{
|
|
|
|
SetTileType(t, MP_CLEAR);
|
|
|
|
SetTileOwner(t, OWNER_NONE);
|
2006-08-20 18:44:26 +00:00
|
|
|
_m[t].m2 = industry;
|
2006-03-22 08:48:50 +00:00
|
|
|
_m[t].m3 = field_type;
|
|
|
|
_m[t].m4 = 0 << 5 | 0 << 2;
|
2006-04-04 21:35:13 +00:00
|
|
|
SetClearGroundDensity(t, CLEAR_FIELDS, 3);
|
2006-02-24 19:56:24 +00:00
|
|
|
}
|
|
|
|
|
2006-09-28 18:42:35 +00:00
|
|
|
#endif /* CLEAR_MAP_H */
|