mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-17 01:08:32 +01:00
23 lines
737 B
JavaScript
23 lines
737 B
JavaScript
import Core from './core.js'
|
|
|
|
export default class factorio extends Core {
|
|
async run (state) {
|
|
if (!this.options.port) this.options.port = 34197
|
|
this.usedTcp = true
|
|
|
|
const serverInfo = await this.request({
|
|
url: `https://multiplayer.factorio.com/get-game-details/${this.options.address}:${this.options.port}`,
|
|
responseType: 'json'
|
|
})
|
|
|
|
const players = serverInfo.players || [] // the 'players' field is undefined if there are no players
|
|
|
|
state.name = serverInfo.name
|
|
state.password = serverInfo.has_password
|
|
state.numplayers = players.length
|
|
state.maxplayers = serverInfo.max_players
|
|
state.players = players.map(player => ({ name: player, raw: {} }))
|
|
|
|
state.raw = serverInfo
|
|
}
|
|
}
|