Files
node-metaverse/lib/classes/messages/AgentGroupDataUpdate.ts

118 lines
3.9 KiB
TypeScript

// This file has been automatically generated by writeMessageClasses.js
import {UUID} from '../UUID';
import Long = require('long');
import {MessageFlags} from '../../enums/MessageFlags';
import {MessageBase} from '../MessageBase';
import {Message} from '../../enums/Message';
export class AgentGroupDataUpdateMessage implements MessageBase
{
name = 'AgentGroupDataUpdate';
messageFlags = MessageFlags.Trusted | MessageFlags.Zerocoded | MessageFlags.Deprecated | MessageFlags.FrequencyLow;
id = Message.AgentGroupDataUpdate;
AgentData: {
AgentID: UUID;
};
GroupData: {
GroupID: UUID;
GroupPowers: Long;
AcceptNotices: boolean;
GroupInsigniaID: UUID;
Contribution: number;
GroupName: Buffer;
}[];
getSize(): number
{
return ((this.calculateVarVarSize(this.GroupData, 'GroupName', 1) + 45) * this.GroupData.length) + 17;
}
calculateVarVarSize(block: object[], paramName: string, extraPerVar: number): number
{
let size = 0;
block.forEach((bl: any) =>
{
size += bl[paramName].length + extraPerVar;
});
return size;
}
writeToBuffer(buf: Buffer, pos: number): number
{
const startPos = pos;
this.AgentData['AgentID'].writeToBuffer(buf, pos);
pos += 16;
const count = this.GroupData.length;
buf.writeUInt8(this.GroupData.length, pos++);
for (let i = 0; i < count; i++)
{
this.GroupData[i]['GroupID'].writeToBuffer(buf, pos);
pos += 16;
buf.writeInt32LE(this.GroupData[i]['GroupPowers'].low, pos);
pos += 4;
buf.writeInt32LE(this.GroupData[i]['GroupPowers'].high, pos);
pos += 4;
buf.writeUInt8((this.GroupData[i]['AcceptNotices']) ? 1 : 0, pos++);
this.GroupData[i]['GroupInsigniaID'].writeToBuffer(buf, pos);
pos += 16;
buf.writeInt32LE(this.GroupData[i]['Contribution'], pos);
pos += 4;
buf.writeUInt8(this.GroupData[i]['GroupName'].length, pos++);
this.GroupData[i]['GroupName'].copy(buf, pos);
pos += this.GroupData[i]['GroupName'].length;
}
return pos - startPos;
}
readFromBuffer(buf: Buffer, pos: number): number
{
const startPos = pos;
let varLength = 0;
const newObjAgentData: {
AgentID: UUID
} = {
AgentID: UUID.zero()
};
newObjAgentData['AgentID'] = new UUID(buf, pos);
pos += 16;
this.AgentData = newObjAgentData;
const count = buf.readUInt8(pos++);
this.GroupData = [];
for (let i = 0; i < count; i++)
{
const newObjGroupData: {
GroupID: UUID,
GroupPowers: Long,
AcceptNotices: boolean,
GroupInsigniaID: UUID,
Contribution: number,
GroupName: Buffer
} = {
GroupID: UUID.zero(),
GroupPowers: Long.ZERO,
AcceptNotices: false,
GroupInsigniaID: UUID.zero(),
Contribution: 0,
GroupName: Buffer.allocUnsafe(0)
};
newObjGroupData['GroupID'] = new UUID(buf, pos);
pos += 16;
newObjGroupData['GroupPowers'] = new Long(buf.readInt32LE(pos), buf.readInt32LE(pos+4));
pos += 8;
newObjGroupData['AcceptNotices'] = (buf.readUInt8(pos++) === 1);
newObjGroupData['GroupInsigniaID'] = new UUID(buf, pos);
pos += 16;
newObjGroupData['Contribution'] = buf.readInt32LE(pos);
pos += 4;
varLength = buf.readUInt8(pos++);
newObjGroupData['GroupName'] = buf.slice(pos, pos + varLength);
pos += varLength;
this.GroupData.push(newObjGroupData);
}
return pos - startPos;
}
}