Files @ r3747:5aa82ab659e3
Branch filter:

Location: cpp/openttd-patchpack/source/road.h

miham
(svn r4735) WebTranslator2 update to 2006-05-04 16:19:23
czech - 1 changed by Hadez (1)
dutch - 3 fixed by webfreakz (3)
german - 1 fixed, 3 changed by Neonox (3), moewe2 (1)
hungarian - 2 changed by miham (2)
polish - 9 changed by meush (9)
portuguese - 3 fixed, 3 changed by izhirahider (6)
romanian - 58 fixed by kneekoo (58)
slovenian - 95 fixed by christooss (95)
turkish - 1 fixed by jnmbk (1)
/* $Id$ */

#ifndef ROAD_H
#define ROAD_H

typedef enum RoadBits {
	ROAD_NW  = 1,
	ROAD_SW  = 2,
	ROAD_SE  = 4,
	ROAD_NE  = 8,
	ROAD_X   = ROAD_SW | ROAD_NE,
	ROAD_Y   = ROAD_NW | ROAD_SE,
	ROAD_ALL = ROAD_X  | ROAD_Y
} RoadBits;

static inline RoadBits ComplementRoadBits(RoadBits r)
{
	return ROAD_ALL ^ r;
}

static inline RoadBits DiagDirToRoadBits(DiagDirection d)
{
	return 1 << (3 ^ d);
}

#endif