diff options
Diffstat (limited to 'Archipelago/client.gd')
-rw-r--r-- | Archipelago/client.gd | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/Archipelago/client.gd b/Archipelago/client.gd index 7903df2..0625c82 100644 --- a/Archipelago/client.gd +++ b/Archipelago/client.gd | |||
@@ -115,6 +115,7 @@ var _cached_slowness = 0 | |||
115 | var _cached_iceland = 0 | 115 | var _cached_iceland = 0 |
116 | var _cached_atbash = 0 | 116 | var _cached_atbash = 0 |
117 | var _geronimo_skip = false | 117 | var _geronimo_skip = false |
118 | var _checked_paintings = [] | ||
118 | 119 | ||
119 | signal could_not_connect | 120 | signal could_not_connect |
120 | signal connect_status | 121 | signal connect_status |
@@ -356,6 +357,18 @@ func _on_data(): | |||
356 | 357 | ||
357 | requestSync() | 358 | requestSync() |
358 | 359 | ||
360 | sendMessage( | ||
361 | [ | ||
362 | { | ||
363 | "cmd": "Set", | ||
364 | "key": "Lingo_%d_Paintings" % [_slot], | ||
365 | "default": [], | ||
366 | "want_reply": true, | ||
367 | "operations": [{"operation": "default", "value": []}] | ||
368 | } | ||
369 | ] | ||
370 | ) | ||
371 | |||
359 | emit_signal("client_connected") | 372 | emit_signal("client_connected") |
360 | 373 | ||
361 | elif cmd == "ConnectionRefused": | 374 | elif cmd == "ConnectionRefused": |
@@ -471,6 +484,10 @@ func _on_data(): | |||
471 | # Return the player home. | 484 | # Return the player home. |
472 | get_tree().get_root().get_node("Spatial/player/pause_menu")._reload() | 485 | get_tree().get_root().get_node("Spatial/player/pause_menu")._reload() |
473 | 486 | ||
487 | elif cmd == "SetReply": | ||
488 | if message.has("key") and message["key"] == ("Lingo_%d_Paintings" % _slot): | ||
489 | _checked_paintings = message["value"] | ||
490 | |||
474 | 491 | ||
475 | func _process(_delta): | 492 | func _process(_delta): |
476 | if _should_process: | 493 | if _should_process: |
@@ -625,13 +642,14 @@ func sendLocation(loc_id): | |||
625 | _held_locations.append(loc_id) | 642 | _held_locations.append(loc_id) |
626 | 643 | ||
627 | 644 | ||
628 | func setValue(key, value): | 645 | func setValue(key, value, operation = "replace"): |
629 | sendMessage( | 646 | sendMessage( |
630 | [ | 647 | [ |
631 | { | 648 | { |
632 | "cmd": "Set", | 649 | "cmd": "Set", |
633 | "key": "Lingo_%d_%s" % [_slot, key], | 650 | "key": "Lingo_%d_%s" % [_slot, key], |
634 | "operations": [{"operation": "replace", "value": value}] | 651 | "want_reply": false, |
652 | "operations": [{"operation": operation, "value": value}] | ||
635 | } | 653 | } |
636 | ] | 654 | ] |
637 | ) | 655 | ) |
@@ -787,6 +805,15 @@ func geronimo(): | |||
787 | saveLocaldata() | 805 | saveLocaldata() |
788 | 806 | ||
789 | 807 | ||
808 | func checkPainting(painting_id): | ||
809 | if _checked_paintings.has(painting_id): | ||
810 | return | ||
811 | |||
812 | _checked_paintings.append(painting_id) | ||
813 | |||
814 | setValue("Paintings", [painting_id], "add") | ||
815 | |||
816 | |||
790 | func colorForItemType(flags): | 817 | func colorForItemType(flags): |
791 | var int_flags = int(flags) | 818 | var int_flags = int(flags) |
792 | if int_flags & 1: # progression | 819 | if int_flags & 1: # progression |