1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Hurry Curry! - a game about cooking
# Copyright (C) 2025 Hurry Curry! contributors
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
extends Node
class_name Profile
static var default_profile := {
"username": "",
"character_style": {
"color": 0,
"headwear": 0,
"hairstyle": 0
},
"last_server_url": "",
"tutorial_ingredients_played": [],
"registry_asked": false,
"controls_one_handed_explained": false,
"controls_two_handed_explained": false
}
# profile is stored in a Dictionary[String, Any]
static var values: Dictionary
static var loaded_path: String
static func load(path: String):
# TOCTOU here. Godot docs says its fine.
print("Loading profile from %s" % path)
if not FileAccess.file_exists(path):
print(" -> using default profile")
values = default_profile.duplicate_deep()
loaded_path = path
return
var f = FileAccess.open(path, FileAccess.READ)
values = f.get_var(true)
loaded_path = path
if values != null and values is Dictionary:
G.add_missing_keys(values, default_profile)
static func save():
DirAccess.make_dir_recursive_absolute(loaded_path.rsplit("/", true, 1)[0])
var f = FileAccess.open(loaded_path, FileAccess.WRITE)
var to_save = values.duplicate(true)
f.store_var(to_save, true)
static func read(key: String):
if values.has(key):
return values[key]
else:
push_error("Tried to access profile setting \"%s\", which does not exist (missing key)" % key)
return null
static func write(key: String, value):
if !values.has(key):
push_error("Tried to set profile setting \"%s\", which does not yet exist (missing key)" % key)
return
if values[key] != value:
values[key] = value
|