using System.Collections; namespace Strawberry { public abstract class Batcher { protected List batches = new .() ~ delete _; protected List vertices = new .() ~ delete _; protected List indices = new .() ~ delete _; public Mat4x4 Matrix; public this() { Reset(); } public void Reset() { Matrix = Game.PlatformLayer.ScreenMatrix; batches.Clear(); vertices.Clear(); indices.Clear(); } public abstract void Draw(); protected ref Batch GetBatch(BatchModes mode, Texture texture) { if (batches.Count == 0 || !batches.Back.Matches(Matrix, mode, texture)) batches.Add(Batch(Matrix, mode, texture, indices.Count)); return ref batches.Back; } protected abstract void PushQuad(BatchModes mode, Texture texture, Vertex a, Vertex b, Vertex c, Vertex d); protected abstract void PushTri(BatchModes mode, Texture texture, Vertex a, Vertex b, Vertex c); public void Rect(float x, float y, float w, float h, Color color) { PushQuad(.Shape, null, .Shape(.(x, y), color), .Shape(.(x + w, y), color), .Shape(.(x + w, y + h), color), .Shape(.(x, y + h), color)); } public void Rect(Rect rect, Color color) { Rect(rect.X, rect.Y, rect.Width, rect.Height, color); } public void Tri(Vector a, Vector b, Vector c, Color color) { PushTri(.Shape, null, .Shape(a, color), .Shape(b, color), .Shape(c, color)); } public void Quad(Vector a, Vector b, Vector c, Vector d, Color color) { PushQuad(.Shape, null, .Shape(a, color), .Shape(b, color), .Shape(c, color), .Shape(d, color)); } public void Tex(Texture texture, float x, float y) { PushQuad(.TextureTint, texture, .Tex(.(x, y), .(0, 0), Color.White), .Tex(.(x + texture.Width, y), .(1, 0), Color.White), .Tex(.(x + texture.Width, y + texture.Height), .(1, 1), Color.White), .Tex(.(x, y + texture.Height), .(0, 1), Color.White)); } } }