2019-08-10 19:23:08 +02:00
|
|
|
using System;
|
|
|
|
using System.Text;
|
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
using Microsoft.Xna.Framework.Input;
|
|
|
|
using MLEM.Font;
|
|
|
|
using MLEM.Textures;
|
2019-08-10 21:37:10 +02:00
|
|
|
using MLEM.Ui.Style;
|
2019-08-10 19:23:08 +02:00
|
|
|
|
|
|
|
namespace MLEM.Ui.Elements {
|
|
|
|
public class TextField : Element {
|
|
|
|
|
2019-08-10 21:37:10 +02:00
|
|
|
public NinePatch Texture;
|
|
|
|
public NinePatch HoveredTexture;
|
|
|
|
public Color HoveredColor;
|
2019-08-10 19:23:08 +02:00
|
|
|
public float TextScale;
|
|
|
|
public readonly StringBuilder Text = new StringBuilder();
|
|
|
|
public TextChanged OnTextChange;
|
|
|
|
public int MaxTextLength = int.MaxValue;
|
|
|
|
public float TextOffsetX = 4;
|
2019-08-10 21:37:10 +02:00
|
|
|
private IGenericFont font;
|
2019-08-10 19:23:08 +02:00
|
|
|
private double caretBlinkTimer;
|
2019-08-11 00:39:40 +02:00
|
|
|
private int textStartIndex;
|
2019-08-10 19:23:08 +02:00
|
|
|
|
|
|
|
public TextField(Anchor anchor, Vector2 size, IGenericFont font = null) : base(anchor, size) {
|
2019-08-10 21:37:10 +02:00
|
|
|
this.font = font;
|
2019-08-10 19:23:08 +02:00
|
|
|
this.OnTextInput += (element, key, character) => {
|
|
|
|
if (!this.IsSelected)
|
|
|
|
return;
|
|
|
|
var textChanged = false;
|
|
|
|
if (key == Keys.Back) {
|
|
|
|
if (this.Text.Length > 0) {
|
|
|
|
this.Text.Remove(this.Text.Length - 1, 1);
|
|
|
|
textChanged = true;
|
|
|
|
}
|
|
|
|
} else if (!char.IsControl(character)) {
|
|
|
|
if (this.Text.Length < this.MaxTextLength) {
|
|
|
|
this.Text.Append(character);
|
|
|
|
textChanged = true;
|
|
|
|
}
|
|
|
|
}
|
2019-08-11 00:39:40 +02:00
|
|
|
if (textChanged) {
|
|
|
|
var length = this.font.MeasureString(this.Text).X * this.TextScale;
|
2019-08-11 21:41:04 +02:00
|
|
|
var maxWidth = this.DisplayArea.Width / this.Scale - this.TextOffsetX * 2;
|
2019-08-11 00:39:40 +02:00
|
|
|
if (length > maxWidth) {
|
2019-08-11 14:18:07 +02:00
|
|
|
for (var i = 0; i < this.Text.Length; i++) {
|
2019-08-11 00:39:40 +02:00
|
|
|
var substring = this.Text.ToString(i, this.Text.Length - i);
|
|
|
|
if (this.font.MeasureString(substring).X * this.TextScale <= maxWidth) {
|
|
|
|
this.textStartIndex = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.textStartIndex = 0;
|
|
|
|
}
|
|
|
|
|
2019-08-10 19:23:08 +02:00
|
|
|
this.OnTextChange?.Invoke(this, this.Text.ToString());
|
2019-08-11 00:39:40 +02:00
|
|
|
}
|
2019-08-10 19:23:08 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void Update(GameTime time) {
|
|
|
|
base.Update(time);
|
|
|
|
|
|
|
|
this.caretBlinkTimer += time.ElapsedGameTime.TotalSeconds;
|
|
|
|
if (this.caretBlinkTimer >= 1)
|
|
|
|
this.caretBlinkTimer = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void Draw(GameTime time, SpriteBatch batch, float alpha) {
|
|
|
|
var tex = this.Texture;
|
|
|
|
var color = Color.White * alpha;
|
|
|
|
if (this.IsMouseOver) {
|
|
|
|
if (this.HoveredTexture != null)
|
|
|
|
tex = this.HoveredTexture;
|
|
|
|
color = this.HoveredColor * alpha;
|
|
|
|
}
|
2019-08-11 21:38:03 +02:00
|
|
|
batch.Draw(tex, this.DisplayArea, color, this.Scale);
|
2019-08-10 19:23:08 +02:00
|
|
|
var caret = this.IsSelected && this.caretBlinkTimer >= 0.5F ? "|" : "";
|
2019-08-11 00:39:40 +02:00
|
|
|
var text = this.Text.ToString(this.textStartIndex, this.Text.Length - this.textStartIndex) + caret;
|
2019-08-11 21:41:04 +02:00
|
|
|
this.font.DrawCenteredString(batch, text, this.DisplayArea.Location.ToVector2() + new Vector2(this.TextOffsetX * this.Scale, this.DisplayArea.Height / 2), this.TextScale * this.Scale, Color.White * alpha, false, true);
|
2019-08-10 19:23:08 +02:00
|
|
|
base.Draw(time, batch, alpha);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
this.Texture = style.TextFieldTexture;
|
|
|
|
this.HoveredTexture = style.TextFieldHoveredTexture;
|
|
|
|
this.HoveredColor = style.TextFieldHoveredColor;
|
|
|
|
}
|
|
|
|
|
2019-08-10 19:23:08 +02:00
|
|
|
public delegate void TextChanged(TextField field, string text);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|