Add: INR currency (#8136)
[openttd-github.git] / src / table / genland.h
blob53801e2f68bf5cafe11e6a3f6aea9f44378680ab
1 /*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
8 /** @file genland.h Table used to generate deserts and/or rain forests. */
10 #define M(x, y) {x, y}
12 static const TileIndexDiffC _make_desert_or_rainforest_data[] = {
13 M(-5, -6),
14 M(-4, -6),
15 M(-3, -6),
16 M(-2, -6),
17 M(-1, -6),
18 M( 0, -5),
19 M( 1, -5),
20 M( 2, -5),
21 M( 3, -5),
22 M( 4, -5),
23 M( 5, -5),
24 M(-5, -5),
25 M(-4, -5),
26 M(-3, -5),
27 M(-2, -5),
28 M(-1, -5),
29 M( 0, -4),
30 M( 1, -4),
31 M( 2, -4),
32 M( 3, -4),
33 M( 4, -4),
34 M( 5, -4),
35 M(-5, -4),
36 M(-4, -4),
37 M(-3, -4),
38 M(-2, -4),
39 M(-1, -4),
40 M( 0, -3),
41 M( 1, -3),
42 M( 2, -3),
43 M( 3, -3),
44 M( 4, -3),
45 M( 5, -3),
46 M(-5, -3),
47 M(-4, -3),
48 M(-3, -3),
49 M(-2, -3),
50 M(-1, -3),
51 M( 0, -2),
52 M( 1, -2),
53 M( 2, -2),
54 M( 3, -2),
55 M( 4, -2),
56 M( 5, -2),
57 M(-5, -2),
58 M(-4, -2),
59 M(-3, -2),
60 M(-2, -2),
61 M(-1, -2),
62 M( 0, -1),
63 M( 1, -1),
64 M( 2, -1),
65 M( 3, -1),
66 M( 4, -1),
67 M( 5, -1),
68 M(-5, -1),
69 M(-4, -1),
70 M(-3, -1),
71 M(-2, -1),
72 M(-1, -1),
73 M( 0, 0),
74 M( 1, 0),
75 M( 2, 0),
76 M( 3, 0),
77 M( 4, 0),
78 M( 5, 0),
79 M(-5, 0),
80 M(-4, 0),
81 M(-3, 0),
82 M(-2, 0),
83 M(-1, 0),
84 M( 0, 1),
85 M( 1, 1),
86 M( 2, 1),
87 M( 3, 1),
88 M( 4, 1),
89 M( 5, 1),
90 M(-5, 1),
91 M(-4, 1),
92 M(-3, 1),
93 M(-2, 1),
94 M(-1, 1),
95 M( 0, 2),
96 M( 1, 2),
97 M( 2, 2),
98 M( 3, 2),
99 M( 4, 2),
100 M( 5, 2),
101 M(-5, 2),
102 M(-4, 2),
103 M(-3, 2),
104 M(-2, 2),
105 M(-1, 2),
106 M( 0, 3),
107 M( 1, 3),
108 M( 2, 3),
109 M( 3, 3),
110 M( 4, 3),
111 M( 5, 3),
112 M(-5, 3),
113 M(-4, 3),
114 M(-3, 3),
115 M(-2, 3),
116 M(-1, 3),
117 M( 0, 4),
118 M( 1, 4),
119 M( 2, 4),
120 M( 3, 4),
121 M( 4, 4),
122 M( 5, 4),
123 M(-5, 4),
124 M(-4, 4),
125 M(-3, 4),
126 M(-2, 4),
127 M(-1, 4),
128 M( 0, 5),
129 M( 1, 5),
130 M( 2, 5),
131 M( 3, 5),
132 M( 4, 5),
133 M( 5, 5),
134 M( 6, -3),
135 M(-6, -4),
136 M(-3, 5),
137 M(-3, -7),
138 M( 6, -2),
139 M(-6, -3),
140 M(-2, 5),
141 M(-2, -7),
142 M( 6, -1),
143 M(-6, -2),
144 M(-1, 5),
145 M(-1, -7),
146 M( 6, 0),
147 M(-6, -1),
148 M( 0, 6),
149 M( 0, -6),
150 M( 6, 1),
151 M(-6, 0),
152 M( 1, 6),
153 M( 1, -6),
154 M( 6, 2),
155 M(-6, 1),
156 M( 2, 6),
157 M( 2, -6),
158 M( 6, 3),
159 M(-6, 2),
160 M( 3, 6),
161 M( 3, -6)
166 #undef M