diff options
Diffstat (limited to 'Archipelago/client.gd')
-rw-r--r-- | Archipelago/client.gd | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/Archipelago/client.gd b/Archipelago/client.gd index bc952b9..1966374 100644 --- a/Archipelago/client.gd +++ b/Archipelago/client.gd | |||
@@ -18,7 +18,7 @@ var enable_multiplayer = false | |||
18 | var track_player = false | 18 | var track_player = false |
19 | var connection_history = [] | 19 | var connection_history = [] |
20 | 20 | ||
21 | const my_version = "3.0.1" | 21 | const my_version = "3.1.0" |
22 | const ap_version = {"major": 0, "minor": 4, "build": 6, "class": "Version"} | 22 | const ap_version = {"major": 0, "minor": 4, "build": 6, "class": "Version"} |
23 | const color_items = [ | 23 | const color_items = [ |
24 | "White", "Black", "Red", "Blue", "Green", "Brown", "Gray", "Orange", "Purple", "Yellow" | 24 | "White", "Black", "Red", "Blue", "Green", "Brown", "Gray", "Orange", "Purple", "Yellow" |
@@ -116,6 +116,7 @@ var _cached_slowness = 0 | |||
116 | var _cached_iceland = 0 | 116 | var _cached_iceland = 0 |
117 | var _cached_atbash = 0 | 117 | var _cached_atbash = 0 |
118 | var _geronimo_skip = false | 118 | var _geronimo_skip = false |
119 | var _checked_paintings = [] | ||
119 | 120 | ||
120 | signal could_not_connect | 121 | signal could_not_connect |
121 | signal connect_status | 122 | signal connect_status |
@@ -366,6 +367,18 @@ func _on_data(): | |||
366 | 367 | ||
367 | requestSync() | 368 | requestSync() |
368 | 369 | ||
370 | sendMessage( | ||
371 | [ | ||
372 | { | ||
373 | "cmd": "Set", | ||
374 | "key": "Lingo_%d_Paintings" % [_slot], | ||
375 | "default": [], | ||
376 | "want_reply": true, | ||
377 | "operations": [{"operation": "default", "value": []}] | ||
378 | } | ||
379 | ] | ||
380 | ) | ||
381 | |||
369 | emit_signal("client_connected") | 382 | emit_signal("client_connected") |
370 | 383 | ||
371 | elif cmd == "ConnectionRefused": | 384 | elif cmd == "ConnectionRefused": |
@@ -483,6 +496,10 @@ func _on_data(): | |||
483 | # Return the player home. | 496 | # Return the player home. |
484 | get_tree().get_root().get_node("Spatial/player/pause_menu")._reload() | 497 | get_tree().get_root().get_node("Spatial/player/pause_menu")._reload() |
485 | 498 | ||
499 | elif cmd == "SetReply": | ||
500 | if message.has("key") and message["key"] == ("Lingo_%d_Paintings" % _slot): | ||
501 | _checked_paintings = message["value"] | ||
502 | |||
486 | 503 | ||
487 | func _process(_delta): | 504 | func _process(_delta): |
488 | if _should_process: | 505 | if _should_process: |
@@ -641,13 +658,14 @@ func sendLocation(loc_id): | |||
641 | _held_locations.append(loc_id) | 658 | _held_locations.append(loc_id) |
642 | 659 | ||
643 | 660 | ||
644 | func setValue(key, value): | 661 | func setValue(key, value, operation = "replace"): |
645 | sendMessage( | 662 | sendMessage( |
646 | [ | 663 | [ |
647 | { | 664 | { |
648 | "cmd": "Set", | 665 | "cmd": "Set", |
649 | "key": "Lingo_%d_%s" % [_slot, key], | 666 | "key": "Lingo_%d_%s" % [_slot, key], |
650 | "operations": [{"operation": "replace", "value": value}] | 667 | "want_reply": false, |
668 | "operations": [{"operation": operation, "value": value}] | ||
651 | } | 669 | } |
652 | ] | 670 | ] |
653 | ) | 671 | ) |
@@ -803,6 +821,15 @@ func geronimo(): | |||
803 | saveLocaldata() | 821 | saveLocaldata() |
804 | 822 | ||
805 | 823 | ||
824 | func checkPainting(painting_id): | ||
825 | if _checked_paintings.has(painting_id): | ||
826 | return | ||
827 | |||
828 | _checked_paintings.append(painting_id) | ||
829 | |||
830 | setValue("Paintings", [painting_id], "add") | ||
831 | |||
832 | |||
806 | func colorForItemType(flags): | 833 | func colorForItemType(flags): |
807 | var int_flags = int(flags) | 834 | var int_flags = int(flags) |
808 | if int_flags & 1: # progression | 835 | if int_flags & 1: # progression |