Refactor systems to use EventBus for communication
- Removed direct dependencies on GameState in multiple systems, replacing them with EventBus for event-driven architecture. - Updated CameraShakeSystem to handle focus changes and trauma through EventBus. - Modified DeadliftSystem to manage lift efforts and hazards using EventBus. - Refactored GameManager to handle lift results and day transitions via EventBus. - Adjusted HazardController and HazardSystem to publish and respond to hazard events through EventBus. - Enhanced PlayerInputSystem to publish lift efforts and focus releases using EventBus. - Updated SoundManager to handle various audio events through EventBus, improving sound management. - Refined TunnelSystem to manage focus changes and lift efforts using EventBus. - Adjusted LiftProgressBar to update progress based on events from EventBus. - Enhanced LiftSyncController to synchronize animations based on lift efforts and focus events via EventBus.
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=5 format=3 uid="uid://dxq2510ywj1hy"]
|
||||
|
||||
[ext_resource type="GameState" uid="uid://2gma8vvisnqo" path="res://Resources/GameState.tres" id="1_tik8c"]
|
||||
[ext_resource type="PackedScene" uid="uid://dn8y3bgovnh4a" path="res://Objects/bench_press_stickman.tscn" id="2_0c1tm"]
|
||||
[ext_resource type="Texture2D" uid="uid://dsovna2tmb4o3" path="res://Sprites/bench.png" id="2_ky8t4"]
|
||||
[ext_resource type="Texture2D" uid="uid://cbgn8aspf7oi0" path="res://Sprites/barbell.png" id="3_ky8t4"]
|
||||
@@ -8,7 +7,6 @@
|
||||
[node name="BenchPress" type="Node"]
|
||||
|
||||
[node name="System" type="BenchPressSystem" parent="."]
|
||||
game_state = ExtResource("1_tik8c")
|
||||
|
||||
[node name="Bench" type="Sprite2D" parent="."]
|
||||
position = Vector2(11, 1)
|
||||
@@ -25,6 +23,5 @@ texture = ExtResource("3_ky8t4")
|
||||
[node name="LiftSyncController" type="LiftSyncController" parent="." node_paths=PackedStringArray("player_anim", "barbell")]
|
||||
player_anim = NodePath("../BenchPressStickman")
|
||||
barbell = NodePath("../Barbell")
|
||||
game_state = ExtResource("1_tik8c")
|
||||
animation_name = "default"
|
||||
bar_positions = Array[Vector2]([Vector2(19, -5), Vector2(19, -19), Vector2(21, -36), Vector2(21, -15), Vector2(23, 3), Vector2(22, 11), Vector2(22, -1), Vector2(22, -1)])
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
[gd_scene load_steps=3 format=3 uid="uid://dx1k40qfioaas"]
|
||||
|
||||
[ext_resource type="GameState" uid="uid://2gma8vvisnqo" path="res://Resources/GameState.tres" id="1_n6ace"]
|
||||
[ext_resource type="Texture2D" uid="uid://cbgn8aspf7oi0" path="res://Sprites/barbell.png" id="2_ltxro"]
|
||||
|
||||
[node name="Deadlift" type="Node"]
|
||||
@@ -9,7 +8,6 @@
|
||||
bar_height = 7.0
|
||||
bar_visual = NodePath("../Barbell")
|
||||
end_pos = Vector2(0, -30)
|
||||
game_state = ExtResource("1_n6ace")
|
||||
|
||||
[node name="Barbell" type="Sprite2D" parent="."]
|
||||
scale = Vector2(2, 2)
|
||||
|
||||
@@ -1,12 +1,9 @@
|
||||
[gd_scene load_steps=2 format=3 uid="uid://bqxc62tofqger"]
|
||||
|
||||
[ext_resource type="GameState" uid="uid://2gma8vvisnqo" path="res://Resources/GameState.tres" id="1_strkh"]
|
||||
[gd_scene format=3 uid="uid://bqxc62tofqger"]
|
||||
|
||||
[node name="HazardAnimated" type="HazardController" node_paths=PackedStringArray("anim_sprite", "click_area", "click_shape")]
|
||||
anim_sprite = NodePath("AnimatedSprite2D")
|
||||
click_area = NodePath("Area2D")
|
||||
click_shape = NodePath("Area2D/CollisionShape2D")
|
||||
game_state = ExtResource("1_strkh")
|
||||
|
||||
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user