2018-11-30 02:41:06 +00:00
|
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
2018-12-14 06:43:38 +00:00
|
|
|
|
using RecrownedAthenaeum.UI.Skin.Definitions;
|
2018-11-30 02:41:06 +00:00
|
|
|
|
using System.Text;
|
|
|
|
|
|
2018-12-04 13:45:09 +00:00
|
|
|
|
namespace RecrownedAthenaeum.UI.Modular.Modules
|
2018-11-30 02:41:06 +00:00
|
|
|
|
{
|
2019-01-14 07:26:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents text for the UI.
|
|
|
|
|
/// </summary>
|
2018-12-11 07:12:25 +00:00
|
|
|
|
public class Text : UIModule
|
2018-11-30 02:41:06 +00:00
|
|
|
|
{
|
2018-12-14 06:43:38 +00:00
|
|
|
|
private TextSkinDefinition skinDefinition;
|
2018-11-30 02:41:06 +00:00
|
|
|
|
private SpriteFont font;
|
|
|
|
|
private float scale;
|
|
|
|
|
private Vector2 position;
|
|
|
|
|
private string originalText;
|
|
|
|
|
private string displayedText;
|
|
|
|
|
private Vector2 modifiedTextSize;
|
2019-01-14 07:26:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether or not to try and wrap text automatically. Meaning will check and attempt to wrap every update.
|
|
|
|
|
/// </summary>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public bool autoWrap;
|
2019-01-14 07:26:46 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether or not to automatically scale the text every update. Happens after auto wrap if enabled.
|
|
|
|
|
/// </summary>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public bool autoScale;
|
2019-01-14 07:26:46 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Should this use ellipses? Will perform this operation before auto wrapping or auto scalling.
|
|
|
|
|
/// </summary>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public bool useEllipses;
|
2019-01-14 07:26:46 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The text to use for the ellipsis.
|
|
|
|
|
/// </summary>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public string ellipsis = "...";
|
2018-12-11 07:12:25 +00:00
|
|
|
|
private string ModifiedText { get { return displayedText; } set { displayedText = value; modifiedTextSize = font.MeasureString(value); } }
|
2018-12-14 06:43:38 +00:00
|
|
|
|
|
2019-01-14 07:26:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The string to be displayed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Content { get { return originalText; } set { if (value == null) value = ellipsis; modifiedTextSize = font.MeasureString(value); originalText = value; displayedText = value; } }
|
2018-11-30 02:41:06 +00:00
|
|
|
|
|
2019-01-14 07:26:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates a UI text object.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="font">The font to use.</param>
|
|
|
|
|
/// <param name="content">The string for the text.</param>
|
2018-12-11 07:12:25 +00:00
|
|
|
|
public Text(SpriteFont font, string content = null)
|
2018-11-30 02:41:06 +00:00
|
|
|
|
{
|
2018-12-11 07:12:25 +00:00
|
|
|
|
Content = content;
|
2018-11-30 02:41:06 +00:00
|
|
|
|
this.font = font;
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 07:26:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates a UI text object
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="skin"></param>
|
|
|
|
|
/// <param name="skinDefinitionName"></param>
|
|
|
|
|
/// <param name="content"></param>
|
|
|
|
|
public Text(Skin.Skin skin, string skinDefinitionName = null, string content = null) : this(skin.fonts[skin.ObtainDefinition<TextSkinDefinition>(skinDefinitionName, typeof(Text)).font])
|
2018-12-14 06:43:38 +00:00
|
|
|
|
{
|
|
|
|
|
skinDefinition = skin.ObtainDefinition<TextSkinDefinition>(skinDefinitionName, GetType());
|
|
|
|
|
color = skin.colors[skinDefinition.color];
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 07:26:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Updates the positioning and attempts to perform any operations that were marked automatic.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="gameTime">The game time.</param>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public override void Update(GameTime gameTime)
|
|
|
|
|
{
|
|
|
|
|
position.X = bounds.X;
|
|
|
|
|
position.Y = bounds.Y;
|
|
|
|
|
|
|
|
|
|
if (useEllipses) AttemptToApplyEllipsis();
|
|
|
|
|
if (autoWrap) AttemptToWrapText();
|
|
|
|
|
if (autoScale) AttemptToScaleFont();
|
|
|
|
|
|
|
|
|
|
base.Update(gameTime);
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 07:26:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Draws the text.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="batch">Batch to use.</param>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public override void Draw(SpriteBatch batch)
|
|
|
|
|
{
|
2018-12-11 07:12:25 +00:00
|
|
|
|
batch.DrawString(font, Content, position, color, 0f, origin, scale, SpriteEffects.None, 0f);
|
2018-11-30 02:41:06 +00:00
|
|
|
|
base.Draw(batch);
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 07:26:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Attempts to apply ellipsis. Checks of nessecary.
|
|
|
|
|
/// </summary>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public void AttemptToApplyEllipsis()
|
|
|
|
|
{
|
|
|
|
|
if (modifiedTextSize.X * scale > bounds.Width && ModifiedText.Length > ellipsis.Length + 1)
|
|
|
|
|
{
|
|
|
|
|
RemoveLineBreaks();
|
|
|
|
|
StringBuilder stringBuilder = new StringBuilder(ModifiedText);
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
stringBuilder.Remove(stringBuilder.Length, ellipsis.Length - 1);
|
|
|
|
|
stringBuilder.Insert(stringBuilder.Length, ellipsis);
|
|
|
|
|
}
|
|
|
|
|
while (font.MeasureString(stringBuilder).X * scale > bounds.Width);
|
|
|
|
|
|
|
|
|
|
ModifiedText = stringBuilder.ToString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 07:26:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Attempts to scale the font. Checks if nessecary.
|
|
|
|
|
/// </summary>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public void AttemptToScaleFont()
|
|
|
|
|
{
|
|
|
|
|
if (modifiedTextSize.X * scale > bounds.Width || modifiedTextSize.X * scale < bounds.Width - 5)
|
|
|
|
|
{
|
|
|
|
|
scale = bounds.Width / modifiedTextSize.X;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (modifiedTextSize.Y * scale > bounds.Height || modifiedTextSize.Y * scale < bounds.Height - 5)
|
|
|
|
|
{
|
|
|
|
|
scale = bounds.Height / modifiedTextSize.Y;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 07:26:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Removes line breaks.
|
|
|
|
|
/// </summary>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public void RemoveLineBreaks()
|
|
|
|
|
{
|
|
|
|
|
ModifiedText = ModifiedText.Replace("\n", " ");
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 07:26:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resets to original text.
|
|
|
|
|
/// </summary>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public void ResetToOriginalText()
|
|
|
|
|
{
|
|
|
|
|
ModifiedText = originalText;
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 07:26:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Attempts to wrap text. Checks if nessecary.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="unwrap">If true, will first unwrap text, and the wrap again. This occurs before nessecity check.</param>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public void AttemptToWrapText(bool unwrap = false)
|
|
|
|
|
{
|
|
|
|
|
if (unwrap) RemoveLineBreaks();
|
|
|
|
|
if (modifiedTextSize.X * scale > bounds.Width)
|
|
|
|
|
{
|
|
|
|
|
ModifiedText = ModifiedText.Replace("\n", " ");
|
|
|
|
|
string[] words = ModifiedText.Split(' ');
|
|
|
|
|
StringBuilder stringBuilder = new StringBuilder();
|
|
|
|
|
float currentScaledLineWidth = 0f;
|
|
|
|
|
|
|
|
|
|
for (int w = 0; w < words.Length; w++)
|
|
|
|
|
{
|
|
|
|
|
string word = words[w];
|
|
|
|
|
float scaledWidth = font.MeasureString(word).X * scale;
|
|
|
|
|
|
|
|
|
|
if (currentScaledLineWidth + scaledWidth <= bounds.Width)
|
|
|
|
|
{
|
|
|
|
|
stringBuilder.Append(word);
|
|
|
|
|
currentScaledLineWidth += scaledWidth;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
stringBuilder.AppendLine();
|
|
|
|
|
currentScaledLineWidth = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ModifiedText = stringBuilder.ToString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|