158 lines
5.0 KiB
C#
158 lines
5.0 KiB
C#
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using Microsoft.Xna.Framework.Input;
|
|
using RecrownedAthenaeum.Input;
|
|
using RecrownedAthenaeum.Render;
|
|
using System;
|
|
|
|
namespace RecrownedAthenaeum.UI.Modular
|
|
{
|
|
|
|
/// <summary>
|
|
/// Module for UI layout.
|
|
/// </summary>
|
|
public class UIModule : IInputListener
|
|
{
|
|
/// <summary>
|
|
/// The bounds before factoring in the origin.
|
|
/// </summary>
|
|
public Rectangle situation;
|
|
|
|
/// <summary>
|
|
/// Bounds of this module (after factoring in the origin).
|
|
/// </summary>
|
|
public Rectangle Boundaries
|
|
{
|
|
get
|
|
{
|
|
return new Rectangle((int)(situation.X - origin.X), (int)(situation.Y - origin.Y), situation.Width, situation.Height);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Origin of this module.
|
|
/// </summary>
|
|
public Vector2 origin;
|
|
|
|
/// <summary>
|
|
/// The parent of this module. May be null.
|
|
/// </summary>
|
|
public UIModuleGroup Parent;
|
|
|
|
/// <summary>
|
|
/// Name of this module. For organizational/referencial purposes mostly.
|
|
/// </summary>
|
|
public string Name;
|
|
|
|
/// <summary>
|
|
/// The color tint of this module.
|
|
/// </summary>
|
|
public Color color = Color.White;
|
|
|
|
/// <summary>
|
|
/// Called every frame to update this module. Calculations and movement should go here.
|
|
/// </summary>
|
|
/// <param name="gameTime">Game time information.</param>
|
|
public virtual void Update(GameTime gameTime)
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Called every frame to draw this module. Anything that needs to be drawn should go here.
|
|
/// </summary>
|
|
/// <param name="batch">Batch used to draw.</param>
|
|
public virtual void Draw(SpriteBatch batch)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Converts the given rectangle to the coordinates of the parent.
|
|
/// </summary>
|
|
/// <param name="rectangle">Rectangle to convert.</param>
|
|
/// <returns></returns>
|
|
public Rectangle ConvertToParentCoordinates(Rectangle rectangle)
|
|
{
|
|
if (Parent != null)
|
|
{
|
|
Rectangle parentHitbox = Parent.ConvertToParentCoordinates(rectangle);
|
|
int tX = rectangle.X + parentHitbox.X;
|
|
int tY = rectangle.Y + parentHitbox.Y;
|
|
return new Rectangle(tX, tY, rectangle.Width, rectangle.Height);
|
|
}
|
|
else
|
|
{
|
|
return rectangle;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Removes this module from the parent.
|
|
/// </summary>
|
|
public void RemoveFromParent()
|
|
{
|
|
if (Parent == null) throw new InvalidOperationException("Parent is null.");
|
|
Parent.RemoveModule(this);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Called whenever the keyboard state is changed.
|
|
/// </summary>
|
|
/// <param name="state">The current keyboard state.</param>
|
|
/// <returns>Returning whether or not to continue to call the next listener.</returns>
|
|
public virtual bool KeyboardStateChanged(KeyboardState state)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Called whenever the state of the mouse changes. This includes movement.
|
|
/// </summary>
|
|
/// <param name="state">The current state of the mouse.</param>
|
|
/// <returns>Returning whether or not to continue to call the next listener.</returns>
|
|
public virtual bool MouseStateChanged(MouseState state)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the origin to be the center of the bounds.
|
|
/// </summary>
|
|
public void CenterOrigin()
|
|
{
|
|
origin.X = situation.Width / 2f;
|
|
origin.Y = situation.Height / 2f;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Centers this module's origin on the horizontal axis relative to the given rectangle.
|
|
/// </summary>
|
|
/// <param name="rectangle">The rectangle to center it in.</param>
|
|
/// <returns>True if possible and false if not.</returns>
|
|
public bool CenterHorizontally(Rectangle rectangle)
|
|
{
|
|
if (rectangle.Width >= Boundaries.Width)
|
|
{
|
|
situation.X = rectangle.Width / 2 + situation.X;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Center's this module's origin on the vertical axis relative to the given rectangle.
|
|
/// </summary>
|
|
/// <param name="rectangle">The rectangle to center in.</param>
|
|
/// <returns>True if possible.</returns>
|
|
public bool CenterVertically(Rectangle rectangle)
|
|
{
|
|
if (rectangle.Height >= Boundaries.Height)
|
|
{
|
|
situation.Y = rectangle.Height / 2 + situation.Y;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
}
|