From c6bbb834f7758027c0df338f1520f34fad3befea Mon Sep 17 00:00:00 2001 From: Matheus Date: Tue, 9 Sep 2025 19:09:34 -0300 Subject: Organização MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/GUI/Message.cs | 45 +++++++++++++++++++++++++++++++-------------- 1 file changed, 31 insertions(+), 14 deletions(-) (limited to 'scripts/GUI/Message.cs') diff --git a/scripts/GUI/Message.cs b/scripts/GUI/Message.cs index b0472ee..11f3532 100644 --- a/scripts/GUI/Message.cs +++ b/scripts/GUI/Message.cs @@ -1,32 +1,49 @@ using Godot; +namespace TheLegendOfGustav.GUI; + public partial class Message : Label { - private static LabelSettings baseSettings = GD.Load("res://assets/definitions/message_label_settings.tres"); + private static readonly LabelSettings baseSettings = GD.Load("res://assets/definitions/message_label_settings.tres"); + private string plainText; - public string PlainText { get => plainText; } private int count = 1; - public int Count { + + public Message(string text) + { + PlainText = text; + Text = text; + LabelSettings = (LabelSettings)baseSettings.Duplicate(); + AutowrapMode = TextServer.AutowrapMode.WordSmart; + } + + public string PlainText + { + get => plainText; + private set + { + plainText = value; + } + } + public int Count + { get => count; - set { + set + { count = value; Text = FullText; } } - public string FullText { - get { - if (count > 1) { + public string FullText + { + get + { + if (count > 1) + { return $"{plainText} ({count})"; } return plainText; } } - - public Message(string text) { - plainText = text; - Text = text; - LabelSettings = (LabelSettings) baseSettings.Duplicate(); - AutowrapMode = TextServer.AutowrapMode.WordSmart; - } } -- cgit v1.2.3