r3-next/load.gd

24 lines
938 B
GDScript3
Raw Normal View History

2023-11-01 17:35:54 +01:00
extends Node
var file
func _init():
if FileAccess.file_exists(Global.hiscoresfile):
2023-11-23 20:19:21 +01:00
Global.firstrun = false
2023-11-01 17:35:54 +01:00
file = FileAccess.open(Global.hiscoresfile, FileAccess.READ)
2023-11-12 18:20:59 +01:00
Global.levelmax = file.get_as_text().rsplit(",", true, 7)
2023-11-01 17:35:54 +01:00
# We need to revert the game state so we're not cloning objects
# during loading. This will vary wildly depending on the needs of a
# project, so take care with this step.
# For our example, we will accomplish this by deleting saveable objects.
#var save_nodes = get_tree().get_nodes_in_group("Persist")
#for i in save_nodes:
# i.queue_free()
# Load the file line by line and process that dictionary to restore
# the object it represents.
else:
2023-11-23 20:19:21 +01:00
Global.firstrun = true
2023-11-01 17:35:54 +01:00
var saveinit = "9999999,9999999,9999999,9999999,9999999,9999999,9999999"
var file = FileAccess.open(Global.hiscoresfile, FileAccess.WRITE)
file.store_string(saveinit)
2023-11-12 18:20:59 +01:00
Global.levelmax = saveinit.rsplit(",", true, 7)