-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmindustry.js
91 lines (86 loc) · 2.16 KB
/
mindustry.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
const { EventEmitter } = require("events");
const Packets = require("./lib/Packets");
const NetClient = require("./lib/NetClient");
const NetServer = require("./lib/NetServer");
const DataStream = require("./lib/DataStream");
const Call = require("./lib/Call");
const World = require("./lib/World");
const Utils = require("./lib/Utils");
const dgram = require("dgram");
const mindustry = {};
class Events {
#em;
constructor() {
this.#em = new EventEmitter();
this.#em.setMaxListeners(Infinity)
}
on(a, b) {
this.#em.on(a, b)
}
fire(a, b) {
this.#em.emit(a, b)
}
}
var pingHost = (port, ip, callback) => {
let client = dgram.createSocket("udp4", (msg, info) => {
client.disconnect();
client.unref();
let readString = buf => {
return buf.get(buf.get()).toString()
};
let bbuf = DataStream.from(msg);
callback({
name: readString(bbuf),
map: readString(bbuf),
players: bbuf.getInt(),
wave: bbuf.getInt(),
version: bbuf.getInt(),
vertype: readString(bbuf),
gamemode: bbuf.get(),
limit: bbuf.getInt(),
description: readString(bbuf),
modeName: readString(bbuf),
ip: info.address,
port: info.port
})
});
client.on("connect", () => {
client.send(Buffer.from([-2, 1]))
});
client.on('error', e => {
callback(null, e)
});
client.connect(port, ip);
setTimeout(() => {
if (client.connectState == 2) {
client.disconnect();
client.unref();
callback(null, new Error("Timed out"))
}
}, 2000)
}
class Mindustry {
netClient;
world;
events;
call;
utils;
constructor() {
this.world = new World();
this.events = new Events();
this.call = new Call(this);
this.utils = Utils
}
createClient(){
this.netClient = new NetClient(this);
}
createServer(){
this.netServer = new NetServer(this)
}
}
module.exports = {
pingHost,
NetClient,
Mindustry,
Packets
}