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

@@ -30,4 +30,82 @@ export class SendPostcardPacket implements Packet
return (this.AgentData['To'].length + 1 + this.AgentData['From'].length + 1 + this.AgentData['Name'].length + 1 + this.AgentData['Subject'].length + 1 + this.AgentData['Msg'].length + 2) + 74;
}
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;
this.AgentData['AssetID'].writeToBuffer(buf, pos);
pos += 16;
this.AgentData['PosGlobal'].writeToBuffer(buf, pos, true);
pos += 24;
buf.write(this.AgentData['To'], pos);
pos += this.AgentData['To'].length;
buf.write(this.AgentData['From'], pos);
pos += this.AgentData['From'].length;
buf.write(this.AgentData['Name'], pos);
pos += this.AgentData['Name'].length;
buf.write(this.AgentData['Subject'], pos);
pos += this.AgentData['Subject'].length;
buf.write(this.AgentData['Msg'], pos);
pos += this.AgentData['Msg'].length;
buf.writeUInt8((this.AgentData['AllowPublish']) ? 1 : 0, pos++);
buf.writeUInt8((this.AgentData['MaturePublish']) ? 1 : 0, pos++);
return pos - startPos;
}
readFromBuffer(buf: Buffer, pos: number): number
{
const startPos = pos;
const newObjAgentData: {
AgentID: UUID,
SessionID: UUID,
AssetID: UUID,
PosGlobal: Vector3,
To: string,
From: string,
Name: string,
Subject: string,
Msg: string,
AllowPublish: boolean,
MaturePublish: boolean
} = {
AgentID: UUID.zero(),
SessionID: UUID.zero(),
AssetID: UUID.zero(),
PosGlobal: Vector3.getZero(),
To: '',
From: '',
Name: '',
Subject: '',
Msg: '',
AllowPublish: false,
MaturePublish: false
};
newObjAgentData['AgentID'] = new UUID(buf, pos);
pos += 16;
newObjAgentData['SessionID'] = new UUID(buf, pos);
pos += 16;
newObjAgentData['AssetID'] = new UUID(buf, pos);
pos += 16;
newObjAgentData['PosGlobal'] = new Vector3(buf, pos, true);
pos += 24;
newObjAgentData['To'] = buf.toString('utf8', pos, length);
pos += length;
newObjAgentData['From'] = buf.toString('utf8', pos, length);
pos += length;
newObjAgentData['Name'] = buf.toString('utf8', pos, length);
pos += length;
newObjAgentData['Subject'] = buf.toString('utf8', pos, length);
pos += length;
newObjAgentData['Msg'] = buf.toString('utf8', pos, length);
pos += length;
newObjAgentData['AllowPublish'] = (buf.readUInt8(pos++) === 1);
newObjAgentData['MaturePublish'] = (buf.readUInt8(pos++) === 1);
this.AgentData = newObjAgentData;
return pos - startPos;
}
}