Files
@ r5352:64720e7993a1
Branch filter:
Location: cpp/openttd-patchpack/source/road.h - annotation
r5352:64720e7993a1
446 B
text/x-c
(svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
This is only possible in SP (or in the intro menu). During game play you will
get a confirmation window when applying the changes as some actions can crash
OpenTTD and/or make your current game unplayable.
This is only possible in SP (or in the intro menu). During game play you will
get a confirmation window when applying the changes as some actions can crash
OpenTTD and/or make your current game unplayable.
r3518:098862dff341 r3518:098862dff341 r3518:098862dff341 r3518:098862dff341 r3518:098862dff341 r3518:098862dff341 r3795:4a0aa8790084 r3795:4a0aa8790084 r3795:4a0aa8790084 r3795:4a0aa8790084 r3518:098862dff341 r3518:098862dff341 r3518:098862dff341 r3518:098862dff341 r3518:098862dff341 r3518:098862dff341 r3518:098862dff341 r3900:1c2675abec23 r3518:098862dff341 r3518:098862dff341 r3518:098862dff341 r3518:098862dff341 r3900:1c2675abec23 r3518:098862dff341 r3518:098862dff341 r4666:2a2c50111c72 | /* $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 */
|