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

@@ -27,4 +27,66 @@ export class StartLurePacket implements Packet
return (this.Info['Message'].length + 1) + ((16) * this.TargetData.length) + 34;
}
writeToBuffer(buf: Buffer, pos: number): number
{
const startPos = pos;
this.AgentData['AgentID'].writeToBuffer(buf, pos);
pos += 16;
this.AgentData['SessionID'].writeToBuffer(buf, pos);
pos += 16;
buf.writeUInt8(this.Info['LureType'], pos++);
buf.write(this.Info['Message'], pos);
pos += this.Info['Message'].length;
const count = this.TargetData.length;
buf.writeUInt8(this.TargetData.length, pos++);
for (let i = 0; i < count; i++)
{
this.TargetData[i]['TargetID'].writeToBuffer(buf, pos);
pos += 16;
}
return pos - startPos;
}
readFromBuffer(buf: Buffer, pos: number): number
{
const startPos = pos;
const newObjAgentData: {
AgentID: UUID,
SessionID: UUID
} = {
AgentID: UUID.zero(),
SessionID: UUID.zero()
};
newObjAgentData['AgentID'] = new UUID(buf, pos);
pos += 16;
newObjAgentData['SessionID'] = new UUID(buf, pos);
pos += 16;
this.AgentData = newObjAgentData;
const newObjInfo: {
LureType: number,
Message: string
} = {
LureType: 0,
Message: ''
};
newObjInfo['LureType'] = buf.readUInt8(pos++);
newObjInfo['Message'] = buf.toString('utf8', pos, length);
pos += length;
this.Info = newObjInfo;
const count = buf.readUInt8(pos++);
this.TargetData = [];
for (let i = 0; i < count; i++)
{
const newObjTargetData: {
TargetID: UUID
} = {
TargetID: UUID.zero()
};
newObjTargetData['TargetID'] = new UUID(buf, pos);
pos += 16;
this.TargetData.push(newObjTargetData);
}
return pos - startPos;
}
}