forked from Cubitect/cubiomes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.c
333 lines (302 loc) · 13.4 KB
/
util.c
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
#include "util.h"
#include "finders.h"
#include <stdio.h>
#include <string.h>
const char* mc2str(int mc)
{
switch (mc)
{
case MC_1_6: return "1.6"; break;
case MC_1_7: return "1.7"; break;
case MC_1_8: return "1.8"; break;
case MC_1_9: return "1.9"; break;
case MC_1_10: return "1.10"; break;
case MC_1_11: return "1.11"; break;
case MC_1_12: return "1.12"; break;
case MC_1_13: return "1.13"; break;
case MC_1_14: return "1.14"; break;
case MC_1_15: return "1.15"; break;
case MC_1_16: return "1.16"; break;
case MC_1_17: return "1.17"; break;
default: return NULL;
}
}
int str2mc(const char *s)
{
if (!strcmp(s, "1.17")) return MC_1_17;
if (!strcmp(s, "1.16")) return MC_1_16;
if (!strcmp(s, "1.15")) return MC_1_15;
if (!strcmp(s, "1.14")) return MC_1_14;
if (!strcmp(s, "1.13")) return MC_1_13;
if (!strcmp(s, "1.12")) return MC_1_12;
if (!strcmp(s, "1.11")) return MC_1_11;
if (!strcmp(s, "1.10")) return MC_1_10;
if (!strcmp(s, "1.9")) return MC_1_9;
if (!strcmp(s, "1.8")) return MC_1_8;
if (!strcmp(s, "1.7")) return MC_1_7;
if (!strcmp(s, "1.6")) return MC_1_6;
return -1;
}
const char *biome2str(int id)
{
switch (id)
{
case ocean: return "ocean";
case plains: return "plains";
case desert: return "desert";
case mountains: return "mountains";
case forest: return "forest";
case taiga: return "taiga";
case swamp: return "swamp";
case river: return "river";
case nether_wastes: return "nether_wastes";
case the_end: return "the_end";
// 10
case frozen_ocean: return "frozen_ocean";
case frozen_river: return "frozen_river";
case snowy_tundra: return "snowy_tundra";
case snowy_mountains: return "snowy_mountains";
case mushroom_fields: return "mushroom_fields";
case mushroom_field_shore: return "mushroom_field_shore";
case beach: return "beach";
case desert_hills: return "desert_hills";
case wooded_hills: return "wooded_hills";
case taiga_hills: return "taiga_hills";
// 20
case mountain_edge: return "mountain_edge";
case jungle: return "jungle";
case jungle_hills: return "jungle_hills";
case jungle_edge: return "jungle_edge";
case deep_ocean: return "deep_ocean";
case stone_shore: return "stone_shore";
case snowy_beach: return "snowy_beach";
case birch_forest: return "birch_forest";
case birch_forest_hills: return "birch_forest_hills";
case dark_forest: return "dark_forest";
// 30
case snowy_taiga: return "snowy_taiga";
case snowy_taiga_hills: return "snowy_taiga_hills";
case giant_tree_taiga: return "giant_tree_taiga";
case giant_tree_taiga_hills: return "giant_tree_taiga_hills";
case wooded_mountains: return "wooded_mountains";
case savanna: return "savanna";
case savanna_plateau: return "savanna_plateau";
case badlands: return "badlands";
case wooded_badlands_plateau: return "wooded_badlands_plateau";
case badlands_plateau: return "badlands_plateau";
// 40 -- 1.13
case small_end_islands: return "small_end_islands";
case end_midlands: return "end_midlands";
case end_highlands: return "end_highlands";
case end_barrens: return "end_barrens";
case warm_ocean: return "warm_ocean";
case lukewarm_ocean: return "lukewarm_ocean";
case cold_ocean: return "cold_ocean";
case deep_warm_ocean: return "deep_warm_ocean";
case deep_lukewarm_ocean: return "deep_lukewarm_ocean";
case deep_cold_ocean: return "deep_cold_ocean";
// 50
case deep_frozen_ocean: return "deep_frozen_ocean";
case the_void: return "the_void";
// mutated variants
case sunflower_plains: return "sunflower_plains";
case desert_lakes: return "desert_lakes";
case gravelly_mountains: return "gravelly_mountains";
case flower_forest: return "flower_forest";
case taiga_mountains: return "taiga_mountains";
case swamp_hills: return "swamp_hills";
case ice_spikes: return "ice_spikes";
case modified_jungle: return "modified_jungle";
case modified_jungle_edge: return "modified_jungle_edge";
case tall_birch_forest: return "tall_birch_forest";
case tall_birch_hills: return "tall_birch_hills";
case dark_forest_hills: return "dark_forest_hills";
case snowy_taiga_mountains: return "snowy_taiga_mountains";
case giant_spruce_taiga: return "giant_spruce_taiga";
case giant_spruce_taiga_hills: return "giant_spruce_taiga_hills";
case modified_gravelly_mountains: return "modified_gravelly_mountains";
case shattered_savanna: return "shattered_savanna";
case shattered_savanna_plateau: return "shattered_savanna_plateau";
case eroded_badlands: return "eroded_badlands";
case modified_wooded_badlands_plateau: return "modified_wooded_badlands_plateau";
case modified_badlands_plateau: return "modified_badlands_plateau";
// 1.14
case bamboo_jungle: return "bamboo_jungle";
case bamboo_jungle_hills: return "bamboo_jungle_hills";
// 1.16
case soul_sand_valley: return "soul_sand_valley";
case crimson_forest: return "crimson_forest";
case warped_forest: return "warped_forest";
case basalt_deltas: return "basalt_deltas";
// 1.17
case dripstone_caves: return "dripstone_caves";
case lush_caves: return "lush_caves";
}
return NULL;
}
void setBiomeColor(unsigned char biomeColor[256][3], int id,
unsigned char r, unsigned char g, unsigned char b)
{
biomeColor[id][0] = r;
biomeColor[id][1] = g;
biomeColor[id][2] = b;
}
void setMutationColor(unsigned char biomeColor[256][3], int mutated, int parent)
{
unsigned int c;
biomeColor[mutated][0] = (c = biomeColor[parent][0] + 40) > 255 ? 255 : c;
biomeColor[mutated][1] = (c = biomeColor[parent][1] + 40) > 255 ? 255 : c;
biomeColor[mutated][2] = (c = biomeColor[parent][2] + 40) > 255 ? 255 : c;
}
void initBiomeColors(unsigned char biomeColors[256][3])
{
// This coloring scheme is largely inspired by the AMIDST program:
// https://github.com/toolbox4minecraft/amidst
// https://sourceforge.net/projects/amidst.mirror/
memset(biomeColors, 0, 256*3);
setBiomeColor(biomeColors, ocean, 0, 0, 112);
setBiomeColor(biomeColors, plains, 141, 179, 96);
setBiomeColor(biomeColors, desert, 250, 148, 24);
setBiomeColor(biomeColors, mountains, 96, 96, 96);
setBiomeColor(biomeColors, forest, 5, 102, 33);
setBiomeColor(biomeColors, taiga, 11, 102, 89);
setBiomeColor(biomeColors, swamp, 7, 249, 178);
setBiomeColor(biomeColors, river, 0, 0, 255);
setBiomeColor(biomeColors, nether_wastes, 87, 37, 38);
setBiomeColor(biomeColors, the_end, 128, 128, 255);
setBiomeColor(biomeColors, frozen_ocean, 112, 112, 214);
setBiomeColor(biomeColors, frozen_river, 160, 160, 255);
setBiomeColor(biomeColors, snowy_tundra, 255, 255, 255);
setBiomeColor(biomeColors, snowy_mountains, 160, 160, 160);
setBiomeColor(biomeColors, mushroom_fields, 255, 0, 255);
setBiomeColor(biomeColors, mushroom_field_shore, 160, 0, 255);
setBiomeColor(biomeColors, beach, 250, 222, 85);
setBiomeColor(biomeColors, desert_hills, 210, 95, 18);
setBiomeColor(biomeColors, wooded_hills, 34, 85, 28);
setBiomeColor(biomeColors, taiga_hills, 22, 57, 51);
setBiomeColor(biomeColors, mountain_edge, 114, 120, 154);
setBiomeColor(biomeColors, jungle, 83, 123, 9);
setBiomeColor(biomeColors, jungle_hills, 44, 66, 5);
setBiomeColor(biomeColors, jungleEdge, 98, 139, 23);
setBiomeColor(biomeColors, deep_ocean, 0, 0, 48);
setBiomeColor(biomeColors, stone_shore, 162, 162, 132);
setBiomeColor(biomeColors, snowy_beach, 250, 240, 192);
setBiomeColor(biomeColors, birch_forest, 48, 116, 68);
setBiomeColor(biomeColors, birch_forest_hills, 31, 95, 50);
setBiomeColor(biomeColors, dark_forest, 64, 81, 26);
setBiomeColor(biomeColors, snowy_taiga, 49, 85, 74);
setBiomeColor(biomeColors, snowy_taiga_hills, 36, 63, 54);
setBiomeColor(biomeColors, giant_tree_taiga, 89, 102, 81);
setBiomeColor(biomeColors, giant_tree_taiga_hills, 69, 79, 62);
setBiomeColor(biomeColors, wooded_mountains, 80, 112, 80);
setBiomeColor(biomeColors, savanna, 189, 178, 95);
setBiomeColor(biomeColors, savanna_plateau, 167, 157, 100);
setBiomeColor(biomeColors, badlands, 217, 69, 21);
setBiomeColor(biomeColors, wooded_badlands_plateau, 176, 151, 101);
setBiomeColor(biomeColors, badlands_plateau, 202, 140, 101);
setBiomeColor(biomeColors, small_end_islands, 75, 75, 171);
setBiomeColor(biomeColors, end_midlands, 201, 201, 89);
setBiomeColor(biomeColors, end_highlands, 181, 181, 54);
setBiomeColor(biomeColors, end_barrens, 112, 112, 204);
setBiomeColor(biomeColors, warm_ocean, 0, 0, 172);
setBiomeColor(biomeColors, lukewarm_ocean, 0, 0, 144);
setBiomeColor(biomeColors, cold_ocean, 32, 32, 112);
setBiomeColor(biomeColors, deep_warm_ocean, 0, 0, 80);
setBiomeColor(biomeColors, deep_lukewarm_ocean, 0, 0, 64);
setBiomeColor(biomeColors, deep_cold_ocean, 32, 32, 56);
setBiomeColor(biomeColors, deep_frozen_ocean, 64, 64, 144);
setBiomeColor(biomeColors, the_void, 0, 0, 0);
setMutationColor(biomeColors, sunflower_plains, plains);
setMutationColor(biomeColors, desert_lakes, desert);
setMutationColor(biomeColors, gravelly_mountains, mountains);
setMutationColor(biomeColors, flower_forest, forest);
setMutationColor(biomeColors, taiga_mountains, taiga);
setMutationColor(biomeColors, swamp_hills, swamp);
setBiomeColor(biomeColors, ice_spikes, 180, 220, 220);
setMutationColor(biomeColors, modified_jungle, jungle);
setMutationColor(biomeColors, modified_jungle_edge, jungle_edge);
setMutationColor(biomeColors, tall_birch_forest, birch_forest);
setMutationColor(biomeColors, tall_birch_hills, birch_forest_hills);
setMutationColor(biomeColors, dark_forest_hills, dark_forest);
setMutationColor(biomeColors, snowy_taiga_mountains, snowy_taiga);
setMutationColor(biomeColors, giant_spruce_taiga, giant_tree_taiga);
setMutationColor(biomeColors, giant_spruce_taiga_hills, giant_tree_taiga_hills);
setMutationColor(biomeColors, modified_gravelly_mountains, wooded_mountains);
setMutationColor(biomeColors, shattered_savanna, savanna);
setMutationColor(biomeColors, shattered_savanna_plateau, savanna_plateau);
setMutationColor(biomeColors, eroded_badlands, badlands);
setMutationColor(biomeColors, modified_wooded_badlands_plateau, wooded_badlands_plateau);
setMutationColor(biomeColors, modified_badlands_plateau, badlands_plateau);
setBiomeColor(biomeColors, bamboo_jungle, 118, 142, 20);
setBiomeColor(biomeColors, bamboo_jungle_hills, 59, 71, 10);
setBiomeColor(biomeColors, soul_sand_valley, 77, 58, 46);
setBiomeColor(biomeColors, crimson_forest, 152, 26, 17);
setBiomeColor(biomeColors, warped_forest, 73, 144, 123);
setBiomeColor(biomeColors, basalt_deltas, 100, 95, 99);
setBiomeColor(biomeColors, dripstone_caves, 149, 127, 104); // TBD
setBiomeColor(biomeColors, lush_caves, 109, 143, 62); // TBD
}
void initBiomeTypeColors(unsigned char biomeColors[256][3])
{
memset(biomeColors, 0, 256*3);
setBiomeColor(biomeColors, Oceanic, 0x00, 0x00, 0xa0);
setBiomeColor(biomeColors, Warm, 0xff, 0xc0, 0x00);
setBiomeColor(biomeColors, Lush, 0x00, 0xa0, 0x00);
setBiomeColor(biomeColors, Cold, 0x60, 0x60, 0x60);
setBiomeColor(biomeColors, Freezing, 0xff, 0xff, 0xff);
}
int biomesToImage(unsigned char *pixels,
unsigned char biomeColors[256][3], const int *biomes,
const unsigned int sx, const unsigned int sy,
const unsigned int pixscale, const int flip)
{
unsigned int i, j;
int containsInvalidBiomes = 0;
for (j = 0; j < sy; j++)
{
for (i = 0; i < sx; i++)
{
int id = biomes[j*sx+i];
unsigned int r, g, b;
if (id < 0 || id >= 256)
{
// This may happen for some intermediate layers
containsInvalidBiomes = 1;
r = biomeColors[id&0x7f][0]-40; r = (r>0xff) ? 0x00 : r&0xff;
g = biomeColors[id&0x7f][1]-40; g = (g>0xff) ? 0x00 : g&0xff;
b = biomeColors[id&0x7f][2]-40; b = (b>0xff) ? 0x00 : b&0xff;
}
else
{
r = biomeColors[id][0];
g = biomeColors[id][1];
b = biomeColors[id][2];
}
unsigned int m, n;
for (m = 0; m < pixscale; m++) {
for (n = 0; n < pixscale; n++) {
int idx = pixscale * i + n;
if (flip)
idx += (sx * pixscale) * ((pixscale * j) + m);
else
idx += (sx * pixscale) * ((pixscale * (sy-1-j)) + m);
unsigned char *pix = pixels + 3*idx;
pix[0] = (unsigned char)r;
pix[1] = (unsigned char)g;
pix[2] = (unsigned char)b;
}
}
}
}
return containsInvalidBiomes;
}
int savePPM(const char *path, const unsigned char *pixels, const unsigned int sx, const unsigned int sy)
{
FILE *fp = fopen(path, "wb");
if (!fp)
return -1;
fprintf(fp, "P6\n%d %d\n255\n", sx, sy);
int written = fwrite(pixels, sx*sy, 3, fp);
fclose(fp);
return (unsigned int)written != 3*sx*sy;
}