StrawberryBF/src/PlatformLayer/Batcher.bf

47 lines
1.4 KiB
Brainfuck
Raw Normal View History

using System.Collections;
2020-08-09 16:29:46 +08:00
namespace Strawberry
{
2020-09-09 11:20:26 +08:00
public abstract class Batcher
2020-08-09 16:29:46 +08:00
{
2020-09-09 11:20:26 +08:00
protected List<Batch> batches = new .() ~ delete _;
protected List<Vertex> vertices = new .() ~ delete _;
protected List<uint32> indices = new .() ~ delete _;
2020-09-09 11:20:26 +08:00
public abstract void Draw();
2020-09-09 11:20:26 +08:00
protected ref Batch GetBatch(BatchModes mode, Texture texture)
{
2020-09-07 14:11:45 +08:00
if (batches.Count == 0 || !batches.Back.Matches(mode, texture))
batches.Add(Batch(mode, texture, indices.Count));
return ref batches.Back;
}
2020-09-09 11:20:26 +08:00
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);
2020-08-15 09:40:07 +08:00
public void Rect(float x, float y, float w, float h, Color color)
2020-08-09 16:29:46 +08:00
{
2020-09-07 14:11:45 +08:00
PushQuad(.Shape, null,
.Shape(.(x, y), color),
.Shape(.(x + w, y), color),
.Shape(.(x + w, y + h), color),
.Shape(.(x, y + h), color));
2020-08-10 09:28:55 +08:00
}
public void Rect(Rect rect, Color color)
2020-08-10 09:28:55 +08:00
{
Rect(rect.X, rect.Y, rect.Width, rect.Height, color);
2020-08-09 16:29:46 +08:00
}
2020-09-07 14:11:45 +08:00
public void Tex(Texture texture, float x, float y)
{
PushQuad(.TextureTint, texture,
.Tex(.(x, y), .(0, 1), Color.White),
.Tex(.(x + texture.Width, y), .(1, 1), Color.White),
.Tex(.(x + texture.Width, y + texture.Height), .(1, 0), Color.White),
.Tex(.(x, y + texture.Height), .(0, 0), Color.White));
}
2020-08-09 16:29:46 +08:00
}
}