oh-my-git/scenes/game.gd

76 lines
1.9 KiB
GDScript3
Raw Normal View History

2020-01-29 20:25:13 +01:00
extends Node
2020-10-26 19:56:52 +01:00
var tmp_prefix = OS.get_user_data_dir() + "/tmp/"
var global_shell
var fake_editor
2020-01-29 20:25:13 +01:00
var dragged_object
2020-10-15 15:22:38 +02:00
var energy = 2
2021-01-21 15:08:59 +01:00
var used_cards = false
var current_chapter = 0
var current_level = 0
2020-09-28 16:18:06 +02:00
var _file = "user://savegame.json"
var state = {}
2020-01-29 20:25:13 +01:00
func _ready():
global_shell = Shell.new()
create_file_in_game_env(".gitconfig", helpers.read_file("res://scripts/gitconfig"))
copy_script_to_game_env("fake-editor")
copy_script_to_game_env("hint")
2020-09-28 16:18:06 +02:00
load_state()
func copy_script_to_game_env(name):
create_file_in_game_env(name, helpers.read_file("res://scripts/%s" % name))
global_shell.run("chmod u+x '%s'" % (tmp_prefix + name))
2020-09-28 16:18:06 +02:00
func _initial_state():
2021-01-21 15:08:59 +01:00
return {"history": [], "solved_levels": [], "received_hints": [], "cli_badge": []}
2020-09-28 16:18:06 +02:00
func save_state():
2020-09-28 16:18:06 +02:00
var savegame = File.new()
savegame.open(_file, File.WRITE)
savegame.store_line(to_json(state))
savegame.close()
func load_state():
2020-09-28 16:18:06 +02:00
var savegame = File.new()
if not savegame.file_exists(_file):
save_state()
savegame.open(_file, File.READ)
state = _initial_state()
var new_state = parse_json(savegame.get_line())
for key in new_state:
state[key] = new_state[key]
savegame.close()
# filename is relative to the tmp directory!
func create_file_in_game_env(filename, content):
global_shell.cd(tmp_prefix)
# Quoted HERE doc doesn't do any substitutions inside.
global_shell.run("cat > '%s' <<'HEREHEREHERE'\n%s\nHEREHEREHERE" % [filename, content])
2020-12-22 15:38:43 +01:00
func notify(text, target=null, hint_slug=null):
if hint_slug:
if not state.has("received_hints"):
state["received_hints"] = []
if hint_slug in state["received_hints"]:
return
2020-12-22 15:38:43 +01:00
var notification = preload("res://scenes/notification.tscn").instance()
notification.text = text
if not target:
target = get_tree().root
target.call_deferred("add_child", notification)
if hint_slug:
state["received_hints"].push_back(hint_slug)
save_state()