mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-16 16:58:32 +01:00
a7c3b5474c
* add top level version on existing entries * start adding version on new protocols WIP * add version to more games * more games with version * add more games * more version * even more games with version * add 'delete state.raw.version' * fix delete version * Update CHANGELOG.md * add version in Results.js * more games * add new game * more games * add version on README * add new game * other game * new game * add unreal2 version * add ventrilo version * add eldewrito eldewrito * add beammp version * fix starmade version * add new version in samp protocol * docs: tweak the changelog line a bit --------- Co-authored-by: CosminPerRam <cosmin.p@live.com>
25 lines
755 B
JavaScript
25 lines
755 B
JavaScript
import Core from './core.js'
|
|
|
|
export default class savage2 extends Core {
|
|
async run (state) {
|
|
const buffer = await this.udpSend('\x01', b => b)
|
|
const reader = this.reader(buffer)
|
|
|
|
reader.skip(12)
|
|
state.name = this.stripColorCodes(reader.string())
|
|
state.numplayers = reader.uint(1)
|
|
state.maxplayers = reader.uint(1)
|
|
state.raw.time = reader.string()
|
|
state.map = reader.string()
|
|
state.raw.nextmap = reader.string()
|
|
state.raw.location = reader.string()
|
|
state.raw.minplayers = reader.uint(1)
|
|
state.raw.gametype = reader.string()
|
|
state.version = reader.string()
|
|
state.raw.minlevel = reader.uint(1)
|
|
}
|
|
|
|
stripColorCodes (str) {
|
|
return this.options.stripColors ? str.replace(/\^./g, '') : str
|
|
}
|
|
}
|