2019-01-07 01:52:03 +01:00
|
|
|
const Core = require('./core');
|
|
|
|
|
|
|
|
class Starmade extends Core {
|
2017-08-09 12:32:09 +02:00
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.encoding = 'latin1';
|
|
|
|
this.byteorder = 'be';
|
|
|
|
}
|
2019-01-10 13:03:07 +01:00
|
|
|
|
|
|
|
async 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
|
|
|
|
2019-01-10 13:03:07 +01:00
|
|
|
const payload = await this.withTcp(async socket => {
|
|
|
|
return await this.tcpSend(socket, b, buffer => {
|
2019-02-05 10:19:06 +01:00
|
|
|
if (buffer.length < 12) return;
|
2019-01-10 13:03:07 +01:00
|
|
|
const reader = this.reader(buffer);
|
|
|
|
const packetLength = reader.uint(4);
|
2019-02-05 10:19:06 +01:00
|
|
|
this.logger.debug("Received packet length: " + packetLength);
|
2021-02-25 08:58:35 +01:00
|
|
|
const timestamp = reader.uint(8).toString();
|
2019-02-05 10:19:06 +01:00
|
|
|
this.logger.debug("Received timestamp: " + timestamp);
|
|
|
|
if (reader.remaining() < packetLength || reader.remaining() < 5) return;
|
|
|
|
|
|
|
|
const checkId = reader.uint(1);
|
|
|
|
const packetId = reader.uint(2);
|
|
|
|
const commandId = reader.uint(1);
|
|
|
|
const type = reader.uint(1);
|
|
|
|
|
|
|
|
this.logger.debug("checkId=" + checkId + " packetId=" + packetId + " commandId=" + commandId + " type=" + type);
|
|
|
|
if (checkId !== 0x2a) return;
|
|
|
|
|
2019-01-10 13:03:07 +01:00
|
|
|
return reader.rest();
|
|
|
|
});
|
|
|
|
});
|
2015-01-18 04:10:44 +01:00
|
|
|
|
2019-01-10 13:03:07 +01:00
|
|
|
const reader = this.reader(payload);
|
2015-01-18 04:10:44 +01:00
|
|
|
|
2019-01-10 13:03:07 +01:00
|
|
|
const data = [];
|
|
|
|
state.raw.data = data;
|
2015-01-18 04:10:44 +01:00
|
|
|
|
2019-01-10 13:03:07 +01:00
|
|
|
while(!reader.done()) {
|
|
|
|
const mark = reader.uint(1);
|
|
|
|
if(mark === 1) {
|
|
|
|
// signed int
|
|
|
|
data.push(reader.int(4));
|
|
|
|
} else if(mark === 3) {
|
|
|
|
// float
|
|
|
|
data.push(reader.float());
|
|
|
|
} else if(mark === 4) {
|
|
|
|
// string
|
2019-02-05 10:19:06 +01:00
|
|
|
data.push(reader.pascalString(2));
|
2019-01-10 13:03:07 +01:00
|
|
|
} else if(mark === 6) {
|
|
|
|
// byte
|
|
|
|
data.push(reader.uint(1));
|
2017-08-09 12:32:09 +02:00
|
|
|
}
|
2019-01-10 13:03:07 +01:00
|
|
|
}
|
2017-08-09 12:32:09 +02:00
|
|
|
|
2019-02-05 10:19:06 +01:00
|
|
|
this.logger.debug("Received raw data array", data);
|
2017-08-09 12:32:09 +02:00
|
|
|
|
2019-02-05 10:19:06 +01:00
|
|
|
if(typeof data[0] === 'number') state.raw.infoVersion = data[0];
|
|
|
|
if(typeof data[1] === 'number') state.raw.version = data[1];
|
|
|
|
if(typeof data[2] === 'string') state.name = data[2];
|
|
|
|
if(typeof data[3] === 'string') state.raw.description = data[3];
|
|
|
|
if(typeof data[4] === 'number') state.raw.startTime = data[4];
|
2021-12-10 01:08:36 +01:00
|
|
|
if(typeof data[5] === 'number') state.players.setNum(data[5]);
|
2019-02-05 10:19:06 +01:00
|
|
|
if(typeof data[6] === 'number') state.maxplayers = data[6];
|
2017-08-09 12:32:09 +02:00
|
|
|
}
|
2017-08-09 11:05:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Starmade;
|