2021-05-09 17:10:24 +02:00
|
|
|
extends Control
|
|
|
|
|
|
2021-05-13 15:53:17 +02:00
|
|
|
const TICKS_TIME_MAX = 100 # msec
|
|
|
|
|
|
2026-05-16 19:18:27 +02:00
|
|
|
@onready var current_scene = null
|
|
|
|
|
@onready var current_scene_int = null
|
|
|
|
|
@onready var loader = null
|
|
|
|
|
@onready var wait_frames = 1
|
|
|
|
|
@onready var database = null
|
|
|
|
|
@onready var loaded = false
|
|
|
|
|
@onready var animation = Loading.get_node("AnimLoading")
|
2021-05-23 21:21:10 +02:00
|
|
|
|
2021-05-09 17:10:24 +02:00
|
|
|
func _ready():
|
2021-06-03 22:18:50 +02:00
|
|
|
database = load("res://scripts/Database.gd").new().initialize()
|
2021-05-29 21:09:10 +02:00
|
|
|
|
2021-06-03 22:18:50 +02:00
|
|
|
_initialize_current_scene()
|
|
|
|
|
_initialize_loading_scene()
|
2021-05-29 21:09:10 +02:00
|
|
|
|
2021-06-03 22:18:50 +02:00
|
|
|
func _initialize_loading_scene():
|
2026-05-16 19:18:27 +02:00
|
|
|
animation.connect("animation_started", Callable(Event, "_loading_is_started"))
|
|
|
|
|
animation.connect("animation_finished", Callable(Event, "_loading_is_finished"))
|
2021-05-09 17:10:24 +02:00
|
|
|
|
|
|
|
|
func goto_scene(path):
|
2021-06-03 22:18:50 +02:00
|
|
|
print("[global#goto_scene] : load scene "+String(path))
|
2026-05-16 19:18:27 +02:00
|
|
|
loader = ResourceLoader.load_threaded_request(path)
|
2021-05-09 17:10:24 +02:00
|
|
|
if loader == null:
|
|
|
|
|
print("Error loading ....")
|
|
|
|
|
return
|
2021-06-03 22:18:50 +02:00
|
|
|
|
|
|
|
|
Loading.show()
|
|
|
|
|
animation.play("BorderAnim")
|
2021-05-09 17:10:24 +02:00
|
|
|
|
|
|
|
|
set_process(true)
|
|
|
|
|
current_scene.queue_free()
|
|
|
|
|
wait_frames = 1
|
2021-06-03 22:18:50 +02:00
|
|
|
Loading.get_node("LoadingBare/VBoxContainer/HBoxContainer/ProgressBar").set_max(loader.get_stage_count())
|
2021-05-29 21:09:10 +02:00
|
|
|
|
2021-05-09 17:10:24 +02:00
|
|
|
func _process(_delta):
|
|
|
|
|
if loader == null:
|
|
|
|
|
set_process(false)
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
if wait_frames > 0:
|
|
|
|
|
wait_frames -= 1
|
|
|
|
|
|
2026-05-16 19:18:27 +02:00
|
|
|
var tick = Time.get_ticks_msec()
|
2021-05-09 17:10:24 +02:00
|
|
|
|
2021-05-13 15:53:17 +02:00
|
|
|
# Use "TICKS_TIME_MAX" to control for how long we block this thread
|
2026-05-16 19:18:27 +02:00
|
|
|
while Time.get_ticks_msec() < tick + TICKS_TIME_MAX:
|
2021-06-03 22:18:50 +02:00
|
|
|
if loaded:
|
|
|
|
|
var err = loader.poll()
|
2021-05-09 17:10:24 +02:00
|
|
|
|
2021-06-03 22:18:50 +02:00
|
|
|
if err == ERR_FILE_EOF: # Finished loading.
|
|
|
|
|
_set_new_scene()
|
|
|
|
|
break
|
|
|
|
|
elif err == OK:
|
|
|
|
|
_update_progress()
|
|
|
|
|
else:
|
|
|
|
|
loader = null
|
|
|
|
|
break
|
2021-05-09 17:10:24 +02:00
|
|
|
|
2021-05-13 15:53:17 +02:00
|
|
|
## PRIVATE
|
|
|
|
|
func _initialize_current_scene():
|
2021-05-13 23:15:05 +02:00
|
|
|
print("[global#_initialize_current_scene]")
|
2021-05-13 15:53:17 +02:00
|
|
|
var root = get_tree().get_root()
|
|
|
|
|
current_scene = root.get_child(root.get_child_count() - 1)
|
|
|
|
|
|
|
|
|
|
if current_scene.name != "Main":
|
|
|
|
|
get_node("/root/Loading").hide()
|
|
|
|
|
|
|
|
|
|
func _update_progress():
|
2021-05-10 15:32:22 +02:00
|
|
|
Loading.visible = true
|
2021-06-03 22:18:50 +02:00
|
|
|
Loading.get_node("LoadingBare/VBoxContainer/HBoxContainer/ProgressBar").set_value(loader.get_stage())
|
2021-05-09 17:10:24 +02:00
|
|
|
|
2021-05-13 15:53:17 +02:00
|
|
|
func _set_new_scene():
|
|
|
|
|
var resource = loader.get_resource()
|
|
|
|
|
loader = null
|
2026-05-16 19:18:27 +02:00
|
|
|
current_scene = resource.instantiate()
|
2021-05-09 17:10:24 +02:00
|
|
|
get_node("/root").add_child(current_scene)
|
2021-06-03 22:18:50 +02:00
|
|
|
Loading.hide()
|