44 lines
1.0 KiB
TypeScript
44 lines
1.0 KiB
TypeScript
|
|
// This file has been automatically generated by writeMessageClasses.js
|
||
|
|
|
||
|
|
import {MessageFlags} from '../../enums/MessageFlags';
|
||
|
|
import {MessageBase} from '../MessageBase';
|
||
|
|
import {Message} from '../../enums/Message';
|
||
|
|
|
||
|
|
export class CompletePingCheckMessage implements MessageBase
|
||
|
|
{
|
||
|
|
name = 'CompletePingCheck';
|
||
|
|
messageFlags = MessageFlags.FrequencyHigh;
|
||
|
|
id = Message.CompletePingCheck;
|
||
|
|
|
||
|
|
PingID: {
|
||
|
|
PingID: number;
|
||
|
|
};
|
||
|
|
|
||
|
|
getSize(): number
|
||
|
|
{
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
writeToBuffer(buf: Buffer, pos: number): number
|
||
|
|
{
|
||
|
|
const startPos = pos;
|
||
|
|
buf.writeUInt8(this.PingID['PingID'], pos++);
|
||
|
|
return pos - startPos;
|
||
|
|
}
|
||
|
|
|
||
|
|
readFromBuffer(buf: Buffer, pos: number): number
|
||
|
|
{
|
||
|
|
const startPos = pos;
|
||
|
|
let varLength = 0;
|
||
|
|
const newObjPingID: {
|
||
|
|
PingID: number
|
||
|
|
} = {
|
||
|
|
PingID: 0
|
||
|
|
};
|
||
|
|
newObjPingID['PingID'] = buf.readUInt8(pos++);
|
||
|
|
this.PingID = newObjPingID;
|
||
|
|
return pos - startPos;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|