-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy path120-csharp-lambdas.cs
104 lines (84 loc) · 2.95 KB
/
120-csharp-lambdas.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// courtesy of Paulloz
// from https://github.com/paulloz/godot-ink/blob/godot-v4-examples/Examples/TeenyTiny/Src/DialogueBox.cs#L65
using Godot;
namespace GodotInk.Examples.TeenyTiny;
public partial class DialogueBox : NinePatchRect
{
[Export]
private int charactersPerSecond = 12;
private AnimationPlayer animationPlayer = null!;
private RichTextLabel richTextLabel = null!;
private Tween textTween = null!;
private InkStory? story;
public override void _Ready()
{
animationPlayer = GetNode<AnimationPlayer>("AnimationPlayer");
richTextLabel = GetNode<RichTextLabel>("MarginContainer/RichTextLabel");
textTween = CreateTween();
textTween.Kill();
SetProcessInput(false);
}
public override void _Input(InputEvent inputEvent)
{
if (inputEvent is not InputEventKey) return;
// Eat all the events!
GetViewport().SetInputAsHandled();
if (inputEvent.IsActionPressed("ui_select"))
{
// Safety.
if (story is null)
Close();
// The text animation is playing, skip it.
else if (textTween.IsRunning())
EndTweenDialogueText();
// More dialogue, loop back to a new tween for the next line.
// Make sure to auto-skip blank lines, though.
else if (story.CanContinue && story.Continue() is string text && !string.IsNullOrWhiteSpace(text))
TweenDialogueText(text);
// Nothing else to do but close this window.
else
Close();
}
}
private void TweenDialogueText(string text)
{
// Set full text.
richTextLabel.Text = text;
// And animate.
textTween = CreateTween();
_ = textTween.TweenMethod(
Callable.From<float>((float ratio) => richTextLabel.VisibleRatio = ratio),
0.0f, 1.0f,
text.Length / charactersPerSecond
);
textTween.Finished += EndTweenDialogueText;
textTween.Play();
animationPlayer.Play("TweeningText");
}
private void EndTweenDialogueText()
{
if (textTween.IsRunning())
textTween.Kill();
richTextLabel.VisibleRatio = 1.0f;
animationPlayer.Play(story?.CanContinue ?? false ? "CanContinue" : "CantContinue");
}
public void Open(InkStory story)
{
this.story = story;
// Everything seems right, open the window.
animationPlayer.Play("Open");
// And once it's done, send in the first line of dialogue.
_ = animationPlayer.Connect(
AnimationPlayer.SignalName.AnimationFinished,
Callable.From((StringName _) => TweenDialogueText(story.Continue())),
(uint)ConnectFlags.OneShot
);
SetProcessInput(true);
}
public void Close()
{
story = null;
animationPlayer.Play("Close");
SetProcessInput(false);
}
}