// This file has been automatically generated by writeMessageClasses.js import {UUID} from '../UUID'; import {MessageFlags} from '../../enums/MessageFlags'; import {MessageBase} from '../MessageBase'; import {Message} from '../../enums/Message'; export class AgentHeightWidthMessage implements MessageBase { name = 'AgentHeightWidth'; messageFlags = MessageFlags.FrequencyLow; id = Message.AgentHeightWidth; AgentData: { AgentID: UUID; SessionID: UUID; CircuitCode: number; }; HeightWidthBlock: { GenCounter: number; Height: number; Width: number; }; getSize(): number { return 44; } 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; buf.writeUInt32LE(this.AgentData['CircuitCode'], pos); pos += 4; buf.writeUInt32LE(this.HeightWidthBlock['GenCounter'], pos); pos += 4; buf.writeUInt16LE(this.HeightWidthBlock['Height'], pos); pos += 2; buf.writeUInt16LE(this.HeightWidthBlock['Width'], pos); pos += 2; return pos - startPos; } readFromBuffer(buf: Buffer, pos: number): number { const startPos = pos; let varLength = 0; const newObjAgentData: { AgentID: UUID, SessionID: UUID, CircuitCode: number } = { AgentID: UUID.zero(), SessionID: UUID.zero(), CircuitCode: 0 }; newObjAgentData['AgentID'] = new UUID(buf, pos); pos += 16; newObjAgentData['SessionID'] = new UUID(buf, pos); pos += 16; newObjAgentData['CircuitCode'] = buf.readUInt32LE(pos); pos += 4; this.AgentData = newObjAgentData; const newObjHeightWidthBlock: { GenCounter: number, Height: number, Width: number } = { GenCounter: 0, Height: 0, Width: 0 }; newObjHeightWidthBlock['GenCounter'] = buf.readUInt32LE(pos); pos += 4; newObjHeightWidthBlock['Height'] = buf.readUInt16LE(pos); pos += 2; newObjHeightWidthBlock['Width'] = buf.readUInt16LE(pos); pos += 2; this.HeightWidthBlock = newObjHeightWidthBlock; return pos - startPos; } }