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

85 lines
2.5 KiB
TypeScript

// 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 GroupProposalBallotMessage implements MessageBase
{
name = 'GroupProposalBallot';
messageFlags = MessageFlags.Deprecated | MessageFlags.FrequencyLow;
id = Message.GroupProposalBallot;
AgentData: {
AgentID: UUID;
SessionID: UUID;
};
ProposalData: {
ProposalID: UUID;
GroupID: UUID;
VoteCast: Buffer;
};
getSize(): number
{
return (this.ProposalData['VoteCast'].length + 1) + 64;
}
// @ts-ignore
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;
this.ProposalData['ProposalID'].writeToBuffer(buf, pos);
pos += 16;
this.ProposalData['GroupID'].writeToBuffer(buf, pos);
pos += 16;
buf.writeUInt8(this.ProposalData['VoteCast'].length, pos++);
this.ProposalData['VoteCast'].copy(buf, pos);
pos += this.ProposalData['VoteCast'].length;
return pos - startPos;
}
// @ts-ignore
readFromBuffer(buf: Buffer, pos: number): number
{
const startPos = pos;
let varLength = 0;
const newObjAgentData: {
AgentID: UUID,
SessionID: UUID
} = {
AgentID: UUID.zero(),
SessionID: UUID.zero()
};
newObjAgentData['AgentID'] = new UUID(buf, pos);
pos += 16;
newObjAgentData['SessionID'] = new UUID(buf, pos);
pos += 16;
this.AgentData = newObjAgentData;
const newObjProposalData: {
ProposalID: UUID,
GroupID: UUID,
VoteCast: Buffer
} = {
ProposalID: UUID.zero(),
GroupID: UUID.zero(),
VoteCast: Buffer.allocUnsafe(0)
};
newObjProposalData['ProposalID'] = new UUID(buf, pos);
pos += 16;
newObjProposalData['GroupID'] = new UUID(buf, pos);
pos += 16;
varLength = buf.readUInt8(pos++);
newObjProposalData['VoteCast'] = buf.slice(pos, pos + varLength);
pos += varLength;
this.ProposalData = newObjProposalData;
return pos - startPos;
}
}