Интерфейс для диалогов

This commit is contained in:
Евгений Титаренко 2024-08-24 19:53:51 +03:00
parent 7afef58a7f
commit 65003d3030
10 changed files with 288 additions and 49 deletions

View file

@ -1,32 +1,38 @@
[gd_scene load_steps=8 format=3 uid="uid://cmn7af4dsj8v2"] [gd_scene load_steps=9 format=3 uid="uid://cmn7af4dsj8v2"]
[ext_resource type="FontFile" uid="uid://dwn20pw40jpxm" path="res://fonts/ZxSpectrum7-nROZ0.ttf" id="1_e4s1h"] [ext_resource type="FontFile" uid="uid://dwn20pw40jpxm" path="res://fonts/ZxSpectrum7-nROZ0.ttf" id="1_e4s1h"]
[ext_resource type="Script" path="res://scripts/Dialog.cs" id="2_a35aq"] [ext_resource type="Script" path="res://scripts/Dialog.cs" id="2_a35aq"]
[ext_resource type="Texture2D" uid="uid://b7dgjrmfqi162" path="res://resources/sprites/ui/panel_square.png" id="3_adx38"]
[sub_resource type="Theme" id="Theme_gtdw8"] [sub_resource type="Theme" id="Theme_gtdw8"]
default_font = ExtResource("1_e4s1h") default_font = ExtResource("1_e4s1h")
default_font_size = 10 default_font_size = 10
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_tctyf"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_tctyf"]
bg_color = Color(0.532017, 0.646565, 0.382003, 1) bg_color = Color(0.533333, 0.647059, 0.380392, 0)
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yovy8"]
bg_color = Color(0.704854, 0.51027, 0.802981, 1)
[sub_resource type="LabelSettings" id="LabelSettings_8nvov"]
font = ExtResource("1_e4s1h")
font_size = 10
outline_color = Color(0, 0, 0, 1)
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dk342"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dk342"]
bg_color = Color(0.906641, 0.460702, 0.0359737, 1) content_margin_top = 4.0
bg_color = Color(0.905882, 0.458824, 0.0352941, 0)
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yovy8"]
bg_color = Color(0.6, 0.6, 0.6, 0)
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_68mln"]
content_margin_left = 5.0
content_margin_top = 5.0
content_margin_right = 5.0
content_margin_bottom = 5.0
bg_color = Color(0.6, 0.6, 0.6, 0)
[node name="Dialog" type="PanelContainer"] [node name="Dialog" type="PanelContainer"]
anchors_preset = 15 anchors_preset = 15
anchor_right = 1.0 anchor_right = 1.0
anchor_bottom = 1.0 anchor_bottom = 1.0
offset_right = -544.0 offset_left = -10.5
offset_bottom = -443.0 offset_top = -5.0
offset_right = -550.5
offset_bottom = -438.0
grow_horizontal = 2 grow_horizontal = 2
grow_vertical = 2 grow_vertical = 2
size_flags_horizontal = 3 size_flags_horizontal = 3
@ -36,17 +42,7 @@ script = ExtResource("2_a35aq")
[node name="VBoxContainer" type="VBoxContainer" parent="."] [node name="VBoxContainer" type="VBoxContainer" parent="."]
layout_mode = 2 layout_mode = 2
theme_override_constants/separation = 0
[node name="PanelContainer" type="PanelContainer" parent="VBoxContainer"]
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxFlat_yovy8")
[node name="TextBox" type="Label" parent="VBoxContainer/PanelContainer"]
custom_minimum_size = Vector2(96, 10)
layout_mode = 2
text = "Placeholder text"
label_settings = SubResource("LabelSettings_8nvov")
autowrap_mode = 3
[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer"] [node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer"]
layout_mode = 2 layout_mode = 2
@ -57,9 +53,28 @@ layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxFlat_dk342") theme_override_styles/panel = SubResource("StyleBoxFlat_dk342")
[node name="AuthorBox" type="Label" parent="VBoxContainer/HBoxContainer/PanelContainer"] [node name="AuthorBox" type="Label" parent="VBoxContainer/HBoxContainer/PanelContainer"]
custom_minimum_size = Vector2(96, 10) custom_minimum_size = Vector2(100, 10)
layout_mode = 2 layout_mode = 2
size_flags_horizontal = 3 size_flags_horizontal = 3
size_flags_vertical = 0 size_flags_vertical = 0
text = "NPC name" text = "NPC name"
autowrap_mode = 3 autowrap_mode = 3
[node name="PanelContainer" type="PanelContainer" parent="VBoxContainer"]
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxFlat_yovy8")
[node name="NinePatchRect" type="NinePatchRect" parent="VBoxContainer/PanelContainer"]
layout_mode = 2
texture = ExtResource("3_adx38")
patch_margin_left = 12
patch_margin_top = 14
patch_margin_right = 12
patch_margin_bottom = 12
[node name="TextBox" type="Label" parent="VBoxContainer/PanelContainer"]
custom_minimum_size = Vector2(90, 10)
layout_mode = 2
theme_override_styles/normal = SubResource("StyleBoxFlat_68mln")
text = "Placeholder text"
autowrap_mode = 3

