Прогрессия 2

This commit is contained in:
Евгений Титаренко 2024-08-25 18:08:54 +03:00
parent b793b79d39
commit f37e2b5c4f
10 changed files with 67 additions and 18 deletions

View file

@ -56,6 +56,7 @@ stream_0 = ExtResource("9_43nb0")
[node name="Test" type="Node2D"] [node name="Test" type="Node2D"]
script = ExtResource("1_cko08") script = ExtResource("1_cko08")
NextScene = "Day2" NextScene = "Day2"
IsCaptainDisabled = true
[node name="Sprite2D" type="Sprite2D" parent="."] [node name="Sprite2D" type="Sprite2D" parent="."]
texture = ExtResource("1_a6v5r") texture = ExtResource("1_a6v5r")
@ -270,8 +271,10 @@ AreaRadius = 20.0
[node name="Day1Cutscene" parent="." instance=ExtResource("14_t3ylj")] [node name="Day1Cutscene" parent="." instance=ExtResource("14_t3ylj")]
position = Vector2(1275, 18) position = Vector2(1275, 18)
[connection signal="DialogEnded" from="NPCs/Eugene" to="." method="EnableEngine"]
[connection signal="DialogEnded" from="NPCs/Engine" to="." method="EnableEndDay"] [connection signal="DialogEnded" from="NPCs/Engine" to="." method="EnableEndDay"]
[connection signal="finished" from="Nightmare" to="." method="ChangeScene"] [connection signal="finished" from="Nightmare" to="." method="ChangeScene"]
[connection signal="OnInteract" from="EndDay" to="." method="ChangeDay"] [connection signal="OnInteract" from="EndDay" to="." method="ChangeDay"]
[connection signal="PlayerLeft" from="EndDay" to="." method="RemoveEndDay"] [connection signal="PlayerLeft" from="EndDay" to="." method="RemoveEndDay"]
[connection signal="PlayerNearBy" from="EndDay" to="." method="AssignEndDay"] [connection signal="PlayerNearBy" from="EndDay" to="." method="AssignEndDay"]
[connection signal="Finished" from="Day1Cutscene" to="." method="EnableCaptain"]

View file

@ -273,4 +273,5 @@ position = Vector2(985, 245)
SpriteOffset = Vector2(0, -30) SpriteOffset = Vector2(0, -30)
AreaRadius = 20.0 AreaRadius = 20.0
[connection signal="DialogEnded" from="NPCs/Eugene" to="." method="EnableEngine"]
[connection signal="DialogEnded" from="NPCs/Engine" to="." method="EnableEndDay"] [connection signal="DialogEnded" from="NPCs/Engine" to="." method="EnableEndDay"]

View file

@ -273,4 +273,5 @@ position = Vector2(985, 245)
SpriteOffset = Vector2(0, -30) SpriteOffset = Vector2(0, -30)
AreaRadius = 20.0 AreaRadius = 20.0
[connection signal="DialogEnded" from="NPCs/Computer" to="." method="EnableEngine"]
[connection signal="DialogEnded" from="NPCs/Engine" to="." method="EnableEndDay"] [connection signal="DialogEnded" from="NPCs/Engine" to="." method="EnableEndDay"]

View file

@ -273,4 +273,5 @@ position = Vector2(985, 245)
SpriteOffset = Vector2(0, -30) SpriteOffset = Vector2(0, -30)
AreaRadius = 20.0 AreaRadius = 20.0
[connection signal="DialogEnded" from="NPCs/Doctor" to="." method="EnableEngine"]
[connection signal="DialogEnded" from="NPCs/Engine" to="." method="ChangeDay"] [connection signal="DialogEnded" from="NPCs/Engine" to="." method="ChangeDay"]

View file

@ -55,6 +55,7 @@ stream_0 = ExtResource("10_bwdem")
[node name="Test" type="Node2D"] [node name="Test" type="Node2D"]
script = ExtResource("1_ii8yu") script = ExtResource("1_ii8yu")
NextScene = "Menu" NextScene = "Menu"
IsEngineDisabled = false
[node name="Sprite2D" type="Sprite2D" parent="."] [node name="Sprite2D" type="Sprite2D" parent="."]
texture = ExtResource("1_p4jcj") texture = ExtResource("1_p4jcj")

View file

