diff options
Diffstat (limited to 'client/menu/settings/game_setting.gd')
-rw-r--r-- | client/menu/settings/game_setting.gd | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/client/menu/settings/game_setting.gd b/client/menu/settings/game_setting.gd deleted file mode 100644 index 4c8e561a..00000000 --- a/client/menu/settings/game_setting.gd +++ /dev/null @@ -1,46 +0,0 @@ -# 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/>. -# -class_name GameSetting -extends Object - -var default -var key: String -var nskey: String - -func _init(new_id: String, new_default = null): - default = new_default - key = new_id - -func set_parent(parent: GameSetting): - if parent != null: key = parent.key + "." + key - nskey = "c.settings." + key - -func create_row(): - var row = preload("res://menu/settings/settings_row.tscn").instantiate() - row.description = tr(nskey) - row.reset.connect(func(): Global.set_setting(key, default)) - return row - -func check(): - if default != null: - if not key in Global.settings: - Global.set_setting_unchecked(key, default) - if typeof(default) != typeof(Global.settings[key]): - Global.set_setting_unchecked(key, default) - -func changed_keys(): - if Global.get_setting(key) != default: return [key] - else: return [] |