View file

@ -1,8 +1,9 @@
[gd_scene load_steps=14 format=3 uid="uid://dfdsnwub212o6"] [gd_scene load_steps=19 format=3 uid="uid://dfdsnwub212o6"]
[ext_resource type="Script" path="res://scripts/Player.cs" id="1_68nsf"] [ext_resource type="Script" path="res://scripts/Player.cs" id="1_68nsf"]
[ext_resource type="SpriteFrames" uid="uid://e8ybb7seykdx" path="res://resources/sprites/player/player.tres" id="1_be2ex"] [ext_resource type="SpriteFrames" uid="uid://e8ybb7seykdx" path="res://resources/sprites/player/player.tres" id="1_be2ex"]
[ext_resource type="FontFile" uid="uid://dwn20pw40jpxm" path="res://fonts/ZxSpectrum7-nROZ0.ttf" id="3_w5ojp"] [ext_resource type="FontFile" uid="uid://dwn20pw40jpxm" path="res://fonts/ZxSpectrum7-nROZ0.ttf" id="3_w5ojp"]
[ext_resource type="Texture2D" uid="uid://dvbfhk2703brs" path="res://resources/sprites/ui/metalPanel.png" id="4_ha8al"]
[ext_resource type="PackedScene" uid="uid://cmn7af4dsj8v2" path="res://prefabs/Dialog.tscn" id="4_owmws"] [ext_resource type="PackedScene" uid="uid://cmn7af4dsj8v2" path="res://prefabs/Dialog.tscn" id="4_owmws"]
[ext_resource type="Script" path="res://scripts/ChatLogContainer.cs" id="4_tbl72"] [ext_resource type="Script" path="res://scripts/ChatLogContainer.cs" id="4_tbl72"]
[ext_resource type="PackedScene" uid="uid://phjermaw6phb" path="res://prefabs/AudioCollection.tscn" id="5_wnylg"] [ext_resource type="PackedScene" uid="uid://phjermaw6phb" path="res://prefabs/AudioCollection.tscn" id="5_wnylg"]
@ -16,8 +17,27 @@ size = Vector2(22, 51)
[sub_resource type="Theme" id="Theme_8jldp"] [sub_resource type="Theme" id="Theme_8jldp"]
default_font = ExtResource("3_w5ojp") default_font = ExtResource("3_w5ojp")
default_font_size = 10 default_font_size = 10
Label/colors/font_color = Color(0, 0, 0, 1)
Label/constants/line_spacing = 0
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_l7l8c"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_l7l8c"]
content_margin_left = 22.0
content_margin_top = 5.0
bg_color = Color(0.6, 0.6, 0.6, 0)
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_7gu8b"]
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5af0i"]
bg_color = Color(0.6, 0.6, 0.6, 0)
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_m2s6r"]
content_margin_left = 22.0
content_margin_bottom = 0.0
bg_color = Color(0.6, 0.6, 0.6, 0)
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6l2d2"]
content_margin_left = 22.0
bg_color = Color(0.6, 0.6, 0.6, 0)
[sub_resource type="AudioStreamPlaylist" id="AudioStreamPlaylist_flb1c"] [sub_resource type="AudioStreamPlaylist" id="AudioStreamPlaylist_flb1c"]
loop = false loop = false
@ -49,7 +69,20 @@ offset_right = 40.0
offset_bottom = 40.0 offset_bottom = 40.0
theme = SubResource("Theme_8jldp") theme = SubResource("Theme_8jldp")
[node name="NinePatchRect" type="NinePatchRect" parent="Camera2D/Control"]
layout_mode = 0
offset_left = 160.0
offset_top = -140.0
offset_right = 268.0
offset_bottom = 100.0
texture = ExtResource("4_ha8al")
patch_margin_left = 10
patch_margin_top = 10
patch_margin_right = 10
patch_margin_bottom = 10
[node name="ChatLog" type="PanelContainer" parent="Camera2D/Control"] [node name="ChatLog" type="PanelContainer" parent="Camera2D/Control"]
visible = false
layout_mode = 0 layout_mode = 0
offset_left = 160.0 offset_left = 160.0
offset_top = -140.0 offset_top = -140.0
@ -58,6 +91,16 @@ offset_bottom = 100.0
theme = SubResource("Theme_8jldp") theme = SubResource("Theme_8jldp")
theme_override_styles/panel = SubResource("StyleBoxFlat_l7l8c") theme_override_styles/panel = SubResource("StyleBoxFlat_l7l8c")
[node name="ChatLog2" type="PanelContainer" parent="Camera2D/Control"]
visible = false
layout_mode = 0
offset_left = 160.0
offset_top = -140.0
offset_right = 256.0
offset_bottom = 100.0
theme = SubResource("Theme_8jldp")
theme_override_styles/panel = SubResource("StyleBoxTexture_7gu8b")
[node name="PanelContainer" type="PanelContainer" parent="Camera2D/Control"] [node name="PanelContainer" type="PanelContainer" parent="Camera2D/Control"]
layout_mode = 0 layout_mode = 0
offset_left = 160.0 offset_left = 160.0
@ -70,44 +113,69 @@ theme_override_styles/panel = SubResource("StyleBoxFlat_l7l8c")
layout_mode = 2 layout_mode = 2
text = "Chat Log" text = "Chat Log"
[node name="ChatLogContainer" type="VBoxContainer" parent="Camera2D/Control"] [node name="Control" type="Control" parent="Camera2D/Control"]
clip_contents = true
anchors_preset = 0
offset_left = 164.0
offset_top = -125.0
offset_right = 264.0
offset_bottom = 75.0
[node name="PanelContainer2" type="PanelContainer" parent="Camera2D/Control/Control"]
clip_contents = true
layout_mode = 0
offset_right = 100.0
offset_bottom = 220.0
theme_override_styles/panel = SubResource("StyleBoxFlat_5af0i")
[node name="ChatLogContainer" type="VBoxContainer" parent="Camera2D/Control/Control/PanelContainer2"]
layout_mode = 2 layout_mode = 2
offset_left = 160.0
offset_top = -130.0
offset_right = 256.0
offset_bottom = -56.0
theme_override_constants/separation = 0 theme_override_constants/separation = 0
script = ExtResource("4_tbl72") script = ExtResource("4_tbl72")
[node name="PlaceholderDialog" parent="Camera2D/Control/ChatLogContainer" instance=ExtResource("4_owmws")] [node name="PlaceholderDialog" parent="Camera2D/Control/Control/PanelContainer2/ChatLogContainer" instance=ExtResource("4_owmws")]
visible = false
layout_mode = 2 layout_mode = 2
[node name="PlaceholderDialog2" parent="Camera2D/Control/ChatLogContainer" instance=ExtResource("4_owmws")] [node name="PlaceholderDialog2" parent="Camera2D/Control/Control/PanelContainer2/ChatLogContainer" instance=ExtResource("4_owmws")]
visible = false
layout_mode = 2 layout_mode = 2
Text = "Placeholder text 2" Text = "Placeholder text 2"
Author = "NPC name 2" Author = "NPC name 2"
[node name="CloseLabel" type="PanelContainer" parent="Camera2D/Control"] [node name="PlaceholderDialog3" parent="Camera2D/Control/Control/PanelContainer2/ChatLogContainer" instance=ExtResource("4_owmws")]
layout_mode = 2
Text = "Placeholder text 2"
Author = "NPC name 2"
[node name="PlaceholderDialog4" parent="Camera2D/Control/Control/PanelContainer2/ChatLogContainer" instance=ExtResource("4_owmws")]
layout_mode = 2
Text = "Placeholder text 2"
Author = "NPC name 2"
[node name="PlaceholderDialog5" parent="Camera2D/Control/Control/PanelContainer2/ChatLogContainer" instance=ExtResource("4_owmws")]
layout_mode = 2
Text = "Placeholder text 2"
Author = "NPC name 2"
[node name="ExitLabel" type="PanelContainer" parent="Camera2D/Control"]
layout_mode = 2 layout_mode = 2
offset_left = 160.0 offset_left = 160.0
offset_top = 90.0 offset_top = 85.0
offset_right = 256.0 offset_right = 256.0
offset_bottom = 100.0 offset_bottom = 95.0
theme_override_styles/panel = SubResource("StyleBoxFlat_l7l8c") theme_override_styles/panel = SubResource("StyleBoxFlat_m2s6r")
[node name="Label" type="Label" parent="Camera2D/Control/CloseLabel"] [node name="Label" type="Label" parent="Camera2D/Control/ExitLabel"]
layout_mode = 2 layout_mode = 2
text = "C - Exit" text = "C - Exit"
[node name="NextLabel" type="PanelContainer" parent="Camera2D/Control"] [node name="NextLabel" type="PanelContainer" parent="Camera2D/Control"]
visible = false
layout_mode = 2 layout_mode = 2
offset_left = 160.0 offset_left = 160.0
offset_top = 90.0 offset_top = 85.0
offset_right = 256.0 offset_right = 256.0
offset_bottom = 100.0 offset_bottom = 95.0
theme_override_styles/panel = SubResource("StyleBoxFlat_l7l8c") theme_override_styles/panel = SubResource("StyleBoxFlat_6l2d2")
[node name="Label" type="Label" parent="Camera2D/Control/NextLabel"] [node name="Label" type="Label" parent="Camera2D/Control/NextLabel"]
layout_mode = 2 layout_mode = 2

