mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-16 10:53:11 +01:00
206 lines
No EOL
10 KiB
C#
206 lines
No EOL
10 KiB
C#
using System.Text;
|
|
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using MLEM.Misc;
|
|
|
|
namespace MLEM.Font {
|
|
/// <summary>
|
|
/// Represents a font with additional abilities.
|
|
/// <seealso cref="GenericSpriteFont"/>
|
|
/// </summary>
|
|
public abstract class GenericFont : GenericDataHolder {
|
|
|
|
/// <summary>
|
|
/// This field holds the unicode representation of a one em space.
|
|
/// This is a character that isn't drawn, but has the same width as <see cref="LineHeight"/>.
|
|
/// Whereas a regular <see cref="SpriteFont"/> would have to explicitly support this character for width calculations, generic fonts implicitly support it in <see cref="MeasureString"/>.
|
|
/// </summary>
|
|
public const char OneEmSpace = '\u2003';
|
|
/// <summary>
|
|
/// This field holds the unicode representation of a non-breaking space.
|
|
/// Whereas a regular <see cref="SpriteFont"/> would have to explicitly support this character for width calculations, generic fonts implicitly support it in <see cref="MeasureString"/>.
|
|
/// </summary>
|
|
public const char Nbsp = '\u00A0';
|
|
/// <summary>
|
|
/// This field holds the unicode representation of a zero-width space.
|
|
/// Whereas a regular <see cref="SpriteFont"/> would have to explicitly support this character for width calculations and string splitting, generic fonts implicitly support it in <see cref="MeasureString"/> and <see cref="SplitString"/>.
|
|
/// </summary>
|
|
public const char Zwsp = '\u200B';
|
|
|
|
/// <summary>
|
|
/// The bold version of this font.
|
|
/// </summary>
|
|
public abstract GenericFont Bold { get; }
|
|
|
|
/// <summary>
|
|
/// The italic version of this font.
|
|
/// </summary>
|
|
public abstract GenericFont Italic { get; }
|
|
|
|
///<inheritdoc cref="SpriteFont.LineSpacing"/>
|
|
public abstract float LineHeight { get; }
|
|
|
|
///<inheritdoc cref="SpriteFont.MeasureString(string)"/>
|
|
protected abstract Vector2 MeasureChar(char c);
|
|
|
|
///<inheritdoc cref="SpriteBatch.DrawString(SpriteFont,string,Vector2,Color,float,Vector2,float,SpriteEffects,float)"/>
|
|
public abstract void DrawString(SpriteBatch batch, string text, Vector2 position, Color color, float rotation, Vector2 origin, Vector2 scale, SpriteEffects effects, float layerDepth);
|
|
|
|
///<inheritdoc cref="SpriteBatch.DrawString(SpriteFont,string,Vector2,Color,float,Vector2,float,SpriteEffects,float)"/>
|
|
public abstract void DrawString(SpriteBatch batch, StringBuilder text, Vector2 position, Color color, float rotation, Vector2 origin, Vector2 scale, SpriteEffects effects, float layerDepth);
|
|
|
|
///<inheritdoc cref="SpriteBatch.DrawString(SpriteFont,string,Vector2,Color,float,Vector2,float,SpriteEffects,float)"/>
|
|
public void DrawString(SpriteBatch batch, string text, Vector2 position, Color color) {
|
|
this.DrawString(batch, text, position, color, 0, Vector2.Zero, Vector2.One, SpriteEffects.None, 0);
|
|
}
|
|
|
|
///<inheritdoc cref="SpriteBatch.DrawString(SpriteFont,string,Vector2,Color,float,Vector2,float,SpriteEffects,float)"/>
|
|
public void DrawString(SpriteBatch batch, string text, Vector2 position, Color color, float rotation, Vector2 origin, float scale, SpriteEffects effects, float layerDepth) {
|
|
this.DrawString(batch, text, position, color, rotation, origin, new Vector2(scale), effects, layerDepth);
|
|
}
|
|
|
|
///<inheritdoc cref="SpriteBatch.DrawString(SpriteFont,string,Vector2,Color,float,Vector2,float,SpriteEffects,float)"/>
|
|
public void DrawString(SpriteBatch batch, StringBuilder text, Vector2 position, Color color) {
|
|
this.DrawString(batch, text, position, color, 0, Vector2.Zero, Vector2.One, SpriteEffects.None, 0);
|
|
}
|
|
|
|
///<inheritdoc cref="SpriteBatch.DrawString(SpriteFont,string,Vector2,Color,float,Vector2,float,SpriteEffects,float)"/>
|
|
public void DrawString(SpriteBatch batch, StringBuilder text, Vector2 position, Color color, float rotation, Vector2 origin, float scale, SpriteEffects effects, float layerDepth) {
|
|
this.DrawString(batch, text, position, color, rotation, origin, new Vector2(scale), effects, layerDepth);
|
|
}
|
|
|
|
///<inheritdoc cref="SpriteFont.MeasureString(string)"/>
|
|
public Vector2 MeasureString(string text, bool ignoreTrailingSpaces = false) {
|
|
var size = Vector2.Zero;
|
|
if (text.Length <= 0)
|
|
return size;
|
|
var xOffset = 0F;
|
|
for (var i = 0; i < text.Length; i++) {
|
|
switch (text[i]) {
|
|
case '\n':
|
|
xOffset = 0;
|
|
size.Y += this.LineHeight;
|
|
break;
|
|
case OneEmSpace:
|
|
xOffset += this.LineHeight;
|
|
break;
|
|
case Nbsp:
|
|
xOffset += this.MeasureChar(' ').X;
|
|
break;
|
|
case Zwsp:
|
|
// don't add width for a zero-width space
|
|
break;
|
|
case ' ':
|
|
if (ignoreTrailingSpaces && IsTrailingSpace(text, i)) {
|
|
// if this is a trailing space, we can skip remaining spaces too
|
|
i = text.Length - 1;
|
|
break;
|
|
}
|
|
xOffset += this.MeasureChar(' ').X;
|
|
break;
|
|
default:
|
|
xOffset += this.MeasureChar(text[i]).X;
|
|
break;
|
|
}
|
|
// increase x size if this line is the longest
|
|
if (xOffset > size.X)
|
|
size.X = xOffset;
|
|
}
|
|
// include the last line's height too!
|
|
size.Y += this.LineHeight;
|
|
return size;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Truncates a string to a given width. If the string's displayed area is larger than the maximum width, the string is cut off.
|
|
/// Optionally, the string can be cut off a bit sooner, adding the <paramref name="ellipsis"/> at the end instead.
|
|
/// </summary>
|
|
/// <param name="text">The text to truncate</param>
|
|
/// <param name="width">The maximum width, in display pixels based on the font and scale</param>
|
|
/// <param name="scale">The scale to use for width measurements</param>
|
|
/// <param name="fromBack">If the string should be truncated from the back rather than the front</param>
|
|
/// <param name="ellipsis">The characters to add to the end of the string if it is too long</param>
|
|
/// <returns>The truncated string, or the same string if it is shorter than the maximum width</returns>
|
|
public string TruncateString(string text, float width, float scale, bool fromBack = false, string ellipsis = "") {
|
|
var total = new StringBuilder();
|
|
var ellipsisWidth = this.MeasureString(ellipsis).X * scale;
|
|
for (var i = 0; i < text.Length; i++) {
|
|
if (fromBack) {
|
|
total.Insert(0, text[text.Length - 1 - i]);
|
|
} else {
|
|
total.Append(text[i]);
|
|
}
|
|
|
|
if (this.MeasureString(total.ToString()).X * scale + ellipsisWidth >= width) {
|
|
if (fromBack) {
|
|
return total.Remove(0, 1).Insert(0, ellipsis).ToString();
|
|
} else {
|
|
return total.Remove(total.Length - 1, 1).Append(ellipsis).ToString();
|
|
}
|
|
}
|
|
}
|
|
return total.ToString();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Splits a string to a given maximum width, adding newline characters between each line.
|
|
/// Also splits long words and supports zero-width spaces.
|
|
/// </summary>
|
|
/// <param name="text">The text to split into multiple lines</param>
|
|
/// <param name="width">The maximum width that each line should have</param>
|
|
/// <param name="scale">The scale to use for width measurements</param>
|
|
/// <returns>The split string, containing newline characters at each new line</returns>
|
|
public string SplitString(string text, float width, float scale) {
|
|
var ret = new StringBuilder();
|
|
var currWidth = 0F;
|
|
var lastSpaceIndex = -1;
|
|
var widthSinceLastSpace = 0F;
|
|
for (var i = 0; i < text.Length; i++) {
|
|
var c = text[i];
|
|
if (c == '\n') {
|
|
// split at pre-defined new lines
|
|
ret.Append(c);
|
|
lastSpaceIndex = -1;
|
|
widthSinceLastSpace = 0;
|
|
currWidth = 0;
|
|
} else {
|
|
var cWidth = this.MeasureChar(c).X * scale;
|
|
if (c == ' ' || c == OneEmSpace || c == Zwsp) {
|
|
// remember the location of this space
|
|
lastSpaceIndex = ret.Length;
|
|
widthSinceLastSpace = 0;
|
|
} else if (currWidth + cWidth >= width) {
|
|
// check if this line contains a space
|
|
if (lastSpaceIndex < 0) {
|
|
// if there is no last space, the word is longer than a line so we split here
|
|
ret.Append('\n');
|
|
currWidth = 0;
|
|
} else {
|
|
// split after the last space
|
|
ret.Insert(lastSpaceIndex + 1, '\n');
|
|
// we need to restore the width accumulated since the last space for the new line
|
|
currWidth = widthSinceLastSpace;
|
|
}
|
|
widthSinceLastSpace = 0;
|
|
lastSpaceIndex = -1;
|
|
}
|
|
|
|
// add current character
|
|
currWidth += cWidth;
|
|
widthSinceLastSpace += cWidth;
|
|
ret.Append(c);
|
|
}
|
|
}
|
|
return ret.ToString();
|
|
}
|
|
|
|
private static bool IsTrailingSpace(string s, int index) {
|
|
for (var i = index + 1; i < s.Length; i++) {
|
|
if (s[i] != ' ')
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
}
|
|
} |