-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathItemDef.java
executable file
·619 lines (584 loc) · 17.1 KB
/
ItemDef.java
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
import java.io.*;
public final class ItemDef {
public static void nullLoader() {
mruNodes2 = null;
mruNodes1 = null;
streamIndices = null;
cache = null;
stream = null;
}
public boolean method192(int j) {
int k = anInt175;
int l = anInt166;
if(j == 1)
{
k = anInt197;
l = anInt173;
}
if(k == -1)
return true;
boolean flag = true;
if(!Model.method463(k))
flag = false;
if(l != -1 && !Model.method463(l))
flag = false;
return flag;
}
/*public static void dumpStacks() {
try {
FileOutputStream out = new FileOutputStream(new File("stackable.dat"));
for (int j = 0; j < 12000; j++) {
ItemDef item = ItemDef.forID(j);
out.write(item.stackable ? 1 : 0);
}
out.write(-1);
out.close();
} catch (IOException ioe) {ioe.printStackTrace();}
}
public static void dumpNotes() {
try {
FileOutputStream out = new FileOutputStream(new File("notes.dat"));
for (int j = 0; j < 12000; j++) {
ItemDef item = ItemDef.forID(j);
out.write(item.certTemplateID != -1 ? 0 : 1);
}
out.write(-1);
out.close();
} catch (IOException ioe) {ioe.printStackTrace();}
}*/
public static void dumpPrices() {
try {
//FileOutputStream out = new FileOutputStream(new File("prices.dat"));
FileWriter fw = new FileWriter("prices.txt");
for (int j = 0; j < 12000; j++) {
ItemDef item = ItemDef.forID(j);
fw.write(item.id + " " + item.value + "\r\n");
}
fw.close();
} catch (IOException ioe) {ioe.printStackTrace();}
}
public static void unpackConfig(StreamLoader streamLoader) {
stream = new Stream(streamLoader.getDataForName("obj.dat"));
Stream stream = new Stream(streamLoader.getDataForName("obj.idx"));
totalItems = stream.readUnsignedWord();
streamIndices = new int[totalItems + 15000];
int i = 2;
for(int j = 0; j < totalItems; j++) {
streamIndices[j] = i;
i += stream.readUnsignedWord();
}
cache = new ItemDef[10];
for(int k = 0; k < 10; k++)
cache[k] = new ItemDef();
//dumpStacks();
//dumpNotes();
dumpPrices();
}
public Model method194(int j) {
int k = anInt175;
int l = anInt166;
if(j == 1) {
k = anInt197;
l = anInt173;
}
if(k == -1)
return null;
Model model = Model.method462(k);
if(l != -1) {
Model model_1 = Model.method462(l);
Model aclass30_sub2_sub4_sub6s[] = {
model, model_1
};
model = new Model(2, aclass30_sub2_sub4_sub6s);
}
if (originalModelColors != null) {
for (int i1 = 0; i1 < originalModelColors.length; i1++)
model.method476(originalModelColors[i1], modifiedModelColors[i1]);
}
return model;
}
public boolean method195(int j) {
int k = maleEquip1;
int l = maleEquip2;
int i1 = anInt185;
if(j == 1) {
k = femaleEquip1;
l = femaleEquip2;
i1 = anInt162;
}
if(k == -1)
return true;
boolean flag = true;
if(!Model.method463(k))
flag = false;
if(l != -1 && !Model.method463(l))
flag = false;
if(i1 != -1 && !Model.method463(i1))
flag = false;
return flag;
}
public Model method196(int i) {
int j = maleEquip1;
int k = maleEquip2;
int l = anInt185;
if(i == 1) {
j = femaleEquip1;
k = femaleEquip2;
l = anInt162;
}
if(j == -1)
return null;
Model model = Model.method462(j);
if(k != -1)
if(l != -1) {
Model model_1 = Model.method462(k);
Model model_3 = Model.method462(l);
Model aclass30_sub2_sub4_sub6_1s[] = {
model, model_1, model_3
};
model = new Model(3, aclass30_sub2_sub4_sub6_1s);
} else {
Model model_2 = Model.method462(k);
Model aclass30_sub2_sub4_sub6s[] = {
model, model_2
};
model = new Model(2, aclass30_sub2_sub4_sub6s);
}
if(i == 0 && aByte205 != 0)
model.method475(0, aByte205, 0);
if(i == 1 && aByte154 != 0)
model.method475(0, aByte154, 0);
if (originalModelColors != null) {
for (int i1 = 0; i1 < originalModelColors.length; i1++)
model.method476(originalModelColors[i1], modifiedModelColors[i1]);
}
return model;
}
public void setDefaults() {
modelID = 0;
name = null;
description = null;
originalModelColors = null;
modifiedModelColors = null;
modelZoom = 2000;
modelRotation1 = 0;
modelRotation2 = 0;
anInt204 = 0;
modelOffset1 = 0;
modelOffset2 = 0;
stackable = false;
value = 1;
membersObject = false;
groundActions = null;
actions = null;
maleEquip1 = -1;
maleEquip2 = -1;
aByte205 = 0;
femaleEquip1 = -1;
femaleEquip2 = -1;
aByte154 = 0;
anInt185 = -1;
anInt162 = -1;
anInt175 = -1;
anInt166 = -1;
anInt197 = -1;
anInt173 = -1;
stackIDs = null;
stackAmounts = null;
certID = -1;
certTemplateID = -1;
anInt167 = 128;
anInt192 = 128;
anInt191 = 128;
anInt196 = 0;
anInt184 = 0;
team = 0;
}
public static ItemDef forID(int i) {
for(int j = 0; j < 10; j++)
if(cache[j].id == i)
return cache[j];
cacheIndex = (cacheIndex + 1) % 10;
ItemDef itemDef = cache[cacheIndex];
stream.currentOffset = streamIndices[i];
itemDef.id = i;
itemDef.setDefaults();
itemDef.readValues(stream);
if(itemDef.certTemplateID != -1)
itemDef.toNote();
if(!isMembers && itemDef.membersObject) {
itemDef.name = "Members Object";
itemDef.description = "Login to a members' server to use this object.".getBytes();
itemDef.groundActions = null;
itemDef.actions = null;
itemDef.team = 0;
}
switch (itemDef.id) {
case 11722:
itemDef.femaleEquip1 = itemDef.maleEquip1;
itemDef.femaleEquip2 = itemDef.maleEquip2;
break;
}
/* Hardcoded items start here */
/**/
return itemDef;
}
public void actionData(int a, String b) {
actions = new String[5];
actions[a] = b;
}
public void totalColors(int total) {
originalModelColors = new int[total];
modifiedModelColors = new int[total];
}
public void colors(int id, int original, int modified) {
originalModelColors[id] = original;
modifiedModelColors[id] = modified;
}
public void itemData(String n, String d) {
name = n;
description = d.getBytes();
}
public void models(int mID, int mE, int fE, int mE2, int fE2) {
modelID = mID;
maleEquip1 = mE;
femaleEquip1 = fE;
maleEquip2 = mE2;
femaleEquip2 = fE2;
}
public void modelData(int mZ, int mR1, int mR2, int mO1, int mO2) {
modelZoom = mZ;
modelRotation1 = mR1;
modelRotation2 = mR2;
modelOffset1 = mO1;
modelOffset2 = mO2;
}
public void toNote() {
ItemDef itemDef = forID(certTemplateID);
modelID = itemDef.modelID;
modelZoom = itemDef.modelZoom;
modelRotation1 = itemDef.modelRotation1;
modelRotation2 = itemDef.modelRotation2;
anInt204 = itemDef.anInt204;
modelOffset1 = itemDef.modelOffset1;
modelOffset2 = itemDef.modelOffset2;
originalModelColors = itemDef.originalModelColors;
modifiedModelColors = itemDef.modifiedModelColors;
ItemDef itemDef_1 = forID(certID);
name = itemDef_1.name;
membersObject = itemDef_1.membersObject;
value = itemDef_1.value;
String s = "a";
char c = itemDef_1.name.charAt(0);
if(c == 'A' || c == 'E' || c == 'I' || c == 'O' || c == 'U')
s = "an";
description = ("Swap this note at any bank for " + s + " " + itemDef_1.name + ".").getBytes();
stackable = true;
}
public static Sprite getSprite(int i, int j, int k) {
if(k == 0) {
Sprite sprite = (Sprite) mruNodes1.insertFromCache(i);
if(sprite != null && sprite.anInt1445 != j && sprite.anInt1445 != -1) {
sprite.unlink();
sprite = null;
}
if(sprite != null)
return sprite;
}
ItemDef itemDef = forID(i);
if(itemDef.stackIDs == null)
j = -1;
if(j > 1) {
int i1 = -1;
for(int j1 = 0; j1 < 10; j1++)
if(j >= itemDef.stackAmounts[j1] && itemDef.stackAmounts[j1] != 0)
i1 = itemDef.stackIDs[j1];
if(i1 != -1)
itemDef = forID(i1);
}
Model model = itemDef.method201(1);
if(model == null)
return null;
Sprite sprite = null;
if(itemDef.certTemplateID != -1) {
sprite = getSprite(itemDef.certID, 10, -1);
if(sprite == null)
return null;
}
Sprite sprite2 = new Sprite(32, 32);
int k1 = Texture.textureInt1;
int l1 = Texture.textureInt2;
int ai[] = Texture.anIntArray1472;
int ai1[] = DrawingArea.pixels;
int i2 = DrawingArea.width;
int j2 = DrawingArea.height;
int k2 = DrawingArea.topX;
int l2 = DrawingArea.bottomX;
int i3 = DrawingArea.topY;
int j3 = DrawingArea.bottomY;
Texture.aBoolean1464 = false;
DrawingArea.initDrawingArea(32, 32, sprite2.myPixels);
DrawingArea.drawPixels(32, 0, 0, 0, 32);
Texture.method364();
int k3 = itemDef.modelZoom;
if(k == -1)
k3 = (int)((double)k3 * 1.5D);
if(k > 0)
k3 = (int)((double)k3 * 1.04D);
int l3 = Texture.anIntArray1470[itemDef.modelRotation1] * k3 >> 16;
int i4 = Texture.anIntArray1471[itemDef.modelRotation1] * k3 >> 16;
model.method482(itemDef.modelRotation2, itemDef.anInt204, itemDef.modelRotation1, itemDef.modelOffset1, l3 + model.modelHeight / 2 + itemDef.modelOffset2, i4 + itemDef.modelOffset2);
for(int i5 = 31; i5 >= 0; i5--) {
for(int j4 = 31; j4 >= 0; j4--)
if(sprite2.myPixels[i5 + j4 * 32] == 0)
if(i5 > 0 && sprite2.myPixels[(i5 - 1) + j4 * 32] > 1)
sprite2.myPixels[i5 + j4 * 32] = 1;
else if(j4 > 0 && sprite2.myPixels[i5 + (j4 - 1) * 32] > 1)
sprite2.myPixels[i5 + j4 * 32] = 1;
else if(i5 < 31 && sprite2.myPixels[i5 + 1 + j4 * 32] > 1)
sprite2.myPixels[i5 + j4 * 32] = 1;
else if(j4 < 31 && sprite2.myPixels[i5 + (j4 + 1) * 32] > 1)
sprite2.myPixels[i5 + j4 * 32] = 1;
}
if(k > 0) {
for(int j5 = 31; j5 >= 0; j5--) {
for(int k4 = 31; k4 >= 0; k4--)
if(sprite2.myPixels[j5 + k4 * 32] == 0)
if(j5 > 0 && sprite2.myPixels[(j5 - 1) + k4 * 32] == 1)
sprite2.myPixels[j5 + k4 * 32] = k;
else if(k4 > 0 && sprite2.myPixels[j5 + (k4 - 1) * 32] == 1)
sprite2.myPixels[j5 + k4 * 32] = k;
else if(j5 < 31 && sprite2.myPixels[j5 + 1 + k4 * 32] == 1)
sprite2.myPixels[j5 + k4 * 32] = k;
else if(k4 < 31 && sprite2.myPixels[j5 + (k4 + 1) * 32] == 1)
sprite2.myPixels[j5 + k4 * 32] = k;
}
} else if(k == 0) {
for(int k5 = 31; k5 >= 0; k5--) {
for(int l4 = 31; l4 >= 0; l4--)
if(sprite2.myPixels[k5 + l4 * 32] == 0 && k5 > 0 && l4 > 0 && sprite2.myPixels[(k5 - 1) + (l4 - 1) * 32] > 0)
sprite2.myPixels[k5 + l4 * 32] = 0x302020;
}
}
if(itemDef.certTemplateID != -1) {
int l5 = sprite.anInt1444;
int j6 = sprite.anInt1445;
sprite.anInt1444 = 32;
sprite.anInt1445 = 32;
sprite.drawSprite(0, 0);
sprite.anInt1444 = l5;
sprite.anInt1445 = j6;
}
if(k == 0)
mruNodes1.removeFromCache(sprite2, i);
DrawingArea.initDrawingArea(j2, i2, ai1);
DrawingArea.setDrawingArea(j3, k2, l2, i3);
Texture.textureInt1 = k1;
Texture.textureInt2 = l1;
Texture.anIntArray1472 = ai;
Texture.aBoolean1464 = true;
if(itemDef.stackable)
sprite2.anInt1444 = 33;
else
sprite2.anInt1444 = 32;
sprite2.anInt1445 = j;
return sprite2;
}
public Model method201(int i) {
if(stackIDs != null && i > 1) {
int j = -1;
for(int k = 0; k < 10; k++)
if(i >= stackAmounts[k] && stackAmounts[k] != 0)
j = stackIDs[k];
if(j != -1)
return forID(j).method201(1);
}
Model model = (Model) mruNodes2.insertFromCache(id);
if(model != null)
return model;
model = Model.method462(modelID);
if(model == null)
return null;
if(anInt167 != 128 || anInt192 != 128 || anInt191 != 128)
model.method478(anInt167, anInt191, anInt192);
if (originalModelColors != null) {
for (int l = 0; l < originalModelColors.length; l++)
model.method476(originalModelColors[l], modifiedModelColors[l]);
}
model.method479(64 + anInt196, 768 + anInt184, -50, -10, -50, true);
model.aBoolean1659 = true;
mruNodes2.removeFromCache(model, id);
return model;
}
public Model method202(int i) {
if(stackIDs != null && i > 1) {
int j = -1;
for(int k = 0; k < 10; k++)
if(i >= stackAmounts[k] && stackAmounts[k] != 0)
j = stackIDs[k];
if(j != -1)
return forID(j).method202(1);
}
Model model = Model.method462(modelID);
if(model == null)
return null;
if (originalModelColors != null) {
for (int l = 0; l < originalModelColors.length; l++)
model.method476(originalModelColors[l], modifiedModelColors[l]);
}
return model;
}
public void readValues(Stream stream) {
do {
int i = stream.readUnsignedByte();
if(i == 0)
return;
if(i == 1)
modelID = stream.readUnsignedWord();
else if(i == 2)
name = stream.readString();
else if(i == 3)
description = stream.readBytes();
else if(i == 4)
modelZoom = stream.readUnsignedWord();
else if(i == 5)
modelRotation1 = stream.readUnsignedWord();
else if(i == 6)
modelRotation2 = stream.readUnsignedWord();
else if(i == 7) {
modelOffset1 = stream.readUnsignedWord();
if(modelOffset1 > 32767)
modelOffset1 -= 0x10000;
} else if(i == 8) {
modelOffset2 = stream.readUnsignedWord();
if(modelOffset2 > 32767)
modelOffset2 -= 0x10000;
} else if(i == 10)
stream.readUnsignedWord();
else if(i == 11)
stackable = true;
else if(i == 12)
value = stream.readDWord();
else if(i == 16)
membersObject = true;
else if(i == 23) {
maleEquip1 = stream.readUnsignedWord();
aByte205 = stream.readSignedByte();
} else if(i == 24)
maleEquip2 = stream.readUnsignedWord();
else if(i == 25) {
femaleEquip1 = stream.readUnsignedWord();
aByte154 = stream.readSignedByte();
} else if(i == 26)
femaleEquip2 = stream.readUnsignedWord();
else if(i >= 30 && i < 35) {
if(groundActions == null)
groundActions = new String[5];
groundActions[i - 30] = stream.readString();
if(groundActions[i - 30].equalsIgnoreCase("hidden"))
groundActions[i - 30] = null;
} else if(i >= 35 && i < 40) {
if(actions == null)
actions = new String[5];
actions[i - 35] = stream.readString();
} else if(i == 40) {
int j = stream.readUnsignedByte();
originalModelColors = new int[j];
modifiedModelColors = new int[j];
for(int k = 0; k < j; k++) {
originalModelColors[k] = stream.readUnsignedWord();
modifiedModelColors[k] = stream.readUnsignedWord();
}
} else if(i == 78)
anInt185 = stream.readUnsignedWord();
else if(i == 79)
anInt162 = stream.readUnsignedWord();
else if(i == 90)
anInt175 = stream.readUnsignedWord();
else if(i == 91)
anInt197 = stream.readUnsignedWord();
else if(i == 92)
anInt166 = stream.readUnsignedWord();
else if(i == 93)
anInt173 = stream.readUnsignedWord();
else if(i == 95)
anInt204 = stream.readUnsignedWord();
else if(i == 97)
certID = stream.readUnsignedWord();
else if(i == 98)
certTemplateID = stream.readUnsignedWord();
else if(i >= 100 && i < 110) {
if(stackIDs == null) {
stackIDs = new int[10];
stackAmounts = new int[10];
}
stackIDs[i - 100] = stream.readUnsignedWord();
stackAmounts[i - 100] = stream.readUnsignedWord();
} else if(i == 110)
anInt167 = stream.readUnsignedWord();
else if(i == 111)
anInt192 = stream.readUnsignedWord();
else if(i == 112)
anInt191 = stream.readUnsignedWord();
else if(i == 113)
anInt196 = stream.readSignedByte();
else if(i == 114)
anInt184 = stream.readSignedByte() * 5;
else if(i == 115)
team = stream.readUnsignedByte();
} while(true);
}
public ItemDef() {
id = -1;
}
public byte aByte154;
public int value;
public int[] modifiedModelColors;
public int id;
static MRUNodes mruNodes1 = new MRUNodes(100);
public static MRUNodes mruNodes2 = new MRUNodes(50);
public int[] originalModelColors;
public boolean membersObject;
public int anInt162;
public int certTemplateID;
public int femaleEquip2;
public int maleEquip1;
public int anInt166;
public int anInt167;
public String groundActions[];
public int modelOffset1;
public String name;
public static ItemDef[] cache;
public int anInt173;
public int modelID;
public int anInt175;
public boolean stackable;
public byte description[];
public int certID;
public static int cacheIndex;
public int modelZoom;
public static boolean isMembers = true;
public static Stream stream;
public int anInt184;
public int anInt185;
public int maleEquip2;
public String actions[];
public int modelRotation1;
public int anInt191;
public int anInt192;
public int[] stackIDs;
public int modelOffset2;
public static int[] streamIndices;
public int anInt196;
public int anInt197;
public int modelRotation2;
public int femaleEquip1;
public int[] stackAmounts;
public int team;
public static int totalItems;
public int anInt204;
public byte aByte205;
public int anInt164;
public int anInt199;
public int anInt188;
}