road.h
author bjarni
Fri, 08 Sep 2006 11:53:05 +0000
changeset 4578 308afd09d2cd
parent 3900 2c84ed52709d
child 4666 172a0cdf28a6
permissions -rw-r--r--
(svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
/* $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