File diff r3078:ecb7cd974842 → r3079:e4f78ffd69d5
tree.h
Show inline comments
 
@@ -47,13 +47,24 @@ static inline void SetTreeGroundDensity(
 
static inline void AddTreeCount(TileIndex t, int c) { _m[t].m5 += c << 6; }
 
static inline uint GetTreeCount(TileIndex t) { return GB(_m[t].m5, 6, 2); }
 
static inline void SetTreeCount(TileIndex t, uint c) { SB(_m[t].m5, 6, 2, c); }
 

	
 
static inline void AddTreeGrowth(TileIndex t, int a) { _m[t].m5 += a; }
 
static inline uint GetTreeGrowth(TileIndex t) { return GB(_m[t].m5, 0, 3); }
 
static inline void SetTreeGrowth(TileIndex t, uint g) { SB(_m[t].m5, 0, 3, g); }
 

	
 
static inline void AddTreeCounter(TileIndex t, int a) { _m[t].m2 += a; }
 
static inline uint GetTreeCounter(TileIndex t) { return GB(_m[t].m2, 0, 4); }
 
static inline void SetTreeCounter(TileIndex t, uint c) { SB(_m[t].m2, 0, 4, c); }
 

	
 

	
 
static inline void MakeTree(TileIndex t, TreeType type, uint count, uint growth, TreeGround ground, uint density)
 
{
 
	SetTileType(t, MP_TREES);
 
	SetTileOwner(t, OWNER_NONE);
 
	_m[t].m2 = density << 6 | ground << 4 | 0;
 
	_m[t].m3 = type;
 
	_m[t].m4 = 0 << 5 | 0 << 2;
 
	_m[t].m5 = count << 6 | growth;
 
}
 

	
 
#endif