node-gamedig/protocols/geneshift.js

49 lines
1.5 KiB
JavaScript
Raw Normal View History

2019-01-10 13:03:07 +01:00
const Core = require('./core');
2014-10-29 08:02:03 +01:00
class GeneShift extends Core {
2019-01-10 13:03:07 +01:00
async run(state) {
2020-07-05 06:28:03 +02:00
await this.tcpPing();
2019-01-10 13:03:07 +01:00
const body = await this.request({
2020-07-05 06:28:03 +02:00
url: 'http://geneshift.net/game/receiveLobby.php'
2019-01-10 13:03:07 +01:00
});
2014-10-29 08:02:03 +01:00
2019-01-10 13:03:07 +01:00
const split = body.split('<br/>');
let found = null;
for(const line of split) {
const fields = line.split('::');
const ip = fields[2];
const port = fields[3];
if(ip === this.options.address && parseInt(port) === this.options.port) {
found = fields;
break;
2017-08-09 12:32:09 +02:00
}
2019-01-10 13:03:07 +01:00
}
2019-01-10 13:03:07 +01:00
if(found === null) {
throw new Error('Server not found in list');
}
2014-10-29 08:02:03 +01:00
2019-01-10 13:03:07 +01:00
state.raw.countrycode = found[0];
state.raw.country = found[1];
state.name = found[4];
state.map = found[5];
2019-02-04 08:11:28 +01:00
state.players = parseInt(found[6]);
2019-01-10 13:03:07 +01:00
state.maxplayers = parseInt(found[7]);
// fields[8] is unknown?
state.raw.rules = found[9];
state.raw.gamemode = parseInt(found[10]);
state.raw.gangsters = parseInt(found[11]);
state.raw.cashrate = parseInt(found[12]);
state.raw.missions = !!parseInt(found[13]);
state.raw.vehicles = !!parseInt(found[14]);
state.raw.customweapons = !!parseInt(found[15]);
state.raw.friendlyfire = !!parseInt(found[16]);
state.raw.mercs = !!parseInt(found[17]);
// fields[18] is unknown? listen server?
state.raw.version = found[19];
2017-08-09 12:32:09 +02:00
}
}
module.exports = GeneShift;