Added some defineable types

This commit is contained in:
2021-02-23 08:28:20 +11:00
parent 4f02128553
commit 700a1b8c7f
7 changed files with 55 additions and 33 deletions

View File

@ -9,31 +9,29 @@
game_t * gameInit(platform_t *platform) { game_t * gameInit(platform_t *platform) {
// Create the game // Create the game
dawngame_t *dawn = malloc(sizeof(dawngame_t)); game_t *game = malloc(sizeof(game_t));
if(dawn == NULL) return NULL; if(game == NULL) return NULL;
// Load the game engine // Load the game engine
dawn->engine = engineInit(platform, GAME_NAME, GAME_INPUT_COUNT); game->engine = engineInit(platform, GAME_NAME, GAME_INPUT_COUNT);
if(dawn->engine == NULL) { if(game->engine == NULL) {
free(dawn); free(game);
return NULL; return NULL;
} }
// Pass to the main game to handle. // Pass to the main game to handle.r
return (game_t *)dawn; return game;
} }
void gameUpdate(game_t *game) { void gameUpdate(game_t *game) {
dawngame_t *dawn = (dawngame_t *)game; engineUpdate(game->engine);
engineUpdate(dawn->engine);
} }
void gameDispose(game_t *game) { void gameDispose(game_t *game) {
dawngame_t *dawn = (dawngame_t *)game; engineDispose(game->engine);
engineDispose(dawn->engine); free(game);
free(dawn);
} }
engine_t * gameGetEngine(game_t *game) { engine_t * gameGetEngine(game_t *game) {
return ((dawngame_t *)game)->engine; return game->engine;
} }

View File

@ -5,11 +5,21 @@
#pragma once #pragma once
#include <malloc.h> #include <malloc.h>
#include "../engine/game/game.h"
#include "../engine/engine.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 */ /** Name of the Game */
#define GAME_NAME "Dawn Game" #define GAME_NAME "Dawn Game"
@ -20,10 +30,3 @@
#define GAME_INPUT_RIGHT (inputbind_t)0x04 #define GAME_INPUT_RIGHT (inputbind_t)0x04
#define GAME_INPUT_COUNT 5 #define GAME_INPUT_COUNT 5
/////////////////////////////// Type Definitions ///////////////////////////////
/** Context about Dawn Game */
typedef struct {
/** The engine context for the game */
engine_t *engine;
} dawngame_t;

View File

@ -11,7 +11,10 @@
#include "../platform.h" #include "../platform.h"
/** Information about the current game context. */ /** 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. * Initialize the game context.

View File

@ -8,6 +8,7 @@
#include <stdint.h> #include <stdint.h>
#include <malloc.h> #include <malloc.h>
#include "../util/list/list.h" #include "../util/list/list.h"
#include "../platform.h"
/////////////////////////////////// CONSTANTS ////////////////////////////////// /////////////////////////////////// CONSTANTS //////////////////////////////////
#define INPUT_NULL (inputbind_t)0x00 #define INPUT_NULL (inputbind_t)0x00
@ -19,7 +20,7 @@
* e.g. "Jump" or "Walk Forward". * e.g. "Jump" or "Walk Forward".
*/ */
typedef uint8_t inputbind_t; typedef uint8_t inputbind_t;
typedef void inputsource_t; typedef platforminput_t inputsource_t;
/** /**
* Structure for the entire input mapping. * Structure for the entire input mapping.

View File

@ -7,6 +7,12 @@
#include <malloc.h> #include <malloc.h>
#include <stdint.h> #include <stdint.h>
#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 * 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 * 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) */ /** Dimensions of the screen (in pixels) */
uint32_t screenWidth, screenHeight; uint32_t screenWidth, screenHeight;
int32_t inputSourceCount;
float *inputValues;
platforminput_t *inputSource;
} platform_t; } platform_t;

View File

@ -13,7 +13,11 @@ int32_t main() {
platform_t platform = { platform_t platform = {
.name = "glfw", .name = "glfw",
.screenWidth = WINDOW_WIDTH_DEFAULT, .screenWidth = WINDOW_WIDTH_DEFAULT,
.screenHeight = WINDOW_HEIGHT_DEFAULT .screenHeight = WINDOW_HEIGHT_DEFAULT,
.inputSourceCount = 0,
.inputValues = NULL,
.inputSource = NULL
}; };
// Attempt to init GLFW // Attempt to init GLFW
@ -38,6 +42,10 @@ int32_t main() {
runningGame = gameInit(&platform); runningGame = gameInit(&platform);
if(runningGame == NULL) return 1; if(runningGame == NULL) return 1;
// Update the window title.
engine_t *engine = gameGetEngine(runningGame);
glfwSetWindowTitle(window, engine->name);
// Main Render Loop // Main Render Loop
while(!glfwWindowShouldClose(window)) { while(!glfwWindowShouldClose(window)) {
gameUpdate(runningGame); gameUpdate(runningGame);
@ -65,11 +73,8 @@ void glfwOnResize(GLFWwindow *window, int32_t width, int32_t height) {
void glfwOnKey(GLFWwindow *window, void glfwOnKey(GLFWwindow *window,
int32_t key, int32_t scancode, int32_t action, int32_t mods int32_t key, int32_t scancode, int32_t action, int32_t mods
) { ) {
char *title = glfwGetKeyName(key, scancode); float force = action == GLFW_PRESS ? 1 : 0;
if(title == NULL) { engine_t *engine = gameGetEngine(runningGame);
printf("Unknown Key %d", scancode);
} else { engine->input->current[scancode] = force;
printf(title);
}
printf("\n");
} }

View File

@ -5,6 +5,8 @@
#pragma once #pragma once
#define PLATFORMINPUT_T uint32_t
// I load GLAD and GLFW Here because they need to be included in specific orders // I load GLAD and GLFW Here because they need to be included in specific orders
#include <glad/glad.h> #include <glad/glad.h>
#include <GLFW/glfw3.h> #include <GLFW/glfw3.h>