industry_map.h
author Darkvater
Sun, 26 Mar 2006 16:29:20 +0000
changeset 3335 caea2aff4db6
parent 3331 da6bbabbb6cc
child 3369 cab209754317
permissions -rw-r--r--
(svn r4114) - Add missing source files to VS2003/VS6 project files added in r4113
/* $Id$ */

#include "industry.h"
#include "macros.h"
#include "tile.h"


static inline uint GetIndustryIndex(TileIndex t)
{
	return _m[t].m2;
}

static inline Industry* GetIndustryByTile(TileIndex t)
{
	return GetIndustry(GetIndustryIndex(t));
}


static inline bool IsIndustryCompleted(TileIndex tile)
{
	return HASBIT(_m[tile].m1, 7);
}


static inline uint GetIndustryGfx(TileIndex t)
{
	return _m[t].m5;
}

static inline void SetIndustryGfx(TileIndex t, uint gfx)
{
	_m[t].m5 = gfx;
}


static inline void MakeIndustry(TileIndex t, uint index, uint gfx)
{
	SetTileType(t, MP_INDUSTRY);
	_m[t].m1 = 0;
	_m[t].m2 = index;
	_m[t].m3 = 0;
	_m[t].m4 = 0;
	_m[t].m5 = gfx;
}