46 lines
1.3 KiB
GDScript
46 lines
1.3 KiB
GDScript
extends Node
|
|
|
|
func _ready():
|
|
pause(true)
|
|
|
|
Global.instance_id = OS.get_process_id() % 4
|
|
Global.username = "user%d" % Global.instance_id
|
|
|
|
%Login.success.connect(on_login)
|
|
%Logout.success.connect(on_logout)
|
|
%Login.send_login()
|
|
|
|
func _input(event):
|
|
if event.is_action_pressed("toggle_fullscreen"):
|
|
toggle_fullscreen()
|
|
get_viewport().set_input_as_handled()
|
|
|
|
func on_login():
|
|
print("[%s] Login succeeded." % Global.username)
|
|
print("[%s] ID: %s" % [Global.username, Global.account_id])
|
|
print("[%s] Auth token: %s" % [Global.username, Global.auth_token])
|
|
|
|
DisplayServer.window_set_title("%s - %s" % [Global.username, Global.account_id])
|
|
DisplayServer.window_set_position(Vector2((Global.instance_id % 2) * 960, (Global.instance_id / 2 % 2) * 540))
|
|
pause(false)
|
|
|
|
func on_logout():
|
|
print("[%s] Logout." % Global.username)
|
|
pause(true)
|
|
|
|
func pause(enabled: bool):
|
|
get_tree().paused = enabled
|
|
mute_audio(enabled)
|
|
|
|
func mute_audio(enabled: bool):
|
|
var master_sound = AudioServer.get_bus_index("Master")
|
|
AudioServer.set_bus_mute(master_sound, enabled)
|
|
|
|
func toggle_fullscreen():
|
|
var mode = DisplayServer.window_get_mode()
|
|
|
|
match mode:
|
|
DisplayServer.WINDOW_MODE_FULLSCREEN:
|
|
DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_WINDOWED)
|
|
_:
|
|
DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_FULLSCREEN) |