forked from DFHack/stonesense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TileDirection.h
109 lines (102 loc) · 2.81 KB
/
TileDirection.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#pragma once
//Mainly walls and rivers
//Byte values are used because walls can have either 1 or 2 in any given direction.
const int TileDirectionCount = 4;
union TileDirection
{
uint32_t whole;
unsigned char b[TileDirectionCount];
struct
{
//Maybe should add 'up' and 'down' for Z-levels?
unsigned char north, south, west, east;
};
inline TileDirection()
{
whole = 0;
}
TileDirection(uint32_t whole_bits)
{
whole = whole_bits;
}
bool operator== (const TileDirection &other) const
{
return whole == other.whole;
}
bool operator!= (const TileDirection &other) const
{
return whole != other.whole;
}
operator bool() const
{
return whole != 0;
}
TileDirection(unsigned char North, unsigned char South, unsigned char West, unsigned char East)
{
north = North; south = South; east = East; west = West;
}
TileDirection(const char *dir)
{
//This one just made for fun.
//Supports N S E W
const char *p = dir;
unsigned char *l = 0;
north = south = east = west = 0;
if (!dir) return;
for (; *p; ++p)
{
switch (*p)
{
case 'N': //North / Up
case 'n':
++north; l = &north; break;
case 'S': //South / Down
case 's':
++south; l = &south; break;
case 'E': //East / Right
case 'e':
++east; l = &east; break;
case 'W': //West / Left
case 'w':
++west; l = &west; break;
case '-':
case ' ':
//Explicitly ensure dash and space are ignored.
//Other characters/symbols may be assigned in the future.
break;
default:
if (l && '0' <= *p && '9' >= *p)
*l += *p - '0';
break;
}
}
}
//may be useful for some situations
inline uint32_t sum() const
{
return 0L + north + south + east + west;
}
//Gives a string that represents the direction.
//This is a static string, overwritten with every call!
//Support values > 2 even though they should never happen.
//Copy string if it will be used.
inline char * getStr() const
{
static char str[16];
str[8] = 0;
#define DIRECTION(x,i,c) \
str[i] = str[i + 1] = '-'; \
if (x){ \
str[i] = c; \
if (1 == x); \
else if (2 == x) str[i + 1] = c; \
else str[i + 1] = '0' + x; \
}
DIRECTION(north, 0, 'N')
DIRECTION(south, 2, 'S')
DIRECTION(west, 4, 'W')
DIRECTION(east, 6, 'E')
#undef DIRECTION
return str;
}
};