Files
@ r5312:ffd375effb01
Branch filter:
Location: cpp/openttd-patchpack/source/road.h - annotation
r5312:ffd375effb01
446 B
text/x-c
(svn r7468) -Codechange: [win32] Add some comments to MB/WIDE_TO_WIDE/MB_[BUFFER] macros and
use them some more in win32 code. Also for the clipboard use the convert_from_fs
function instead of calling Win32 API directly. Make the static buffers in OTTD2FS
and FS2OTTD the same size (character-length wise)
use them some more in win32 code. Also for the clipboard use the convert_from_fs
function instead of calling Win32 API directly. Make the static buffers in OTTD2FS
and FS2OTTD the same size (character-length wise)
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 */
|