forked from azekillDIABLO/omicron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitem.c
386 lines (356 loc) · 9.03 KB
/
item.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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
#include "item.h"
#include "util.h"
const int items[] = {
// items the user can build
Item_GRASS,
Item_SWAMP_GRASS,
Item_SAND,
Item_SANDSTONE,
Item_SANDSTONE_BRICKS,
Item_STONEBRICK,
Item_SLAB_LOWER_STONEBRICK,
Item_BRICK,
Item_WOOD,
Item_STONE,
Item_STONE_BRICKS,
Item_DIRT,
Item_PLANK,
Item_SNOW,
Item_GLASS,
Item_COBBLE,
Item_LIGHT_STONE,
Item_DARK_STONE,
Item_TORCH,
Item_CHEST,
Item_TNT,
Item_LEAVES,
Item_CLAY,
//Item_CLOUD,
//Item_CORESHELL,
Item_WATER,
Item_ICE,
Item_CACTUS,
Item_PLAYER,
Item_COAL_ORE,
Item_IRON_ORE,
Item_GOLD_ORE,
Item_RUBIS_ORE,
Item_COAL_BLOCK,
Item_IRON_BLOCK,
Item_GOLD_BLOCK,
Item_RUBIS_BLOCK,
//Flowers
Item_TALL_GRASS,
Item_SWAMP_TALL_GRASS,
Item_YELLOW_FLOWER,
Item_RED_FLOWER,
Item_PURPLE_FLOWER,
Item_SUN_FLOWER,
Item_WHITE_FLOWER,
Item_BLUE_FLOWER,
Item_VINE,
Item_CACTI,
Item_FERN,
Item_MUSHROOM,
Item_MUSHROOMS,
//Colors
Item_COLOR_00,
Item_COLOR_01,
Item_COLOR_02,
Item_COLOR_03,
Item_COLOR_04,
Item_COLOR_05,
Item_COLOR_06,
Item_COLOR_07,
Item_COLOR_08,
Item_COLOR_09,
Item_COLOR_10,
Item_COLOR_11,
Item_COLOR_12,
Item_COLOR_13,
Item_COLOR_14,
Item_COLOR_15,
Item_COLOR_16,
Item_COLOR_17,
Item_COLOR_18,
Item_COLOR_19,
Item_COLOR_20,
Item_COLOR_21,
Item_COLOR_22,
Item_COLOR_23,
Item_COLOR_24,
Item_COLOR_25,
Item_COLOR_26,
Item_COLOR_27,
Item_COLOR_28,
Item_COLOR_29,
Item_COLOR_30,
Item_COLOR_31
};
const int item_count = sizeof(items) / sizeof(int);
const int blocks[256][6] = {
// w => (left, right, top, bottom, front, back) tiles
{0, 0, 0, 0, 0, 0}, // 0 - empty
{16, 16, 32, 0, 16, 16}, // 1 - grass
{1, 1, 1, 1, 1, 1}, // 2 - sand
{2, 2, 2, 2, 2, 2}, // 3 - stonebrick
{3, 3, 3, 3, 3, 3}, // 4 - brick
{20, 20, 36, 4, 20, 20}, // 5 - wood
{5, 5, 5, 5, 5, 5}, // 6 - stone
{6, 6, 6, 6, 6, 6}, // 7 - dirt
{7, 7, 7, 7, 7, 7}, // 8 - plank
{24, 24, 40, 8, 24, 24}, // 9 - snow
{9, 9, 9, 9, 9, 9}, // 10 - glass
{21, 21, 21, 21, 21, 21}, // 11 - cobble
{11, 11, 11, 11, 11, 11}, // 12 - light stone
{12, 12, 12, 12, 12, 12}, // 13 - dark stone
{13, 13, 13, 13, 13, 13}, // 14 - chest
{14, 14, 14, 14, 14, 14}, // 15 - leaves
{15, 15, 15, 15, 15, 15}, // 16 - cloud
{0, 0, 0, 0, 0, 0}, // 17
{0, 0, 0, 0, 0, 0}, // 18
{0, 0, 0, 0, 0, 0}, // 19
{0, 0, 0, 0, 0, 0}, // 20
{0, 0, 0, 0, 0, 0}, // 21
{0, 0, 0, 0, 0, 0}, // 22
{0, 0, 0, 0, 0, 0}, // 23
{0, 0, 0, 0, 0, 0}, // 24
{0, 0, 0, 0, 0, 0}, // 25
{0, 0, 0, 0, 0, 0}, // 26
{0, 0, 0, 0, 0, 0}, // 27
{0, 0, 0, 0, 0, 0}, // 28
{0, 0, 0, 0, 0, 0}, // 29
{0, 0, 0, 0, 0, 0}, // 30
{0, 0, 0, 0, 0, 0}, // 31
// Color Blocks ----------------// --
{176, 176, 176, 176, 176, 176}, // 32
{177, 177, 177, 177, 177, 177}, // 33
{178, 178, 178, 178, 178, 178}, // 34
{179, 179, 179, 179, 179, 179}, // 35
{180, 180, 180, 180, 180, 180}, // 36
{181, 181, 181, 181, 181, 181}, // 37
{182, 182, 182, 182, 182, 182}, // 38
{183, 183, 183, 183, 183, 183}, // 39
{184, 184, 184, 184, 184, 184}, // 40
{185, 185, 185, 185, 185, 185}, // 41
{186, 186, 186, 186, 186, 186}, // 42
{187, 187, 187, 187, 187, 187}, // 43
{188, 188, 188, 188, 188, 188}, // 44
{189, 189, 189, 189, 189, 189}, // 45
{190, 190, 190, 190, 190, 190}, // 46
{191, 191, 191, 191, 191, 191}, // 47
{192, 192, 192, 192, 192, 192}, // 48
{193, 193, 193, 193, 193, 193}, // 49
{194, 194, 194, 194, 194, 194}, // 50
{195, 195, 195, 195, 195, 195}, // 51
{196, 196, 196, 196, 196, 196}, // 52
{197, 197, 197, 197, 197, 197}, // 53
{198, 198, 198, 198, 198, 198}, // 54
{199, 199, 199, 199, 199, 199}, // 55
{200, 200, 200, 200, 200, 200}, // 56
{201, 201, 201, 201, 201, 201}, // 57
{202, 202, 202, 202, 202, 202}, // 58
{203, 203, 203, 203, 203, 203}, // 59
{204, 204, 204, 204, 204, 204}, // 60
{205, 205, 205, 205, 205, 205}, // 61
{206, 206, 206, 206, 206, 206}, // 62
{207, 207, 207, 207, 207, 207}, // 63
// End of Color Blocks----------// --
{226, 224, 241, 209, 225, 227}, // 64 - player block (Facedir?)
{210, 210, 210, 210, 210, 210}, // 65 - cactus
{0, 0, 0, 0, 0, 0}, // 66
{0, 0, 0, 0, 0, 0}, // 67
{2, 2, 2, 2, 2, 2}, // 68 - stonebrick slab
{211, 211, 211, 211, 211, 211}, // 69 - water
{212, 212, 212, 212, 212, 212}, // 70 - core shell
{64, 64, 64, 64, 64, 64}, // 71 - coal ore
{65, 65, 65, 65, 65, 65}, // 72 - iron ore
{66, 66, 66, 66, 66, 66}, // 73 - gold ore
{67, 67, 67, 67, 67, 67}, // 74 - rubis ore
{80, 80, 80, 80, 80, 80}, // 75 - coal block
{81, 81, 81, 81, 81, 81}, // 76 - iron block
{82, 82, 82, 82, 82, 82}, // 77 - gold block
{83, 83, 83, 83, 83, 83}, // 78 - rubis block
{213, 213, 213, 213, 213, 213}, // 79 - ice
{214, 214, 215, 216, 214, 214}, // 80 - TNT
{17, 17, 17, 17, 17, 17}, // 81 - sandstone
{33, 33, 33, 33, 33, 33}, // 82 - sandstone bricks
{10, 10, 10, 10, 10, 10}, // 83 - stone bricks
{34, 34, 34, 34, 34, 34}, // 85 - clay
{0, 0, 0, 0, 0, 0}, // 86
{0, 0, 0, 0, 0, 0}, // 87
{0, 0, 0, 0, 0, 0}, // 88
{19, 19, 35, 0, 19, 19}, // 89 - swamp dirt
{0, 0, 0, 0, 0, 0}, // 90
{0, 0, 0, 0, 0, 16}, // 91
{0, 0, 0, 0, 0, 0} // - empty
};
const int plants[256] = {
// w => tile
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 0 - 16
48, // 17 - tall grass
49, // 18 - yellow flower
50, // 19 - red flower
51, // 20 - purple flower
52, // 21 - sun flower
53, // 22 - white flower
54, // 23 - blue flower
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, // 24 - 65
55, // 66 - vine
56, // 67 - cacti
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, // 68 - 85
57, // 86 - fern
58, // 87 - mushroom
59, // 88 - mushroom patch
0,
60, // 90 - swamp tall grass
96 // 91 - torch
};
const int obj[256] = {
6 // test
};
int is_plant(int w) {
switch (w) {
case Item_TALL_GRASS:
case Item_YELLOW_FLOWER:
case Item_RED_FLOWER:
case Item_PURPLE_FLOWER:
case Item_SUN_FLOWER:
case Item_WHITE_FLOWER:
case Item_BLUE_FLOWER:
case Item_VINE:
case Item_CACTI:
case Item_FERN:
case Item_MUSHROOM:
case Item_MUSHROOMS:
case Item_SWAMP_TALL_GRASS:
case Item_TORCH:
return 1;
default:
return 0;
}
}
int is_obstacle(int w) {
w = ABS(w);
if (is_plant(w)) {
switch(w) {
default:
return 0;
}
}
switch (w) {
case Item_EMPTY:
case Item_CLOUD:
case Item_WATER:
case Item_TORCH:
return 0;
default:
return 1;
}
}
int is_transparent(int w) {
if (w == Item_EMPTY) {
return 1;
}
w = ABS(w);
if (is_plant(w)) {
return 1;
}
if(is_noncube(w)) {
return 1;
}
switch (w) {
case Item_EMPTY:
case Item_GLASS:
//case Item_LEAVES: //for better performance (8 fps -> 60fps OPTIMIZATION NEEDED!)
case Item_WATER: //Just to stop Xray-ing
case Item_TORCH:
return 1;
default:
return 0;
}
}
int is_invisible(int w) {
if (w == Item_EMPTY) {
return 1;
}
w = ABS(w);
switch (w) {
default:
return 0;
}
}
int is_destructable(int w) {
switch (w) {
case Item_EMPTY:
case Item_CLOUD:
case Item_CORESHELL:
case Item_WATER:
return 0;
default:
return 1;
}
}
int buildable_to(int w) {
w = ABS(w);
if (is_plant(w)) {
return 0;
}
switch (w) {
case Item_WATER:
case Item_CLOUD:
case Item_TORCH:
return 0;
default:
return 1;
}
}
int boom_on_click(int w) {
switch (w) {
case Item_TNT:
return 0;
default:
return 1;
}
}
int is_climbable(int w) {
switch(w) {
case Item_VINE:
return 1;
default:
return 0;
}
}
int is_liquid(int w) {
switch(w) {
case Item_WATER:
return 1;
default:
return 0;
}
}
int is_noncube(int w) {
return noncube_type(w) != NonCubeType_NOT_NONCUBE;
}
int is_placeable(int w) {
w = ABS(w);
switch (w) {
//case something
return 0;
default:
return 1;
}
}
NonCubeType noncube_type(int w) {
switch(w) {
case Item_SLAB_LOWER_STONEBRICK:
return NonCubeType_SLAB_LOWER;
default:
return NonCubeType_NOT_NONCUBE;
}
}