forked from PrismarineJS/bedrock-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
193 lines (168 loc) · 6.45 KB
/
index.d.ts
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
import EventEmitter from "events"
import { Realm } from "prismarine-realms"
declare module "bedrock-protocol" {
type Version = '1.19.2' | '1.19.1' | '1.18.31' | '1.18.30' | '1.18.12' | '1.18.11' | '1.18.10' | '1.18.2' | '1.18.1' | '1.18.0' | '1.17.41' | '1.17.40' | '1.17.34' | '1.17.30' | '1.17.11' | '1.17.10' | '1.17.0' | '1.16.220' | '1.16.210' | '1.16.201'
enum title { MinecraftNintendoSwitch, MinecraftJava }
export interface Options {
// The string version to start the client or server as
version?: string
// For the client, the host of the server to connect to (default: 127.0.0.1)
// For the server, the host to bind to (default: 0.0.0.0)
host: string
// The port to connect or bind to, default: 19132
port?: number
// For the client, if we should login with Microsoft/Xbox Live.
// For the server, if we should verify client's authentication with Xbox Live.
offline?: boolean,
// Whether or not to use C++ version of RakNet
useNativeRaknet?: boolean,
// If using JS implementation of RakNet, should we use workers? (This only affects the client)
useRaknetWorker?: boolean
// Compression level for zlib, default to 7
compressionLevel?: number
// How frequently the packet queue should be flushed in milliseconds, defaults to 20ms
batchingInterval?: number
}
export interface ClientOptions extends Options {
// The username to connect to the server as
username: string,
// The view distance in chunks
viewDistance?: number,
// Specifies which game edition to sign in as. Optional, but some servers verify this.
authTitle?: title | string,
// How long to wait in milliseconds while trying to connect to the server.
connectTimeout?: number
// whether to skip initial ping and immediately connect
skipPing?: boolean
// where to log connection information to (default to console.log)
conLog?
// used to join a Realm instead of supplying a host/port
realms?: RealmsOptions
}
export interface ServerOptions extends Options {
// The maximum number of players allowed on the server at any time.
maxPlayers: number
motd: {
// The header for the MOTD shown in the server list.
motd: string,
// The sub-header for the MOTD shown in the server list.
levelName: string
}
advertisementFn: () => ServerAdvertisement
}
enum ClientStatus {
Disconected, Authenticating, Initializing, Initialized
}
export class Connection extends EventEmitter {
readonly status: ClientStatus
// Check if the passed version is less than or greater than the current connected client version.
versionLessThan(version: string | number)
versionGreaterThan(version: string | number)
// Writes a Minecraft bedrock packet and sends it without queue batching
write(name: string, params: object)
// Adds a Minecraft bedrock packet to be sent in the next outgoing batch
queue(name: string, params: object)
// Writes a MCPE buffer to the connection and skips Protodef serialization. `immediate` if skip queue.
sendBuffer(buffer: Buffer, immediate?: boolean)
}
type PlayStatus =
| 'login_success'
// # Displays "Could not connect: Outdated client!"
| 'failed_client'
// # Displays "Could not connect: Outdated server!"
| 'failed_spawn'
// # Sent after world data to spawn the player
| 'player_spawn'
// # Displays "Unable to connect to world. Your school does not have access to this server."
| 'failed_invalid_tenant'
// # Displays "The server is not running Minecraft: Education Edition. Failed to connect."
| 'failed_vanilla_edu'
// # Displays "The server is running an incompatible edition of Minecraft. Failed to connect."
| 'failed_edu_vanilla'
// # Displays "Wow this server is popular! Check back later to see if space opens up. Server Full"
| 'failed_server_full'
export class Client extends Connection {
constructor(options: Options)
// The client's EntityID returned by the server
readonly entityId: BigInt
/**
* Close the connection, leave the server.
*/
close()
/**
* Send a disconnect packet and close the connection
*/
disconnect()
}
/**
* `Player` represents a player connected to the server.
*/
export class Player extends Connection {
/**
* Disconnects a client before it has logged in via a PlayStatus packet.
* @param {string} playStatus
*/
sendDisconnectStatus(playStatus: PlayStatus)
/**
* Disconnects a client
* @param reason The message to be shown to the user on disconnect
* @param hide Don't show the client the reason for the disconnect
*/
disconnect(reason: string, hide?: boolean)
/**
* Close the connection. Already called by disconnect. Call this to manually close RakNet connection.
*/
close()
}
export class Server extends EventEmitter {
clients: Map<string, Player>
// Connection logging function
conLog: Function
constructor(options: Options)
// Disconnects all currently connected clients
close(disconnectReason: string)
}
type RelayOptions = Options & {
host: string,
port: number,
// Toggle packet logging.
logging: boolean,
// Skip authentication for connecting clients?
offline: false,
// Specifies which game edition to sign in as to the destination server. Optional, but some servers verify this.
authTitle: title | string,
// When enabled it will prompt players to sign-in upon joining.
allowMultiplePlayers: boolean,
// Where to proxy requests to.
destination: {
realms?: RealmsOptions
host: string,
port: number,
// Skip authentication connecting to the remote server?
offline: false,
}
// Whether to enable chunk caching (default: false)
enableChunkCaching?: boolean
}
export class Relay extends Server {
constructor(options: RelayOptions)
}
class ServerAdvertisement {
motd: string
name: string
protocol: number
version: string
playersOnline: number
playersMax: number
gamemode: string
serverId: string
}
export interface RealmsOptions {
realmId?: string
realmInvite?: string
pickRealm?: (realms: Realm[]) => Realm
}
export function createClient(options: ClientOptions): Client
export function createServer(options: ServerOptions): Server
export function ping({ host, port }: { host: string, port: number }): Promise<ServerAdvertisement>
}