1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-30 16:06:35 +02:00
MLEM/MLEM.Extended/Extensions/BitmapFontExtensions.cs

23 lines
843 B
C#
Raw Normal View History

2019-08-06 14:26:51 +02:00
using System.Collections.Generic;
using System.Text;
using Microsoft.Xna.Framework.Graphics;
using MonoGame.Extended.BitmapFonts;
namespace MLEM.Extended.Extensions {
public static class BitmapFontExtensions {
public static IEnumerable<string> SplitString(this BitmapFont font, string text, float width, float scale) {
var builder = new StringBuilder();
foreach (var word in text.Split(' ')) {
builder.Append(word).Append(' ');
if (font.MeasureString(builder).Width * scale >= width) {
var len = builder.Length - word.Length - 1;
2019-08-15 16:29:41 +02:00
yield return builder.ToString(0, len - 1);
2019-08-06 14:26:51 +02:00
builder.Remove(0, len);
}
}
2019-08-15 16:29:41 +02:00
yield return builder.ToString(0, builder.Length - 1);
2019-08-06 14:26:51 +02:00
}
}
}