diff --git a/scenes/Day1.tscn b/scenes/Day1.tscn index 2a058c0..c492392 100644 --- a/scenes/Day1.tscn +++ b/scenes/Day1.tscn @@ -56,6 +56,7 @@ stream_0 = ExtResource("9_43nb0") [node name="Test" type="Node2D"] script = ExtResource("1_cko08") NextScene = "Day2" +IsCaptainDisabled = true [node name="Sprite2D" type="Sprite2D" parent="."] texture = ExtResource("1_a6v5r") @@ -270,8 +271,10 @@ AreaRadius = 20.0 [node name="Day1Cutscene" parent="." instance=ExtResource("14_t3ylj")] position = Vector2(1275, 18) +[connection signal="DialogEnded" from="NPCs/Eugene" to="." method="EnableEngine"] [connection signal="DialogEnded" from="NPCs/Engine" to="." method="EnableEndDay"] [connection signal="finished" from="Nightmare" to="." method="ChangeScene"] [connection signal="OnInteract" from="EndDay" to="." method="ChangeDay"] [connection signal="PlayerLeft" from="EndDay" to="." method="RemoveEndDay"] [connection signal="PlayerNearBy" from="EndDay" to="." method="AssignEndDay"] +[connection signal="Finished" from="Day1Cutscene" to="." method="EnableCaptain"] diff --git a/scenes/Day2.tscn b/scenes/Day2.tscn index 53c0c27..79177c2 100644 --- a/scenes/Day2.tscn +++ b/scenes/Day2.tscn @@ -273,4 +273,5 @@ position = Vector2(985, 245) SpriteOffset = Vector2(0, -30) AreaRadius = 20.0 +[connection signal="DialogEnded" from="NPCs/Eugene" to="." method="EnableEngine"] [connection signal="DialogEnded" from="NPCs/Engine" to="." method="EnableEndDay"] diff --git a/scenes/Day3.tscn b/scenes/Day3.tscn index 0287a8b..a5d5726 100644 --- a/scenes/Day3.tscn +++ b/scenes/Day3.tscn @@ -273,4 +273,5 @@ position = Vector2(985, 245) SpriteOffset = Vector2(0, -30) AreaRadius = 20.0 +[connection signal="DialogEnded" from="NPCs/Computer" to="." method="EnableEngine"] [connection signal="DialogEnded" from="NPCs/Engine" to="." method="EnableEndDay"] diff --git a/scenes/Day4.tscn b/scenes/Day4.tscn index 35dab81..178e15c 100644 --- a/scenes/Day4.tscn +++ b/scenes/Day4.tscn @@ -273,4 +273,5 @@ position = Vector2(985, 245) SpriteOffset = Vector2(0, -30) AreaRadius = 20.0 +[connection signal="DialogEnded" from="NPCs/Doctor" to="." method="EnableEngine"] [connection signal="DialogEnded" from="NPCs/Engine" to="." method="ChangeDay"] diff --git a/scenes/Day5.tscn b/scenes/Day5.tscn index 6298972..17cc75c 100644 --- a/scenes/Day5.tscn +++ b/scenes/Day5.tscn @@ -55,6 +55,7 @@ stream_0 = ExtResource("10_bwdem") [node name="Test" type="Node2D"] script = ExtResource("1_ii8yu") NextScene = "Menu" +IsEngineDisabled = false [node name="Sprite2D" type="Sprite2D" parent="."] texture = ExtResource("1_p4jcj") diff --git a/scripts/Day.cs b/scripts/Day.cs index 7cea83b..5f5122f 100644 --- a/scripts/Day.cs +++ b/scripts/Day.cs @@ -4,7 +4,8 @@ using System; public partial class Day : Node2D { [Export] public string NextScene; - + [Export] public bool IsEngineDisabled = true; + [Export] public bool IsCaptainDisabled = false; private enum State { Default, @@ -19,6 +20,8 @@ public partial class Day : Node2D private AudioStreamPlayer _music; private AudioStreamPlayer _nightmare; private Interactable _endDay; + private NPC _engine; + private Door _captainDoor; private double _transitionTimeout = 0; @@ -30,12 +33,26 @@ public partial class Day : Node2D _music = (AudioStreamPlayer)FindChild("Music"); _nightmare = (AudioStreamPlayer)FindChild("Nightmare"); _endDay = (Interactable)FindChild("EndDay"); + _engine = (NPC)FindChild("Engine"); + _captainDoor = (Door)FindChild("Door_CAPTAIN"); _colorRect.Color = new Color(0, 0, 0, 1f); _music.VolumeDb = -40; _player.CurrentState = Player.State.Wait; _endDay.Disable(); + if (IsEngineDisabled) _engine.Disable(); + if (IsCaptainDisabled) _captainDoor.Disable(); } + public void EnableEngine() + { + _engine.Enable(); + } + + public void EnableCaptain() + { + _captainDoor.Enable(); + } + public void AssignEndDay(Player player) { player.InteractableObjects.Add(_endDay); diff --git a/scripts/Day1Cutscene.cs b/scripts/Day1Cutscene.cs index f822087..ff915a7 100644 --- a/scripts/Day1Cutscene.cs +++ b/scripts/Day1Cutscene.cs @@ -3,6 +3,9 @@ using System; public partial class Day1Cutscene : Node2D { + [Signal] + public delegate void FinishedEventHandler(); + private Player _player; private AnimatedSprite2D _sprite; @@ -55,6 +58,7 @@ public partial class Day1Cutscene : Node2D public void Final() { _player.CurrentState = Player.State.Normal; + EmitSignal(SignalName.Finished); QueueFree(); } diff --git a/scripts/Door.cs b/scripts/Door.cs index d6c1699..11142ca 100644 --- a/scripts/Door.cs +++ b/scripts/Door.cs @@ -5,11 +5,21 @@ public partial class Door : Node2D { [Export] public Door Exit; + private Interactable _interactable; + public void Enable() + { + _interactable.Enable(); + } + + public void Disable() + { + _interactable.Disable(); + } // Called when the node enters the scene tree for the first time. public override void _Ready() { - + _interactable = (Interactable)FindChild("Interactable"); } // Called every frame. 'delta' is the elapsed time since the previous frame. diff --git a/scripts/Interactable.cs b/scripts/Interactable.cs index 15526db..a095616 100644 --- a/scripts/Interactable.cs +++ b/scripts/Interactable.cs @@ -1,7 +1,7 @@ using Godot; using System; -// [Tool] +[Tool] public partial class Interactable : Node2D { private const double Tolerance = 1e-6; @@ -34,24 +34,24 @@ public partial class Interactable : Node2D _sprite.Position = SpriteOffset; _collisionCircle = (CircleShape2D)_areaMesh.Shape; _collisionCircle.Radius = AreaRadius; - // if (Engine.IsEditorHint()) - // { - // _sprite.Visible = true; - // } - // else - // { - // _sprite.Visible = false; - // } + if (Engine.IsEditorHint()) + { + _sprite.Visible = true; + } + else + { + _sprite.Visible = false; + } } // Called every frame. 'delta' is the elapsed time since the previous frame. public override void _Process(double delta) { - // if (Engine.IsEditorHint()) - // { - // if (_sprite.Position != SpriteOffset) _sprite.Position = SpriteOffset; - // if (Math.Abs(_collisionCircle.Radius - AreaRadius) > Tolerance) _collisionCircle.Radius = AreaRadius; - // } + if (Engine.IsEditorHint()) + { + if (_sprite.Position != SpriteOffset) _sprite.Position = SpriteOffset; + if (Math.Abs(_collisionCircle.Radius - AreaRadius) > Tolerance) _collisionCircle.Radius = AreaRadius; + } } public void Interact() diff --git a/scripts/NPC.cs b/scripts/NPC.cs index 514642d..25e0c05 100644 --- a/scripts/NPC.cs +++ b/scripts/NPC.cs @@ -2,7 +2,7 @@ using Godot; using System; using Godot.Collections; -// [Tool] +[Tool] public partial class NPC : Node2D { [Signal] @@ -20,7 +20,7 @@ public partial class NPC : Node2D } private AnimatedSprite2D _sprite; - + private Interactable _interactable; private int _currentDialogLine; //Диалог закончен, если больше нет строк диалога. @@ -38,10 +38,21 @@ public partial class NPC : Node2D return IsDialogEnded ? DefaultDialogLine : DialogLines[_currentDialogLine++]; } } + + public void Disable() + { + _interactable.Disable(); + } + + public void Enable() + { + _interactable.Enable(); + } public override void _Ready() { _sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D"); + _interactable = (Interactable)FindChild("Interactable"); if (Frames is not null) _sprite.SpriteFrames = Frames; _sprite.Play("default"); _currentDialogLine = 0;