mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 12:58:33 +01:00
removed obsolete CustomDrawGroup
This commit is contained in:
parent
9a1f1e335c
commit
aa064812fc
1 changed files with 0 additions and 52 deletions
|
@ -1,52 +0,0 @@
|
|||
using System;
|
||||
using Microsoft.Xna.Framework;
|
||||
using Microsoft.Xna.Framework.Graphics;
|
||||
|
||||
namespace MLEM.Ui.Elements {
|
||||
/// <summary>
|
||||
/// A <see cref="Group"/> that can have custom drawing parameters.
|
||||
/// Custom drawing parameters include a <see cref="Element.Transform"/> matrix, as well as a custom <see cref="SpriteBatch.Begin"/> call.
|
||||
/// All <see cref="Element.Children"/> of the custom draw group will be drawn with the custom parameters.
|
||||
/// </summary>
|
||||
[Obsolete("CustomDrawGroup mechanics have been moved down to Element, which means custom draw groups are no longer necessary.")]
|
||||
public class CustomDrawGroup : Group {
|
||||
|
||||
public readonly TransformCallback TransformGetter;
|
||||
|
||||
/// <summary>
|
||||
/// Creates a new custom draw group with the given settings
|
||||
/// </summary>
|
||||
/// <param name="anchor">The group's anchor</param>
|
||||
/// <param name="size">The group's size</param>
|
||||
/// <param name="transformGetter">The group's <see cref="TransformGetter"/></param>
|
||||
/// <param name="beginImpl">The group's <see cref="Element.BeginImpl"/></param>
|
||||
/// <param name="setHeightBasedOnChildren">Whether this group should automatically calculate its height based on its children</param>
|
||||
public CustomDrawGroup(Anchor anchor, Vector2 size, TransformCallback transformGetter = null, BeginDelegate beginImpl = null, bool setHeightBasedOnChildren = true) :
|
||||
base(anchor, size, setHeightBasedOnChildren) {
|
||||
this.TransformGetter = transformGetter ?? ((element, time, matrix) => Matrix.Identity);
|
||||
this.BeginImpl = beginImpl;
|
||||
}
|
||||
|
||||
///<inheritdoc cref="Element.ScaleTransform"/>
|
||||
[Obsolete("Use ScaleTransform instead")]
|
||||
public void ScaleOrigin(float scale, Vector2? origin = null) {
|
||||
this.ScaleTransform(scale, origin);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public override void Draw(GameTime time, SpriteBatch batch, float alpha, BlendState blendState, SamplerState samplerState, Matrix matrix) {
|
||||
if (this.Transform == Matrix.Identity)
|
||||
this.Transform = this.TransformGetter(this, time, matrix);
|
||||
base.Draw(time, batch, alpha, blendState, samplerState, matrix);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// A delegate method used for <see cref="CustomDrawGroup.TransformGetter"/>
|
||||
/// </summary>
|
||||
/// <param name="element">The element whose transform to get</param>
|
||||
/// <param name="time">The game's time</param>
|
||||
/// <param name="matrix">The regular transform matrix</param>
|
||||
public delegate Matrix TransformCallback(Element element, GameTime time, Matrix matrix);
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue