1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-28 19:13:38 +02:00

fixed line splitting with the new formatting

This commit is contained in:
Ellpeck 2020-05-15 13:16:03 +02:00
parent 8398499edd
commit d28239291c
2 changed files with 22 additions and 5 deletions

View file

@ -1,5 +1,6 @@
using System;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using MLEM.Font;
@ -18,11 +19,27 @@ namespace MLEM.Formatting {
}
public void Split(GenericFont font, float width, float scale) {
// a split string has the same character count as the input string
// but with newline characters added
var split = font.SplitString(this.String, width, scale);
// remove spaces at the end of new lines since we want the same character count
split = split.Replace(" \n", "\n");
foreach (var token in this.Tokens)
token.Substring = split.Substring(token.Index, token.Substring.Length);
foreach (var token in this.Tokens) {
var index = 0;
var length = 0;
var ret = new StringBuilder();
// this is basically a substring function that ignores newlines for indexing
for (var i = 0; i < split.Length; i++) {
// if we're within the bounds of the token's substring, append to the new substring
if (index >= token.Index && length < token.Substring.Length)
ret.Append(split[i]);
// if the current char is not a newline, we simulate length increase
if (split[i] != '\n') {
if (index >= token.Index)
length++;
index++;
}
}
token.Substring = ret.ToString();
}
}
public void Draw(GameTime time, SpriteBatch batch, Vector2 pos, GenericFont font, Color color, float scale, float depth) {

View file

@ -113,7 +113,7 @@ namespace Sandbox {
};*/
var formatter = new TextFormatter();
var strg = "This <c CornflowerBlue>is a formatted string</c> with <c #ff0000>two bits of formatting</c>!";
var strg = "This <c CornflowerBlue>is a formatted string</c> with <c #ff0000>two bits of formatting</c>! It also includesavery<c Pink>long</c>wordthatis<c Blue>formatted</c>aswell.";
this.tokenized = formatter.Tokenize(strg);
this.tokenized.Split(font, 400, 1);