@ -4,7 +4,8 @@ using System;
public partial class Day : Node2D public partial class Day : Node2D
{ {
[Export] public string NextScene; [Export] public string NextScene;
[Export] public bool IsEngineDisabled = true;
[Export] public bool IsCaptainDisabled = false;
private enum State private enum State
{ {
Default, Default,
@ -19,6 +20,8 @@ public partial class Day : Node2D
private AudioStreamPlayer _music; private AudioStreamPlayer _music;
private AudioStreamPlayer _nightmare; private AudioStreamPlayer _nightmare;
private Interactable _endDay; private Interactable _endDay;
private NPC _engine;
private Door _captainDoor;
private double _transitionTimeout = 0; private double _transitionTimeout = 0;
@ -30,10 +33,24 @@ public partial class Day : Node2D
_music = (AudioStreamPlayer)FindChild("Music"); _music = (AudioStreamPlayer)FindChild("Music");
_nightmare = (AudioStreamPlayer)FindChild("Nightmare"); _nightmare = (AudioStreamPlayer)FindChild("Nightmare");
_endDay = (Interactable)FindChild("EndDay"); _endDay = (Interactable)FindChild("EndDay");
_engine = (NPC)FindChild("Engine");
_captainDoor = (Door)FindChild("Door_CAPTAIN");
_colorRect.Color = new Color(0, 0, 0, 1f); _colorRect.Color = new Color(0, 0, 0, 1f);
_music.VolumeDb = -40; _music.VolumeDb = -40;
_player.CurrentState = Player.State.Wait; _player.CurrentState = Player.State.Wait;
_endDay.Disable(); _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) public void AssignEndDay(Player player)

View file

@ -3,6 +3,9 @@ using System;
public partial class Day1Cutscene : Node2D public partial class Day1Cutscene : Node2D
{ {
[Signal]
public delegate void FinishedEventHandler();
private Player _player; private Player _player;
private AnimatedSprite2D _sprite; private AnimatedSprite2D _sprite;
@ -55,6 +58,7 @@ public partial class Day1Cutscene : Node2D
public void Final() public void Final()
{ {
_player.CurrentState = Player.State.Normal; _player.CurrentState = Player.State.Normal;
EmitSignal(SignalName.Finished);
QueueFree(); QueueFree();
} }

View file

@ -5,11 +5,21 @@ public partial class Door : Node2D
{ {
[Export] public Door Exit; [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. // Called when the node enters the scene tree for the first time.
public override void _Ready() public override void _Ready()
{ {
_interactable = (Interactable)FindChild("Interactable");
} }
// Called every frame. 'delta' is the elapsed time since the previous frame. // Called every frame. 'delta' is the elapsed time since the previous frame.

View file

@ -1,7 +1,7 @@
using Godot; using Godot;
using System; using System;
// [Tool] [Tool]
public partial class Interactable : Node2D public partial class Interactable : Node2D
{ {
private const double Tolerance = 1e-6; private const double Tolerance = 1e-6;
@ -34,24 +34,24 @@ public partial class Interactable : Node2D
_sprite.Position = SpriteOffset; _sprite.Position = SpriteOffset;
_collisionCircle = (CircleShape2D)_areaMesh.Shape; _collisionCircle = (CircleShape2D)_areaMesh.Shape;
_collisionCircle.Radius = AreaRadius; _collisionCircle.Radius = AreaRadius;
// if (Engine.IsEditorHint()) if (Engine.IsEditorHint())
// { {
// _sprite.Visible = true; _sprite.Visible = true;
// } }
// else else
// { {
// _sprite.Visible = false; _sprite.Visible = false;
// } }
} }
// Called every frame. 'delta' is the elapsed time since the previous frame. // Called every frame. 'delta' is the elapsed time since the previous frame.
public override void _Process(double delta) public override void _Process(double delta)
{ {
// if (Engine.IsEditorHint()) if (Engine.IsEditorHint())
// { {
// if (_sprite.Position != SpriteOffset) _sprite.Position = SpriteOffset; if (_sprite.Position != SpriteOffset) _sprite.Position = SpriteOffset;
// if (Math.Abs(_collisionCircle.Radius - AreaRadius) > Tolerance) _collisionCircle.Radius = AreaRadius; if (Math.Abs(_collisionCircle.Radius - AreaRadius) > Tolerance) _collisionCircle.Radius = AreaRadius;
// } }
} }
public void Interact() public void Interact()

View file

@ -2,7 +2,7 @@ using Godot;
using System; using System;
using Godot.Collections; using Godot.Collections;
// [Tool] [Tool]
public partial class NPC : Node2D public partial class NPC : Node2D
{ {
[Signal] [Signal]
@ -20,7 +20,7 @@ public partial class NPC : Node2D
} }
private AnimatedSprite2D _sprite; private AnimatedSprite2D _sprite;
private Interactable _interactable;
private int _currentDialogLine; private int _currentDialogLine;
//Диалог закончен, если больше нет строк диалога. //Диалог закончен, если больше нет строк диалога.
@ -39,9 +39,20 @@ public partial class NPC : Node2D
} }
} }
public void Disable()
{
_interactable.Disable();
}
public void Enable()
{
_interactable.Enable();
}
public override void _Ready() public override void _Ready()
{ {
_sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D"); _sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D");
_interactable = (Interactable)FindChild("Interactable");
if (Frames is not null) _sprite.SpriteFrames = Frames; if (Frames is not null) _sprite.SpriteFrames = Frames;
_sprite.Play("default"); _sprite.Play("default");
_currentDialogLine = 0; _currentDialogLine = 0;