-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathclass.NBTInv.php
More file actions
225 lines (213 loc) · 4.67 KB
/
class.NBTInv.php
File metadata and controls
225 lines (213 loc) · 4.67 KB
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
<?php
class NBTInv extends nbt
{
private $nbt = null;
/**
* gets player inventory from nbt file
* optionally provide raw nbt data using format=false
*/
public function getInv($format=true)
{
foreach($this->root[0]["value"] as $node) {
$node = (object)$node;
if($node->name == "Inventory") {
$inventory = (object)$node->value;
}
}
if($format === true) {
return $this->formatAll($inventory->value);
} else {
return $inventory;
}
}
public function getEnderInv($format=true)
{
foreach($this->root[0]["value"] as $node) {
$node = (object)$node;
if($node->name == "EnderItems") {
$inventory = (object)$node->value;
}
}
if($format === true && !is_null($inventory)) {
return $this->formatAll($inventory->value);
} else {
return $inventory;
}
}
/**
* given an array of raw nbt invntory data, returns formatted array of items
*/
public function formatAll(Array $inventory)
{
$ret = array();
foreach($inventory as $item) {
$ret[] = $this->formatItem($item);
}
return $ret;
}
/**
* given an item as an array, formats a single item
*/
private function formatItem(Array $item)
{
$ret = new StdClass();
foreach($item as $att) {
$att = (object)$att;
switch(strtolower($att->name))
{
case "id":
$ret->id = $att->value;
break;
case "damage":
$ret->damage = $att->value;
break;
case "count":
$ret->count = $att->value;
break;
case "tag":
$ret->tag = $this->formatTag($att->value);
break;
case "slot":
$ret->slot = $att->value;
break;
default:
throw new Exception("unrecognized node name `{$att->name}`. dump: ".json_encode($att));
}
}
return $ret;
}
/**
* given an array of tags, formats them
*/
private function formatTag($tag_entries)
{
$ret = new StdClass();
foreach($tag_entries as $att) {
$att = (object)$att;
switch(strtolower($att->name))
{
case "repaircost":
$ret->repaircost = $att->value;
break;
case "ench":
foreach($att->value['value'] as $enchantment) {
$ret->enchantments[] = $this->formatEnchantment($enchantment);
}
break;
case "display":
$ret->display = $this->formatDisplay($att->value);
break;
case "fireworks":
$ret->firework = $this->formatFirework($att->value);
break;
default:
throw new Exception("unrecognized tag name `{$att->name}`. dump: ".json_encode($att));
}
}
return $ret;
}
/**
* given enchantment data, formats it
*/
private function formatEnchantment($enchantment_entries)
{
$ret = new StdClass();
foreach($enchantment_entries as $att)
{
$att = (object)$att;
switch(strtolower($att->name))
{
case "id":
$ret->id = $att->value;
break;
case "lvl":
$ret->level = $att->value;
break;
default:
throw new Exception("unrecognized enchantment attribute `{$att->name}`. dump: ".json_encode($enchantment));
}
}
return $ret;
}
/**
* given display data, formats it
*/
private function formatDisplay($display_entries)
{
$ret = new StdClass();
foreach($display_entries as $att) {
$att = (object)$att;
switch(strtolower($att->name))
{
case "name":
$ret->name = $att->value;
break;
case "color":
$ret->color = $att->value;
break;
case "lore":
// nothing yet
break;
default:
throw new Exception("unrecognized display attribute `{$att->name}`. dump: ".json_encode($display));
}
}
return $ret;
}
/**
* given fireworks data, formats it
*/
private function formatFirework($firework_entries)
{
$ret = new StdClass();
foreach($firework_entries as $att) {
$att = (object)$att;
switch(strtolower($att->name))
{
case "flight":
$ret->flight = $att->value;
break;
case "explosions":
foreach($att->value['value'] as $explosion) {
$ret->explosions[] = $this->formatexplosion($explosion);
}
break;
default:
throw new Exception("unrecognized display attribute `{$att->name}`. dump: ".json_encode($display));
}
}
return $ret;
}
/**
* given explosion data, formats it
*/
private function formatExplosion($explosion_entries)
{
$ret = new StdClass();
foreach($explosion_entries as $att)
{
$att = (object)$att;
switch(strtolower($att->name))
{
case "flicker":
$ret->flicker = $att->value;
break;
case "type":
$ret->type = $att->value;
break;
case "trails":
$ret->trails = $att->value;
break;
case "colors":
$ret->colors = $att->value;
break;
case "fadecolors":
$ret->fade_colors = $att->value;
break;
default:
throw new Exception("unrecognized enchantment attribute `{$att->name}`. dump: ".json_encode($enchantment));
}
}
return $ret;
}
}