2019-08-06 14:26:51 +02:00
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
2019-11-02 14:53:59 +01:00
|
|
|
using MLEM.Extensions;
|
|
|
|
using MonoGame.Extended;
|
2019-08-06 14:26:51 +02:00
|
|
|
|
|
|
|
namespace MLEM.Extended.Extensions {
|
2020-05-22 20:32:38 +02:00
|
|
|
/// <summary>
|
|
|
|
/// A set of extension methods for dealing with <see cref="SpriteBatch"/> and <see cref="RectangleF"/> in combination.
|
|
|
|
/// </summary>
|
2019-08-06 14:26:51 +02:00
|
|
|
public static class SpriteBatchExtensions {
|
|
|
|
|
2020-05-22 20:32:38 +02:00
|
|
|
/// <inheritdoc cref="SpriteBatch.Draw(Texture2D,Rectangle,Rectangle?,Color,float,Vector2,SpriteEffects,float)"/>
|
2019-11-02 14:53:59 +01:00
|
|
|
public static void Draw(this SpriteBatch batch, Texture2D texture, RectangleF destinationRectangle, Rectangle? sourceRectangle, Color color, float rotation, Vector2 origin, SpriteEffects effects, float layerDepth) {
|
|
|
|
batch.Draw(texture, destinationRectangle.ToMlem(), sourceRectangle, color, rotation, origin, effects, layerDepth);
|
|
|
|
}
|
|
|
|
|
2020-05-22 20:32:38 +02:00
|
|
|
/// <inheritdoc cref="SpriteBatch.Draw(Texture2D,Rectangle,Rectangle?,Color)"/>
|
2019-11-02 14:53:59 +01:00
|
|
|
public static void Draw(this SpriteBatch batch, Texture2D texture, RectangleF destinationRectangle, Rectangle? sourceRectangle, Color color) {
|
|
|
|
batch.Draw(texture, destinationRectangle, sourceRectangle, color, 0, Vector2.Zero, SpriteEffects.None, 0);
|
|
|
|
}
|
|
|
|
|
2020-05-22 20:32:38 +02:00
|
|
|
/// <inheritdoc cref="SpriteBatch.Draw(Texture2D,Rectangle,Color)"/>
|
2019-11-02 14:53:59 +01:00
|
|
|
public static void Draw(this SpriteBatch batch, Texture2D texture, RectangleF destinationRectangle, Color color) {
|
|
|
|
batch.Draw(texture, destinationRectangle, null, color);
|
|
|
|
}
|
|
|
|
|
2020-05-23 22:31:20 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Draws a grid of tile outlines reminiscent of graph paper.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="batch">The sprite batch to draw with</param>
|
|
|
|
/// <param name="start">The top left coordinate of the grid</param>
|
|
|
|
/// <param name="tileSize">The size of each tile</param>
|
|
|
|
/// <param name="tileCount">The amount of tiles in the x and y axes</param>
|
|
|
|
/// <param name="gridColor">The color to draw the grid outlines in</param>
|
|
|
|
/// <param name="gridThickness">The thickness of each grid line. Defaults to 1.</param>
|
|
|
|
public static void DrawGrid(this SpriteBatch batch, Vector2 start, Vector2 tileSize, Point tileCount, Color gridColor, float gridThickness = 1) {
|
|
|
|
for (var y = 0; y < tileCount.Y; y++) {
|
|
|
|
for (var x = 0; x < tileCount.X; x++)
|
|
|
|
batch.DrawRectangle(start + new Vector2(x, y) * tileSize, tileSize, gridColor, gridThickness / 2);
|
|
|
|
}
|
|
|
|
var size = tileSize * tileCount.ToVector2() + new Vector2(gridThickness);
|
|
|
|
batch.DrawRectangle(start - new Vector2(gridThickness / 2), size, gridColor, gridThickness / 2);
|
|
|
|
}
|
|
|
|
|
2019-08-06 14:26:51 +02:00
|
|
|
}
|
|
|
|
}
|