2019-08-09 19:28:48 +02:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
using MLEM.Extensions;
|
|
|
|
using MLEM.Font;
|
2019-08-10 21:37:10 +02:00
|
|
|
using MLEM.Ui.Style;
|
2019-08-09 19:28:48 +02:00
|
|
|
|
|
|
|
namespace MLEM.Ui.Elements {
|
|
|
|
public class Paragraph : Element {
|
|
|
|
|
|
|
|
private string text;
|
|
|
|
private float lineHeight;
|
|
|
|
private string[] splitText;
|
2019-08-10 21:37:10 +02:00
|
|
|
private IGenericFont font;
|
2019-08-09 19:28:48 +02:00
|
|
|
private readonly bool centerText;
|
|
|
|
|
2019-08-10 21:37:10 +02:00
|
|
|
public float TextScale;
|
2019-08-09 19:28:48 +02:00
|
|
|
public string Text {
|
|
|
|
get => this.text;
|
|
|
|
set {
|
|
|
|
this.text = value;
|
|
|
|
this.SetDirty();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-10 18:41:56 +02:00
|
|
|
public Paragraph(Anchor anchor, float width, string text, bool centerText = false, IGenericFont font = null) : base(anchor, new Vector2(width, 0)) {
|
2019-08-09 19:28:48 +02:00
|
|
|
this.text = text;
|
2019-08-10 21:37:10 +02:00
|
|
|
this.font = font;
|
2019-08-09 19:28:48 +02:00
|
|
|
this.centerText = centerText;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override Point CalcActualSize(Rectangle parentArea) {
|
|
|
|
var size = base.CalcActualSize(parentArea);
|
2019-08-11 21:24:09 +02:00
|
|
|
this.splitText = this.font.SplitString(this.text, size.X, this.TextScale * this.Scale).ToArray();
|
2019-08-09 19:28:48 +02:00
|
|
|
|
|
|
|
this.lineHeight = 0;
|
|
|
|
var height = 0F;
|
|
|
|
foreach (var strg in this.splitText) {
|
2019-08-11 21:24:09 +02:00
|
|
|
var strgHeight = this.font.MeasureString(strg).Y * this.TextScale * this.Scale;
|
2019-08-09 19:28:48 +02:00
|
|
|
height += strgHeight + 1;
|
|
|
|
if (strgHeight > this.lineHeight)
|
|
|
|
this.lineHeight = strgHeight;
|
|
|
|
}
|
|
|
|
return new Point(size.X, height.Ceil());
|
|
|
|
}
|
|
|
|
|
2019-08-10 13:42:18 +02:00
|
|
|
public override void Draw(GameTime time, SpriteBatch batch, float alpha) {
|
|
|
|
base.Draw(time, batch, alpha);
|
2019-08-09 19:28:48 +02:00
|
|
|
|
|
|
|
var pos = this.DisplayArea.Location.ToVector2();
|
|
|
|
var offset = new Vector2();
|
|
|
|
foreach (var line in this.splitText) {
|
|
|
|
if (this.centerText) {
|
2019-08-11 21:24:09 +02:00
|
|
|
this.font.DrawCenteredString(batch, line, pos + offset + new Vector2(this.DisplayArea.Width / 2, 0), this.TextScale * this.Scale, Color.White * alpha);
|
2019-08-09 19:28:48 +02:00
|
|
|
} else {
|
2019-08-11 21:24:09 +02:00
|
|
|
this.font.DrawString(batch, line, pos + offset, Color.White * alpha, 0, Vector2.Zero, this.TextScale * this.Scale, SpriteEffects.None, 0);
|
2019-08-09 19:28:48 +02:00
|
|
|
}
|
|
|
|
offset.Y += this.lineHeight + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-10 21:37:10 +02:00
|
|
|
protected override void InitStyle(UiStyle style) {
|
|
|
|
base.InitStyle(style);
|
|
|
|
this.TextScale = style.TextScale;
|
|
|
|
this.font = style.Font;
|
|
|
|
}
|
|
|
|
|
2019-08-09 19:28:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|