forked from mrkite/minutor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblockidentifier.cpp
executable file
·343 lines (302 loc) · 7.94 KB
/
blockidentifier.cpp
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
/*
Copyright (c) 2013, Sean Kasun
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "blockidentifier.h"
#include "json.h"
#include <QDebug>
static BlockInfo unknownBlock;
BlockInfo::BlockInfo()
: transparent(false)
, liquid(false)
, rendernormal(true)
, providepower(false)
, spawninside(false)
{}
bool BlockInfo::isOpaque()
{
return !(this->transparent);
}
bool BlockInfo::isLiquid()
{
return this->liquid;
}
bool BlockInfo::doesBlockHaveSolidTopSurface(int data)
{
if (this->isOpaque() && this->renderAsNormalBlock()) return true;
if (this->stairs && ((data&4)==4)) return true;
if (this->halfslab && ((data&8)==8)) return true;
if (this->hopper) return true;
if (this->snow && ((data&7)==7)) return true;
return false;
}
bool BlockInfo::isBlockNormalCube()
{
return this->isOpaque() &&
this->renderAsNormalBlock() &&
!this->canProvidePower();
}
bool BlockInfo::renderAsNormalBlock()
{
// if (this->name.contains("Redstone Wire")) && powered return true; else return false;
return this->rendernormal;
}
bool BlockInfo::canProvidePower()
{
return this->providepower;
}
void BlockInfo::setName( const QString & newname )
{
name = newname;
bedrock = this->name.contains("Bedrock");
hopper = this->name.contains("Hopper");
stairs = this->name.contains("Stairs");
halfslab = this->name.contains("Slab") && !this->name.contains("Double") && !this->name.contains("Full");
snow = this->name.contains("Snow");
}
const QString & BlockInfo::getName() { return name; }
bool BlockInfo::isBedrock() { return bedrock; }
bool BlockInfo::isHopper() { return hopper; }
bool BlockInfo::isStairs() { return stairs; }
bool BlockInfo::isHalfSlab() { return halfslab; }
bool BlockInfo::isSnow() { return snow; }
BlockIdentifier::BlockIdentifier()
{
// clear cache pointers
for (int i=0;i<65536;i++)
cache[i]=NULL;
for (int i=0;i<16;i++)
unknownBlock.colors[i]=0xff00ff;
unknownBlock.alpha=1.0;
unknownBlock.setName("Unknown");
}
BlockIdentifier::~BlockIdentifier()
{
clearCache();
for (int i=0;i<packs.length();i++)
{
for (int j=0;j<packs[i].length();j++)
delete packs[i][j];
}
}
// this routine is ridiculously slow
BlockInfo &BlockIdentifier::getBlock(int id, int data)
{
//first apply the mask
if (blocks.contains(id))
data&=blocks[id].first()->mask;
quint32 bid=id|(data<<12);
//first check the cache
if (cache[bid]!=NULL)
return *cache[bid];
//now find the variant
if (blocks.contains(bid))
{
QList<BlockInfo*> &list=blocks[bid];
//run backwards for priority sorting
for (int i=list.length()-1;i>=0;i--)
{
if (list[i]->enabled)
{
cache[bid]=list[i];
return *list[i];
}
}
}
//no enabled variant found
if (blocks.contains(id))
{
QList<BlockInfo*> &list=blocks[id];
for (int i=list.length()-1;i>=0;i--)
{
if (list[i]->enabled)
{
cache[bid]=list[i];
return *list[i];
}
}
}
//no blocks at all found.. dammit
return unknownBlock;
}
void BlockIdentifier::enableDefinitions(int pack)
{
if (pack<0) return;
int len=packs[pack].length();
for (int i=0;i<len;i++)
packs[pack][i]->enabled=true;
//clear cache
clearCache();
}
void BlockIdentifier::disableDefinitions(int pack)
{
if (pack<0) return;
int len=packs[pack].length();
for (int i=0;i<len;i++)
packs[pack][i]->enabled=false;
//clear cache
clearCache();
}
int BlockIdentifier::addDefinitions(JSONArray *defs,int pack)
{
if (pack==-1)
{
pack=packs.length();
packs.append(QList<BlockInfo*>());
}
int len=defs->length();
for (int i=0;i<len;i++)
parseDefinition(dynamic_cast<JSONObject *>(defs->at(i)),NULL,pack);
//clear cache
clearCache();
return pack;
}
static int clamp(int v,int min,int max)
{
return (v<max?(v>min?v:min):max);
}
void BlockIdentifier::clearCache()
{
for (int i=0;i<65536;i++)
{
cache[i]=NULL;
}
}
void BlockIdentifier::parseDefinition(JSONObject *b, BlockInfo *parent, int pack)
{
int id;
if (parent==NULL)
id=b->at("id")->asNumber();
else
{
id=parent->id;
int data=b->at("data")->asNumber();
id|=data<<12;
}
BlockInfo *block=new BlockInfo();
block->id=id;
if (b->has("name"))
block->setName(b->at("name")->asString());
else if (parent!=NULL)
block->setName(parent->getName());
else
block->setName("Unknown");
block->enabled=true;
if (b->has("transparent"))
{
block->transparent=b->at("transparent")->asBool();
block->rendernormal=false; // for most cases except the following
if (b->has("rendercube"))
block->rendernormal=b->at("rendercube")->asBool();
block->spawninside=false; // for most cases except the following
if (b->has("spawninside"))
block->spawninside=b->at("spawninside")->asBool();
}
else if (parent!=NULL)
{
block->transparent=parent->transparent;
block->rendernormal=parent->rendernormal;
block->spawninside=parent->spawninside;
}
else
{
block->transparent=false;
block->rendernormal=true;
block->spawninside=false;
}
if (b->has("liquid"))
block->liquid=b->at("liquid")->asBool();
else if (parent!=NULL)
block->liquid=parent->liquid;
else
block->liquid=false;
if (b->has("canProvidePower"))
block->providepower=b->at("canProvidePower")->asBool();
else if (parent!=NULL)
block->providepower=parent->providepower;
else
block->providepower=false;
if (b->has("color"))
{
QString color=b->at("color")->asString();
quint32 col=0;
for (int h=0;h<color.length();h++)
{
ushort c=color.at(h).unicode();
col<<=4;
if (c>='0' && c<='9')
col|=c-'0';
else if (c>='A' && c<='F')
col|=c-'A'+10;
else if (c>='a' && c<='f')
col|=c-'a'+10;
}
int rd=col>>16;
int gn=(col>>8)&0xff;
int bl=col&0xff;
if (b->has("alpha"))
block->alpha=b->at("alpha")->asNumber();
else if (parent!=NULL)
block->alpha=parent->alpha;
else
block->alpha=1.0;
//pre multiply alphas
rd*=block->alpha;
gn*=block->alpha;
bl*=block->alpha;
//pre-calculate light spectrum
double y=0.299*rd+0.587*gn+0.114*bl;
double u=(bl-y)*0.565;
double v=(rd-y)*0.713;
double delta=y/15;
for (int i=0;i<16;i++)
{
y=i*delta;
rd=(unsigned int)clamp(y+1.403*v,0,255);
gn=(unsigned int)clamp(y-0.344*u-0.714*v,0,255);
bl=(unsigned int)clamp(y+1.770*u,0,255);
block->colors[i]=(rd<<16)|(gn<<8)|bl;
}
}
else if (parent!=NULL)
{
for (int i=0;i<16;i++)
block->colors[i]=parent->colors[i];
block->alpha=parent->alpha;
}
else
block->alpha=0.0;
if (b->has("mask"))
block->mask=b->at("mask")->asNumber();
else if (b->has("variants"))
block->mask=0x0f;
else
block->mask=0x00;
if (b->has("variants"))
{
JSONArray *variants=dynamic_cast<JSONArray *>(b->at("variants"));
int vlen=variants->length();
for (int j=0;j<vlen;j++)
parseDefinition(dynamic_cast<JSONObject *>(variants->at(j)),block,pack);
}
blocks[id].append(block);
packs[pack].append(block);
}