// This file has been automatically generated by writePacketClasses.js import {UUID} from '../UUID'; import Long = require('long'); import {MessageFlags} from '../../enums/MessageFlags'; import {Packet} from '../Packet'; export class AgentGroupDataUpdatePacket implements Packet { name = 'AgentGroupDataUpdate'; flags = MessageFlags.Trusted | MessageFlags.Zerocoded | MessageFlags.Deprecated | MessageFlags.FrequencyLow; id = 4294902149; AgentData: { AgentID: UUID; }; GroupData: { GroupID: UUID; GroupPowers: Long; AcceptNotices: boolean; GroupInsigniaID: UUID; Contribution: number; GroupName: string; }[]; 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.write(this.GroupData[i]['GroupName'], pos); pos += this.GroupData[i]['GroupName'].length; } 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 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: string } = { GroupID: UUID.zero(), GroupPowers: Long.ZERO, AcceptNotices: false, GroupInsigniaID: UUID.zero(), Contribution: 0, GroupName: '' }; 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; newObjGroupData['GroupName'] = buf.toString('utf8', pos, length); pos += length; this.GroupData.push(newObjGroupData); } return pos - startPos; } }