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

@@ -35,4 +35,108 @@ export class EventInfoReplyPacket implements Packet
return (this.EventData['Creator'].length + 1 + this.EventData['Name'].length + 1 + this.EventData['Category'].length + 1 + this.EventData['Desc'].length + 2 + this.EventData['Date'].length + 1 + this.EventData['SimName'].length + 1) + 64;
}
writeToBuffer(buf: Buffer, pos: number): number
{
const startPos = pos;
this.AgentData['AgentID'].writeToBuffer(buf, pos);
pos += 16;
buf.writeUInt32LE(this.EventData['EventID'], pos);
pos += 4;
buf.write(this.EventData['Creator'], pos);
pos += this.EventData['Creator'].length;
buf.write(this.EventData['Name'], pos);
pos += this.EventData['Name'].length;
buf.write(this.EventData['Category'], pos);
pos += this.EventData['Category'].length;
buf.write(this.EventData['Desc'], pos);
pos += this.EventData['Desc'].length;
buf.write(this.EventData['Date'], pos);
pos += this.EventData['Date'].length;
buf.writeUInt32LE(this.EventData['DateUTC'], pos);
pos += 4;
buf.writeUInt32LE(this.EventData['Duration'], pos);
pos += 4;
buf.writeUInt32LE(this.EventData['Cover'], pos);
pos += 4;
buf.writeUInt32LE(this.EventData['Amount'], pos);
pos += 4;
buf.write(this.EventData['SimName'], pos);
pos += this.EventData['SimName'].length;
this.EventData['GlobalPos'].writeToBuffer(buf, pos, true);
pos += 24;
buf.writeUInt32LE(this.EventData['EventFlags'], pos);
pos += 4;
return pos - startPos;
}
readFromBuffer(buf: Buffer, pos: number): number
{
const startPos = pos;
const newObjAgentData: {
AgentID: UUID
} = {
AgentID: UUID.zero()
};
newObjAgentData['AgentID'] = new UUID(buf, pos);
pos += 16;
this.AgentData = newObjAgentData;
const newObjEventData: {
EventID: number,
Creator: string,
Name: string,
Category: string,
Desc: string,
Date: string,
DateUTC: number,
Duration: number,
Cover: number,
Amount: number,
SimName: string,
GlobalPos: Vector3,
EventFlags: number
} = {
EventID: 0,
Creator: '',
Name: '',
Category: '',
Desc: '',
Date: '',
DateUTC: 0,
Duration: 0,
Cover: 0,
Amount: 0,
SimName: '',
GlobalPos: Vector3.getZero(),
EventFlags: 0
};
newObjEventData['EventID'] = buf.readUInt32LE(pos);
pos += 4;
newObjEventData['Creator'] = buf.toString('utf8', pos, length);
pos += length;
newObjEventData['Name'] = buf.toString('utf8', pos, length);
pos += length;
newObjEventData['Category'] = buf.toString('utf8', pos, length);
pos += length;
newObjEventData['Desc'] = buf.toString('utf8', pos, length);
pos += length;
newObjEventData['Date'] = buf.toString('utf8', pos, length);
pos += length;
newObjEventData['DateUTC'] = buf.readUInt32LE(pos);
pos += 4;
newObjEventData['Duration'] = buf.readUInt32LE(pos);
pos += 4;
newObjEventData['Cover'] = buf.readUInt32LE(pos);
pos += 4;
newObjEventData['Amount'] = buf.readUInt32LE(pos);
pos += 4;
newObjEventData['SimName'] = buf.toString('utf8', pos, length);
pos += length;
newObjEventData['GlobalPos'] = new Vector3(buf, pos, true);
pos += 24;
newObjEventData['EventFlags'] = buf.readUInt32LE(pos);
pos += 4;
this.EventData = newObjEventData;
return pos - startPos;
}
}