Update utils.ts

This commit is contained in:
q13x 2023-06-18 20:14:32 -08:00 committed by GitHub
parent 6a9d783d4f
commit 2b9d89fb41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,8 @@ const MAX_LIFETIME_CONNECTED = 10 * 60 * 1000, MAX_LIFETIME_AUTH = 5 * 60 * 1000
const REGISTRY = Registry.default('1.8.8'), McBlock = (Block as any).default('1.8.8'), LOGIN_CHUNK = generateSpawnChunk().dump() const REGISTRY = Registry.default('1.8.8'), McBlock = (Block as any).default('1.8.8'), LOGIN_CHUNK = generateSpawnChunk().dump()
const logger = new PLUGIN_MANAGER.Logger("PlayerHandler") const logger = new PLUGIN_MANAGER.Logger("PlayerHandler")
const FORK_URL = "https://repl.it/github/WorldEditAxe/eaglerproxy"
let SERVER: ServerGlobals = null let SERVER: ServerGlobals = null
export function setSG(svr: ServerGlobals) { export function setSG(svr: ServerGlobals) {
@ -125,7 +127,7 @@ export function sendMessageLogin(client: Client, url: string, token: string) {
color: 'gold', color: 'gold',
hoverEvent: { hoverEvent: {
action: "show_text", action: "show_text",
value: Enums.ChatColor.GOLD + "Click me to copy to chat to copy from there!" value: Enums.ChatColor.GOLD + "Click me to copy to chat!"
}, },
clickEvent: { clickEvent: {
action: "suggest_command", action: "suggest_command",
@ -141,6 +143,27 @@ export function sendMessageLogin(client: Client, url: string, token: string) {
}) })
} }
export function sendMessageFork(client: Client, url: string) {
client.write('chat', {
message: JSON.stringify({
text: "Fork me here: ",
color: 'aqua',
extra: [{
text: "<click me to open>",
color: 'green',
clickEvent: {
action: "open_url",
value: url
},
hoverEvent: {
action: "show_text",
value: Enums.ChatColor.GOLD + "Click me to open in a new window!"
}
}]
})
})
}
export function updateState(client: Client, newState: 'AUTH' | 'SERVER', uri?: string, code?: string) { export function updateState(client: Client, newState: 'AUTH' | 'SERVER', uri?: string, code?: string) {
switch(newState) { switch(newState) {
case 'AUTH': case 'AUTH':
@ -172,11 +195,10 @@ export async function onConnect(client: ClientState) {
client.state = ConnectionState.AUTH client.state = ConnectionState.AUTH
client.lastStatusUpdate = Date.now() client.lastStatusUpdate = Date.now()
sendMessageWarning(client.gameClient, `WARNING: This proxy allows you to connect to any 1.8.9 server. Gameplay has shown no major issues, but please note that EaglercraftX may flag some anticheats while playing.`) sendMessageWarning(client.gameClient, `This proxy allows you to connect to any 1.8.9 server. Gameplay has shown no major issues, but please note that EaglercraftX may flag some anticheats while playing.`)
await new Promise(res => setTimeout(res, 2000)) await new Promise(res => setTimeout(res, 2000))
sendMessageWarning(client.gameClient, `WARNING: It is highly suggested that you turn down settings and use Resent Client, as gameplay tends to be very laggy and unplayable on low powered devices.`) sendMessageWarning(client.gameClient, `You will be prompted to log in via Microsoft to obtain a session token necessary to join games. Any data related to your account will not be saved and for transparency reasons this proxy's source code is available on Github. Using any untrusted proxies may put your account at risk.`)
await new Promise(res => setTimeout(res, 2000)) sendMessageFork(client.gameClient, FORK_URL)
sendMessageWarning(client.gameClient, `WARNING: You will be prompted to log in via Microsoft to obtain a session token necessary to join games. Any data related to your account will not be saved and for transparency reasons this proxy's source code is available on Github.`)
await new Promise(res => setTimeout(res, 2000)) await new Promise(res => setTimeout(res, 2000))
client.lastStatusUpdate = Date.now() client.lastStatusUpdate = Date.now()
@ -260,4 +282,4 @@ export function generateSpawnChunk(): Chunk.PCChunk {
chunk.setBlock(new Vec3(8, 66, 9), new McBlock(REGISTRY.blocksByName.barrier.id, REGISTRY.biomesByName.plains.id, 0)) chunk.setBlock(new Vec3(8, 66, 9), new McBlock(REGISTRY.blocksByName.barrier.id, REGISTRY.biomesByName.plains.id, 0))
chunk.setSkyLight(new Vec3(8, 66, 8), 15) chunk.setSkyLight(new Vec3(8, 66, 8), 15)
return chunk return chunk
} }