2023-09-06 20:45:24 +02:00
|
|
|
extends Node2D
|
|
|
|
|
|
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
var wormhole = load("res://levels/wormhole.tscn").instantiate()
|
|
|
|
|
|
|
|
func _ready():
|
|
|
|
get_tree().root.add_child.call_deferred(wormhole)
|
2023-10-24 18:36:04 +02:00
|
|
|
Global.wait = Time.get_ticks_msec()
|
2023-09-06 20:45:24 +02:00
|
|
|
#pass # Replace with function body.
|
|
|
|
|
|
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
|
|
func _process(delta):
|
2023-10-24 18:36:04 +02:00
|
|
|
if Time.get_ticks_msec() - Global.wait > Global.timelimit:
|
|
|
|
Global.live = 2
|
2024-01-16 13:58:51 +01:00
|
|
|
if Global.live == 0 || Input.is_action_just_pressed("ui_cancel"):
|
2023-09-08 21:50:34 +02:00
|
|
|
_title()
|
2023-09-08 22:55:16 +02:00
|
|
|
elif Global.live == 2:
|
|
|
|
_crash()
|
|
|
|
elif Global.live == 3:
|
|
|
|
_complete()
|
2023-09-07 19:22:40 +02:00
|
|
|
#pass
|
|
|
|
|
|
|
|
func _title():
|
|
|
|
# This is like autoloading the scene, only
|
|
|
|
# it happens after already loading the main scene.
|
2024-01-16 13:58:51 +01:00
|
|
|
get_tree().root.remove_child(wormhole)
|
|
|
|
if Global.debug:
|
|
|
|
get_tree().change_scene_to_file("res://levels/scene.tscn")
|
|
|
|
else:
|
2023-09-07 19:22:40 +02:00
|
|
|
get_tree().change_scene_to_file("res://title.tscn")
|
|
|
|
#get_tree().root.add_child(title)
|
|
|
|
#get_tree().root.remove_child(boot)
|
|
|
|
#boot.queue_free()
|
2023-09-08 22:55:16 +02:00
|
|
|
|
2024-01-16 13:58:51 +01:00
|
|
|
|
2023-09-08 22:55:16 +02:00
|
|
|
func _crash():
|
|
|
|
# This is like autoloading the scene, only
|
|
|
|
# it happens after already loading the main scene.
|
2023-10-24 18:36:04 +02:00
|
|
|
Global.time = Time.get_ticks_msec() - Global.wait
|
2023-10-02 23:40:22 +02:00
|
|
|
await get_tree().create_timer(1.0).timeout
|
2024-01-14 03:59:55 +01:00
|
|
|
#queue_free()
|
2023-09-08 22:55:16 +02:00
|
|
|
get_tree().root.remove_child(wormhole)
|
|
|
|
get_tree().change_scene_to_file("res://backgounds/supernova.tscn")
|
|
|
|
#get_tree().root.add_child(title)
|
|
|
|
#get_tree().root.remove_child(boot)
|
|
|
|
#boot.queue_free()
|
|
|
|
|
|
|
|
func _complete():
|
|
|
|
# This is like autoloading the scene, only
|
|
|
|
# it happens after already loading the main scene.
|
2023-10-24 18:36:04 +02:00
|
|
|
Global.time = Time.get_ticks_msec() - Global.wait
|
2023-09-08 22:55:16 +02:00
|
|
|
get_tree().root.remove_child(wormhole)
|
2023-09-24 22:06:56 +02:00
|
|
|
get_tree().change_scene_to_file("res://levels/credits.tscn")
|
2023-09-08 22:55:16 +02:00
|
|
|
#get_tree().root.add_child(title)
|
|
|
|
#get_tree().root.remove_child(boot)
|
|
|
|
#boot.queue_free()
|