2024-05-31 02:41:00 +03:00
|
|
|
extends Node
|
|
|
|
|
|
|
|
var world_seed = 0;
|
|
|
|
var world_info = {
|
|
|
|
"seed": 0,
|
|
|
|
"name": "world"
|
|
|
|
}
|
|
|
|
|
|
|
|
func new_world():
|
|
|
|
world_info.seed = round(Time.get_unix_time_from_system())
|
|
|
|
print("World seed is " + str(world_info.seed))
|
|
|
|
print("World name is " + str(world_info.name))
|
|
|
|
|
|
|
|
func save_world():
|
|
|
|
print("Saving world")
|
|
|
|
var save_game = FileAccess.open("user://%s.save" % world_info.name, FileAccess.WRITE)
|
|
|
|
|
|
|
|
# Saving world info
|
2024-06-03 03:02:20 +03:00
|
|
|
var world_save = world_info.duplicate()
|
|
|
|
world_save["node"] = "worldinfo"
|
|
|
|
save_game.store_line(JSON.stringify(world_save))
|
2024-05-31 02:41:00 +03:00
|
|
|
|
|
|
|
var save_nodes = get_tree().get_nodes_in_group("Persistent")
|
|
|
|
|
|
|
|
for node in save_nodes:
|
|
|
|
if node.scene_file_path.is_empty():
|
|
|
|
print("persistent node '%s' is not an instanced scene, skipped" % node.name)
|
|
|
|
continue
|
|
|
|
|
|
|
|
if !node.has_method("save"):
|
|
|
|
print("persistent node '%s' is missing a save() function, skipped" % node.name)
|
|
|
|
continue
|
|
|
|
|
|
|
|
var node_data = node.call("save")
|
|
|
|
if (node_data == {}): continue
|
2024-06-03 22:25:56 +03:00
|
|
|
|
2024-05-31 02:41:00 +03:00
|
|
|
var json_string = JSON.stringify(node_data)
|
|
|
|
|
|
|
|
save_game.store_line(json_string)
|
2024-06-04 00:30:57 +03:00
|
|
|
|
2024-05-31 02:41:00 +03:00
|
|
|
func load_world(save_name):
|
|
|
|
if not FileAccess.file_exists("user://%s.save" % save_name):
|
2024-06-03 02:53:59 +03:00
|
|
|
return
|
|
|
|
|
2024-05-31 02:41:00 +03:00
|
|
|
var save_nodes = get_tree().get_nodes_in_group("Persistent")
|
|
|
|
for i in save_nodes:
|
|
|
|
i.queue_free()
|
|
|
|
|
|
|
|
var save_game = FileAccess.open("user://%s.save" % save_name, FileAccess.READ)
|
|
|
|
|
2024-06-03 02:53:59 +03:00
|
|
|
var earth = get_tree().root.get_node("world/Earth")
|
2024-05-31 02:41:00 +03:00
|
|
|
|
|
|
|
while save_game.get_position() < save_game.get_length():
|
|
|
|
var json_string = save_game.get_line()
|
|
|
|
|
|
|
|
var json = JSON.new()
|
|
|
|
|
|
|
|
var parse_result = json.parse(json_string)
|
|
|
|
if not parse_result == OK:
|
|
|
|
print("JSON Parse Error: ", json.get_error_message(), " in ", json_string, " at line ", json.get_error_line())
|
|
|
|
continue
|
2024-06-03 02:53:59 +03:00
|
|
|
|
2024-05-31 02:41:00 +03:00
|
|
|
var node_data = json.get_data()
|
|
|
|
var new_object
|
|
|
|
match node_data["node"]:
|
|
|
|
"tile":
|
2024-05-31 22:46:56 +03:00
|
|
|
new_object = preload("res://scenes/models/tile.tscn").instantiate()
|
2024-06-03 02:53:59 +03:00
|
|
|
earth.add_child(new_object)
|
2024-06-03 03:02:20 +03:00
|
|
|
new_object.position = Vector3(node_data["pos_x"], node_data["pos_y"], node_data["pos_z"])
|
|
|
|
new_object.add_to_group("Persistent")
|
|
|
|
new_object.update_tile()
|
|
|
|
"worldinfo":
|
|
|
|
world_info = node_data
|
|
|
|
world_info["node"] = null
|
2024-06-04 00:30:57 +03:00
|
|
|
|
2024-06-03 03:02:20 +03:00
|
|
|
continue
|
2024-05-31 02:41:00 +03:00
|
|
|
for i in node_data.keys():
|
|
|
|
if i == "node" or "pos" in i:
|
|
|
|
continue
|
|
|
|
new_object.set(i, node_data[i])
|
2024-06-04 01:32:46 +03:00
|
|
|
new_object._ready() #request ready don't work /shrug
|
2024-06-03 02:53:59 +03:00
|
|
|
await get_tree().physics_frame
|
|
|
|
earth.mark_empty_tiles()
|