From 7ce4516399e5009f530bc178af1432812a9b273a Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 5 Apr 2021 08:48:17 +1000 Subject: [PATCH] Built sprite batch --- src/engine/display/primitives/quad.h | 27 +++++++++++ src/engine/display/spritebatch.c | 59 +++++++++++++++++++++++ src/engine/display/spritebatch.h | 70 ++++++++++++++++++++++++++++ src/engine/engine.c | 3 +- src/engine/engine.h | 1 + src/engine/util/math.h | 4 +- 6 files changed, 162 insertions(+), 2 deletions(-) create mode 100644 src/engine/display/spritebatch.c create mode 100644 src/engine/display/spritebatch.h diff --git a/src/engine/display/primitives/quad.h b/src/engine/display/primitives/quad.h index 6c407230..fbd5e807 100644 --- a/src/engine/display/primitives/quad.h +++ b/src/engine/display/primitives/quad.h @@ -10,12 +10,39 @@ #define QUAD_VERTICE_COUNT 4 #define QUAD_INDICE_COUNT 6 +/** + * Buffers the vertices of a quad onto a primitive. + * + * @param x0 The X lower coordinate. + * @param y0 The Y lower coordinate. + * @param u0 The X lower texture coordinate. + * @param v0 The Y lower texture coordinate. + * @param x1 The X higher coordinate. + * @param y1 The Y higher coordinate. + * @param u1 The X higher texture coordinate. + * @param v1 The Y higher texture coordinate. + * @param verticeStart Start vertice to buffer to. + * @param indiceStart Start indice to buffer to. + */ void quadBuffer(primitive_t *primitive, float x0, float y0, float u0, float v0, float x1, float y1, float u1, float v1, int32_t verticeStart, int32_t indiceStart ); +/** + * Creates a new quad primitive. + * + * @param x0 The X lower coordinate. + * @param y0 The Y lower coordinate. + * @param u0 The X lower texture coordinate. + * @param v0 The Y lower texture coordinate. + * @param x1 The X higher coordinate. + * @param y1 The Y higher coordinate. + * @param u1 The X higher texture coordinate. + * @param v1 The Y higher texture coordinate. + * @return The quad primitive. + */ primitive_t * quadCreate( float x0, float y0, float u0, float v0, float x1, float y1, float u1, float v1 diff --git a/src/engine/display/spritebatch.c b/src/engine/display/spritebatch.c new file mode 100644 index 00000000..883faed7 --- /dev/null +++ b/src/engine/display/spritebatch.c @@ -0,0 +1,59 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#include "spritebatch.h" + +spritebatch_t * spriteBatchCreate(int32_t maxSprites) { + spritebatch_t *batch = malloc(sizeof(spritebatch_t)); + if(batch == NULL) return NULL; + + batch->maxSprites = maxSprites; + batch->currentSprite = 0; + + batch->primitive = primitiveCreate( + maxSprites*QUAD_VERTICE_COUNT, maxSprites*QUAD_INDICE_COUNT + ); + if(batch == NULL) { + free(batch); + return NULL; + } + + return batch; +} + +void spriteBatchQuad(spritebatch_t *spriteBatch, int32_t index, + float x, float y, float width, float height, + float u0, float v0, float u1, float v1 +) { + if(index == -1) { + index = spriteBatch->currentSprite++; + } else { + spriteBatch->currentSprite = max(index, spriteBatch->currentSprite); + } + + quadBuffer(spriteBatch->primitive, + x, y, u0, v0, + x+width, y+height, u1, v1, + index*QUAD_VERTICE_COUNT, index*QUAD_INDICE_COUNT + ); +} + +void spriteBatchFlush(spritebatch_t *spriteBatch) { + spriteBatch->currentSprite = 0; +} + +void spriteBatchDraw(spritebatch_t *spriteBatch, int32_t index, int32_t count) { + if(count == -1) count = spriteBatch->currentSprite; + primitiveDraw(spriteBatch->primitive, + index*QUAD_INDICE_COUNT, count*QUAD_INDICE_COUNT + ); +} + +void spriteBatchDispose(spritebatch_t *spriteBatch) { + primitiveDispose(spriteBatch); + free(spriteBatch); +} \ No newline at end of file diff --git a/src/engine/display/spritebatch.h b/src/engine/display/spritebatch.h new file mode 100644 index 00000000..3f255f27 --- /dev/null +++ b/src/engine/display/spritebatch.h @@ -0,0 +1,70 @@ +// Copyright (c) 2021 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include +#include "primitive.h" +#include "primitives/quad.h" +#include "../util/math.h" + +typedef struct { + /** Maximum sprites the batch can hold. */ + int32_t maxSprites; + + /** The current/next sprite index. */ + int32_t currentSprite; + + /** Internal primitive */ + primitive_t *primitive; +} spritebatch_t; + +/** + * Creates a new Sprite Batch made of standard quads. + * + * @param maxSprites The maxiumum number of sprites the batch can hold. + * @returns A new quad Sprite Batch. + */ +spritebatch_t * spriteBatchCreate(int32_t maxSprites); + +/** + * Renders a sprite onto a given Sprite Batch. + * + * @param spriteBatch The sprite batch to render to. + * @param index The index within the sprite batch. Set to -1 to select "next". + * @param x X coordinate of the sprite. + * @param y Y coordinate of the sprite. + * @param width Width of the sprite. + * @param height Height of the sprite. + * @param u0 Texture U coordinate (min). + * @param v0 Texture V coordinate (min). + * @param u1 Texture U coordinate (max). + * @param v1 Texture V coordinate (max). + */ +void spriteBatchQuad(spritebatch_t *spriteBatch, int32_t index, + float x, float y, float width, float height, + float u0, float v0, float u1, float v1 +); + +/** + * Flushes a sprite batch to reset the indexes. + * @param spriteBatch The batch. + */ +void spriteBatchFlush(spritebatch_t *spriteBatch); + +/** + * Draws the Sprite Batch. + * + * @param spriteBatch The sprite batch to render. + * @param start Start index to render from. + * @param count Count of sprites to render. Set to -1 to render to the current. + */ +void spriteBatchDraw(spritebatch_t *spriteBatch, int32_t start, int32_t count); + +/** + * Disposes a previously created Sprite Batch. + * + * @param spriteBatch The sprite batch to dispose. + */ +void spriteBatchDispose(spritebatch_t *spriteBatch); \ No newline at end of file diff --git a/src/engine/engine.c b/src/engine/engine.c index a425c89e..bafe1181 100644 --- a/src/engine/engine.c +++ b/src/engine/engine.c @@ -10,6 +10,7 @@ camera_t *camera; shader_t *shader; world_t *world; +spritebatch_t *batch; engine_t * engineInit(platform_t *platform, char *name, uint32_t inputCount) { // Create the engine instance. @@ -37,7 +38,7 @@ engine_t * engineInit(platform_t *platform, char *name, uint32_t inputCount) { shader = assetShaderLoad("shaders/test.vert", "shaders/test.frag"); camera = cameraCreate(); cameraLookAt(camera, - 30, 30, 30, + 5, 5, 5, 0, 0, 0 ); cameraPerspective(camera, 45.0f, 1920.0f/1080.0f, 0.5f, 100.0f); diff --git a/src/engine/engine.h b/src/engine/engine.h index 996ca4e7..2ee4f9fc 100644 --- a/src/engine/engine.h +++ b/src/engine/engine.h @@ -14,6 +14,7 @@ #include "display/camera.h" #include "world/world.h" #include "world/chunklist.h" +#include "display/spritebatch.h" /** Information about the current engine context. */ diff --git a/src/engine/util/math.h b/src/engine/util/math.h index dc4825f2..22508725 100644 --- a/src/engine/util/math.h +++ b/src/engine/util/math.h @@ -5,4 +5,6 @@ #pragma once -#define mod(a,b) (a%b+b)%b \ No newline at end of file +#define mod(a,b) (a%b+b)%b +#define max(a,b) (ab?b:a) \ No newline at end of file