2017-08-09 11:05:55 +02:00
|
|
|
class Starmade extends require('./core') {
|
2017-08-09 12:32:09 +02:00
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.encoding = 'latin1';
|
|
|
|
this.byteorder = 'be';
|
|
|
|
}
|
|
|
|
run(state) {
|
2017-08-09 11:05:55 +02:00
|
|
|
const b = Buffer.from([0x00,0x00,0x00,0x09,0x2a,0xff,0xff,0x01,0x6f,0x00,0x00,0x00,0x00]);
|
2015-01-18 04:10:44 +01:00
|
|
|
|
2017-08-09 12:32:09 +02:00
|
|
|
this.tcpSend(b,(buffer) => {
|
2017-08-09 11:05:55 +02:00
|
|
|
const reader = this.reader(buffer);
|
2015-01-18 04:10:44 +01:00
|
|
|
|
2017-08-09 12:32:09 +02:00
|
|
|
if(buffer.length < 4) return false;
|
2017-08-09 11:05:55 +02:00
|
|
|
const packetLength = reader.uint(4);
|
2017-08-09 12:32:09 +02:00
|
|
|
if(buffer.length < packetLength+12) return false;
|
2015-01-18 04:10:44 +01:00
|
|
|
|
2017-08-09 11:05:55 +02:00
|
|
|
const data = [];
|
2017-08-09 12:32:09 +02:00
|
|
|
state.raw.data = data;
|
2015-01-18 04:10:44 +01:00
|
|
|
|
2017-08-09 12:32:09 +02:00
|
|
|
reader.skip(2);
|
|
|
|
while(!reader.done()) {
|
2017-08-09 11:05:55 +02:00
|
|
|
const mark = reader.uint(1);
|
2017-08-09 12:32:09 +02:00
|
|
|
if(mark === 1) {
|
|
|
|
// signed int
|
|
|
|
data.push(reader.int(4));
|
|
|
|
} else if(mark === 3) {
|
|
|
|
// float
|
|
|
|
data.push(reader.float());
|
|
|
|
} else if(mark === 4) {
|
|
|
|
// string
|
2017-08-09 11:05:55 +02:00
|
|
|
const length = reader.uint(2);
|
2017-08-09 12:32:09 +02:00
|
|
|
data.push(reader.string(length));
|
|
|
|
} else if(mark === 6) {
|
|
|
|
// byte
|
|
|
|
data.push(reader.uint(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(data.length < 9) {
|
|
|
|
this.fatal("Not enough units in data packet");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(typeof data[3] === 'number') state.raw.version = data[3].toFixed(7).replace(/0+$/, '');
|
|
|
|
if(typeof data[4] === 'string') state.name = data[4];
|
|
|
|
if(typeof data[5] === 'string') state.raw.description = data[5];
|
|
|
|
if(typeof data[7] === 'number') state.raw.numplayers = data[7];
|
|
|
|
if(typeof data[8] === 'number') state.maxplayers = data[8];
|
|
|
|
|
|
|
|
if('numplayers' in state.raw) {
|
|
|
|
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 = Starmade;
|