Fix zerocoder, use buffers instead of strings for vardata, add util for null-terminated string<->buffer conversion

This commit is contained in:
Casper Warden
2017-11-26 19:47:41 +00:00
parent 3f25aa0f1b
commit fc6d77a893
195 changed files with 2005 additions and 1881 deletions

View File

@@ -17,7 +17,7 @@ export class SetStartLocationRequestMessage implements MessageBase
SessionID: UUID;
};
StartLocationData: {
SimName: string;
SimName: Buffer;
LocationID: number;
LocationPos: Vector3;
LocationLookAt: Vector3;
@@ -36,7 +36,7 @@ export class SetStartLocationRequestMessage implements MessageBase
this.AgentData['SessionID'].writeToBuffer(buf, pos);
pos += 16;
buf.writeUInt8(this.StartLocationData['SimName'].length, pos++);
buf.write(this.StartLocationData['SimName'], pos);
this.StartLocationData['SimName'].copy(buf, pos);
pos += this.StartLocationData['SimName'].length;
buf.writeUInt32LE(this.StartLocationData['LocationID'], pos);
pos += 4;
@@ -64,18 +64,18 @@ export class SetStartLocationRequestMessage implements MessageBase
pos += 16;
this.AgentData = newObjAgentData;
const newObjStartLocationData: {
SimName: string,
SimName: Buffer,
LocationID: number,
LocationPos: Vector3,
LocationLookAt: Vector3
} = {
SimName: '',
SimName: Buffer.allocUnsafe(0),
LocationID: 0,
LocationPos: Vector3.getZero(),
LocationLookAt: Vector3.getZero()
};
varLength = buf.readUInt8(pos++);
newObjStartLocationData['SimName'] = buf.toString('utf8', pos, pos + (varLength - 1));
newObjStartLocationData['SimName'] = buf.slice(pos, pos + (varLength - 1));
pos += varLength;
newObjStartLocationData['LocationID'] = buf.readUInt32LE(pos);
pos += 4;