-
Notifications
You must be signed in to change notification settings - Fork 15
/
nbt.class.php
193 lines (182 loc) · 8.57 KB
/
nbt.class.php
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
<?php
/**
* Class for reading in NBT-format files.
*
* @author Justin Martin <[email protected]>
* @version 1.0
*
* Dependencies:
* PHP 4.3+ (5.3+ recommended)
* GMP Extension
*/
extension_loaded("gmp") or trigger_error (
"The NBT class requires the GMP extension for 64-bit number handling. ".
"Execution will continue, but will halt if a 64-bit number is handled.", E_USER_NOTICE
);
class NBT {
public $root = array();
public $verbose = false;
const TAG_END = 0;
const TAG_BYTE = 1;
const TAG_SHORT = 2;
const TAG_INT = 3;
const TAG_LONG = 4;
const TAG_FLOAT = 5;
const TAG_DOUBLE = 6;
const TAG_BYTE_ARRAY = 7;
const TAG_STRING = 8;
const TAG_LIST = 9;
const TAG_COMPOUND = 10;
public function loadFile($filename, $wrapper = "compress.zlib://") {
if(is_string($wrapper) && is_file($filename)) {
if($this->verbose) trigger_error("Loading file \"{$filename}\" with stream wrapper \"{$wrapper}\".", E_USER_NOTICE);
$fp = fopen("{$wrapper}{$filename}", "rb");
} elseif(is_null($wrapper) && is_resource($filename)) {
if($this->verbose) trigger_error("Loading file from existing resource.", E_USER_NOTICE);
$fp = $filename;
} else {
trigger_error("First parameter must be a filename or a resource.", E_USER_WARNING);
return false;
}
if($this->verbose) trigger_error("Traversing first tag in file.", E_USER_NOTICE);
$this->traverseTag($fp, $this->root);
if($this->verbose) trigger_error("Encountered end tag for first tag; finished.", E_USER_NOTICE);
return end($this->root);
}
public function writeFile($filename, $wrapper = "compress.zlib://") {
if(is_string($wrapper)) {
if($this->verbose) trigger_error("Writing file \"{$filename}\" with stream wrapper \"{$wrapper}\".", E_USER_NOTICE);
$fp = fopen("{$wrapper}{$filename}", "wb");
} elseif(is_null($wrapper) && is_resource($fp)) {
if($this->verbose) trigger_error("Writing file to existing resource.", E_USER_NOTICE);
$fp = $filename;
} else {
trigger_error("First parameter must be a filename or a resource.", E_USER_WARNING);
return false;
}
if($this->verbose) trigger_error("Writing ".count($this->root)." root tag(s) to file/resource.", E_USER_NOTICE);
foreach($this->root as $rootNum => $rootTag) if(!$this->writeTag($fp, $rootTag)) trigger_error("Failed to write root tag #{$rootNum} to file/resource.", E_USER_WARNING);
return true;
}
public function purge() {
if($this->verbose) trigger_error("Purging all loaded data", E_USER_ERROR);
$this->root = array();
}
public function traverseTag($fp, &$tree) {
if(feof($fp)) {
if($this->verbose) trigger_error("Reached end of file/resource.", E_USER_NOTICE);
return false;
}
$tagType = $this->readType($fp, self::TAG_BYTE); // Read type byte.
if($tagType == self::TAG_END) {
return false;
} else {
if($this->verbose) $position = ftell($fp);
$tagName = $this->readType($fp, self::TAG_STRING);
if($this->verbose) trigger_error("Reading tag \"{$tagName}\" at offset {$position}.", E_USER_NOTICE);
$tagData = $this->readType($fp, $tagType);
$tree[] = array("type"=>$tagType, "name"=>$tagName, "value"=>$tagData);
return true;
}
}
public function writeTag($fp, $tag) {
if($this->verbose) {
$position = ftell($fp);
trigger_error("Writing tag \"{$tag["name"]}\" of type {$tag["type"]} at offset {$position}.", E_USER_NOTICE);
}
return $this->writeType($fp, self::TAG_BYTE, $tag["type"]) && $this->writeType($fp, self::TAG_STRING, $tag["name"]) && $this->writeType($fp, $tag["type"], $tag["value"]);
}
public function readType($fp, $tagType) {
switch($tagType) {
case self::TAG_BYTE: // Signed byte (8 bit)
list(,$unpacked) = unpack("c", fread($fp, 1));
return $unpacked;
case self::TAG_SHORT: // Signed short (16 bit, big endian)
list(,$unpacked) = unpack("n", fread($fp, 2));
if($unpacked >= pow(2, 15)) $unpacked -= pow(2, 16); // Convert unsigned short to signed short.
return $unpacked;
case self::TAG_INT: // Signed integer (32 bit, big endian)
list(,$unpacked) = unpack("N", fread($fp, 4));
if($unpacked >= pow(2, 31)) $unpacked -= pow(2, 32); // Convert unsigned int to signed int
return $unpacked;
case self::TAG_LONG: // Signed long (64 bit, big endian)
extension_loaded("gmp") or trigger_error (
"This file contains a 64-bit number and execution cannot continue. ".
"Please install the GMP extension for 64-bit number handling.", E_USER_ERROR
);
list(,$firstHalf) = unpack("N", fread($fp, 4));
list(,$secondHalf) = unpack("N", fread($fp, 4));
$value = gmp_add($secondHalf, gmp_mul($firstHalf, "4294967296"));
if(gmp_cmp($value, gmp_pow(2, 63)) >= 0) $value = gmp_sub($value, gmp_pow(2, 64));
return gmp_strval($value);
case self::TAG_FLOAT: // Floating point value (32 bit, big endian, IEEE 754-2008)
list(,$value) = (pack('d', 1) == "\77\360\0\0\0\0\0\0")?unpack('f', fread($fp, 4)):unpack('f', strrev(fread($fp, 4)));
return $value;
case self::TAG_DOUBLE: // Double value (64 bit, big endian, IEEE 754-2008)
list(,$value) = (pack('d', 1) == "\77\360\0\0\0\0\0\0")?unpack('d', fread($fp, 8)):unpack('d', strrev(fread($fp, 8)));
return $value;
case self::TAG_BYTE_ARRAY: // Byte array
$arrayLength = $this->readType($fp, self::TAG_INT);
$array = array();
for($i = 0; $i < $arrayLength; $i++) $array[] = $this->readType($fp, self::TAG_BYTE);
return $array;
case self::TAG_STRING: // String
if(!$stringLength = $this->readType($fp, self::TAG_SHORT)) return "";
$string = utf8_decode(fread($fp, $stringLength)); // Read in number of bytes specified by string length, and decode from utf8.
return $string;
case self::TAG_LIST: // List
$tagID = $this->readType($fp, self::TAG_BYTE);
$listLength = $this->readType($fp, self::TAG_INT);
if($this->verbose) trigger_error("Reading in list of {$listLength} tags of type {$tagID}.", E_USER_NOTICE);
$list = array("type"=>$tagID, "value"=>array());
for($i = 0; $i < $listLength; $i++) {
if(feof($fp)) break;
$list["value"][] = $this->readType($fp, $tagID);
}
return $list;
case self::TAG_COMPOUND: // Compound
$tree = array();
while($this->traverseTag($fp, $tree));
return $tree;
}
}
public function writeType($fp, $tagType, $value) {
switch($tagType) {
case self::TAG_BYTE: // Signed byte (8 bit)
return is_int(fwrite($fp, pack("c", $value)));
case self::TAG_SHORT: // Signed short (16 bit, big endian)
if($value < 0) $value += pow(2, 16); // Convert signed short to unsigned short
return is_int(fwrite($fp, pack("n", $value)));
case self::TAG_INT: // Signed integer (32 bit, big endian)
if($value < 0) $value += pow(2, 32); // Convert signed int to unsigned int
return is_int(fwrite($fp, pack("N", $value)));
case self::TAG_LONG: // Signed long (64 bit, big endian)
extension_loaded("gmp") or trigger_error (
"This file contains a 64-bit number and execution cannot continue. ".
"Please install the GMP extension for 64-bit number handling.", E_USER_ERROR
);
$secondHalf = gmp_mod($value, 2147483647);
$firstHalf = gmp_sub($value, $secondHalf);
return is_int(fwrite($fp, pack("N", gmp_intval($firstHalf)))) && is_int(fwrite($fp, pack("N", gmp_intval($secondHalf))));
case self::TAG_FLOAT: // Floating point value (32 bit, big endian, IEEE 754-2008)
return is_int(fwrite($fp, (pack('d', 1) == "\77\360\0\0\0\0\0\0")?pack('f', $value):strrev(pack('f', $value))));
case self::TAG_DOUBLE: // Double value (64 bit, big endian, IEEE 754-2008)
return is_int(fwrite($fp, (pack('d', 1) == "\77\360\0\0\0\0\0\0")?pack('d', $value):strrev(pack('d', $value))));
case self::TAG_BYTE_ARRAY: // Byte array
return $this->writeType($fp, self::TAG_INT, count($value)) && is_int(fwrite($fp, call_user_func_array("pack", array_merge(array("c".count($value)), $value))));
case self::TAG_STRING: // String
$value = utf8_encode($value);
return $this->writeType($fp, self::TAG_SHORT, strlen($value)) && is_int(fwrite($fp, $value));
case self::TAG_LIST: // List
if($this->verbose) trigger_error("Writing list of ".count($value["value"])." tags of type {$value["type"]}.", E_USER_NOTICE);
if(!($this->writeType($fp, self::TAG_BYTE, $value["type"]) && $this->writeType($fp, self::TAG_INT, count($value["value"])))) return false;
foreach($value["value"] as $listItem) if(!$this->writeType($fp, $value["type"], $listItem)) return false;
return true;
case self::TAG_COMPOUND: // Compound
foreach($value as $listItem) if(!$this->writeTag($fp, $listItem)) return false;
if(!is_int(fwrite($fp, "\0"))) return false;
return true;
}
}
}
?>