Binary file not shown.

After

Width:  |  Height:  |  Size: 454 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dvbfhk2703brs"
path="res://.godot/imported/metalPanel.png-011cb7b2592fb4fdfebdd638a88aecbc.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://resources/sprites/ui/metalPanel.png"
dest_files=["res://.godot/imported/metalPanel.png-011cb7b2592fb4fdfebdd638a88aecbc.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b7dgjrmfqi162"
path="res://.godot/imported/panel_square.png-e393190117bd76863085aa261f58fc43.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://resources/sprites/ui/panel_square.png"
dest_files=["res://.godot/imported/panel_square.png-e393190117bd76863085aa261f58fc43.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View file

@ -175,6 +175,8 @@ Frames = ExtResource("6_hfiji")
position = Vector2(1307, 254) position = Vector2(1307, 254)
NPCName = "Crewmate" NPCName = "Crewmate"
Frames = ExtResource("7_3qwvo") Frames = ExtResource("7_3qwvo")
DefaultDialogLine = "Прости, я сейчас занят."
DialogLines = ["Привет, меня зовут Ванек. Я твой напарник по команде.", "да я лох ваще!!!!!!!!"]
[node name="Npc" parent="NPCs" instance=ExtResource("3_cu4p0")] [node name="Npc" parent="NPCs" instance=ExtResource("3_cu4p0")]
position = Vector2(1326, 14) position = Vector2(1326, 14)

View file

@ -3,21 +3,99 @@ using System;
public partial class ChatLogContainer : VBoxContainer public partial class ChatLogContainer : VBoxContainer
{ {
private const float MaxChatLogContainerSize = 220; public enum ChatState
{
Hidden,
Default,
Scrolling
}
private ChatState _state;
public ChatState CurrentState
{
get => _state;
set
{
_state = value;
switch (_state)
{
case ChatState.Hidden:
break;
case ChatState.Default:
break;
case ChatState.Scrolling:
break;
default:
throw new ArgumentOutOfRangeException();
}
}
}
private const float MaxChatLogContainerSize = 200;
private Vector2 _initialPosition; private Vector2 _initialPosition;
// 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()
{ {
_initialPosition = Position; _initialPosition = Position;
_state = ChatState.Default;
} }
private Vector2 GetBottomPosition()
{
return _initialPosition + new Vector2(Size.X, MaxChatLogContainerSize) - Size;
}
// 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 _PhysicsProcess(double delta) public override void _PhysicsProcess(double delta)
{ {
if (Size.Y > MaxChatLogContainerSize) if (CurrentState is ChatState.Default && Size.Y > MaxChatLogContainerSize)
{ {
Position = _initialPosition + new Vector2(Size.X, MaxChatLogContainerSize) - Size; Position = GetBottomPosition();
}
}
public override void _Input(InputEvent @event)
{
if (@event.IsActionPressed("ui_down"))
{
switch (CurrentState)
{
case ChatState.Hidden:
return;
case ChatState.Default:
CurrentState = ChatState.Scrolling;
break;
case ChatState.Scrolling:
break;
default:
throw new ArgumentOutOfRangeException();
}
Position = (Position + new Vector2(0, -10)).Clamp(GetBottomPosition(), _initialPosition);
}
if (@event.IsActionPressed("ui_up"))
{
switch (CurrentState)
{
case ChatState.Hidden:
return;
case ChatState.Default:
CurrentState = ChatState.Scrolling;
break;
case ChatState.Scrolling:
break;
default:
throw new ArgumentOutOfRangeException();
}
Position = (Position + new Vector2(0, 10)).Clamp(GetBottomPosition(), _initialPosition);
}
if (CurrentState is ChatState.Default or ChatState.Scrolling)
{
} }
} }
} }

View file

@ -4,6 +4,7 @@ using System;
[Tool] [Tool]
public partial class Dialog : PanelContainer public partial class Dialog : PanelContainer
{ {
[Export] public string Text = "Placeholder text"; [Export] public string Text = "Placeholder text";
[Export] public string Author = "NPC name"; [Export] public string Author = "NPC name";

View file

@ -35,11 +35,15 @@ public partial class Player : CharacterBody2D
break; break;
case State.ReadChat: case State.ReadChat:
_nextLabel.Visible = false; _nextLabel.Visible = false;
_exitLabel.Visible = true;
_chatLogContainer.CurrentState = ChatLogContainer.ChatState.Default;
break; break;
case State.Wait: case State.Wait:
break; break;
case State.ChatWithNPC: case State.ChatWithNPC:
_nextLabel.Visible = true; _nextLabel.Visible = true;
_exitLabel.Visible = false;
_chatLogContainer.CurrentState = ChatLogContainer.ChatState.Default;
break; break;
default: default:
throw new ArgumentOutOfRangeException(); throw new ArgumentOutOfRangeException();
@ -80,7 +84,8 @@ public partial class Player : CharacterBody2D
private AnimatedSprite2D _sprite; private AnimatedSprite2D _sprite;
private PanelContainer _chatLog; private PanelContainer _chatLog;
private PanelContainer _nextLabel; private PanelContainer _nextLabel;
private VBoxContainer _chatLogContainer; private PanelContainer _exitLabel;
private ChatLogContainer _chatLogContainer;
private Camera2D _camera; private Camera2D _camera;
private AudioCollection _footsteps; private AudioCollection _footsteps;
private AudioCollection _doorSounds; private AudioCollection _doorSounds;
@ -91,7 +96,7 @@ public partial class Player : CharacterBody2D
private Vector2 _previousPosition; private Vector2 _previousPosition;
private Vector2 _nextPosition; private Vector2 _nextPosition;
private Vector2 _cameraDefaultPosition = new(0, -20); private Vector2 _cameraDefaultPosition = new(0, -20);
private Vector2 _cameraChatLogPosition = new(96, -20); private Vector2 _cameraChatLogPosition = new(108, -20);
private PackedScene _dialogBox = GD.Load<PackedScene>("res://prefabs/Dialog.tscn"); private PackedScene _dialogBox = GD.Load<PackedScene>("res://prefabs/Dialog.tscn");
@ -100,7 +105,8 @@ public partial class Player : CharacterBody2D
_sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D"); _sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D");
_chatLog = (PanelContainer)FindChild("ChatLog"); _chatLog = (PanelContainer)FindChild("ChatLog");
_nextLabel = (PanelContainer)FindChild("NextLabel"); _nextLabel = (PanelContainer)FindChild("NextLabel");
_chatLogContainer = (VBoxContainer)FindChild("ChatLogContainer"); _exitLabel = (PanelContainer)FindChild("ExitLabel");
_chatLogContainer = (ChatLogContainer)FindChild("ChatLogContainer");
_camera = (Camera2D)FindChild("Camera2D"); _camera = (Camera2D)FindChild("Camera2D");
_footsteps = (AudioCollection)FindChild("Footsteps"); _footsteps = (AudioCollection)FindChild("Footsteps");
_doorSounds = (AudioCollection)FindChild("DoorSounds"); _doorSounds = (AudioCollection)FindChild("DoorSounds");
@ -251,6 +257,7 @@ public partial class Player : CharacterBody2D
break; break;
case State.ReadChat: case State.ReadChat:
CurrentState = State.Normal; CurrentState = State.Normal;
_chatLogContainer.CurrentState = ChatLogContainer.ChatState.Hidden;
break; break;
} }
} }