using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using MLEM.Graphics;
using MLEM.Maths;
namespace MLEM.Ui.Elements {
///
/// A scissor group is a that sets the before drawing its content (and thus, its ), preventing them from being drawn outside of this group's 's bounds.
///
public class ScissorGroup : Group {
///
/// The rasterizer state that this scissor group should use when drawing.
/// By default, is set to in accordance with 's default behavior, and is set to .
///
public readonly RasterizerState Rasterizer = new RasterizerState {
// use the default cull mode from SpriteBatch, but with scissor test enabled
CullMode = CullMode.CullCounterClockwiseFace,
ScissorTestEnable = true
};
///
/// Creates a new scissor group with the given settings
///
/// The group's anchor
/// The group's size
/// Whether the group's height should be based on its children's height, see .
public ScissorGroup(Anchor anchor, Vector2 size, bool setHeightBasedOnChildren = true) : base(anchor, size, setHeightBasedOnChildren) {}
///
/// Creates a new scissor group with the given settings
///
/// The group's anchor
/// The group's size
/// Whether the group's width should be based on its children's width, see .
/// Whether the group's height should be based on its children's height, see .
public ScissorGroup(Anchor anchor, Vector2 size, bool setWidthBasedOnChildren, bool setHeightBasedOnChildren) : base(anchor, size, setWidthBasedOnChildren, setHeightBasedOnChildren) {}
///
public override void Draw(GameTime time, SpriteBatch batch, float alpha, SpriteBatchContext context) {
batch.End();
// apply our scissor rectangle
var lastScissor = batch.GraphicsDevice.ScissorRectangle;
batch.GraphicsDevice.ScissorRectangle = (Rectangle) this.DisplayArea.OffsetCopy(context.TransformMatrix.Translation.ToVector2());
// enable scissor test
var localContext = context;
localContext.RasterizerState = this.Rasterizer;
batch.Begin(localContext);
base.Draw(time, batch, alpha, localContext);
// revert back to previous behavior
batch.End();
batch.GraphicsDevice.ScissorRectangle = lastScissor;
batch.Begin(context);
}
}
}