2020-08-24 09:12:15 +08:00
|
|
|
using System.Collections;
|
|
|
|
|
2020-08-09 16:29:46 +08:00
|
|
|
namespace Strawberry
|
|
|
|
{
|
2020-08-24 09:12:15 +08:00
|
|
|
public class Batcher
|
2020-08-09 16:29:46 +08:00
|
|
|
{
|
2020-08-24 09:12:15 +08:00
|
|
|
private List<Vertex> vertices = new .() ~ delete _;
|
|
|
|
private List<uint32> indices = new .() ~ delete _;
|
|
|
|
|
|
|
|
private uint32 vaoID;
|
|
|
|
private uint32 vertexBufferID;
|
|
|
|
private uint32 indexBufferID;
|
|
|
|
|
|
|
|
public this()
|
|
|
|
{
|
|
|
|
GL.glGenVertexArrays(1, &vaoID);
|
|
|
|
GL.glBindVertexArray(vaoID);
|
|
|
|
GL.glGenBuffers(1, &vertexBufferID);
|
|
|
|
GL.glGenBuffers(1, &indexBufferID);
|
|
|
|
GL.glBindVertexArray(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ~this()
|
|
|
|
{
|
|
|
|
GL.glDeleteBuffers(1, &vertexBufferID);
|
|
|
|
GL.glDeleteBuffers(1, &indexBufferID);
|
|
|
|
GL.glDeleteVertexArrays(1, &vaoID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Draw()
|
|
|
|
{
|
|
|
|
GL.glDisable(GL.GL_CULL_FACE);
|
|
|
|
|
|
|
|
GL.glBindVertexArray(vaoID);
|
|
|
|
|
|
|
|
GL.glBindBuffer(GL.GL_ARRAY_BUFFER, vertexBufferID);
|
|
|
|
GL.glEnableVertexAttribArray(0);
|
|
|
|
GL.glVertexAttribPointer(0, 2, GL.GL_FLOAT, GL.GL_FALSE, sizeof(Vertex), (void*)0);
|
|
|
|
GL.glEnableVertexAttribArray(1);
|
|
|
|
GL.glVertexAttribPointer(1, 2, GL.GL_FLOAT, GL.GL_FALSE, sizeof(Vertex), (void*)8);
|
|
|
|
GL.glEnableVertexAttribArray(2);
|
|
|
|
GL.glVertexAttribPointer(2, 4, GL.GL_UNSIGNED_BYTE, GL.GL_TRUE, sizeof(Vertex), (void*)16);
|
|
|
|
GL.glEnableVertexAttribArray(3);
|
|
|
|
GL.glVertexAttribPointer(3, 3, GL.GL_UNSIGNED_BYTE, GL.GL_TRUE, sizeof(Vertex), (void*)20);
|
|
|
|
GL.glBufferData(GL.GL_ARRAY_BUFFER, vertices.Count * sizeof(Vertex), vertices.Ptr, GL.GL_DYNAMIC_DRAW);
|
|
|
|
|
|
|
|
GL.glBindBuffer(GL.GL_ELEMENT_ARRAY_BUFFER, indexBufferID);
|
|
|
|
GL.glBufferData(GL.GL_ELEMENT_ARRAY_BUFFER, indices.Count * sizeof(uint32), indices.Ptr, GL.GL_DYNAMIC_DRAW);
|
2020-08-15 09:40:07 +08:00
|
|
|
|
2020-08-24 09:12:15 +08:00
|
|
|
GL.glDrawElements(GL.GL_TRIANGLES, indices.Count, GL.GL_UNSIGNED_INT, (void*)0);
|
|
|
|
GL.glBindVertexArray(0);
|
|
|
|
|
|
|
|
vertices.Clear();
|
|
|
|
indices.Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void PushQuad(Vertex a, Vertex b, Vertex c, Vertex d)
|
|
|
|
{
|
|
|
|
uint32 count = (uint32)vertices.Count;
|
|
|
|
|
|
|
|
vertices.Add(a);
|
|
|
|
vertices.Add(b);
|
|
|
|
vertices.Add(c);
|
|
|
|
vertices.Add(d);
|
|
|
|
|
|
|
|
indices.Add(count + 0);
|
|
|
|
indices.Add(count + 1);
|
|
|
|
indices.Add(count + 2);
|
|
|
|
indices.Add(count + 0);
|
|
|
|
indices.Add(count + 2);
|
|
|
|
indices.Add(count + 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void PushTri(Vertex a, Vertex b, Vertex c)
|
|
|
|
{
|
|
|
|
uint32 count = (uint32)vertices.Count;
|
|
|
|
|
|
|
|
vertices.Add(a);
|
|
|
|
vertices.Add(b);
|
|
|
|
vertices.Add(c);
|
|
|
|
|
|
|
|
indices.Add(count + 0);
|
|
|
|
indices.Add(count + 1);
|
|
|
|
indices.Add(count + 2);
|
|
|
|
}
|
2020-08-15 09:40:07 +08:00
|
|
|
|
2020-08-17 13:00:13 +08:00
|
|
|
public void Rect(float x, float y, float w, float h, Color color)
|
2020-08-09 16:29:46 +08:00
|
|
|
{
|
2020-08-17 13:00:13 +08:00
|
|
|
PushQuad(.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
|
|
|
}
|
|
|
|
|
2020-08-17 13:00:13 +08:00
|
|
|
public void Rect(Rect rect, Color color)
|
2020-08-10 09:28:55 +08:00
|
|
|
{
|
2020-08-17 13:00:13 +08:00
|
|
|
Rect(rect.X, rect.Y, rect.Width, rect.Height, color);
|
2020-08-09 16:29:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|