From 26cc09241f3ef1ea39cbd880b4e24c30ac0d66b7 Mon Sep 17 00:00:00 2001 From: Evgenij Titarenko Date: Mon, 21 Aug 2023 21:27:22 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=BB=D1=83=D1=87=D1=88=D0=B5=D0=BD=20?= =?UTF-8?q?=D0=BF=D0=BE=D0=B8=D1=81=D0=BA=20=D0=BF=D1=83=D1=82=D0=B5=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- prefabs/enemies/boss/claw.tscn | 5 ++++ prefabs/enemies/living_armor.tscn | 9 ++++-- prefabs/enemies/wretched.tscn | 14 +++++++-- scenes/level.tscn | 49 ++++++++++++++++++++++++++++--- scenes/main_scene.tscn | 4 +-- scripts/enemies/Claw.cs | 13 ++++++-- scripts/enemies/LivingArmor.cs | 18 ++++++++++-- scripts/enemies/Wretched.cs | 13 ++++++-- 8 files changed, 107 insertions(+), 18 deletions(-) diff --git a/prefabs/enemies/boss/claw.tscn b/prefabs/enemies/boss/claw.tscn index 2068990..c7782ea 100644 --- a/prefabs/enemies/boss/claw.tscn +++ b/prefabs/enemies/boss/claw.tscn @@ -27,5 +27,10 @@ shape = SubResource("CircleShape2D_v67co") position = Vector2(-2, 0) shape = SubResource("CircleShape2D_smr3g") +[node name="NavigationAgent2D" type="NavigationAgent2D" parent="."] +avoidance_enabled = true +debug_use_custom = true +debug_path_custom_color = Color(0, 0, 1, 1) + [connection signal="body_entered" from="Area2D" to="." method="_OnEntered"] [connection signal="body_exited" from="Area2D" to="." method="_OnExited"] diff --git a/prefabs/enemies/living_armor.tscn b/prefabs/enemies/living_armor.tscn index 125417d..5d9cf09 100644 --- a/prefabs/enemies/living_armor.tscn +++ b/prefabs/enemies/living_armor.tscn @@ -4,7 +4,7 @@ [ext_resource type="Script" path="res://scripts/enemies/LivingArmor.cs" id="1_ofbsx"] [ext_resource type="PackedScene" uid="uid://cf0wpahgwygxx" path="res://prefabs/light_sense.tscn" id="2_xkyos"] -[sub_resource type="RectangleShape2D" id="RectangleShape2D_d1ojb"] +[sub_resource type="RectangleShape2D" id="RectangleShape2D_8sbby"] size = Vector2(15, 15) [sub_resource type="CircleShape2D" id="CircleShape2D_ex1co"] @@ -33,7 +33,7 @@ polygon = PackedVector2Array(-7, -4, -7, 15, 8, 15, 8, -4, 5, -11, -4, -11) [node name="CollisionShape2D" type="CollisionShape2D" parent="."] position = Vector2(0.5, 7.5) -shape = SubResource("RectangleShape2D_d1ojb") +shape = SubResource("RectangleShape2D_8sbby") [node name="AreaOfSight" type="Area2D" parent="."] @@ -47,6 +47,11 @@ monitorable = false position = Vector2(1, 8) shape = SubResource("CircleShape2D_62y1x") +[node name="NavigationAgent2D" type="NavigationAgent2D" parent="."] +path_desired_distance = 0.1 +target_desired_distance = 0.1 +avoidance_enabled = true + [connection signal="area_entered" from="LightSense" to="." method="_OnLightEntered"] [connection signal="area_exited" from="LightSense" to="." method="_OnLightExited"] [connection signal="body_entered" from="AreaOfSight" to="." method="_OnBodyEntered"] diff --git a/prefabs/enemies/wretched.tscn b/prefabs/enemies/wretched.tscn index 967a61b..6567d43 100644 --- a/prefabs/enemies/wretched.tscn +++ b/prefabs/enemies/wretched.tscn @@ -1,11 +1,11 @@ [gd_scene load_steps=6 format=3 uid="uid://bmyjqerhno5vi"] -[ext_resource type="SpriteFrames" uid="uid://blijqhtsnyq7n" path="res://sprites/enemies/wretched/wretched.tres" id="1_aqrsj"] +[ext_resource type="SpriteFrames" uid="uid://cisc0k30gpx1q" path="res://sprites/enemies/wretched/wretched.tres" id="1_aqrsj"] [ext_resource type="Script" path="res://scripts/enemies/Wretched.cs" id="1_ec388"] [ext_resource type="PackedScene" uid="uid://cf0wpahgwygxx" path="res://prefabs/light_sense.tscn" id="2_16fib"] [sub_resource type="RectangleShape2D" id="RectangleShape2D_svj4b"] -size = Vector2(24, 16) +size = Vector2(15, 15) [sub_resource type="CircleShape2D" id="CircleShape2D_nortt"] radius = 15.0 @@ -28,7 +28,7 @@ frame_progress = 0.776966 polygon = PackedVector2Array(-5, -16, -7, -3, -7, 9, -11, 14, -11, 16, 8, 16, 8, 8, 7, 4, 7, -16) [node name="CollisionShape2D" type="CollisionShape2D" parent="."] -position = Vector2(1, 8) +position = Vector2(0, 8) shape = SubResource("RectangleShape2D_svj4b") [node name="PlayerCollision" type="Area2D" parent="."] @@ -38,5 +38,13 @@ monitorable = false position = Vector2(1, 8) shape = SubResource("CircleShape2D_nortt") +[node name="NavigationAgent2D" type="NavigationAgent2D" parent="."] +path_desired_distance = 0.1 +target_desired_distance = 0.1 +avoidance_enabled = true +avoidance_mask = 2 +debug_use_custom = true +debug_path_custom_color = Color(0, 1, 0, 1) + [connection signal="area_entered" from="LightSense" to="." method="_OnLightEntered"] [connection signal="body_entered" from="PlayerCollision" to="." method="_OnPlayerCollision"] diff --git a/scenes/level.tscn b/scenes/level.tscn index b9aada4..aa9f8bc 100644 --- a/scenes/level.tscn +++ b/scenes/level.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=23 format=3 uid="uid://cn0rwyjern2vx"] +[gd_scene load_steps=28 format=3 uid="uid://cn0rwyjern2vx"] [ext_resource type="Script" path="res://scripts/Level.cs" id="1_cxv3e"] [ext_resource type="TileSet" uid="uid://c7x8hryljgpha" path="res://sprites/tiles/QoL.tres" id="1_kp7y7"] @@ -14,8 +14,8 @@ [ext_resource type="PackedScene" uid="uid://bo5we64scaa1x" path="res://prefabs/furniture/table2.tscn" id="11_43o4k"] [ext_resource type="PackedScene" uid="uid://cvfk53tse4okx" path="res://prefabs/furniture/book.tscn" id="12_7tfnm"] [ext_resource type="PackedScene" uid="uid://ccg3n7sobsvdw" path="res://prefabs/enemies/watcher.tscn" id="13_nbkmp"] -[ext_resource type="PackedScene" path="res://prefabs/enemies/living_armor.tscn" id="14_4tmmq"] -[ext_resource type="PackedScene" path="res://prefabs/enemies/wretched.tscn" id="15_3rigu"] +[ext_resource type="PackedScene" uid="uid://bpusphyhhg074" path="res://prefabs/enemies/living_armor.tscn" id="14_4tmmq"] +[ext_resource type="PackedScene" uid="uid://bmyjqerhno5vi" path="res://prefabs/enemies/wretched.tscn" id="15_3rigu"] [ext_resource type="PackedScene" uid="uid://crulyoxqqw74r" path="res://prefabs/entities/Teleport.tscn" id="16_c6ifr"] [ext_resource type="PackedScene" uid="uid://dteeck6gict0d" path="res://prefabs/entities/teleport_dest.tscn" id="17_0di6y"] [ext_resource type="PackedScene" uid="uid://cpi5lgdlnvhlg" path="res://prefabs/enemies/boss/boss.tscn" id="18_8j1w1"] @@ -24,6 +24,31 @@ [sub_resource type="RectangleShape2D" id="RectangleShape2D_kwmx6"] +[sub_resource type="NavigationPolygon" id="NavigationPolygon_ngvpl"] +vertices = PackedVector2Array(312, -944, 192, -944, 40, -984, 96, -984, 320, -816, 200, -816, 48, -888, 56, -888, 40, -760, 56, -760, 440, -584, -120, -584, -120, -720, 312, -888, 440, -1080, 280, -984, 280, -1032, -72, -760, -120, -1080, 224, -1032, 224, -984, 144, -984, 144, -1032, 96, -1032, 192, -888, 176, -888, 176, -944, 56, -944, -8, -984, 200, -760, 176, -760, 176, -816, 56, -816, -72, -888, 440, -376, 440, -168, 168, -168, 168, -296, -232, -376, -408, -296, -408, -856, -232, -720, -120, -856, -80, -816, 320, -760, -72, -944, 40, -816, 48, -944, -8, -1032, 40, -1032) +polygons = Array[PackedInt32Array]([PackedInt32Array(0, 1, 2, 3), PackedInt32Array(4, 5, 6, 7), PackedInt32Array(8, 9, 10, 11, 12), PackedInt32Array(13, 0, 14, 10, 4), PackedInt32Array(14, 0, 15, 16), PackedInt32Array(17, 8, 12), PackedInt32Array(18, 14, 16, 19), PackedInt32Array(19, 20, 21, 22), PackedInt32Array(18, 19, 22), PackedInt32Array(18, 22, 23), PackedInt32Array(1, 24, 25, 26), PackedInt32Array(2, 1, 26), PackedInt32Array(2, 26, 27, 28), PackedInt32Array(5, 29, 30, 31), PackedInt32Array(6, 5, 31), PackedInt32Array(6, 31, 32, 33), PackedInt32Array(34, 35, 36, 37), PackedInt32Array(38, 34, 37, 39), PackedInt32Array(38, 39, 40, 41), PackedInt32Array(17, 12, 41, 40, 42, 43), PackedInt32Array(29, 44, 10), PackedInt32Array(20, 15, 0), PackedInt32Array(33, 43, 42, 18, 45), PackedInt32Array(30, 29, 10), PackedInt32Array(10, 44, 4), PackedInt32Array(24, 13, 4), PackedInt32Array(9, 30, 10), PackedInt32Array(32, 9, 8, 46), PackedInt32Array(33, 32, 46), PackedInt32Array(33, 46, 43), PackedInt32Array(25, 24, 4), PackedInt32Array(7, 25, 4), PackedInt32Array(27, 7, 6, 47), PackedInt32Array(28, 27, 47), PackedInt32Array(28, 47, 45), PackedInt32Array(28, 45, 18, 48), PackedInt32Array(21, 20, 0), PackedInt32Array(49, 48, 18), PackedInt32Array(49, 18, 23), PackedInt32Array(49, 23, 3, 2), PackedInt32Array(0, 3, 21)]) +outlines = Array[PackedVector2Array]([PackedVector2Array(168, -168, 440, -168, 440, -376, -232, -376, -232, -720, -120, -720, -120, -584, 440, -584, 440, -1080, -120, -1080, -120, -856, -408, -856, -408, -296, 168, -296), PackedVector2Array(-72, -760, 40, -760, 40, -816, -80, -816), PackedVector2Array(56, -816, 56, -760, 176, -760, 176, -816), PackedVector2Array(200, -760, 320, -760, 320, -816, 200, -816), PackedVector2Array(-72, -888, 48, -888, 48, -944, -72, -944), PackedVector2Array(56, -944, 56, -888, 176, -888, 176, -944), PackedVector2Array(192, -888, 312, -888, 312, -944, 192, -944), PackedVector2Array(-8, -984, 40, -984, 40, -1032, -8, -1032), PackedVector2Array(96, -984, 144, -984, 144, -1032, 96, -1032), PackedVector2Array(224, -1032, 224, -984, 280, -984, 280, -1032)]) + +[sub_resource type="NavigationPolygon" id="NavigationPolygon_v2a1f"] +vertices = PackedVector2Array(897, -96, 897, 129, 607, 129, 607, -96) +polygons = Array[PackedInt32Array]([PackedInt32Array(0, 1, 2, 3)]) +outlines = Array[PackedVector2Array]([PackedVector2Array(607, -96, 607, 129, 897, 129, 897, -96)]) + +[sub_resource type="NavigationPolygon" id="NavigationPolygon_2d3fn"] +vertices = PackedVector2Array(897, -512, 897, -287, 607, -287, 607, -512) +polygons = Array[PackedInt32Array]([PackedInt32Array(0, 1, 2, 3)]) +outlines = Array[PackedVector2Array]([PackedVector2Array(607, -512, 607, -287, 897, -287, 897, -512)]) + +[sub_resource type="NavigationPolygon" id="NavigationPolygon_ackae"] +vertices = PackedVector2Array(447, 832, 865, 832, 865, 1153, 447, 1153) +polygons = Array[PackedInt32Array]([PackedInt32Array(0, 1, 2, 3)]) +outlines = Array[PackedVector2Array]([PackedVector2Array(447, 1153, 865, 1153, 865, 832, 447, 832)]) + +[sub_resource type="NavigationPolygon" id="NavigationPolygon_wwnnq"] +vertices = PackedVector2Array(-48, -1870, 242, -1870, 242, -1645, -48, -1645) +polygons = Array[PackedInt32Array]([PackedInt32Array(0, 1, 2, 3)]) +outlines = Array[PackedVector2Array]([PackedVector2Array(-48, -1645, 242, -1645, 242, -1870, -48, -1870)]) + [node name="level" type="Node2D"] script = ExtResource("1_cxv3e") @@ -312,7 +337,7 @@ position = Vector2(630, -730) position = Vector2(322, -381) [node name="Wretched" parent="." instance=ExtResource("15_3rigu")] -position = Vector2(181, -383) +position = Vector2(216, -381) [node name="Wretched2" parent="." instance=ExtResource("15_3rigu")] position = Vector2(-241, -457) @@ -445,6 +470,22 @@ Facing = 2 [node name="And_puzzle_4" parent="." instance=ExtResource("20_1ng7x")] CountOfButtons = 4 +[node name="NavigationRegion2D" type="NavigationRegion2D" parent="."] +navigation_polygon = SubResource("NavigationPolygon_ngvpl") + +[node name="NavigationRegion2D2" type="NavigationRegion2D" parent="."] +navigation_polygon = SubResource("NavigationPolygon_v2a1f") + +[node name="NavigationRegion2D3" type="NavigationRegion2D" parent="."] +navigation_polygon = SubResource("NavigationPolygon_2d3fn") + +[node name="NavigationRegion2D4" type="NavigationRegion2D" parent="."] +navigation_polygon = SubResource("NavigationPolygon_ackae") + +[node name="NavigationRegion2D5" type="NavigationRegion2D" parent="."] +position = Vector2(655, 942) +navigation_polygon = SubResource("NavigationPolygon_wwnnq") + [connection signal="ButtonPressed" from="pressure_plate_puzzle_1" to="door_closed_puzzle_1" method="Open"] [connection signal="ButtonUnpressed" from="pressure_plate_puzzle_1" to="door_closed_puzzle_1" method="Close"] [connection signal="ButtonPressed" from="pressure_plate_puzzle_2" to="door_closed_puzzle_2" method="Open"] diff --git a/scenes/main_scene.tscn b/scenes/main_scene.tscn index f6d4957..6d3771f 100644 --- a/scenes/main_scene.tscn +++ b/scenes/main_scene.tscn @@ -22,7 +22,7 @@ point_count = 2 [sub_resource type="ShaderMaterial" id="ShaderMaterial_m680d"] shader = ExtResource("5_64d71") -[sub_resource type="ViewportTexture" id="ViewportTexture_57pph"] +[sub_resource type="ViewportTexture" id="ViewportTexture_kr1ga"] viewport_path = NodePath("FlashlightViewport") [sub_resource type="CircleShape2D" id="CircleShape2D_prnh4"] @@ -243,7 +243,7 @@ CameraBounds = Vector2(30, 20) [node name="PointLight2D" type="PointLight2D" parent="PlayerCamera" node_paths=PackedStringArray("LightViewport")] blend_mode = 2 range_item_cull_mask = 2 -texture = SubResource("ViewportTexture_57pph") +texture = SubResource("ViewportTexture_kr1ga") script = ExtResource("6_slohe") LightViewport = NodePath("../../FlashlightViewport") diff --git a/scripts/enemies/Claw.cs b/scripts/enemies/Claw.cs index bcb1525..bd6ba5b 100644 --- a/scripts/enemies/Claw.cs +++ b/scripts/enemies/Claw.cs @@ -17,11 +17,14 @@ public partial class Claw : CharacterBody2D private float _stateTimeout = 0; private bool _isPlayerNearBy = false; private AnimatedSprite2D _sprite; + private NavigationAgent2D _nav; // Called when the node enters the scene tree for the first time. public override void _Ready() { _sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D"); + _nav = (NavigationAgent2D)FindChild("NavigationAgent2D"); + _nav.VelocityComputed += OnNavVelocityCompute; } // Called every frame. 'delta' is the elapsed time since the previous frame. @@ -38,10 +41,11 @@ public partial class Claw : CharacterBody2D break; case State.Moving: - var direction = (Player.Instance.Position - Position).Normalized(); - Velocity = direction * MovingSpeed; + _nav.TargetPosition = Player.Instance.Position; + var direction = (_nav.GetNextPathPosition() - Position).Normalized(); _sprite.FlipH = Velocity.X < 0.001f; _sprite.Play("default"); + _nav.Velocity = direction * MovingSpeed; MoveAndSlide(); break; case State.Prepare: @@ -87,4 +91,9 @@ public partial class Claw : CharacterBody2D GD.Print("Boss enabled"); _state = State.Moving; } + + private void OnNavVelocityCompute(Vector2 safeVelocity) + { + Velocity = safeVelocity; + } } diff --git a/scripts/enemies/LivingArmor.cs b/scripts/enemies/LivingArmor.cs index 0f43f3d..c773dc8 100644 --- a/scripts/enemies/LivingArmor.cs +++ b/scripts/enemies/LivingArmor.cs @@ -48,6 +48,7 @@ public partial class LivingArmor : CharacterBody2D private State _state; private float _timeSinceState; private AnimatedSprite2D _sprite; + private NavigationAgent2D _nav; private bool _isLitUp; //private readonly List _bodiesInSight = new List(); private readonly List _bodiesInSight = new List(); @@ -58,6 +59,8 @@ public partial class LivingArmor : CharacterBody2D public override void _Ready() { _sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D"); + _nav = (NavigationAgent2D)FindChild("NavigationAgent2D"); + _nav.VelocityComputed += OnNavVelocityCompute; _respawnPosition = Position; CurrentState = State.Waiting; var animationName = "side_walk"; @@ -78,6 +81,7 @@ public partial class LivingArmor : CharacterBody2D _sprite.Play(animationName); _sprite.Stop(); + } public override void _Process(double delta) @@ -127,13 +131,15 @@ public partial class LivingArmor : CharacterBody2D } break; } + if (_target is null) { _state = State.Waiting; return; } - var direction = (_target.Position - Position).Normalized(); - Velocity = direction * MovingSpeed; + + _nav.TargetPosition = _target.Position; + var direction = (_nav.GetNextPathPosition() - GlobalPosition).Normalized(); var animationName = "side_walk"; @@ -147,8 +153,8 @@ public partial class LivingArmor : CharacterBody2D _sprite.FlipH = Velocity.X < 0.001f && animationName == "side_walk"; _sprite.Play(animationName); + _nav.Velocity = direction * MovingSpeed; MoveAndSlide(); - //MoveAndCollide(direction); break; } @@ -252,5 +258,11 @@ public partial class LivingArmor : CharacterBody2D Position = _respawnPosition; // QueueFree(); // TODO } + + private void OnNavVelocityCompute(Vector2 safeVelocity) + { + Velocity = safeVelocity; + } + } diff --git a/scripts/enemies/Wretched.cs b/scripts/enemies/Wretched.cs index 9e959ee..da29cc0 100644 --- a/scripts/enemies/Wretched.cs +++ b/scripts/enemies/Wretched.cs @@ -50,11 +50,14 @@ public partial class Wretched : CharacterBody2D private State _state; private float _timeSinceState; private AnimatedSprite2D _sprite; + private NavigationAgent2D _nav; private bool _isActivated; public override void _Ready() { _sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D"); + _nav = (NavigationAgent2D)FindChild("NavigationAgent2D"); + _nav.VelocityComputed += OnNavVelocityCompute; CurrentState = State.Waiting; var animationName = "NonActivatedSide"; switch (Facing) @@ -93,8 +96,8 @@ public partial class Wretched : CharacterBody2D break; case State.Moving: - var direction = (Player.Instance.Position - Position).Normalized(); - Velocity = direction * MovingSpeed; + _nav.TargetPosition = Player.Instance.Position; + var direction = (_nav.GetNextPathPosition() - Position).Normalized(); var animationName = "ActivatedSide"; @@ -108,6 +111,7 @@ public partial class Wretched : CharacterBody2D _sprite.FlipH = Velocity.X < 0.001f && animationName == "ActivatedSide"; _sprite.Play(animationName); + _nav.Velocity = direction * MovingSpeed; MoveAndSlide(); break; } @@ -158,4 +162,9 @@ public partial class Wretched : CharacterBody2D EmitSignal(SignalName.Killed); QueueFree(); // TODO } + + private void OnNavVelocityCompute(Vector2 safeVelocity) + { + Velocity = safeVelocity; + } }