2012-12-31 20:33:35 -05:00
|
|
|
var net = require('net')
|
|
|
|
, EventEmitter = require('events').EventEmitter
|
|
|
|
, util = require('util')
|
|
|
|
, assert = require('assert')
|
|
|
|
, Iconv = require('iconv').Iconv
|
|
|
|
, packets = require('../packets.json')
|
|
|
|
, toUcs2 = new Iconv('UTF-8', 'utf16be')
|
|
|
|
, fromUcs2 = new Iconv('utf16be', 'UTF-8')
|
|
|
|
|
2013-01-01 05:02:24 -05:00
|
|
|
require('buffer-more-ints');
|
|
|
|
|
2012-12-31 20:33:35 -05:00
|
|
|
module.exports = Parser;
|
|
|
|
|
|
|
|
function Parser(options) {
|
|
|
|
EventEmitter.call(this);
|
2013-01-01 01:49:38 -05:00
|
|
|
|
|
|
|
this.client = null;
|
|
|
|
this.encryptionEnabled = false;
|
|
|
|
this.cipher = null;
|
|
|
|
this.decipher = null;
|
2012-12-31 20:33:35 -05:00
|
|
|
}
|
|
|
|
util.inherits(Parser, EventEmitter);
|
|
|
|
|
|
|
|
Parser.prototype.connect = function(port, host) {
|
|
|
|
var self = this;
|
|
|
|
self.client = net.connect(port, host, function() {
|
|
|
|
self.emit('connect');
|
|
|
|
});
|
|
|
|
var incomingBuffer = new Buffer(0);
|
|
|
|
self.client.on('data', function(data) {
|
2013-01-01 01:49:38 -05:00
|
|
|
if (self.encryptionEnabled) data = new Buffer(self.decipher.update(data), 'binary');
|
2012-12-31 20:33:35 -05:00
|
|
|
incomingBuffer = Buffer.concat([incomingBuffer, data]);
|
|
|
|
var parsed;
|
|
|
|
while (true) {
|
|
|
|
parsed = parsePacket(incomingBuffer);
|
|
|
|
if (! parsed) break;
|
|
|
|
incomingBuffer = incomingBuffer.slice(parsed.size);
|
|
|
|
self.emit('packet', parsed.results);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
self.client.on('error', function(err) {
|
|
|
|
self.emit('error', err);
|
|
|
|
});
|
|
|
|
|
|
|
|
self.client.on('end', function() {
|
|
|
|
self.emit('end');
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-01-01 04:14:38 -05:00
|
|
|
Parser.prototype.end = function() {
|
|
|
|
this.client.end();
|
|
|
|
};
|
|
|
|
|
2012-12-31 20:33:35 -05:00
|
|
|
Parser.prototype.writePacket = function(packetId, params) {
|
|
|
|
var buffer = createPacketBuffer(packetId, params);
|
2013-01-01 01:49:38 -05:00
|
|
|
var out = this.encryptionEnabled ? new Buffer(this.cipher.update(buffer), 'binary') : buffer;
|
|
|
|
if (this.encryptionEnabled) console.log("writing", packetId, "packet with encryption");
|
|
|
|
this.client.write(out);
|
2012-12-31 20:33:35 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
var writers = {
|
|
|
|
'int': IntWriter,
|
|
|
|
'byte': ByteWriter,
|
|
|
|
'string': StringWriter,
|
2012-12-31 23:53:36 -05:00
|
|
|
'byteArray': ByteArrayWriter,
|
2012-12-31 20:33:35 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
var readers = {
|
|
|
|
'string': readString,
|
|
|
|
'byteArray': readByteArray,
|
|
|
|
'short': readShort,
|
2013-01-01 04:14:38 -05:00
|
|
|
'int': readInt,
|
|
|
|
'byte': readByte,
|
2013-01-01 05:02:24 -05:00
|
|
|
'long': readLong,
|
|
|
|
'slot': readSlot,
|
|
|
|
'bool': readBool,
|
|
|
|
'double': readDouble,
|
|
|
|
'float': readFloat,
|
2012-12-31 20:33:35 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
function readString (buffer, offset) {
|
|
|
|
var results = readShort(buffer, offset);
|
|
|
|
if (! results) return null;
|
|
|
|
|
|
|
|
var strBegin = offset + results.size;
|
|
|
|
var strLen = results.value;
|
|
|
|
var strEnd = strBegin + strLen * 2;
|
|
|
|
if (strEnd > buffer.length) return null;
|
2013-01-01 04:14:38 -05:00
|
|
|
var str = fromUcs2.convert(buffer.slice(strBegin, strEnd)).toString('utf8');
|
2012-12-31 20:33:35 -05:00
|
|
|
|
|
|
|
return {
|
|
|
|
value: str,
|
|
|
|
size: strEnd - offset,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function readByteArray (buffer, offset) {
|
|
|
|
var results = readShort(buffer, offset);
|
|
|
|
if (! results) return null;
|
|
|
|
|
|
|
|
var bytesBegin = offset + results.size;
|
|
|
|
var bytesSize = results.value;
|
|
|
|
var bytesEnd = bytesBegin + bytesSize;
|
|
|
|
if (bytesEnd > buffer.length) return null;
|
|
|
|
var bytes = buffer.slice(bytesBegin, bytesEnd);
|
|
|
|
|
|
|
|
return {
|
|
|
|
value: bytes,
|
|
|
|
size: bytesEnd - offset,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function readShort(buffer, offset) {
|
|
|
|
if (offset + 2 > buffer.length) return null;
|
|
|
|
var value = buffer.readInt16BE(offset);
|
|
|
|
return {
|
|
|
|
value: value,
|
|
|
|
size: 2,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-01-01 04:14:38 -05:00
|
|
|
function readInt(buffer, offset) {
|
|
|
|
if (offset + 4 > buffer.length) return null;
|
|
|
|
var value = buffer.readInt32BE(offset);
|
|
|
|
return {
|
|
|
|
value: value,
|
|
|
|
size: 4,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-01-01 05:02:24 -05:00
|
|
|
function readFloat(buffer, offset) {
|
|
|
|
if (offset + 4 > buffer.length) return null;
|
|
|
|
var value = buffer.readFloatBE(offset);
|
|
|
|
return {
|
|
|
|
value: value,
|
|
|
|
size: 4,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function readDouble(buffer, offset) {
|
|
|
|
if (offset + 8 > buffer.length) return null;
|
|
|
|
var value = buffer.readDoubleBE(offset);
|
|
|
|
return {
|
|
|
|
value: value,
|
|
|
|
size: 8,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function readLong(buffer, offset) {
|
|
|
|
if (offset + 8 > buffer.length) return null;
|
|
|
|
var value = buffer.readInt64BE(offset);
|
|
|
|
return {
|
|
|
|
value: value,
|
|
|
|
size: 8,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-01-01 04:14:38 -05:00
|
|
|
function readByte(buffer, offset) {
|
|
|
|
if (offset + 1 > buffer.length) return null;
|
|
|
|
var value = buffer.readInt8(offset);
|
|
|
|
return {
|
|
|
|
value: value,
|
|
|
|
size: 1,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-01-01 05:02:24 -05:00
|
|
|
function readBool(buffer, offset) {
|
|
|
|
if (offset + 1 > buffer.length) return null;
|
|
|
|
var value = buffer.readInt8(offset);
|
|
|
|
return {
|
|
|
|
value: !!value,
|
|
|
|
size: 1,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function readSlot(buffer, offset) {
|
|
|
|
var results = readShort(buffer, offset);
|
|
|
|
if (! results) return null;
|
|
|
|
|
|
|
|
var blockId = results.value;
|
|
|
|
if (blockId === -1) {
|
|
|
|
return {
|
|
|
|
value: { id: blockId },
|
|
|
|
size: results.size,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
var cursor = offset + results.size;
|
|
|
|
results = readByte(buffer, cursor);
|
|
|
|
if (! results) return null;
|
|
|
|
var itemCount = results.value;
|
|
|
|
|
|
|
|
cursor += results.size;
|
|
|
|
results = readShort(buffer, cursor);
|
|
|
|
if (! results) return null;
|
|
|
|
var itemDamage = results.value;
|
|
|
|
|
|
|
|
cursor += results.size;
|
|
|
|
results = readShort(buffer, cursor);
|
|
|
|
if (! results) return null;
|
|
|
|
var nbtDataSize = results.value;
|
|
|
|
if (nbtDataSize === -1) nbtDataSize = 0;
|
|
|
|
var nbtDataEnd = cursor + nbtDataSize;
|
|
|
|
var nbtData = buffer.slice(cursor, nbtDataEnd);
|
|
|
|
|
|
|
|
return {
|
|
|
|
value: {
|
|
|
|
blockId: blockId,
|
|
|
|
itemCount: itemCount,
|
|
|
|
itemDamage: itemDamage,
|
|
|
|
nbtData: nbtData,
|
|
|
|
},
|
|
|
|
size: nbtDataEnd - offset,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-12-31 20:33:35 -05:00
|
|
|
function StringWriter(value) {
|
|
|
|
this.value = value;
|
|
|
|
this.encoded = toUcs2.convert(value);
|
|
|
|
this.size = 2 + this.encoded.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringWriter.prototype.write = function(buffer, offset) {
|
|
|
|
buffer.writeInt16BE(this.value.length, offset);
|
|
|
|
this.encoded.copy(buffer, offset + 2);
|
2012-12-31 23:53:36 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
function ByteArrayWriter(value) {
|
|
|
|
assert.ok(Buffer.isBuffer(value), "non buffer passed to ByteArrayWriter");
|
|
|
|
this.value = value;
|
|
|
|
this.size = 2 + value.length;
|
2012-12-31 20:33:35 -05:00
|
|
|
}
|
|
|
|
|
2012-12-31 23:53:36 -05:00
|
|
|
ByteArrayWriter.prototype.write = function(buffer, offset) {
|
|
|
|
buffer.writeInt16BE(this.value.length, offset);
|
|
|
|
this.value.copy(buffer, offset + 2);
|
|
|
|
};
|
|
|
|
|
2012-12-31 20:33:35 -05:00
|
|
|
function ByteWriter(value) {
|
|
|
|
this.value = value;
|
|
|
|
this.size = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ByteWriter.prototype.write = function(buffer, offset) {
|
|
|
|
buffer.writeInt8(this.value, offset);
|
|
|
|
}
|
|
|
|
|
2012-12-31 23:53:36 -05:00
|
|
|
function UByteWriter(value) {
|
|
|
|
this.value = value;
|
|
|
|
this.size = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
UByteWriter.prototype.write = function(buffer, offset) {
|
|
|
|
buffer.writeUInt8(this.value, offset);
|
|
|
|
};
|
|
|
|
|
2012-12-31 20:33:35 -05:00
|
|
|
function IntWriter(value) {
|
|
|
|
this.value = value;
|
|
|
|
this.size = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
IntWriter.prototype.write = function(buffer, offset) {
|
|
|
|
buffer.writeInt32BE(this.value, offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
function createPacketBuffer(packetId, params) {
|
|
|
|
var size = 1;
|
2012-12-31 23:53:36 -05:00
|
|
|
var fields = [ new UByteWriter(packetId) ];
|
2012-12-31 20:33:35 -05:00
|
|
|
var packet = packets[packetId];
|
|
|
|
packet.forEach(function(fieldInfo) {
|
|
|
|
var value = params[fieldInfo.name];
|
2012-12-31 23:53:36 -05:00
|
|
|
var Writer = writers[fieldInfo.type];
|
|
|
|
assert.ok(Writer, "missing writer for data type: " + fieldInfo.type);
|
|
|
|
var field = new Writer(value);
|
2012-12-31 20:33:35 -05:00
|
|
|
size += field.size;
|
|
|
|
fields.push(field);
|
|
|
|
});
|
|
|
|
var buffer = new Buffer(size);
|
|
|
|
var cursor = 0;
|
|
|
|
fields.forEach(function(field) {
|
|
|
|
field.write(buffer, cursor);
|
|
|
|
cursor += field.size;
|
|
|
|
});
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
function parsePacket(buffer) {
|
|
|
|
if (buffer.length < 1) return null;
|
|
|
|
var packetId = buffer.readUInt8(0);
|
2013-01-01 05:02:24 -05:00
|
|
|
console.log("parsing packet " + packetId);
|
2012-12-31 20:33:35 -05:00
|
|
|
var size = 1;
|
|
|
|
var results = { id: packetId };
|
|
|
|
var packetInfo = packets[packetId];
|
|
|
|
assert.ok(packetInfo, "Unrecognized packetId: " + packetId);
|
|
|
|
var i, fieldInfo, read, readResults;
|
|
|
|
for (i = 0; i < packetInfo.length; ++i) {
|
|
|
|
fieldInfo = packetInfo[i];
|
|
|
|
read = readers[fieldInfo.type];
|
2013-01-01 01:49:38 -05:00
|
|
|
assert.ok(read, "missing reader for data type: " + fieldInfo.type);
|
2012-12-31 20:33:35 -05:00
|
|
|
readResults = read(buffer, size);
|
|
|
|
if (readResults) {
|
|
|
|
results[fieldInfo.name] = readResults.value;
|
|
|
|
size += readResults.size;
|
|
|
|
} else {
|
|
|
|
// buffer needs to be more full
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
size: size,
|
|
|
|
results: results,
|
|
|
|
};
|
|
|
|
}
|
2012-12-31 23:53:36 -05:00
|
|
|
|
|
|
|
// packet ids
|
|
|
|
Parser.KEEP_ALIVE = 0x00;
|
|
|
|
Parser.LOGIN_REQUEST = 0x01;
|
|
|
|
Parser.HANDSHAKE = 0x02;
|
|
|
|
Parser.CHAT_MESSAGE = 0x03;
|
|
|
|
Parser.TIME_UPDATE = 0x04;
|
|
|
|
Parser.ENTITY_EQUIPMENT = 0x05;
|
|
|
|
Parser.SPAWN_POSITION = 0x06;
|
|
|
|
Parser.USE_ENTITY = 0x07;
|
|
|
|
Parser.UPDATE_HEALTH = 0x08;
|
|
|
|
Parser.RESPAWN = 0x09;
|
|
|
|
Parser.PLAYER = 0x0A;
|
|
|
|
Parser.PLAYER_POSITION = 0x0B;
|
|
|
|
Parser.PLAYER_LOOK = 0x0C;
|
|
|
|
Parser.PLAYER_POSITION_AND_LOOK = 0x0D;
|
|
|
|
Parser.PLAYER_DIGGING = 0x0E;
|
|
|
|
Parser.PLAYER_BLOCK_PLACEMENT = 0x0F;
|
|
|
|
Parser.HELD_ITEM_CHANGE = 0x10;
|
|
|
|
Parser.USE_BED = 0x11;
|
|
|
|
Parser.ANIMATION = 0x12;
|
|
|
|
Parser.ENTITY_ACTION = 0x13;
|
|
|
|
Parser.SPAWN_NAMED_ENTITY = 0x14;
|
|
|
|
Parser.COLLECT_ITEM = 0x16;
|
|
|
|
Parser.SPAWN_OBJECT_VEHICLE = 0x17;
|
|
|
|
Parser.SPAWN_MOB = 0x18;
|
|
|
|
Parser.SPAWN_PAINTING = 0x19;
|
|
|
|
Parser.SPAWN_EXPERIENCE_ORB = 0x1A;
|
|
|
|
Parser.ENTITY_VELOCITY = 0x1C;
|
|
|
|
Parser.DESTROY_ENTITY = 0x1D;
|
|
|
|
Parser.ENTITY = 0x1E;
|
|
|
|
Parser.ENTITY_RELATIVE_MOVE = 0x1F;
|
|
|
|
Parser.ENTITY_LOOK = 0x20;
|
|
|
|
Parser.ENTITY_LOOK_AND_RELATIVE_MOVE = 0x21;
|
|
|
|
Parser.ENTITY_TELEPORT = 0x22;
|
|
|
|
Parser.ENTITY_HEAD_LOOK = 0x23;
|
|
|
|
Parser.ENTITY_STATUS = 0x26;
|
|
|
|
Parser.ATTACH_ENTITY = 0x27;
|
|
|
|
Parser.ENTITY_METADATA = 0x28;
|
|
|
|
Parser.ENTITY_EFFECT = 0x29;
|
|
|
|
Parser.REMOVE_ENTITY_EFFECT = 0x2A;
|
|
|
|
Parser.SET_EXPERIENCE = 0x2B;
|
|
|
|
Parser.CHUNK_DATA = 0x33;
|
|
|
|
Parser.MULTI_BLOCK_CHANGE = 0x34;
|
|
|
|
Parser.BLOCK_CHANGE = 0x35;
|
|
|
|
Parser.BLOCK_ACTION = 0x36;
|
|
|
|
Parser.BLOCK_BREAK_ANIMATION = 0x37;
|
|
|
|
Parser.MAP_CHUNK_BULK = 0x38;
|
|
|
|
Parser.EXPLOSION = 0x3C;
|
|
|
|
Parser.SOUND_OR_PARTICLE_EFFECT = 0x3D;
|
|
|
|
Parser.NAMED_SOUND_EFFECT = 0x3E;
|
|
|
|
Parser.CHANGE_GAME_STATE = 0x46;
|
|
|
|
Parser.SPAWN_GLOBAL_ENTITY = 0x47;
|
|
|
|
Parser.OPEN_WINDOW = 0x64;
|
|
|
|
Parser.CLOSE_WINDOW = 0x65;
|
|
|
|
Parser.CLICK_WINDOW = 0x66;
|
|
|
|
Parser.SET_SLOT = 0x67;
|
|
|
|
Parser.SET_WINDOW_ITEMS = 0x68;
|
|
|
|
Parser.UPDATE_WINDOW_PROPERTY = 0x69;
|
|
|
|
Parser.CONFIRM_TRANSACTION = 0x6A;
|
|
|
|
Parser.CREATIVE_INVENTORY_ACTION = 0x6B;
|
|
|
|
Parser.ENCHANT_ITEM = 0x6C;
|
|
|
|
Parser.UPDATE_SIGN = 0x82;
|
|
|
|
Parser.ITEM_DATA = 0x83;
|
|
|
|
Parser.UPDATE_TILE_ENTITY = 0x84;
|
|
|
|
Parser.INCREMENT_STATISTIC = 0xC8;
|
|
|
|
Parser.PLAYER_LIST_ITEM = 0xC9;
|
|
|
|
Parser.PLAYER_ABILITIES = 0xCA;
|
|
|
|
Parser.TAB_COMPLETE = 0xCB;
|
|
|
|
Parser.CLIENT_SETTINGS = 0xCC;
|
|
|
|
Parser.CLIENT_STATUSES = 0xCD;
|
|
|
|
Parser.PLUGIN_MESSAGE = 0xFA;
|
|
|
|
Parser.ENCRYPTION_KEY_RESPONSE = 0xFC;
|
|
|
|
Parser.ENCRYPTION_KEY_REQUEST = 0xFD;
|
|
|
|
Parser.SERVER_LIST_PING = 0xFE;
|
|
|
|
Parser.DISCONNECT_KICK = 0xFF;
|