2017-08-09 11:05:55 +02:00
|
|
|
const async = require('async');
|
2014-10-29 08:02:03 +01:00
|
|
|
|
2017-08-09 11:05:55 +02:00
|
|
|
class Samp extends require('./core') {
|
2017-08-09 12:32:09 +02:00
|
|
|
run(state) {
|
|
|
|
async.series([
|
|
|
|
(c) => {
|
|
|
|
this.sendPacket('i',(reader) => {
|
|
|
|
state.password = !!reader.uint(1);
|
|
|
|
state.raw.numplayers = reader.uint(2);
|
|
|
|
state.maxplayers = reader.uint(2);
|
|
|
|
state.name = this.readString(reader,4);
|
|
|
|
state.raw.gamemode = this.readString(reader,4);
|
|
|
|
this.map = this.readString(reader,4);
|
|
|
|
c();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
(c) => {
|
|
|
|
this.sendPacket('r',(reader) => {
|
2017-08-09 11:05:55 +02:00
|
|
|
const ruleCount = reader.uint(2);
|
2017-08-09 12:32:09 +02:00
|
|
|
state.raw.rules = {};
|
|
|
|
for(let i = 0; i < ruleCount; i++) {
|
2017-08-09 11:05:55 +02:00
|
|
|
const key = this.readString(reader,1);
|
|
|
|
const value = this.readString(reader,1);
|
2017-08-09 12:32:09 +02:00
|
|
|
state.raw.rules[key] = value;
|
|
|
|
}
|
|
|
|
if('mapname' in state.raw.rules)
|
|
|
|
state.map = state.raw.rules.mapname;
|
|
|
|
c();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
(c) => {
|
|
|
|
this.sendPacket('d',(reader) => {
|
2017-08-09 11:05:55 +02:00
|
|
|
const playerCount = reader.uint(2);
|
2017-08-09 12:32:09 +02:00
|
|
|
for(let i = 0; i < playerCount; i++) {
|
2017-08-09 11:05:55 +02:00
|
|
|
const player = {};
|
2017-08-09 12:32:09 +02:00
|
|
|
player.id = reader.uint(1);
|
|
|
|
player.name = this.readString(reader,1);
|
|
|
|
player.score = reader.int(4);
|
|
|
|
player.ping = reader.uint(4);
|
|
|
|
state.players.push(player);
|
|
|
|
}
|
|
|
|
c();
|
|
|
|
},() => {
|
|
|
|
for(let i = 0; i < state.raw.numplayers; i++) {
|
|
|
|
state.players.push({});
|
|
|
|
}
|
|
|
|
c();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
(c) => {
|
|
|
|
this.finish(state);
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
readString(reader,lenBytes) {
|
2017-08-09 11:05:55 +02:00
|
|
|
const length = reader.uint(lenBytes);
|
2017-08-09 12:32:09 +02:00
|
|
|
if(!length) return '';
|
2017-08-09 11:05:55 +02:00
|
|
|
const string = reader.string({length:length});
|
2017-08-09 12:32:09 +02:00
|
|
|
return string;
|
|
|
|
}
|
|
|
|
sendPacket(type,onresponse,ontimeout) {
|
2017-08-09 11:05:55 +02:00
|
|
|
const outbuffer = Buffer.alloc(11);
|
2017-08-09 12:32:09 +02:00
|
|
|
outbuffer.writeUInt32BE(0x53414D50,0);
|
2017-08-09 11:05:55 +02:00
|
|
|
const ipSplit = this.options.address.split('.');
|
2017-08-09 12:32:09 +02:00
|
|
|
outbuffer.writeUInt8(parseInt(ipSplit[0]),4);
|
|
|
|
outbuffer.writeUInt8(parseInt(ipSplit[1]),5);
|
|
|
|
outbuffer.writeUInt8(parseInt(ipSplit[2]),6);
|
|
|
|
outbuffer.writeUInt8(parseInt(ipSplit[3]),7);
|
|
|
|
outbuffer.writeUInt16LE(this.options.port,8);
|
|
|
|
outbuffer.writeUInt8(type.charCodeAt(0),10);
|
2014-10-29 08:02:03 +01:00
|
|
|
|
2017-08-09 12:32:09 +02:00
|
|
|
this.udpSend(outbuffer,(buffer) => {
|
2017-08-09 11:05:55 +02:00
|
|
|
const reader = this.reader(buffer);
|
2017-08-09 12:32:09 +02:00
|
|
|
for(let i = 0; i < outbuffer.length; i++) {
|
|
|
|
if(outbuffer.readUInt8(i) !== reader.uint(1)) return;
|
|
|
|
}
|
|
|
|
onresponse(reader);
|
|
|
|
return true;
|
|
|
|
},() => {
|
|
|
|
if(ontimeout) {
|
|
|
|
ontimeout();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-08-09 11:05:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Samp;
|