2017-12-13 15:23:50 +00:00
|
|
|
"use strict";
|
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
|
const UUID_1 = require("../UUID");
|
|
|
|
|
const MessageFlags_1 = require("../../enums/MessageFlags");
|
|
|
|
|
const Message_1 = require("../../enums/Message");
|
|
|
|
|
class ScriptDialogMessage {
|
|
|
|
|
constructor() {
|
|
|
|
|
this.name = 'ScriptDialog';
|
|
|
|
|
this.messageFlags = MessageFlags_1.MessageFlags.Trusted | MessageFlags_1.MessageFlags.Zerocoded | MessageFlags_1.MessageFlags.FrequencyLow;
|
|
|
|
|
this.id = Message_1.Message.ScriptDialog;
|
|
|
|
|
}
|
|
|
|
|
getSize() {
|
2017-12-20 17:07:10 +00:00
|
|
|
return (this.Data['FirstName'].length + 1 + this.Data['LastName'].length + 1 + this.Data['ObjectName'].length + 1 + this.Data['Message'].length + 2) + this.calculateVarVarSize(this.Buttons, 'ButtonLabel', 1) + ((16) * this.OwnerData.length) + 38;
|
2017-12-13 15:23:50 +00:00
|
|
|
}
|
|
|
|
|
calculateVarVarSize(block, paramName, extraPerVar) {
|
|
|
|
|
let size = 0;
|
|
|
|
|
block.forEach((bl) => {
|
|
|
|
|
size += bl[paramName].length + extraPerVar;
|
|
|
|
|
});
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
writeToBuffer(buf, pos) {
|
|
|
|
|
const startPos = pos;
|
|
|
|
|
this.Data['ObjectID'].writeToBuffer(buf, pos);
|
|
|
|
|
pos += 16;
|
|
|
|
|
buf.writeUInt8(this.Data['FirstName'].length, pos++);
|
|
|
|
|
this.Data['FirstName'].copy(buf, pos);
|
|
|
|
|
pos += this.Data['FirstName'].length;
|
|
|
|
|
buf.writeUInt8(this.Data['LastName'].length, pos++);
|
|
|
|
|
this.Data['LastName'].copy(buf, pos);
|
|
|
|
|
pos += this.Data['LastName'].length;
|
|
|
|
|
buf.writeUInt8(this.Data['ObjectName'].length, pos++);
|
|
|
|
|
this.Data['ObjectName'].copy(buf, pos);
|
|
|
|
|
pos += this.Data['ObjectName'].length;
|
|
|
|
|
buf.writeUInt16LE(this.Data['Message'].length, pos);
|
|
|
|
|
pos += 2;
|
|
|
|
|
this.Data['Message'].copy(buf, pos);
|
|
|
|
|
pos += this.Data['Message'].length;
|
|
|
|
|
buf.writeInt32LE(this.Data['ChatChannel'], pos);
|
|
|
|
|
pos += 4;
|
|
|
|
|
this.Data['ImageID'].writeToBuffer(buf, pos);
|
|
|
|
|
pos += 16;
|
|
|
|
|
let count = this.Buttons.length;
|
|
|
|
|
buf.writeUInt8(this.Buttons.length, pos++);
|
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
|
|
|
buf.writeUInt8(this.Buttons[i]['ButtonLabel'].length, pos++);
|
|
|
|
|
this.Buttons[i]['ButtonLabel'].copy(buf, pos);
|
|
|
|
|
pos += this.Buttons[i]['ButtonLabel'].length;
|
|
|
|
|
}
|
|
|
|
|
count = this.OwnerData.length;
|
|
|
|
|
buf.writeUInt8(this.OwnerData.length, pos++);
|
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
|
|
|
this.OwnerData[i]['OwnerID'].writeToBuffer(buf, pos);
|
|
|
|
|
pos += 16;
|
|
|
|
|
}
|
|
|
|
|
return pos - startPos;
|
|
|
|
|
}
|
|
|
|
|
readFromBuffer(buf, pos) {
|
|
|
|
|
const startPos = pos;
|
|
|
|
|
let varLength = 0;
|
|
|
|
|
const newObjData = {
|
|
|
|
|
ObjectID: UUID_1.UUID.zero(),
|
|
|
|
|
FirstName: Buffer.allocUnsafe(0),
|
|
|
|
|
LastName: Buffer.allocUnsafe(0),
|
|
|
|
|
ObjectName: Buffer.allocUnsafe(0),
|
|
|
|
|
Message: Buffer.allocUnsafe(0),
|
|
|
|
|
ChatChannel: 0,
|
|
|
|
|
ImageID: UUID_1.UUID.zero()
|
|
|
|
|
};
|
|
|
|
|
newObjData['ObjectID'] = new UUID_1.UUID(buf, pos);
|
|
|
|
|
pos += 16;
|
|
|
|
|
varLength = buf.readUInt8(pos++);
|
|
|
|
|
newObjData['FirstName'] = buf.slice(pos, pos + varLength);
|
|
|
|
|
pos += varLength;
|
|
|
|
|
varLength = buf.readUInt8(pos++);
|
|
|
|
|
newObjData['LastName'] = buf.slice(pos, pos + varLength);
|
|
|
|
|
pos += varLength;
|
|
|
|
|
varLength = buf.readUInt8(pos++);
|
|
|
|
|
newObjData['ObjectName'] = buf.slice(pos, pos + varLength);
|
|
|
|
|
pos += varLength;
|
|
|
|
|
varLength = buf.readUInt16LE(pos);
|
|
|
|
|
pos += 2;
|
|
|
|
|
newObjData['Message'] = buf.slice(pos, pos + varLength);
|
|
|
|
|
pos += varLength;
|
|
|
|
|
newObjData['ChatChannel'] = buf.readInt32LE(pos);
|
|
|
|
|
pos += 4;
|
|
|
|
|
newObjData['ImageID'] = new UUID_1.UUID(buf, pos);
|
|
|
|
|
pos += 16;
|
|
|
|
|
this.Data = newObjData;
|
|
|
|
|
let count = buf.readUInt8(pos++);
|
|
|
|
|
this.Buttons = [];
|
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
|
|
|
const newObjButtons = {
|
|
|
|
|
ButtonLabel: Buffer.allocUnsafe(0)
|
|
|
|
|
};
|
|
|
|
|
varLength = buf.readUInt8(pos++);
|
|
|
|
|
newObjButtons['ButtonLabel'] = buf.slice(pos, pos + varLength);
|
|
|
|
|
pos += varLength;
|
|
|
|
|
this.Buttons.push(newObjButtons);
|
|
|
|
|
}
|
|
|
|
|
count = buf.readUInt8(pos++);
|
|
|
|
|
this.OwnerData = [];
|
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
|
|
|
const newObjOwnerData = {
|
|
|
|
|
OwnerID: UUID_1.UUID.zero()
|
|
|
|
|
};
|
|
|
|
|
newObjOwnerData['OwnerID'] = new UUID_1.UUID(buf, pos);
|
|
|
|
|
pos += 16;
|
|
|
|
|
this.OwnerData.push(newObjOwnerData);
|
|
|
|
|
}
|
|
|
|
|
return pos - startPos;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
exports.ScriptDialogMessage = ScriptDialogMessage;
|
|
|
|
|
//# sourceMappingURL=ScriptDialog.js.map
|