Latest packet handling, parsing, enums, generators, etc..

This commit is contained in:
Casper Warden
2017-11-24 17:45:34 +00:00
parent ec300e33ac
commit 261f28698a
496 changed files with 30448 additions and 57 deletions

View File

@@ -41,4 +41,92 @@ export class MapItemReplyPacket implements Packet
return size;
}
writeToBuffer(buf: Buffer, pos: number): number
{
const startPos = pos;
this.AgentData['AgentID'].writeToBuffer(buf, pos);
pos += 16;
buf.writeUInt32LE(this.AgentData['Flags'], pos);
pos += 4;
buf.writeUInt32LE(this.RequestData['ItemType'], pos);
pos += 4;
const count = this.Data.length;
buf.writeUInt8(this.Data.length, pos++);
for (let i = 0; i < count; i++)
{
buf.writeUInt32LE(this.Data[i]['X'], pos);
pos += 4;
buf.writeUInt32LE(this.Data[i]['Y'], pos);
pos += 4;
this.Data[i]['ID'].writeToBuffer(buf, pos);
pos += 16;
buf.writeInt32LE(this.Data[i]['Extra'], pos);
pos += 4;
buf.writeInt32LE(this.Data[i]['Extra2'], pos);
pos += 4;
buf.write(this.Data[i]['Name'], pos);
pos += this.Data[i]['Name'].length;
}
return pos - startPos;
}
readFromBuffer(buf: Buffer, pos: number): number
{
const startPos = pos;
const newObjAgentData: {
AgentID: UUID,
Flags: number
} = {
AgentID: UUID.zero(),
Flags: 0
};
newObjAgentData['AgentID'] = new UUID(buf, pos);
pos += 16;
newObjAgentData['Flags'] = buf.readUInt32LE(pos);
pos += 4;
this.AgentData = newObjAgentData;
const newObjRequestData: {
ItemType: number
} = {
ItemType: 0
};
newObjRequestData['ItemType'] = buf.readUInt32LE(pos);
pos += 4;
this.RequestData = newObjRequestData;
const count = buf.readUInt8(pos++);
this.Data = [];
for (let i = 0; i < count; i++)
{
const newObjData: {
X: number,
Y: number,
ID: UUID,
Extra: number,
Extra2: number,
Name: string
} = {
X: 0,
Y: 0,
ID: UUID.zero(),
Extra: 0,
Extra2: 0,
Name: ''
};
newObjData['X'] = buf.readUInt32LE(pos);
pos += 4;
newObjData['Y'] = buf.readUInt32LE(pos);
pos += 4;
newObjData['ID'] = new UUID(buf, pos);
pos += 16;
newObjData['Extra'] = buf.readInt32LE(pos);
pos += 4;
newObjData['Extra2'] = buf.readInt32LE(pos);
pos += 4;
newObjData['Name'] = buf.toString('utf8', pos, length);
pos += length;
this.Data.push(newObjData);
}
return pos - startPos;
}
}