From 96db74a546e8b74eb16040f428ebfc9892c4dfee Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 27 Apr 2021 07:26:19 -0700 Subject: [PATCH] Added some time functions. --- include/dawn/game/gametime.h | 4 +++- include/dawn/libs.h | 6 +++++- src/game/game.c | 4 ++-- src/game/game.h | 3 ++- src/game/gametime.c | 15 ++++++++++----- src/game/gametime.h | 5 ++++- src/platform/glfw/glwfwplatform.c | 18 ++++++++++++++---- src/platform/glfw/glwfwplatform.h | 1 + src/world/entity/common.c | 2 +- src/world/map/chunk.c | 1 + 10 files changed, 43 insertions(+), 16 deletions(-) diff --git a/include/dawn/game/gametime.h b/include/dawn/game/gametime.h index c447b5da..d05acc6b 100644 --- a/include/dawn/game/gametime.h +++ b/include/dawn/game/gametime.h @@ -7,7 +7,9 @@ #pragma once -#define GAMETIME_STEP 0.016 +#define GAMETIME_FIXED_STEP 0.016 +#define GAMETIME_SMALLEST_STEP 0.001 + typedef struct { /** diff --git a/include/dawn/libs.h b/include/dawn/libs.h index ff2197c3..675a155c 100644 --- a/include/dawn/libs.h +++ b/include/dawn/libs.h @@ -14,8 +14,12 @@ #include #include #include - #include + #if defined(_WIN32) || defined(_WIN64) + // Windows Fixes # define strtok_r strtok_s + # define sleep(n) _sleep(n) +#else + #endif \ No newline at end of file diff --git a/src/game/game.c b/src/game/game.c index 66233e84..86abee42 100644 --- a/src/game/game.c +++ b/src/game/game.c @@ -30,8 +30,8 @@ bool gameInit() { return true; } -bool gameUpdate() { - gameTimeUpdate(); +bool gameUpdate(float platformDelta) { + gameTimeUpdate(platformDelta); renderFrameStart(); inputUpdate(); diff --git a/src/game/game.h b/src/game/game.h index 1f265f6a..9abe0236 100644 --- a/src/game/game.h +++ b/src/game/game.h @@ -24,9 +24,10 @@ bool gameInit(); /** * Tick the main game loop. * + * @param platformDelta The platform tick delta between the last render. * @return True if successful, false if safe exit requested.. */ -bool gameUpdate(); +bool gameUpdate(float platformDelta); /** * Cleanup the game instance. diff --git a/src/game/gametime.c b/src/game/gametime.c index 06054c2a..58882e04 100644 --- a/src/game/gametime.c +++ b/src/game/gametime.c @@ -10,13 +10,18 @@ gametime_t TIME_STATE; void gameTimeInit() { - TIME_STATE.delta = GAMETIME_STEP; - TIME_STATE.last = GAMETIME_STEP; - TIME_STATE.current = GAMETIME_STEP + GAMETIME_STEP; + TIME_STATE.delta = GAMETIME_FIXED_STEP; + TIME_STATE.last = GAMETIME_FIXED_STEP; + TIME_STATE.current = GAMETIME_FIXED_STEP + GAMETIME_FIXED_STEP; } -void gameTimeUpdate() { +void gameTimeUpdate(float platformDelta) { + platformDelta = mathMax( + mathMin(platformDelta, GAMETIME_FIXED_STEP), + 0 + ); + TIME_STATE.last = TIME_STATE.current; - TIME_STATE.current = TIME_STATE.current + GAMETIME_STEP; + TIME_STATE.current = TIME_STATE.current + platformDelta; TIME_STATE.delta = TIME_STATE.current - TIME_STATE.last; } \ No newline at end of file diff --git a/src/game/gametime.h b/src/game/gametime.h index f30f8028..5dfceba8 100644 --- a/src/game/gametime.h +++ b/src/game/gametime.h @@ -7,6 +7,7 @@ #pragma once #include +#include "../util/math.h" /** * Initializes the gametime global time tracking. @@ -15,5 +16,7 @@ void gameTimeInit(); /** * Ticks the current game time. + * + * @param platformDelta The delta step between frames from the platform engine. */ -void gameTimeUpdate(); \ No newline at end of file +void gameTimeUpdate(float platformDelta); \ No newline at end of file diff --git a/src/platform/glfw/glwfwplatform.c b/src/platform/glfw/glwfwplatform.c index e3ab609e..699cadbd 100644 --- a/src/platform/glfw/glwfwplatform.c +++ b/src/platform/glfw/glwfwplatform.c @@ -21,6 +21,7 @@ int32_t main() { // Load GLAD glfwMakeContextCurrent(window); + glfwSwapInterval(0); gladLoadGLLoader((GLADloadproc)glfwGetProcAddress); // Setup window listeners @@ -46,12 +47,21 @@ int32_t main() { // Update the window title. glfwSetWindowTitle(window, GAME_STATE.name); - // Main Render Loop - while(!glfwWindowShouldClose(window)) { - if(!gameUpdate()) break; + double time = 0; - glfwSwapBuffers(window); + // Main Render Loop + while(!glfwWindowShouldClose(window)) { glfwPollEvents(); + + // Determine the delta. + double newTime = glfwGetTime(); + float fDelta = (float)(newTime - time); + time = newTime; + + // Tick the engine. + if(!gameUpdate(fDelta)) break; + glfwSwapBuffers(window); + sleep(0); } // Game has finished running, cleanup. diff --git a/src/platform/glfw/glwfwplatform.h b/src/platform/glfw/glwfwplatform.h index 4c77c6a5..061fa8f5 100644 --- a/src/platform/glfw/glwfwplatform.h +++ b/src/platform/glfw/glwfwplatform.h @@ -11,6 +11,7 @@ #include #include "../../display/render.h" #include "../../game/game.h" +#include "../../game/gametime.h" #include "../../input/input.h" #define WINDOW_WIDTH_DEFAULT 480 diff --git a/src/world/entity/common.c b/src/world/entity/common.c index 5f651f0c..f363da5a 100644 --- a/src/world/entity/common.c +++ b/src/world/entity/common.c @@ -42,7 +42,7 @@ void entityCommonRender(entityid_t id, entity_t *entity) { // Render sprite spriteBatchQuad(ENTITY_STATE.spriteBatch, -1, - entity->positionX, entity->positionY, entity->positionZ, + entity->positionX, entity->positionY, entity->positionZ + 0.16, 1, 1, 0, 0, 1, 1 ); diff --git a/src/world/map/chunk.c b/src/world/map/chunk.c index 47d6bcce..47bd7628 100644 --- a/src/world/map/chunk.c +++ b/src/world/map/chunk.c @@ -15,6 +15,7 @@ void chunkLoad(chunk_t *chunk, int32_t x, int32_t y, int32_t z) { chunk->tiles[0] = 1; chunk->tiles[1] = 1; chunk->tiles[16] = 1; + chunk->tiles[17] = 1; // Start by loading the tiles and figuring out how big we need to make the // primitive that the chunk uses.