node-gamedig/protocols/tribes1.js

108 lines
4.1 KiB
JavaScript
Raw Normal View History

const Core = require('./core');
class Tribes1 extends Core {
2018-03-18 06:54:56 +01:00
constructor() {
super();
this.encoding = 'latin1';
}
run(state) {
const queryBuffer = Buffer.from('b++');
this.udpSend(queryBuffer,(buffer) => {
const reader = this.reader(buffer);
const header = reader.string({length:4});
if (header !== 'c++b') {
this.fatal('Header response does not match: ' + header);
return true;
}
state.raw.gametype = this.readString(reader);
state.raw.version = this.readString(reader);
state.name = this.readString(reader);
state.raw.dedicated = !!reader.uint(1);
state.password = !!reader.uint(1);
state.raw.playerCount = reader.uint(1);
state.maxplayers = reader.uint(1);
state.raw.cpu = reader.uint(2);
state.raw.mod = this.readString(reader);
state.raw.type = this.readString(reader);
state.map = this.readString(reader);
state.raw.motd = this.readString(reader);
state.raw.teamCount = reader.uint(1);
const teamFields = this.readFieldList(reader);
const playerFields = this.readFieldList(reader);
state.raw.teams = [];
for(let i = 0; i < state.raw.teamCount; i++) {
const teamName = this.readString(reader);
2018-03-18 07:23:01 +01:00
const teamValues = this.readValues(reader);
2018-03-18 06:54:56 +01:00
const teamInfo = {};
for (let i = 0; i < teamValues.length && i < teamFields.length; i++) {
2018-03-18 07:23:01 +01:00
let key = teamFields[i];
2018-03-18 06:54:56 +01:00
let value = teamValues[i];
2018-03-18 07:23:01 +01:00
if (key === 'ultra_base') key = 'name';
if (value === '%t') value = teamName;
if (['score','players'].includes(key)) value = parseInt(value);
2018-03-18 06:54:56 +01:00
teamInfo[key] = value;
}
state.raw.teams.push(teamInfo);
}
for(let i = 0; i < state.raw.playerCount; i++) {
const ping = reader.uint(1) * 4;
const packetLoss = reader.uint(1);
const teamNum = reader.uint(1);
const name = this.readString(reader);
2018-03-18 07:23:01 +01:00
const playerValues = this.readValues(reader);
2018-03-18 06:54:56 +01:00
const playerInfo = {};
for (let i = 0; i < playerValues.length && i < playerFields.length; i++) {
2018-03-18 07:23:01 +01:00
let key = playerFields[i];
2018-03-18 06:54:56 +01:00
let value = playerValues[i];
2018-03-18 07:23:01 +01:00
if (value === '%p') value = ping;
if (value === '%l') value = packetLoss;
if (value === '%t') value = teamNum;
if (value === '%n') value = name;
if (['score','ping','pl','kills','lvl'].includes(key)) value = parseInt(value);
2018-03-18 06:54:56 +01:00
if (key === 'team') {
const teamId = parseInt(value);
if (teamId >= 0 && teamId < state.raw.teams.length && state.raw.teams[teamId].name) {
value = state.raw.teams[teamId].name;
} else {
continue;
}
}
playerInfo[key] = value;
}
state.players.push(playerInfo);
}
this.finish(state);
return true;
});
}
readFieldList(reader) {
2018-03-18 07:23:01 +01:00
const str = this.readString(reader);
if (!str) return [];
return ('?'+str)
2018-03-18 06:54:56 +01:00
.split('\t')
2018-03-18 07:23:01 +01:00
.map((a) => a.substr(1).trim().toLowerCase())
2018-03-18 06:54:56 +01:00
.map((a) => a === 'team name' ? 'name' : a)
.map((a) => a === 'player name' ? 'name' : a);
}
2018-03-18 07:23:01 +01:00
readValues(reader) {
const str = this.readString(reader);
if (!str) return [];
return str
.split('\t')
.map((a) => a.trim());
}
2018-03-18 06:54:56 +01:00
readString(reader) {
const length = reader.uint(1);
if(!length) return '';
return reader.string({length:length});
}
}
module.exports = Tribes1;