2018-11-30 02:41:06 +00:00
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
|
using Microsoft.Xna.Framework.Input;
|
2018-12-04 13:45:09 +00:00
|
|
|
|
using RecrownedAthenaeum.DataTypes;
|
|
|
|
|
using RecrownedAthenaeum.Input;
|
2018-12-14 06:43:38 +00:00
|
|
|
|
using RecrownedAthenaeum.UI.Skin.Definitions;
|
2018-11-30 02:41:06 +00:00
|
|
|
|
|
2018-12-04 13:45:09 +00:00
|
|
|
|
namespace RecrownedAthenaeum.UI.Modular.Modules.Interactive
|
2018-11-30 02:41:06 +00:00
|
|
|
|
{
|
2019-01-14 06:34:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Function to be called when button is clicked.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public delegate void Clicked();
|
2018-11-30 02:41:06 +00:00
|
|
|
|
|
2019-01-14 06:34:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A very primitive button containing all the basic functions.
|
|
|
|
|
/// </summary>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public class Button : UIModule
|
|
|
|
|
{
|
2018-12-14 06:43:38 +00:00
|
|
|
|
private ButtonSkinDefinition skinDefinition;
|
|
|
|
|
private ISpecialDrawable downTexture, upTexture, highlightedTexture, disabledTexture;
|
2019-01-14 06:34:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Click event listeners.
|
|
|
|
|
/// </summary>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public event Clicked Listeners;
|
2018-12-14 06:43:38 +00:00
|
|
|
|
private bool pressed;
|
2019-01-14 06:34:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether or not this button should be currently disabled.
|
|
|
|
|
/// </summary>
|
2018-12-14 06:43:38 +00:00
|
|
|
|
public bool disabled = false;
|
2019-01-14 06:34:35 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether or not this button is currently being hovered on.
|
|
|
|
|
/// </summary>
|
2018-12-14 06:43:38 +00:00
|
|
|
|
public bool Highlighted { get; private set; }
|
2018-11-30 02:41:06 +00:00
|
|
|
|
|
2019-01-14 06:34:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Constructs this button using <see cref="ISpecialDrawable"/>s for the different states it could be in.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="down">Button being pressed.</param>
|
|
|
|
|
/// <param name="up">Button not being pressed.</param>
|
|
|
|
|
/// <param name="disabled">Disabled button.</param>
|
|
|
|
|
/// <param name="selected">Button being highlighted.</param>
|
2018-12-14 06:43:38 +00:00
|
|
|
|
public Button(ISpecialDrawable down, ISpecialDrawable up, ISpecialDrawable disabled = null, ISpecialDrawable selected = null)
|
2018-11-30 02:41:06 +00:00
|
|
|
|
{
|
2018-12-14 06:43:38 +00:00
|
|
|
|
this.downTexture = down;
|
|
|
|
|
this.upTexture = up;
|
|
|
|
|
this.disabledTexture = disabled;
|
|
|
|
|
this.highlightedTexture = selected;
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 06:34:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Constructs this button using the skin system.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="skin">The skin containing the information of the textures and design to follow.</param>
|
|
|
|
|
/// <param name="definitionName">The name of the definition in the skin. Can be null to select the default.</param>
|
2018-12-14 06:43:38 +00:00
|
|
|
|
public Button(Skin.Skin skin, string definitionName = null)
|
|
|
|
|
{
|
|
|
|
|
this.skinDefinition = skin.ObtainDefinition<ButtonSkinDefinition>(definitionName, GetType());
|
|
|
|
|
downTexture = skin.textureAtlas[skinDefinition.downRegion];
|
|
|
|
|
upTexture = skin.textureAtlas[skinDefinition.upRegion];
|
|
|
|
|
disabledTexture = skin.textureAtlas[skinDefinition.disabledRegion];
|
|
|
|
|
highlightedTexture = skin.textureAtlas[skinDefinition.selectedRegion];
|
2018-11-30 02:41:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 06:34:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Draws the button.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="batch">Batch used to draw the button.</param>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public override void Draw(SpriteBatch batch)
|
|
|
|
|
{
|
2018-12-14 06:43:38 +00:00
|
|
|
|
if (disabled)
|
|
|
|
|
{
|
|
|
|
|
disabledTexture?.Draw(batch, bounds, color);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (pressed)
|
|
|
|
|
{
|
|
|
|
|
downTexture.Draw(batch, bounds, color);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
upTexture.Draw(batch, bounds, color);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-11-30 02:41:06 +00:00
|
|
|
|
base.Draw(batch);
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 06:34:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Called when the mouse changes state.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="state">The new state.</param>
|
|
|
|
|
/// <returns>Whether or not to continue calling the next mouse change listener.</returns>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public sealed override bool MouseStateChanged(MouseState state)
|
|
|
|
|
{
|
|
|
|
|
if (InputUtilities.MouseWithinBoundries(bounds))
|
|
|
|
|
{
|
2018-12-14 06:43:38 +00:00
|
|
|
|
if (state.LeftButton == ButtonState.Pressed)
|
|
|
|
|
{
|
|
|
|
|
pressed = true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pressed = false;
|
|
|
|
|
}
|
2018-11-30 02:41:06 +00:00
|
|
|
|
if (InputUtilities.MouseClicked())
|
|
|
|
|
{
|
|
|
|
|
OnClick();
|
|
|
|
|
}
|
|
|
|
|
Highlighted = true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Highlighted = false;
|
2018-12-14 06:43:38 +00:00
|
|
|
|
pressed = false;
|
2018-11-30 02:41:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.MouseStateChanged(state);
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 06:34:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Called when the state of the keyboard changes.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="state">The new state.</param>
|
|
|
|
|
/// <returns>Whether or not the next keyboard change listener should be called.</returns>
|
2018-11-30 02:41:06 +00:00
|
|
|
|
public sealed override bool KeyboardStateChanged(KeyboardState state)
|
|
|
|
|
{
|
|
|
|
|
return base.KeyboardStateChanged(state);
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 06:34:35 +00:00
|
|
|
|
internal void OnClick()
|
2018-11-30 02:41:06 +00:00
|
|
|
|
{
|
|
|
|
|
Listeners?.Invoke();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|