2019-09-10 23:28:25 +02:00
|
|
|
using System;
|
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
using MLEM.Extensions;
|
|
|
|
using MLEM.Misc;
|
|
|
|
using MLEM.Textures;
|
|
|
|
using MLEM.Ui.Style;
|
|
|
|
|
|
|
|
namespace MLEM.Ui.Elements {
|
|
|
|
public class ProgressBar : Element {
|
|
|
|
|
2019-10-14 21:28:12 +02:00
|
|
|
public StyleProp<NinePatch> Texture;
|
|
|
|
public StyleProp<Color> Color;
|
2019-11-02 14:53:59 +01:00
|
|
|
public StyleProp<Vector2> ProgressPadding;
|
2019-10-14 21:28:12 +02:00
|
|
|
public StyleProp<NinePatch> ProgressTexture;
|
|
|
|
public StyleProp<Color> ProgressColor;
|
2019-09-10 23:28:25 +02:00
|
|
|
|
|
|
|
public Direction2 Direction;
|
|
|
|
public float MaxValue;
|
|
|
|
private float currentValue;
|
|
|
|
public float CurrentValue {
|
|
|
|
get => this.currentValue;
|
|
|
|
set => this.currentValue = MathHelper.Clamp(value, 0, this.MaxValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ProgressBar(Anchor anchor, Vector2 size, Direction2 direction, float maxValue, float currentValue = 0) : base(anchor, size) {
|
|
|
|
if (!direction.IsAdjacent())
|
|
|
|
throw new NotSupportedException("Progress bars only support Up, Down, Left and Right directions");
|
|
|
|
this.Direction = direction;
|
|
|
|
this.MaxValue = maxValue;
|
|
|
|
this.currentValue = currentValue;
|
2019-09-11 10:51:57 +02:00
|
|
|
this.CanBeSelected = false;
|
2019-09-10 23:28:25 +02:00
|
|
|
}
|
|
|
|
|
2019-09-20 13:22:05 +02:00
|
|
|
public override void Draw(GameTime time, SpriteBatch batch, float alpha, BlendState blendState, SamplerState samplerState, Matrix matrix) {
|
2019-10-14 21:28:12 +02:00
|
|
|
batch.Draw(this.Texture, this.DisplayArea, (Color) this.Color * alpha, this.Scale);
|
2019-09-10 23:28:25 +02:00
|
|
|
|
|
|
|
var percentage = this.CurrentValue / this.MaxValue;
|
2020-02-06 17:36:51 +01:00
|
|
|
var padHor = this.ProgressTexture.HasValue() ? this.ProgressTexture.Value.Padding.Width * this.Scale : 0;
|
|
|
|
var padVer = this.ProgressTexture.HasValue() ? this.ProgressTexture.Value.Padding.Height * this.Scale : 0;
|
2019-11-02 14:53:59 +01:00
|
|
|
var width = percentage * (this.DisplayArea.Width - padHor) + padHor;
|
|
|
|
var height = percentage * (this.DisplayArea.Height - padVer) + padVer;
|
|
|
|
RectangleF progressArea;
|
2019-09-10 23:28:25 +02:00
|
|
|
switch (this.Direction) {
|
|
|
|
case Direction2.Up:
|
2019-11-02 14:53:59 +01:00
|
|
|
progressArea = new RectangleF(this.DisplayArea.X,
|
2019-09-10 23:28:25 +02:00
|
|
|
this.DisplayArea.Y + (this.DisplayArea.Height - height),
|
|
|
|
this.DisplayArea.Width, height);
|
|
|
|
break;
|
|
|
|
case Direction2.Down:
|
2019-11-02 14:53:59 +01:00
|
|
|
progressArea = new RectangleF(this.DisplayArea.Location, new Vector2(this.DisplayArea.Width, height));
|
2019-09-10 23:28:25 +02:00
|
|
|
break;
|
|
|
|
case Direction2.Left:
|
2019-11-02 14:53:59 +01:00
|
|
|
progressArea = new RectangleF(
|
2019-09-10 23:28:25 +02:00
|
|
|
this.DisplayArea.X + (this.DisplayArea.Width - width),
|
|
|
|
this.DisplayArea.Y, width, this.DisplayArea.Height);
|
|
|
|
break;
|
|
|
|
default: // Right
|
2019-11-02 14:53:59 +01:00
|
|
|
progressArea = new RectangleF(this.DisplayArea.Location, new Vector2(width, this.DisplayArea.Height));
|
2019-09-10 23:28:25 +02:00
|
|
|
break;
|
|
|
|
}
|
2019-11-02 14:53:59 +01:00
|
|
|
var offsetArea = progressArea.Shrink(this.ProgressPadding.Value * this.Scale);
|
2020-02-06 17:36:51 +01:00
|
|
|
if (this.ProgressTexture.HasValue()) {
|
2019-10-14 21:28:12 +02:00
|
|
|
batch.Draw(this.ProgressTexture, offsetArea, (Color) this.ProgressColor * alpha, this.Scale);
|
2019-09-10 23:28:25 +02:00
|
|
|
} else {
|
2019-10-14 21:28:12 +02:00
|
|
|
batch.Draw(batch.GetBlankTexture(), offsetArea, (Color) this.ProgressColor * alpha);
|
2019-09-10 23:28:25 +02:00
|
|
|
}
|
2019-09-20 13:22:05 +02:00
|
|
|
base.Draw(time, batch, alpha, blendState, samplerState, matrix);
|
2019-09-10 23:28:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void InitStyle(UiStyle style) {
|
|
|
|
base.InitStyle(style);
|
2019-10-14 21:28:12 +02:00
|
|
|
this.Texture.SetFromStyle(style.ProgressBarTexture);
|
|
|
|
this.Color.SetFromStyle(style.ProgressBarColor);
|
|
|
|
this.ProgressPadding.SetFromStyle(style.ProgressBarProgressPadding);
|
|
|
|
this.ProgressTexture.SetFromStyle(style.ProgressBarProgressTexture);
|
|
|
|
this.ProgressColor.SetFromStyle(style.ProgressBarProgressColor);
|
2019-09-10 23:28:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|