From ff8b84b542f0bf79f58be60e33e14a5307d9f340 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 19 Apr 2021 21:30:34 +1000 Subject: [PATCH] Reshuffled --- src/dawn/dawngame.h | 41 --------------- src/{engine => }/display/camera.c | 0 src/{engine => }/display/camera.h | 0 src/{engine => }/display/primitive.c | 26 +++++++--- src/{engine => }/display/primitive.h | 0 src/{engine => }/display/primitives/cube.c | 0 src/{engine => }/display/primitives/cube.h | 0 src/{engine => }/display/primitives/quad.c | 0 src/{engine => }/display/primitives/quad.h | 0 src/{engine => }/display/render.c | 0 src/{engine => }/display/render.h | 0 src/{engine => }/display/shader.c | 0 src/{engine => }/display/shader.h | 0 src/{engine => }/display/spritebatch.c | 0 src/{engine => }/display/spritebatch.h | 0 src/{engine => }/display/texture.c | 0 src/{engine => }/display/texture.h | 0 src/{engine => }/display/tileset.c | 0 src/{engine => }/display/tileset.h | 0 src/{engine => }/engine.c | 0 src/{engine => }/engine.h | 0 src/engine/game/game.h | 47 ----------------- src/{engine => }/file/asset.c | 0 src/{engine => }/file/asset.h | 1 - src/{dawn/dawngame.c => game/game.c} | 4 +- src/game/game.h | 59 ++++++++++++++++++++++ src/{engine => }/input/input.c | 0 src/{engine => }/input/input.h | 2 +- src/{engine => }/platform.h | 0 src/platform/glfw/glwfwplatform.c | 19 ++++--- src/platform/glfw/glwfwplatform.h | 15 +++--- src/{engine => }/texture.h | 0 src/{engine => }/util/list.c | 0 src/{engine => }/util/list.h | 0 src/{engine => }/util/math.h | 0 src/{engine => }/util/string.h | 0 src/{dawn => }/world/chunk.c | 0 src/{dawn => }/world/chunk.h | 4 +- src/world/entity/player.c | 35 +++++++++++++ src/world/entity/player.h | 18 +++++++ src/{dawn => }/world/tile.c | 0 src/{dawn => }/world/tile.h | 6 +-- src/{dawn => }/world/world.c | 22 +++++++- src/{dawn => }/world/world.h | 17 ++++--- src/{dawn => }/world/worldtypes.h | 42 +++++++++++---- 45 files changed, 218 insertions(+), 140 deletions(-) delete mode 100644 src/dawn/dawngame.h rename src/{engine => }/display/camera.c (100%) rename src/{engine => }/display/camera.h (100%) rename src/{engine => }/display/primitive.c (89%) rename src/{engine => }/display/primitive.h (100%) rename src/{engine => }/display/primitives/cube.c (100%) rename src/{engine => }/display/primitives/cube.h (100%) rename src/{engine => }/display/primitives/quad.c (100%) rename src/{engine => }/display/primitives/quad.h (100%) rename src/{engine => }/display/render.c (100%) rename src/{engine => }/display/render.h (100%) rename src/{engine => }/display/shader.c (100%) rename src/{engine => }/display/shader.h (100%) rename src/{engine => }/display/spritebatch.c (100%) rename src/{engine => }/display/spritebatch.h (100%) rename src/{engine => }/display/texture.c (100%) rename src/{engine => }/display/texture.h (100%) rename src/{engine => }/display/tileset.c (100%) rename src/{engine => }/display/tileset.h (100%) rename src/{engine => }/engine.c (100%) rename src/{engine => }/engine.h (100%) delete mode 100644 src/engine/game/game.h rename src/{engine => }/file/asset.c (100%) rename src/{engine => }/file/asset.h (99%) rename src/{dawn/dawngame.c => game/game.c} (94%) create mode 100644 src/game/game.h rename src/{engine => }/input/input.c (100%) rename src/{engine => }/input/input.h (98%) rename src/{engine => }/platform.h (100%) rename src/{engine => }/texture.h (100%) rename src/{engine => }/util/list.c (100%) rename src/{engine => }/util/list.h (100%) rename src/{engine => }/util/math.h (100%) rename src/{engine => }/util/string.h (100%) rename src/{dawn => }/world/chunk.c (100%) rename src/{dawn => }/world/chunk.h (89%) create mode 100644 src/world/entity/player.c create mode 100644 src/world/entity/player.h rename src/{dawn => }/world/tile.c (100%) rename src/{dawn => }/world/tile.h (89%) rename src/{dawn => }/world/world.c (90%) rename src/{dawn => }/world/world.h (79%) rename src/{dawn => }/world/worldtypes.h (80%) diff --git a/src/dawn/dawngame.h b/src/dawn/dawngame.h deleted file mode 100644 index 9e39736c..00000000 --- a/src/dawn/dawngame.h +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2021 Dominic Msters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include -#include "../engine/engine.h" -#include "../engine/file/asset.h" -#include "../engine/display/shader.h" -#include "../engine/display/camera.h" -#include "world/world.h" - -/////////////////////////////// TYPE DEFINITIONS /////////////////////////////// -/** Context about Dawn Game */ -typedef struct { - /** The engine context for the game */ - engine_t *engine; - - /** Rendering items */ - camera_t *camera; - shader_t *shader; - world_t *world; -} dawngame_t; -#define GAMETYPE_T dawngame_t - - -////////////////////////////// TYPE BOUND INCLUDES ///////////////////////////// -#include "../engine/game/game.h" - -/////////////////////////////////// CONSTANTS ////////////////////////////////// -/** Name of the Game */ -#define GAME_NAME "Dawn Game" - -/** Inputs */ -#define GAME_INPUT_UP (inputbind_t)0x01 -#define GAME_INPUT_DOWN (inputbind_t)0x02 -#define GAME_INPUT_LEFT (inputbind_t)0x03 -#define GAME_INPUT_RIGHT (inputbind_t)0x04 - -#define GAME_INPUT_COUNT 5 \ No newline at end of file diff --git a/src/engine/display/camera.c b/src/display/camera.c similarity index 100% rename from src/engine/display/camera.c rename to src/display/camera.c diff --git a/src/engine/display/camera.h b/src/display/camera.h similarity index 100% rename from src/engine/display/camera.h rename to src/display/camera.h diff --git a/src/engine/display/primitive.c b/src/display/primitive.c similarity index 89% rename from src/engine/display/primitive.c rename to src/display/primitive.c index eb642abf..9dabefc9 100644 --- a/src/engine/display/primitive.c +++ b/src/display/primitive.c @@ -20,11 +20,10 @@ primitive_t * primitiveCreate(int32_t verticeCount, int32_t indiceCount) { free(buffer); //Buffer an empty set of data then buffer each component - glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, primitive->indexBuffer); - glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeIndices, 0, GL_DYNAMIC_DRAW); - glBindBuffer(GL_ARRAY_BUFFER, primitive->vertexBuffer); + glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, primitive->indexBuffer); glBufferData(GL_ARRAY_BUFFER, sizePositions+sizeCoordinates, 0, GL_DYNAMIC_DRAW); + glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeIndices, 0, GL_DYNAMIC_DRAW); size_t offset = 0; @@ -32,13 +31,11 @@ primitive_t * primitiveCreate(int32_t verticeCount, int32_t indiceCount) { glVertexAttribPointer(0, PRIMITIVE_POSITIONS_PER_VERTICE, GL_FLOAT, GL_FALSE, 0, (void *)offset ); + glEnableVertexAttribArray(0); offset += sizePositions; - glVertexAttribPointer(1, PRIMITIVE_COORDINATES_PER_VERTICE, GL_FLOAT, GL_FALSE, 0, (void *)offset ); - - glEnableVertexAttribArray(0); glEnableVertexAttribArray(1); return primitive; @@ -98,8 +95,23 @@ void primitiveBufferIndices(primitive_t *primitive, } void primitiveDraw(primitive_t *primitive, int32_t start, int32_t count) { - glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, primitive->indexBuffer); + // Re-Bind the buffers glBindBuffer(GL_ARRAY_BUFFER, primitive->vertexBuffer); + glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, primitive->indexBuffer); + + // Re-Calculate the attrib pointers. + size_t offset = 0; + glVertexAttribPointer(0, PRIMITIVE_POSITIONS_PER_VERTICE, GL_FLOAT, + GL_FALSE, 0, (void *)offset + ); + glEnableVertexAttribArray(0); + offset += sizeof(float) * primitive->verticeCount * PRIMITIVE_POSITIONS_PER_VERTICE; + glVertexAttribPointer(1, PRIMITIVE_COORDINATES_PER_VERTICE, GL_FLOAT, + GL_FALSE, 0, (void *)offset + ); + glEnableVertexAttribArray(1); + + // Render the elements. glDrawElements(GL_TRIANGLES, count, GL_UNSIGNED_INT, (void *)( sizeof(indice_t)*start )); diff --git a/src/engine/display/primitive.h b/src/display/primitive.h similarity index 100% rename from src/engine/display/primitive.h rename to src/display/primitive.h diff --git a/src/engine/display/primitives/cube.c b/src/display/primitives/cube.c similarity index 100% rename from src/engine/display/primitives/cube.c rename to src/display/primitives/cube.c diff --git a/src/engine/display/primitives/cube.h b/src/display/primitives/cube.h similarity index 100% rename from src/engine/display/primitives/cube.h rename to src/display/primitives/cube.h diff --git a/src/engine/display/primitives/quad.c b/src/display/primitives/quad.c similarity index 100% rename from src/engine/display/primitives/quad.c rename to src/display/primitives/quad.c diff --git a/src/engine/display/primitives/quad.h b/src/display/primitives/quad.h similarity index 100% rename from src/engine/display/primitives/quad.h rename to src/display/primitives/quad.h diff --git a/src/engine/display/render.c b/src/display/render.c similarity index 100% rename from src/engine/display/render.c rename to src/display/render.c diff --git a/src/engine/display/render.h b/src/display/render.h similarity index 100% rename from src/engine/display/render.h rename to src/display/render.h diff --git a/src/engine/display/shader.c b/src/display/shader.c similarity index 100% rename from src/engine/display/shader.c rename to src/display/shader.c diff --git a/src/engine/display/shader.h b/src/display/shader.h similarity index 100% rename from src/engine/display/shader.h rename to src/display/shader.h diff --git a/src/engine/display/spritebatch.c b/src/display/spritebatch.c similarity index 100% rename from src/engine/display/spritebatch.c rename to src/display/spritebatch.c diff --git a/src/engine/display/spritebatch.h b/src/display/spritebatch.h similarity index 100% rename from src/engine/display/spritebatch.h rename to src/display/spritebatch.h diff --git a/src/engine/display/texture.c b/src/display/texture.c similarity index 100% rename from src/engine/display/texture.c rename to src/display/texture.c diff --git a/src/engine/display/texture.h b/src/display/texture.h similarity index 100% rename from src/engine/display/texture.h rename to src/display/texture.h diff --git a/src/engine/display/tileset.c b/src/display/tileset.c similarity index 100% rename from src/engine/display/tileset.c rename to src/display/tileset.c diff --git a/src/engine/display/tileset.h b/src/display/tileset.h similarity index 100% rename from src/engine/display/tileset.h rename to src/display/tileset.h diff --git a/src/engine/engine.c b/src/engine.c similarity index 100% rename from src/engine/engine.c rename to src/engine.c diff --git a/src/engine/engine.h b/src/engine.h similarity index 100% rename from src/engine/engine.h rename to src/engine.h diff --git a/src/engine/game/game.h b/src/engine/game/game.h deleted file mode 100644 index de10d914..00000000 --- a/src/engine/game/game.h +++ /dev/null @@ -1,47 +0,0 @@ -/** - * Copyright (c) 2021 Dominic Msters - * - * This software is released under the MIT License. - * https://opensource.org/licenses/MIT - */ - -#pragma once -#include -#include "../engine.h" -#include "../platform.h" - -/** Information about the current game context. */ -#ifndef GAMETYPE_T - #define GAMETYPE_T void -#endif -typedef GAMETYPE_T game_t; - -/** - * Initialize the game context. - * - * @return The game instance context. - */ -game_t * gameInit(platform_t *platform); - -/** - * Start the main game loop. - * - * @param game The game to start the loop for. - * @return Refer to engineUpdate. 0 for loop continue, 1 for safe exit. - */ -uint32_t gameUpdate(game_t *game); - -/** - * Cleanup a previously constructed. - * @param game The game to cleanup. - */ -void gameDispose(game_t *game); - -/** - * Because games are anonymously typed we simply request that they allow other - * parts of the software to access the engine directly. - * - * @param game The game context - * @return The engine context attached to the running game. - */ -engine_t * gameGetEngine(game_t *game); \ No newline at end of file diff --git a/src/engine/file/asset.c b/src/file/asset.c similarity index 100% rename from src/engine/file/asset.c rename to src/file/asset.c diff --git a/src/engine/file/asset.h b/src/file/asset.h similarity index 99% rename from src/engine/file/asset.h rename to src/file/asset.h index dbdf905c..d998e2e5 100644 --- a/src/engine/file/asset.h +++ b/src/file/asset.h @@ -11,7 +11,6 @@ #include #include #include - #include "../display/shader.h" #include "../display/texture.h" diff --git a/src/dawn/dawngame.c b/src/game/game.c similarity index 94% rename from src/dawn/dawngame.c rename to src/game/game.c index 784ac1fd..8235e56d 100644 --- a/src/dawn/dawngame.c +++ b/src/game/game.c @@ -5,7 +5,7 @@ * https://opensource.org/licenses/MIT */ -#include "dawngame.h" +#include "game.h" game_t * gameInit(platform_t *platform) { // Create the game @@ -45,7 +45,7 @@ uint32_t gameUpdate(game_t *game) { // Prepare for rendering shaderUse(game->shader); shaderUseCamera(game->shader, game->camera); - worldRender(game->world, game->shader); + worldRender(game->world, game->shader, game->camera); return 0; } diff --git a/src/game/game.h b/src/game/game.h new file mode 100644 index 00000000..cbffc36c --- /dev/null +++ b/src/game/game.h @@ -0,0 +1,59 @@ +/** + * Copyright (c) 2021 Dominic Msters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include +#include "../engine.h" +#include "../platform.h" +#include "../display/camera.h" +#include "../display/shader.h" +#include "../world/world.h" + +/////////////////////////////////// CONSTANTS ////////////////////////////////// +/** Name of the Game */ +#define GAME_NAME "Dawn Game" + +/** Inputs */ +#define GAME_INPUT_UP (inputbind_t)0x01 +#define GAME_INPUT_DOWN (inputbind_t)0x02 +#define GAME_INPUT_LEFT (inputbind_t)0x03 +#define GAME_INPUT_RIGHT (inputbind_t)0x04 + +#define GAME_INPUT_COUNT 5 + +/////////////////////////////// TYPE DEFINITIONS /////////////////////////////// +/** Information about the current game context. */ +typedef struct { + /** The engine context for the game */ + engine_t *engine; + + /** Rendering items */ + camera_t *camera; + shader_t *shader; + world_t *world; +} game_t; + +/** + * Initialize the game context. + * + * @return The game instance context. + */ +game_t * gameInit(platform_t *platform); + +/** + * Start the main game loop. + * + * @param game The game to start the loop for. + * @return Refer to engineUpdate. 0 for loop continue, 1 for safe exit. + */ +uint32_t gameUpdate(game_t *game); + +/** + * Cleanup a previously constructed. + * @param game The game to cleanup. + */ +void gameDispose(game_t *game); \ No newline at end of file diff --git a/src/engine/input/input.c b/src/input/input.c similarity index 100% rename from src/engine/input/input.c rename to src/input/input.c diff --git a/src/engine/input/input.h b/src/input/input.h similarity index 98% rename from src/engine/input/input.h rename to src/input/input.h index 210f73fd..6c4ba8f3 100644 --- a/src/engine/input/input.h +++ b/src/input/input.h @@ -107,7 +107,7 @@ void inputBind(input_t *input, inputbind_t bind, inputsource_t source); void inputUnbind(input_t *input, inputbind_t bind, inputsource_t source); /** - * Is the current input "down", not being pressed, being moved, not in a state + * Is the current input "down", being pressed, being moved, not in a state * of rest. * * @param state The input state to check against. diff --git a/src/engine/platform.h b/src/platform.h similarity index 100% rename from src/engine/platform.h rename to src/platform.h diff --git a/src/platform/glfw/glwfwplatform.c b/src/platform/glfw/glwfwplatform.c index f99b8f93..61cfc612 100644 --- a/src/platform/glfw/glwfwplatform.c +++ b/src/platform/glfw/glwfwplatform.c @@ -42,11 +42,12 @@ int32_t main() { if(runningGame == NULL) return 1; // Update the window title. - engine_t *engine = gameGetEngine(runningGame); - glfwSetWindowTitle(window, engine->name); + glfwSetWindowTitle(window, runningGame->engine->name); // Bind inputs - inputBind(engine->input, INPUT_NULL, (inputsource_t *)GLFW_KEY_ESCAPE); + inputBind(runningGame->engine->input, INPUT_NULL, + (inputsource_t *)GLFW_KEY_ESCAPE + ); // Main Render Loop while(!glfwWindowShouldClose(window)) { @@ -67,10 +68,9 @@ int32_t main() { } void glfwOnResize(GLFWwindow *window, int32_t width, int32_t height) { - engine_t *engine = gameGetEngine(runningGame); - engine->platform->screenWidth = width; - engine->platform->screenWidth = height; - renderSetResolution(engine->render, width, height); + runningGame->engine->platform->screenWidth = width; + runningGame->engine->platform->screenWidth = height; + renderSetResolution(runningGame->engine->render, width, height); } void glfwOnKey(GLFWwindow *window, @@ -78,10 +78,9 @@ void glfwOnKey(GLFWwindow *window, ) { if(runningGame == NULL) return; - engine_t *engine = gameGetEngine(runningGame); if(action == GLFW_PRESS) { - engine->input->buffer[key] = 1; + runningGame->engine->input->buffer[key] = 1; } else if(action == GLFW_RELEASE) { - engine->input->buffer[key] = 0; + runningGame->engine->input->buffer[key] = 0; } } \ No newline at end of file diff --git a/src/platform/glfw/glwfwplatform.h b/src/platform/glfw/glwfwplatform.h index 7110bf19..f707b4b6 100644 --- a/src/platform/glfw/glwfwplatform.h +++ b/src/platform/glfw/glwfwplatform.h @@ -5,16 +5,17 @@ #pragma once -#define PLATFORMINPUT_T uint32_t - // I load GLAD and GLFW Here because they need to be included in specific orders #include #include #include -#include "../../engine/platform.h" -#include "../../engine/game/game.h" -#include "../../engine/input/input.h" -#include "../../engine/display/render.h" + +#define PLATFORMINPUT_T uint32_t + +#include "../../platform.h" +#include "../../game/game.h" +#include "../../input/input.h" +#include "../../display/render.h" #define WINDOW_WIDTH_DEFAULT 480 #define WINDOW_HEIGHT_DEFAULT 270 @@ -29,7 +30,6 @@ extern game_t *runningGame; */ int32_t main(); - /** * Resize callbacks. * @@ -39,7 +39,6 @@ int32_t main(); */ void glfwOnResize(GLFWwindow *window, int32_t width, int32_t height); - /** * Keyboard Input callbacks. * diff --git a/src/engine/texture.h b/src/texture.h similarity index 100% rename from src/engine/texture.h rename to src/texture.h diff --git a/src/engine/util/list.c b/src/util/list.c similarity index 100% rename from src/engine/util/list.c rename to src/util/list.c diff --git a/src/engine/util/list.h b/src/util/list.h similarity index 100% rename from src/engine/util/list.h rename to src/util/list.h diff --git a/src/engine/util/math.h b/src/util/math.h similarity index 100% rename from src/engine/util/math.h rename to src/util/math.h diff --git a/src/engine/util/string.h b/src/util/string.h similarity index 100% rename from src/engine/util/string.h rename to src/util/string.h diff --git a/src/dawn/world/chunk.c b/src/world/chunk.c similarity index 100% rename from src/dawn/world/chunk.c rename to src/world/chunk.c diff --git a/src/dawn/world/chunk.h b/src/world/chunk.h similarity index 89% rename from src/dawn/world/chunk.h rename to src/world/chunk.h index b1d000c5..a0a767ff 100644 --- a/src/dawn/world/chunk.h +++ b/src/world/chunk.h @@ -2,8 +2,8 @@ #include #include "worldtypes.h" #include "tile.h" -#include "../../engine/file/asset.h" -#include "../../engine/util/string.h" +#include "../file/asset.h" +#include "../util/string.h" /** When loading a chunk, how many chars to offset (ASCII char to byte) */ #define CHUNK_TILE_LOAD_ASCII 48 diff --git a/src/world/entity/player.c b/src/world/entity/player.c new file mode 100644 index 00000000..54fe8710 --- /dev/null +++ b/src/world/entity/player.c @@ -0,0 +1,35 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#include "player.h" + +void playerCreate(world_t *world, entity_t *entity) { + // Setup the update state. + entity->entityUpdate = &playerUpdate; + entity->entityDispose = &playerDispose; + + world->entityPrimitives[entity->id] = quadCreate(0, + 0, 0, 0, 0, + 1, 1, 1, 1 + ); +} + +void playerUpdate(world_t *world, entity_t *entity, shader_t *shader, + camera_t *camera +) { + shaderUsePosition(shader, 0, 0, 0, 0, 0, 0); + primitiveDraw(world->entityPrimitives[entity->id], + 0, world->entityPrimitives[entity->id]->indiceCount + ); +} + +void playerDispose(world_t *world, entity_t *entity) { + primitiveDispose(world->entityPrimitives[entity->id]); + + entity->entityDispose = NULL; + entity->entityUpdate = NULL; +} \ No newline at end of file diff --git a/src/world/entity/player.h b/src/world/entity/player.h new file mode 100644 index 00000000..d30ae4e2 --- /dev/null +++ b/src/world/entity/player.h @@ -0,0 +1,18 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include "../worldtypes.h" +#include "../../display/primitives/quad.h" +#include "../../input/input.h" + +void playerCreate(world_t *world, entity_t *entity); +void playerUpdate(world_t *world, entity_t *entity, shader_t *shader, + camera_t *camera +); + +void playerDispose(world_t *world, entity_t *entity); \ No newline at end of file diff --git a/src/dawn/world/tile.c b/src/world/tile.c similarity index 100% rename from src/dawn/world/tile.c rename to src/world/tile.c diff --git a/src/dawn/world/tile.h b/src/world/tile.h similarity index 89% rename from src/dawn/world/tile.h rename to src/world/tile.h index 226858ad..24392022 100644 --- a/src/dawn/world/tile.h +++ b/src/world/tile.h @@ -7,9 +7,9 @@ #include #include #include "worldtypes.h" -#include "../../engine/display/tileset.h" -#include "../../engine/display/primitives/quad.h" -#include "../../engine/display/primitives/cube.h" +#include "../display/tileset.h" +#include "../display/primitives/quad.h" +#include "../display/primitives/cube.h" /** The tile id that represents a NULL tile */ #define TILE_NULL (tileid_t)0 diff --git a/src/dawn/world/world.c b/src/world/world.c similarity index 90% rename from src/dawn/world/world.c rename to src/world/world.c index 4701e36f..f41624f3 100644 --- a/src/dawn/world/world.c +++ b/src/world/world.c @@ -13,6 +13,7 @@ world_t * worldLoad(char *assetWorldDirectory) { char *reading, *version, *textureFilename, *temp; world_t *world; chunk_t *chunk; + entity_t *entity; tiledef_t *tileDef; int32_t i, x, y, z; @@ -28,6 +29,14 @@ world_t * worldLoad(char *assetWorldDirectory) { world->assetWorldDirectory = assetWorldDirectory; world->x = 0, world->y = 0, world->z = 0; + // Init the entities + for(i = 0; i < WORLD_ENTITY_COUNT; i++) { + entity = world->entities + i; + entity->id = (entityid_t)i; + entity->entityUpdate = NULL; + entity->entityDispose = NULL; + } + // Now begin parsing, first we need to know which version of the file format // we are using. reading = worldData; @@ -93,15 +102,18 @@ world_t * worldLoad(char *assetWorldDirectory) { return world; } -void worldRender(world_t *world, shader_t *shader) { +void worldRender(world_t *world, shader_t *shader, camera_t *camera) { int32_t i, j, tx, ty, tz; float x, y, z; chunk_t *chunk; tile_t *tile; tiledef_t *tileDef; + entity_t *entity; + // Bind world texture shaderUseTexture(shader, world->texture); + // Render each chunk. for(i = 0; i < WORLD_CHUNK_COUNT; i++) { chunk = world->chunks + i; if(chunk->primitive == NULL) continue; @@ -113,6 +125,14 @@ void worldRender(world_t *world, shader_t *shader) { shaderUsePosition(shader, x, y, z, 0, 0, 0); primitiveDraw(chunk->primitive, 0, chunk->primitive->indiceCount); } + + // Tick entities + for(i = 0; i < WORLD_ENTITY_COUNT; i++) { + entity = world->entities + i; + if(entity->entityUpdate == NULL) break; + + entity->entityUpdate(world, entity, shader, camera); + } } void worldDispose(world_t *world) { diff --git a/src/dawn/world/world.h b/src/world/world.h similarity index 79% rename from src/dawn/world/world.h rename to src/world/world.h index 7a75c158..6ce3abdc 100644 --- a/src/dawn/world/world.h +++ b/src/world/world.h @@ -9,13 +9,14 @@ #include "worldtypes.h" #include "tile.h" #include "chunk.h" -#include "../../engine/display/shader.h" -#include "../../engine/display/primitive.h" -#include "../../engine/display/tileset.h" -#include "../../engine/display/texture.h" -#include "../../engine/file/asset.h" -#include "../../engine/util/string.h" -#include "../../engine/util/math.h" +#include "../display/shader.h" +#include "../display/camera.h" +#include "../display/primitive.h" +#include "../display/tileset.h" +#include "../display/texture.h" +#include "../file/asset.h" +#include "../util/string.h" +#include "../util/math.h" /** Token in the world data file to split on. */ #define WORLD_LOAD_TOKEN ";" @@ -33,7 +34,7 @@ world_t * worldLoad(char *fileName); * @param world The world to render. * @param shader The shader to render to. */ -void worldRender(world_t *world, shader_t *shader); +void worldRender(world_t *world, shader_t *shader, camera_t *camera); /** * Cleans up a previously created world. diff --git a/src/dawn/world/worldtypes.h b/src/world/worldtypes.h similarity index 80% rename from src/dawn/world/worldtypes.h rename to src/world/worldtypes.h index baaa2a95..cca9ad56 100644 --- a/src/dawn/world/worldtypes.h +++ b/src/world/worldtypes.h @@ -8,17 +8,35 @@ #pragma once #include #include -#include "../../engine/display/primitive.h" -#include "../../engine/display/texture.h" -#include "../../engine/display/tileset.h" +#include "../display/shader.h" +#include "../display/primitive.h" +#include "../display/camera.h" +#include "../display/texture.h" +#include "../display/tileset.h" + +// Forwarders +typedef struct entity_t entity_t; +typedef struct world_t world_t; //////////////////////////////////////////////////////////////////////////////// // Entities //////////////////////////////////////////////////////////////////////////////// -/** Entity ID */ typedef uint8_t entityid_t; +/** Entity ID */ +typedef struct entity_t { + entityid_t id; + + /** Callback for frame events, or NULL */ + void (*entityUpdate)(world_t *world, entity_t *entity, shader_t *shader, + camera_t *camera + ); + + /** Callback for cleanup events, or NULL */ + void (*entityDispose)(world_t *world, entity_t *entity); +} entity_t; + typedef struct { float x, y, z; } entitypos_t; @@ -43,7 +61,6 @@ typedef uint8_t tileid_t; typedef struct { /** ID of the tile */ tileid_t id; - /** Rendering indice and vertice offsets for the tile. */ int32_t indiceStart, verticeStart; } tile_t; @@ -80,13 +97,11 @@ typedef struct { /** Representation of a chunk, a group of tiles that can be buffered around. */ -typedef struct chunk_t { +typedef struct { /** Position (in absolute chunk coordinates) of this chunk */ int32_t x, y, z; - /** Array of tiles within the chunk */ tile_t tiles[CHUNK_TILE_COUNT]; - /** Ready to be rendered chunk 3d primitive */ primitive_t *primitive; } chunk_t; @@ -105,11 +120,14 @@ typedef struct chunk_t { /** Count of chunks in the world */ #define WORLD_CHUNK_COUNT WORLD_WIDTH*WORLD_HEIGHT*WORLD_DEPTH +#define WORLD_ENTITY_COUNT 32 + /** Representation of the world. */ -typedef struct { +typedef struct world_t { /** Asset subdir name */ char *assetWorldDirectory; + // Tiles /** Tileset texture */ texture_t *texture; /** Tileset predivided */ @@ -117,10 +135,16 @@ typedef struct { /** Tilemap of the world */ tilemap_t *tilemap; + // Chunks /** Current (chunk) coordinates of the first chunk in the chunk list */ int32_t x, y, z; /** Current chunk list, ordered */ chunk_t *chunkList[WORLD_CHUNK_COUNT]; /** Chunk array (unordered) */ chunk_t chunks[WORLD_CHUNK_COUNT]; + + /** Entity Definitions */ + entity_t entities[WORLD_ENTITY_COUNT]; + entitypos_t entityPositions[WORLD_ENTITY_COUNT]; + primitive_t *entityPrimitives[WORLD_ENTITY_COUNT]; } world_t; \ No newline at end of file