From 700a1b8c7f2fbc37f8ef54d26bb1f9101fb7e169 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 23 Feb 2021 08:28:20 +1100 Subject: [PATCH] Added some defineable types --- src/dawn/dawngame.c | 24 +++++++++++------------- src/dawn/dawngame.h | 23 +++++++++++++---------- src/engine/game/game.h | 5 ++++- src/engine/input/input.h | 3 ++- src/engine/platform.h | 10 ++++++++++ src/platform/glfw/glwfwplatform.c | 21 +++++++++++++-------- src/platform/glfw/glwfwplatform.h | 2 ++ 7 files changed, 55 insertions(+), 33 deletions(-) diff --git a/src/dawn/dawngame.c b/src/dawn/dawngame.c index 39600788..603d3585 100644 --- a/src/dawn/dawngame.c +++ b/src/dawn/dawngame.c @@ -9,31 +9,29 @@ game_t * gameInit(platform_t *platform) { // Create the game - dawngame_t *dawn = malloc(sizeof(dawngame_t)); - if(dawn == NULL) return NULL; + game_t *game = malloc(sizeof(game_t)); + if(game == NULL) return NULL; // Load the game engine - dawn->engine = engineInit(platform, GAME_NAME, GAME_INPUT_COUNT); - if(dawn->engine == NULL) { - free(dawn); + game->engine = engineInit(platform, GAME_NAME, GAME_INPUT_COUNT); + if(game->engine == NULL) { + free(game); return NULL; } - // Pass to the main game to handle. - return (game_t *)dawn; + // Pass to the main game to handle.r + return game; } void gameUpdate(game_t *game) { - dawngame_t *dawn = (dawngame_t *)game; - engineUpdate(dawn->engine); + engineUpdate(game->engine); } void gameDispose(game_t *game) { - dawngame_t *dawn = (dawngame_t *)game; - engineDispose(dawn->engine); - free(dawn); + engineDispose(game->engine); + free(game); } engine_t * gameGetEngine(game_t *game) { - return ((dawngame_t *)game)->engine; + return game->engine; } \ No newline at end of file diff --git a/src/dawn/dawngame.h b/src/dawn/dawngame.h index 341bd1e4..7ddb7542 100644 --- a/src/dawn/dawngame.h +++ b/src/dawn/dawngame.h @@ -5,11 +5,21 @@ #pragma once #include -#include "../engine/game/game.h" #include "../engine/engine.h" -/////////////////////////////////// CONSTANTS ////////////////////////////////// +/////////////////////////////// TYPE DEFINITIONS /////////////////////////////// +/** Context about Dawn Game */ +typedef struct { + /** The engine context for the game */ + engine_t *engine; +} 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" @@ -19,11 +29,4 @@ #define GAME_INPUT_LEFT (inputbind_t)0x03 #define GAME_INPUT_RIGHT (inputbind_t)0x04 -#define GAME_INPUT_COUNT 5 - -/////////////////////////////// Type Definitions /////////////////////////////// -/** Context about Dawn Game */ -typedef struct { - /** The engine context for the game */ - engine_t *engine; -} dawngame_t; \ No newline at end of file +#define GAME_INPUT_COUNT 5 \ No newline at end of file diff --git a/src/engine/game/game.h b/src/engine/game/game.h index 1332b4af..36946bee 100644 --- a/src/engine/game/game.h +++ b/src/engine/game/game.h @@ -11,7 +11,10 @@ #include "../platform.h" /** Information about the current game context. */ -typedef void game_t; +#ifndef GAMETYPE_T + #define GAMETYPE_T void +#endif +typedef GAMETYPE_T game_t; /** * Initialize the game context. diff --git a/src/engine/input/input.h b/src/engine/input/input.h index d028b293..1ff4443d 100644 --- a/src/engine/input/input.h +++ b/src/engine/input/input.h @@ -8,6 +8,7 @@ #include #include #include "../util/list/list.h" +#include "../platform.h" /////////////////////////////////// CONSTANTS ////////////////////////////////// #define INPUT_NULL (inputbind_t)0x00 @@ -19,7 +20,7 @@ * e.g. "Jump" or "Walk Forward". */ typedef uint8_t inputbind_t; -typedef void inputsource_t; +typedef platforminput_t inputsource_t; /** * Structure for the entire input mapping. diff --git a/src/engine/platform.h b/src/engine/platform.h index 103183b0..7ab9b16b 100644 --- a/src/engine/platform.h +++ b/src/engine/platform.h @@ -7,6 +7,12 @@ #include #include +#ifndef PLATFORMINPUT_T + #define PLATFORMINPUT_T void +#endif +/** Definition for the platform's input source */ +typedef PLATFORMINPUT_T platforminput_t; + /** * Contains information about the running platform. Essentially this is just * some context as to what is running the game engine itself. It's mostly for @@ -19,4 +25,8 @@ typedef struct { /** Dimensions of the screen (in pixels) */ uint32_t screenWidth, screenHeight; + + int32_t inputSourceCount; + float *inputValues; + platforminput_t *inputSource; } platform_t; \ No newline at end of file diff --git a/src/platform/glfw/glwfwplatform.c b/src/platform/glfw/glwfwplatform.c index f5704602..d5f90aba 100644 --- a/src/platform/glfw/glwfwplatform.c +++ b/src/platform/glfw/glwfwplatform.c @@ -13,7 +13,11 @@ int32_t main() { platform_t platform = { .name = "glfw", .screenWidth = WINDOW_WIDTH_DEFAULT, - .screenHeight = WINDOW_HEIGHT_DEFAULT + .screenHeight = WINDOW_HEIGHT_DEFAULT, + + .inputSourceCount = 0, + .inputValues = NULL, + .inputSource = NULL }; // Attempt to init GLFW @@ -38,6 +42,10 @@ int32_t main() { runningGame = gameInit(&platform); if(runningGame == NULL) return 1; + // Update the window title. + engine_t *engine = gameGetEngine(runningGame); + glfwSetWindowTitle(window, engine->name); + // Main Render Loop while(!glfwWindowShouldClose(window)) { gameUpdate(runningGame); @@ -65,11 +73,8 @@ void glfwOnResize(GLFWwindow *window, int32_t width, int32_t height) { void glfwOnKey(GLFWwindow *window, int32_t key, int32_t scancode, int32_t action, int32_t mods ) { - char *title = glfwGetKeyName(key, scancode); - if(title == NULL) { - printf("Unknown Key %d", scancode); - } else { - printf(title); - } - printf("\n"); + float force = action == GLFW_PRESS ? 1 : 0; + engine_t *engine = gameGetEngine(runningGame); + + engine->input->current[scancode] = force; } \ No newline at end of file diff --git a/src/platform/glfw/glwfwplatform.h b/src/platform/glfw/glwfwplatform.h index 23fdb1ed..c549293c 100644 --- a/src/platform/glfw/glwfwplatform.h +++ b/src/platform/glfw/glwfwplatform.h @@ -5,6 +5,8 @@ #pragma once +#define PLATFORMINPUT_T uint32_t + // I load GLAD and GLFW Here because they need to be included in specific orders #include #include