road.h
author miham
Tue, 19 Dec 2006 06:14:29 +0000
changeset 5342 006d4639558f
parent 4666 850b5b6e4bac
permissions -rw-r--r--
(svn r7509) WebTranslator2 update to 2006-12-19 07:13:46
bulgarian - 5 fixed by kokobongo (5)
catalan - 1 fixed, 4 changed by arnaullv (5)
esperanto - 24 fixed by LaPingvino (24)
estonian - 5 fixed by vermon (5)
french - 1 fixed by glx (1)
portuguese - 1 fixed by izhirahider (1)
russian - 1 fixed by Smoky555 (1)
ukrainian - 16 fixed by znikoz (16)
/* $Id$ */

#ifndef ROAD_H
#define ROAD_H

typedef enum RoadBits {
	ROAD_NW  = 1U,
	ROAD_SW  = 2U,
	ROAD_SE  = 4U,
	ROAD_NE  = 8U,
	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 (RoadBits)(ROAD_ALL ^ r);
}

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

#endif /* ROAD_H */