1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-01 12:53:38 +02:00
MLEM/MLEM.Ui/Elements/Image.cs

82 lines
3.6 KiB
C#
Raw Normal View History

2019-08-27 21:44:02 +02:00
using System;
2019-08-09 22:23:16 +02:00
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using MLEM.Misc;
2019-08-09 22:23:16 +02:00
using MLEM.Textures;
using MLEM.Ui.Style;
2019-08-09 22:23:16 +02:00
namespace MLEM.Ui.Elements {
public class Image : Element {
public StyleProp<Color> Color;
private TextureRegion texture;
2019-09-26 17:39:38 +02:00
public TextureCallback GetTextureCallback;
public TextureRegion Texture {
2020-05-17 00:59:15 +02:00
get {
if (this.GetTextureCallback != null)
this.Texture = this.GetTextureCallback(this);
return this.texture;
}
set {
if (this.texture != value) {
this.texture = value;
2019-09-13 11:53:28 +02:00
this.IsHidden = this.texture == null;
if (this.scaleToImage)
this.SetAreaDirty();
}
}
}
private bool scaleToImage;
public bool ScaleToImage {
get => this.scaleToImage;
set {
if (this.scaleToImage != value) {
this.scaleToImage = value;
this.SetAreaDirty();
}
}
}
2019-08-27 21:44:02 +02:00
public bool MaintainImageAspect = true;
2019-09-12 18:44:24 +02:00
public SpriteEffects ImageEffects = SpriteEffects.None;
public Vector2 ImageScale = Vector2.One;
public float ImageRotation;
2019-08-09 22:23:16 +02:00
public Image(Anchor anchor, Vector2 size, TextureRegion texture, bool scaleToImage = false) : base(anchor, size) {
2019-09-26 17:39:38 +02:00
this.Texture = texture;
this.scaleToImage = scaleToImage;
this.CanBeSelected = false;
this.CanBeMoused = false;
}
public Image(Anchor anchor, Vector2 size, TextureCallback getTextureCallback, bool scaleToImage = false) : base(anchor, size) {
this.GetTextureCallback = getTextureCallback;
this.Texture = getTextureCallback(this);
this.scaleToImage = scaleToImage;
2019-08-28 18:27:17 +02:00
this.CanBeSelected = false;
2019-09-11 20:10:28 +02:00
this.CanBeMoused = false;
2019-08-09 22:23:16 +02:00
}
protected override Vector2 CalcActualSize(RectangleF parentArea) {
2020-05-17 00:59:15 +02:00
return this.Texture != null && this.scaleToImage ? this.Texture.Size.ToVector2() : base.CalcActualSize(parentArea);
2019-09-26 17:39:38 +02:00
}
public override void Draw(GameTime time, SpriteBatch batch, float alpha, BlendState blendState, SamplerState samplerState, Matrix matrix) {
2020-05-17 00:59:15 +02:00
if (this.Texture == null)
2019-09-26 17:39:38 +02:00
return;
2020-05-17 00:59:15 +02:00
var center = new Vector2(this.Texture.Width / 2F, this.Texture.Height / 2F);
2019-11-05 13:28:41 +01:00
var color = this.Color.OrDefault(Microsoft.Xna.Framework.Color.White) * alpha;
2019-08-27 21:44:02 +02:00
if (this.MaintainImageAspect) {
2020-05-17 00:59:15 +02:00
var scale = Math.Min(this.DisplayArea.Width / this.Texture.Width, this.DisplayArea.Height / this.Texture.Height);
var imageOffset = new Vector2(this.DisplayArea.Width / 2F - this.Texture.Width * scale / 2, this.DisplayArea.Height / 2F - this.Texture.Height * scale / 2);
batch.Draw(this.Texture, this.DisplayArea.Location + center * scale + imageOffset, color, this.ImageRotation, center, scale * this.ImageScale, this.ImageEffects, 0);
2019-08-27 21:44:02 +02:00
} else {
2020-05-17 00:59:15 +02:00
var scale = new Vector2(1F / this.Texture.Width, 1F / this.Texture.Height) * this.DisplayArea.Size;
batch.Draw(this.Texture, this.DisplayArea.Location + center * scale, color, this.ImageRotation, center, scale * this.ImageScale, this.ImageEffects, 0);
2019-08-27 21:44:02 +02:00
}
base.Draw(time, batch, alpha, blendState, samplerState, matrix);
2019-08-09 22:23:16 +02:00
}
2019-09-26 17:39:38 +02:00
public delegate TextureRegion TextureCallback(Image image);
2019-08-09 22:23:16 +02:00
}
}