41 lines
1.4 KiB
JavaScript
41 lines
1.4 KiB
JavaScript
|
|
"use strict";
|
||
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
|
const MessageFlags_1 = require("../../enums/MessageFlags");
|
||
|
|
class ParcelMediaCommandMessagePacket {
|
||
|
|
constructor() {
|
||
|
|
this.name = 'ParcelMediaCommandMessage';
|
||
|
|
this.flags = MessageFlags_1.MessageFlags.Trusted | MessageFlags_1.MessageFlags.FrequencyLow;
|
||
|
|
this.id = 4294902179;
|
||
|
|
}
|
||
|
|
getSize() {
|
||
|
|
return 12;
|
||
|
|
}
|
||
|
|
writeToBuffer(buf, pos) {
|
||
|
|
const startPos = pos;
|
||
|
|
buf.writeUInt32LE(this.CommandBlock['Flags'], pos);
|
||
|
|
pos += 4;
|
||
|
|
buf.writeUInt32LE(this.CommandBlock['Command'], pos);
|
||
|
|
pos += 4;
|
||
|
|
buf.writeFloatLE(this.CommandBlock['Time'], pos);
|
||
|
|
pos += 4;
|
||
|
|
return pos - startPos;
|
||
|
|
}
|
||
|
|
readFromBuffer(buf, pos) {
|
||
|
|
const startPos = pos;
|
||
|
|
const newObjCommandBlock = {
|
||
|
|
Flags: 0,
|
||
|
|
Command: 0,
|
||
|
|
Time: 0
|
||
|
|
};
|
||
|
|
newObjCommandBlock['Flags'] = buf.readUInt32LE(pos);
|
||
|
|
pos += 4;
|
||
|
|
newObjCommandBlock['Command'] = buf.readUInt32LE(pos);
|
||
|
|
pos += 4;
|
||
|
|
newObjCommandBlock['Time'] = buf.readFloatLE(pos);
|
||
|
|
pos += 4;
|
||
|
|
this.CommandBlock = newObjCommandBlock;
|
||
|
|
return pos - startPos;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
exports.ParcelMediaCommandMessagePacket = ParcelMediaCommandMessagePacket;
|
||
|
|
//# sourceMappingURL=ParcelMediaCommandMessage.js.map
|