diff options
author | nokoe <nokoe@mailbox.org> | 2024-06-25 22:31:17 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-06-25 23:39:19 +0200 |
commit | 8bb065604fbd12b14a7605cfa265ebf38890f628 (patch) | |
tree | 811866aec6093924694605155d9962261c57cb17 /client/map | |
parent | ab6279e726ac7e10a4c5211a3d3827471fd35ccf (diff) | |
download | hurrycurry-8bb065604fbd12b14a7605cfa265ebf38890f628.tar hurrycurry-8bb065604fbd12b14a7605cfa265ebf38890f628.tar.bz2 hurrycurry-8bb065604fbd12b14a7605cfa265ebf38890f628.tar.zst |
multiplayer refactor
Diffstat (limited to 'client/map')
-rw-r--r-- | client/map/map.gd | 37 | ||||
-rw-r--r-- | client/map/map.tscn | 44 |
2 files changed, 41 insertions, 40 deletions
diff --git a/client/map/map.gd b/client/map/map.gd deleted file mode 100644 index d43d7b45..00000000 --- a/client/map/map.gd +++ /dev/null @@ -1,37 +0,0 @@ -# Undercooked - a game about cooking -# Copyright 2024 nokoe -# Copyright 2024 tpart -# Copyright 2024 metamuffin -# -# 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 Map -extends Node3D - -var tile_by_pos: Dictionary = {} - -func update(pos, tile_name, neighbors): - var node_name = str(pos) - - if has_node(node_name): - queue_free_rename(get_node(node_name)) - - var instance: Tile = TileFactory.produce(tile_name, node_name, neighbors) - - instance.position = Vector3(pos[0], 0, pos[1]) - tile_by_pos[str(Vector2i(pos[0], pos[1]))] = instance - add_child(instance) - -func queue_free_rename(node: Node) -> void: - node.name += "_queued_free" - node.queue_free() diff --git a/client/map/map.tscn b/client/map/map.tscn index 66e2c63a..612729f4 100644 --- a/client/map/map.tscn +++ b/client/map/map.tscn @@ -1,6 +1,44 @@ -[gd_scene load_steps=2 format=3 uid="uid://cs8gxa22c6joh"] +[gd_scene load_steps=2 format=3 uid="uid://duqkg22yre6ry"] -[ext_resource type="Script" path="res://map/map.gd" id="1_stp8c"] +[sub_resource type="GDScript" id="GDScript_qftmc"] +script/source = "# Undercooked - a game about cooking +# Copyright 2024 nokoe +# Copyright 2024 tpart +# Copyright 2024 metamuffin +# +# 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 Map +extends Node3D + +var tile_by_pos: Dictionary = {} + +func update(pos, tile_name, neighbors): + var node_name = str(pos) + + if has_node(node_name): + queue_free_rename(get_node(node_name)) + + var instance: Tile = TileFactory.produce(tile_name, node_name, neighbors) + + instance.position = Vector3(pos[0], 0, pos[1]) + tile_by_pos[str(Vector2i(pos[0], pos[1]))] = instance + add_child(instance) + +func queue_free_rename(node: Node) -> void: + node.name += \"_queued_free\" + node.queue_free() +" [node name="Map" type="Node3D"] -script = ExtResource("1_stp8c") +script = SubResource("GDScript_qftmc") |