r3-next/backgounds/abstract.gd

62 lines
1.8 KiB
GDScript3
Raw Normal View History

2023-10-24 22:23:46 +02:00
extends Node2D
# Called when the node enters the scene tree for the first time.
2024-10-29 22:37:39 +01:00
var abstract = load("res://levels/abstract.tscn").instance()
2023-10-24 22:23:46 +02:00
func _ready():
2024-10-29 22:37:39 +01:00
call_deferred("_level")
2023-10-24 22:23:46 +02:00
Global.wait = Time.get_ticks_msec()
#pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
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-10-24 22:23:46 +02:00
_title()
elif Global.live == 2:
_crash()
elif Global.live == 3:
_complete()
#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(abstract)
if Global.debug:
2024-10-29 22:37:39 +01:00
get_tree().change_scene("res://levels/scene.tscn")
2024-01-16 13:58:51 +01:00
else:
2024-10-29 22:37:39 +01:00
get_tree().change_scene("res://title.tscn")
2023-10-24 22:23:46 +02:00
#get_tree().root.add_child(title)
#get_tree().root.remove_child(boot)
#boot.queue_free()
2024-01-16 13:58:51 +01:00
2023-10-24 22:23:46 +02:00
func _crash():
# This is like autoloading the scene, only
# it happens after already loading the main scene.
Global.time = Time.get_ticks_msec() - Global.wait
2024-10-29 22:37:39 +01:00
yield(get_tree().create_timer(1.0), "timeout")
2024-01-14 03:59:55 +01:00
#queue_free()
2023-12-02 21:44:54 +01:00
get_tree().root.remove_child(abstract)
2024-10-29 22:37:39 +01:00
get_tree().change_scene("res://backgounds/supernova.tscn")
2023-10-24 22:23:46 +02:00
#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.
Global.time = Time.get_ticks_msec() - Global.wait
2023-12-02 21:44:54 +01:00
get_tree().root.remove_child(abstract)
2024-10-29 22:37:39 +01:00
get_tree().change_scene("res://levels/credits.tscn")
2023-10-24 22:23:46 +02:00
#get_tree().root.add_child(title)
#get_tree().root.remove_child(boot)
#boot.queue_free()
2024-10-29 22:37:39 +01:00
func _level():
get_tree().root.add_child(abstract)