2019-01-12 06:47:17 +00:00
|
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
|
using RecrownedAthenaeum.Camera;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace RecrownedAthenaeum.Render
|
|
|
|
|
{
|
2019-01-13 06:12:55 +00:00
|
|
|
|
public class RectangleRenderer : IDisposable
|
2019-01-12 06:47:17 +00:00
|
|
|
|
{
|
|
|
|
|
public readonly PrimitiveBatch primitiveBatch;
|
|
|
|
|
private bool disposed;
|
|
|
|
|
private bool began;
|
|
|
|
|
private bool filling;
|
|
|
|
|
|
2019-01-13 06:12:55 +00:00
|
|
|
|
public RectangleRenderer(PrimitiveBatch primitiveBatch)
|
2019-01-12 06:47:17 +00:00
|
|
|
|
{
|
|
|
|
|
this.primitiveBatch = primitiveBatch;
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-13 06:12:55 +00:00
|
|
|
|
public RectangleRenderer(GraphicsDevice graphicsDevice, Camera2D camera) : this(new PrimitiveBatch(graphicsDevice, camera, 4))
|
2019-01-12 06:47:17 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Begin(bool filled)
|
|
|
|
|
{
|
|
|
|
|
filling = filled;
|
2019-01-13 05:40:52 +00:00
|
|
|
|
if (disposed) throw new ObjectDisposedException(GetType().Name);
|
2019-01-12 06:47:17 +00:00
|
|
|
|
if (began) throw new InvalidOperationException("Cannot begin twice.");
|
|
|
|
|
primitiveBatch.Begin(filled ? PrimitiveType.TriangleStrip : PrimitiveType.LineStrip);
|
|
|
|
|
began = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void End()
|
|
|
|
|
{
|
2019-01-13 05:40:52 +00:00
|
|
|
|
if (disposed) throw new ObjectDisposedException(GetType().Name);
|
2019-01-12 06:47:17 +00:00
|
|
|
|
if (!began) throw new InvalidOperationException("Cannot end before beginning.");
|
|
|
|
|
primitiveBatch.End();
|
|
|
|
|
began = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Draws a basic rectangle given bottom left and top right.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="x">X coordinate of bottom left.</param>
|
|
|
|
|
/// <param name="y">Y coordinate of bottom left.</param>
|
|
|
|
|
/// <param name="width">Width of rectangle.</param>
|
|
|
|
|
/// <param name="height">Height of rectangle.</param>
|
|
|
|
|
/// <param name="color">Color of all vertices of this rectangle.</param>
|
|
|
|
|
/// <param name="rotation">Rotation of rectangle. Default is 0 radians.</param>
|
2019-01-13 06:12:55 +00:00
|
|
|
|
public void DrawRectangle(int x, int y, int width, int height, Color color, double rotation = 0)
|
2019-01-12 06:47:17 +00:00
|
|
|
|
{
|
2019-01-13 05:40:52 +00:00
|
|
|
|
if (disposed) throw new ObjectDisposedException(GetType().Name);
|
2019-01-12 06:47:17 +00:00
|
|
|
|
if (!began) throw new InvalidOperationException("Renderer must be started by calling Begin.");
|
|
|
|
|
Vector2[] corners = new Vector2[4];
|
|
|
|
|
|
|
|
|
|
corners[0] = new Vector2(x, y);
|
|
|
|
|
corners[1] = new Vector2(x + (float)Math.Cos(rotation) * width, y + (float)Math.Sin(rotation) * width);
|
|
|
|
|
double topRightAngleFromOrig = Math.Atan(height / (double)width);
|
|
|
|
|
float origDiagonalHypotenuse = (float)Math.Sqrt(width * width * height * height);
|
|
|
|
|
corners[2] = new Vector2(x + (float)Math.Cos(topRightAngleFromOrig + rotation) * origDiagonalHypotenuse, y + (float)Math.Sin(topRightAngleFromOrig + rotation) * origDiagonalHypotenuse);
|
|
|
|
|
corners[3] = new Vector2(x + (float)Math.Cos(rotation + Math.PI / 4f) * height, y + (float)Math.Sin(rotation) * height);
|
|
|
|
|
|
|
|
|
|
if (filling)
|
|
|
|
|
{
|
|
|
|
|
primitiveBatch.AddVertex(corners[1], color);
|
|
|
|
|
primitiveBatch.AddVertex(corners[2], color);
|
|
|
|
|
primitiveBatch.AddVertex(corners[0], color);
|
|
|
|
|
primitiveBatch.AddVertex(corners[3], color);
|
|
|
|
|
} else
|
|
|
|
|
{
|
|
|
|
|
primitiveBatch.AddVertex(corners[0], color);
|
|
|
|
|
primitiveBatch.AddVertex(corners[1], color);
|
|
|
|
|
primitiveBatch.AddVertex(corners[2], color);
|
|
|
|
|
primitiveBatch.AddVertex(corners[3], color);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
Dispose(true);
|
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (!disposed && disposing)
|
|
|
|
|
{
|
|
|
|
|
if (primitiveBatch != null)
|
|
|
|
|
{
|
|
|
|
|
primitiveBatch.Dispose();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (disposed) throw new ObjectDisposedException(typeof(PrimitiveBatch).Name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|