2017-08-09 11:05:55 +02:00
|
|
|
class MumblePing extends require('./core') {
|
2017-08-09 12:32:09 +02:00
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.byteorder = 'be';
|
|
|
|
}
|
2017-08-09 11:05:55 +02:00
|
|
|
|
2017-08-09 12:32:09 +02:00
|
|
|
run(state) {
|
|
|
|
this.udpSend('\x00\x00\x00\x00\x01\x02\x03\x04\x05\x06\x07\x08', (buffer) => {
|
|
|
|
if(buffer.length < 24) return;
|
2017-08-09 11:05:55 +02:00
|
|
|
const reader = this.reader(buffer);
|
2017-08-09 12:32:09 +02:00
|
|
|
reader.skip(1);
|
|
|
|
state.raw.versionMajor = reader.uint(1);
|
|
|
|
state.raw.versionMinor = reader.uint(1);
|
|
|
|
state.raw.versionPatch = reader.uint(1);
|
|
|
|
reader.skip(8);
|
|
|
|
state.raw.numplayers = reader.uint(4);
|
|
|
|
state.maxplayers = reader.uint(4);
|
|
|
|
state.raw.allowedbandwidth = reader.uint(4);
|
|
|
|
for(let i = 0; i < state.raw.numplayers; i++) {
|
|
|
|
state.players.push({});
|
|
|
|
}
|
|
|
|
this.finish(state);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
2017-08-09 11:05:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = MumblePing;
|