Much much better

This commit is contained in:
2021-02-23 07:57:24 +11:00
parent adc7f5e208
commit 4f02128553
24 changed files with 371 additions and 360 deletions

View File

@ -13,7 +13,7 @@ game_t * gameInit(platform_t *platform) {
if(dawn == NULL) return NULL; if(dawn == NULL) return NULL;
// Load the game engine // Load the game engine
dawn->engine = engineInit(platform, GAME_NAME, INPUT_COUNT); dawn->engine = engineInit(platform, GAME_NAME, GAME_INPUT_COUNT);
if(dawn->engine == NULL) { if(dawn->engine == NULL) {
free(dawn); free(dawn);
return NULL; return NULL;
@ -23,13 +23,17 @@ game_t * gameInit(platform_t *platform) {
return (game_t *)dawn; return (game_t *)dawn;
} }
void gameStart(game_t *game) { void gameUpdate(game_t *game) {
dawngame_t *dawn = (dawngame_t *)game; dawngame_t *dawn = (dawngame_t *)game;
engineStart(dawn->engine); engineUpdate(dawn->engine);
} }
void gameDispose(game_t *game) { void gameDispose(game_t *game) {
dawngame_t *dawn = (dawngame_t *)game; dawngame_t *dawn = (dawngame_t *)game;
engineDispose(dawn->engine); engineDispose(dawn->engine);
free(dawn); free(dawn);
}
engine_t * gameGetEngine(game_t *game) {
return ((dawngame_t *)game)->engine;
} }

View File

@ -5,7 +5,8 @@
#pragma once #pragma once
#include <malloc.h> #include <malloc.h>
#include "../../game/game.h" #include "../engine/game/game.h"
#include "../engine/engine.h"
/////////////////////////////////// CONSTANTS ////////////////////////////////// /////////////////////////////////// CONSTANTS //////////////////////////////////
@ -13,12 +14,12 @@
#define GAME_NAME "Dawn Game" #define GAME_NAME "Dawn Game"
/** Inputs */ /** Inputs */
#define INPUT_UP (inputbind_t)0x01 #define GAME_INPUT_UP (inputbind_t)0x01
#define INPUT_DOWN (inputbind_t)0x02 #define GAME_INPUT_DOWN (inputbind_t)0x02
#define INPUT_LEFT (inputbind_t)0x03 #define GAME_INPUT_LEFT (inputbind_t)0x03
#define INPUT_RIGHT (inputbind_t)0x04 #define GAME_INPUT_RIGHT (inputbind_t)0x04
#define INPUT_COUNT 5 #define GAME_INPUT_COUNT 5
/////////////////////////////// Type Definitions /////////////////////////////// /////////////////////////////// Type Definitions ///////////////////////////////
/** Context about Dawn Game */ /** Context about Dawn Game */

View File

@ -1,88 +0,0 @@
/**
* Copyright (c) 2021 Dominic Msters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "render.h"
render_t *RENDER_CURRENT = NULL;
render_t * renderInit(char *name) {
// Can't contextualize twice
if(RENDER_CURRENT != NULL) return NULL;
// Attempt to init GLFW
if(!glfwInit()) return NULL;
// Initialize the renderer
render_t *render = malloc(sizeof(render_t));
if(!render) return NULL;
render->width = WINDOW_WIDTH_DEFAULT;
render->height = WINDOW_HEIGHT_DEFAULT;
// Create the window.
render->window = glfwCreateWindow(render->width, render->height,
name, NULL, NULL
);
if(!render->window) {
free(render);
glfwTerminate();
return NULL;
}
// Make the window the context current
glfwMakeContextCurrent(render->window);
// Load GLAD
gladLoadGL((GLADloadproc)glfwGetProcAddress);
RENDER_CURRENT = render;
// Listeners
glfwSetWindowSizeCallback(render->window, &renderOnResize);
//GLEnable Things
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_DEPTH_TEST);
glDepthMask(GL_TRUE);
glDepthFunc(GL_LEQUAL);
return render;
}
void renderFrame(render_t *render) {
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glBegin(GL_TRIANGLES);
glColor3f(1, 0, 0);
glVertex3f(-1, -1, 0);
glColor3f(0, 1, 0);
glVertex3f(0, 1, 0);
glColor3f(0, 0, 1);
glVertex3f(1, -1, 0);
glEnd();
}
bool renderDispose(render_t *render) {
// Cleanup the callback
glfwSetWindowSizeCallback(render->window, NULL);
// Free up the renderer
free(render);
RENDER_CURRENT = NULL;
// Terminate the GLFW context.
glfwTerminate();
return true;
}
void renderOnResize(GLFWwindow *window, int32_t width, int32_t height) {
RENDER_CURRENT->width = width;
RENDER_CURRENT->height = height;
glViewport(0, 0, width, height);
}

View File

@ -0,0 +1,52 @@
/**
* Copyright (c) 2021 Dominic Msters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "render.h"
render_t * renderInit(char *name) {
// Initialize the renderer
render_t *render = malloc(sizeof(render_t));
if(!render) return NULL;
// render->width = WINDOW_WIDTH_DEFAULT;
// render->height = WINDOW_HEIGHT_DEFAULT;
//GLEnable Things
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_DEPTH_TEST);
glDepthMask(GL_TRUE);
glDepthFunc(GL_LEQUAL);
return render;
}
void renderFrame(render_t *render) {
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glBegin(GL_TRIANGLES);
glColor3f(1, 0, 0);
glVertex3f(-1, -1, 0);
glColor3f(0, 1, 0);
glVertex3f(0, 1, 0);
glColor3f(0, 0, 1);
glVertex3f(1, -1, 0);
glEnd();
}
bool renderDispose(render_t *render) {
// Free up the renderer
free(render);
return true;
}
void renderSetResolution(render_t *render, uint32_t width, uint32_t height) {
render->width = width;
render->height = height;
glViewport(0, 0, width, height);
}

View File

@ -11,31 +11,18 @@
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
#include <malloc.h> #include <malloc.h>
// 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 <cglm/call.h> #include <cglm/call.h>
#define WINDOW_WIDTH_DEFAULT 480
#define WINDOW_HEIGHT_DEFAULT 270
/** /**
* Contains information about the current render state, can be used for querying * Contains information about the current render state, can be used for querying
* how the renderer is currently set up. * how the renderer is currently set up.
*/ */
typedef struct { typedef struct {
/** The GLFW Window Context Pointer */
GLFWwindow *window;
/** Resolution (in pixels) */ /** Resolution (in pixels) */
int32_t width, height; int32_t width, height;
} render_t; } render_t;
/** Current active renderer. */
extern render_t *RENDER_CURRENT;
/** /**
* Initialize the renderer. * Initialize the renderer.
* *
@ -61,10 +48,10 @@ void renderFrame(render_t *render);
bool renderDispose(render_t *render); bool renderDispose(render_t *render);
/** /**
* Resize callbacks. * Set the internal display resolution.
* *
* @param window Window that was resized. * @param render Renderer to set resolution for.
* @param width New window width. * @param width Width (in pixels) of the viewport.
* @param height New window height. * @param height Height (in pixels) of the viewport.
*/ */
void renderOnResize(GLFWwindow *window, int32_t width, int32_t height); void renderSetResolution(render_t *render, uint32_t width, uint32_t height);

View File

@ -7,24 +7,23 @@
#include "engine.h" #include "engine.h"
engine_t * engineInit( engine_t * engineInit(platform_t *platform, char *name, uint32_t inputCount) {
platform_t *platform, char *gameName, uint32_t inputCount
) {
// Create the engine instance. // Create the engine instance.
engine_t *engine = malloc(sizeof(engine_t)); engine_t *engine = malloc(sizeof(engine_t));
if(engine == NULL) return NULL; if(engine == NULL) return NULL;
engine->name = name;
engine->platform = platform; engine->platform = platform;
// Setup the renderer. // Setup the renderer.
engine->render = renderInit(gameName); engine->render = renderInit(name);
if(engine->render == NULL) { if(engine->render == NULL) {
free(engine); free(engine);
return NULL; return NULL;
} }
// Setup the input manager. // Setup the input manager.
engine->input = inputInit(platform, inputCount); engine->input = inputInit(inputCount);
if(engine->input == NULL) { if(engine->input == NULL) {
free(engine->render); free(engine->render);
free(engine); free(engine);
@ -34,13 +33,9 @@ engine_t * engineInit(
return engine; return engine;
} }
void engineStart(engine_t *engine) { void engineUpdate(engine_t *engine) {
while(!glfwWindowShouldClose(engine->render->window)) { renderFrame(engine->render);
inputUpdate(engine->platform, engine->input); inputUpdate(engine->input);
renderFrame(engine->render);
glfwSwapBuffers(engine->render->window);
glfwPollEvents();
}
} }
bool engineDispose(engine_t *engine) { bool engineDispose(engine_t *engine) {

View File

@ -5,17 +5,17 @@
#pragma once #pragma once
#include <stdbool.h> #include <stdbool.h>
#include "../platform/platform.h" #include "display/render.h"
#include "../display/render.h" #include "file/asset.h"
#include "../file/asset.h" #include "input/input.h"
#include "../input/input.h" #include "./platform.h"
/** Information about the current engine context. */ /** Information about the current engine context. */
typedef struct { typedef struct {
/** Name of the game running. */ /** Name of the game running. */
char *gameName; char *name;
/** Platform for the game */ /** Platform the game is running on */
platform_t *platform; platform_t *platform;
/** Renderer for the engine. */ /** Renderer for the engine. */
@ -29,20 +29,18 @@ typedef struct {
* Initialize the engine context. * Initialize the engine context.
* *
* @param platform The platform that the game is running on. * @param platform The platform that the game is running on.
* @param gameName Name of the game being initialized. * @param name Name of the game being initialized.
* @param inputCount Count of input binds that exist in-engine. * @param inputCount Count of input binds that exist in-engine.
* @return The engine context. * @return The engine context.
*/ */
engine_t * engineInit( engine_t * engineInit(platform_t *platform, char *name, uint32_t inputCount);
platform_t *platform, char *gameName, uint32_t inputCount
);
/** /**
* Start the main engine loop. * Start the main engine loop.
* *
* @param engine The game to start the loop for. * @param engine The game to start the loop for.
*/ */
void engineStart(engine_t *engine); void engineUpdate(engine_t *engine);
/** /**
* Cleanup a previously constructed game engine instance. * Cleanup a previously constructed game engine instance.

View File

@ -7,8 +7,8 @@
#pragma once #pragma once
#include <stdbool.h> #include <stdbool.h>
#include "../platform/platform.h" #include "../engine.h"
#include "../engine/engine.h" #include "../platform.h"
/** Information about the current game context. */ /** Information about the current game context. */
typedef void game_t; typedef void game_t;
@ -16,7 +16,6 @@ typedef void game_t;
/** /**
* Initialize the game context. * Initialize the game context.
* *
* @param platform The platform that the game is running on.
* @return The game instance context. * @return The game instance context.
*/ */
game_t * gameInit(platform_t *platform); game_t * gameInit(platform_t *platform);
@ -26,10 +25,19 @@ game_t * gameInit(platform_t *platform);
* *
* @param game The game to start the loop for. * @param game The game to start the loop for.
*/ */
void gameStart(game_t *game); void gameUpdate(game_t *game);
/** /**
* Cleanup a previously constructed. * Cleanup a previously constructed.
* @param game The game to cleanup. * @param game The game to cleanup.
*/ */
void gameDispose(game_t *game); 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);

View File

@ -7,74 +7,68 @@
#include "input.h" #include "input.h"
input_t * inputInit(platform_t *platform, uint32_t inputBindCount) { input_t * inputInit(uint32_t inputBindCount) {
uint32_t i;
// Create the input manager // Create the input manager
input_t *input = malloc(sizeof(input_t)); input_t *input = malloc(sizeof(input_t));
if(!input) return NULL; if(!input) return NULL;
// Setup the binds // Setup the bind lists
input->inputBindCount = inputBindCount; input->inputBindCount = inputBindCount;
input->binds = malloc(sizeof(inputbind_t) * inputBindCount); input->bindMap = malloc(sizeof(list_t) * inputBindCount);
if(input->binds == NULL) { for(i = 0; i < inputBindCount; i++) {
free(input); input->bindMap[i] = listCreate();
return NULL;
} }
// Create the current input states // Create the current & previous input states
input->current = malloc(sizeof(float) * inputBindCount); input->current = malloc(sizeof(float) * inputBindCount);
if(input->current == NULL) {
free(input->binds);
free(input);
return NULL;
}
// Create the previous input states.
input->previous = malloc(sizeof(float) * inputBindCount); input->previous = malloc(sizeof(float) * inputBindCount);
if(input->previous == NULL) {
free(input->current);
free(input->binds);
free(input);
return NULL;
}
// Create the input actuate times array. // Create the input actuate times array.
input->times = malloc(sizeof(float) * inputBindCount); input->times = malloc(sizeof(float) * inputBindCount);
if(input->times == NULL) {
free(input->previous);
free(input->current);
free(input->binds);
free(input);
return NULL;
}
// Pass off the input manager // Pass off the input manager
return input; return input;
} }
void inputUpdate(platform_t *platform, input_t *input) { void inputUpdate(input_t *input) {
uint32_t i;
// Flip the states to save memory. // Flip the states to save memory.
float * currentCurrent = input->current; float * currentCurrent = input->current;
input->current = input->previous; input->current = input->previous;
input->previous = currentCurrent; input->previous = currentCurrent;
// Now look at each bind, get the state from the platform // Now look at each bind, get the state from the platform
for(uint32_t i = 0; i < input->inputBindCount; i++) { for(i = 0; i < input->inputBindCount; i++) {
// For this bind, get the sources. // For this bind, get the sources.
} }
} }
void inputDispose(input_t *input) { void inputDispose(input_t *input) {
uint32_t i;
// Free up the bind lists
for(i = 0; i < input->inputBindCount; i++) {
listDispose(input->bindMap[i], false);
}
free(input->times); free(input->times);
free(input->previous); free(input->previous);
free(input->current); free(input->current);
free(input->binds); free(input->bindMap);
free(input); free(input);
} }
inputbindmap_t inputBind(input_t *input, inputbind_t bind, void inputBind(input_t *input, inputbind_t bind, inputsource_t *source) {
platforminputsource_t *source listAdd(input->bindMap[bind], source);
}
void inputUnbind(input_t *input, inputbind_t bind,
inputsource_t *source
) { ) {
return NULL; listRemove(input->bindMap[bind], source);
} }
bool inputIsDown(input_t *input, inputbind_t binding) { bool inputIsDown(input_t *input, inputbind_t binding) {

View File

@ -7,7 +7,7 @@
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
#include <malloc.h> #include <malloc.h>
#include "../platform/platform.h" #include "../util/list/list.h"
/////////////////////////////////// CONSTANTS ////////////////////////////////// /////////////////////////////////// CONSTANTS //////////////////////////////////
#define INPUT_NULL (inputbind_t)0x00 #define INPUT_NULL (inputbind_t)0x00
@ -19,12 +19,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;
/**
* Input Bind Map, contains the bound link between an input source and an
* inputbind_t. Bind Maps can be added and removed.
*/
typedef uint16_t inputbindmap_t;
/** /**
* Structure for the entire input mapping. * Structure for the entire input mapping.
@ -41,12 +36,12 @@ typedef struct {
/** Float of the GameTime that the input was actuated last. */ /** Float of the GameTime that the input was actuated last. */
float *times; float *times;
/** /**
* Array of input bindings. This is the list of "possible actions" that the * Binding Map, Array of lists where index = binding and entry is a list of
* user can perform. This would contain "jump", "walk forward", "run"... etc. * input sources.
*/ */
inputbind_t *binds; list_t **bindMap;
} input_t; } input_t;
//////////////////////////////////// Methods /////////////////////////////////// //////////////////////////////////// Methods ///////////////////////////////////
@ -57,13 +52,13 @@ typedef struct {
* @param inputCount The input binding counts to allow for. * @param inputCount The input binding counts to allow for.
* @return The input manager * @return The input manager
*/ */
input_t * inputInit(platform_t *platform, uint32_t inputBindCount); input_t * inputInit(uint32_t inputBindCount);
/** /**
* Tick the input manager. * Tick the input manager.
* @param input The input to update. * @param input The input to update.
*/ */
void inputUpdate(platform_t *platform, input_t *input); void inputUpdate(input_t *input);
/** /**
* Destroy the input manager and cleanup. * Destroy the input manager and cleanup.
@ -76,15 +71,19 @@ void inputDispose(input_t *input);
* time we fetch the state of bind, we will read the value from source. * time we fetch the state of bind, we will read the value from source.
* *
* @param input The input manager to bind for. * @param input The input manager to bind for.
* @param bind The binding to bind against * @param bind The binding to bind against.
* @param source The source that is being bound. * @param source The source that is being bound.
* @return The map between the bind and the source, needed to unbind later.
*/ */
inputbindmap_t inputBind(input_t *input, inputbind_t bind, void inputBind(input_t *input, inputbind_t bind, inputsource_t *source);
platforminputsource_t *source
);
float inputGetState(inputbind_t binding, platforminputsource_t *source); /**
* Unbind a previously bound input source from a binding. This method is costly.
*
* @param input The input manager to bind for.
* @param bind The binding to unbind from.
* @param source The source that is being unbound.
*/
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", not being pressed, being moved, not in a state

22
src/engine/platform.h Normal file
View File

@ -0,0 +1,22 @@
// Copyright (c) 2021 Dominic Msters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include <malloc.h>
#include <stdint.h>
/**
* 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
* metadata purposes but there may be some technical information required for
* the engine.
*/
typedef struct {
/** Internal name of the platform */
char *name;
/** Dimensions of the screen (in pixels) */
uint32_t screenWidth, screenHeight;
} platform_t;

View File

@ -7,8 +7,8 @@
#include "list.h" #include "list.h"
List * listCreate() { list_t * listCreate() {
List *list = malloc(sizeof(List)); list_t *list = malloc(sizeof(list_t));
if(list == NULL) return NULL; if(list == NULL) return NULL;
list->start = NULL; list->start = NULL;
@ -17,9 +17,9 @@ List * listCreate() {
return list; return list;
} }
ListEntry * listAdd(List *list, void *data) { listentry_t * listAdd(list_t *list, void *data) {
//Create the list entry //Create the list entry
ListEntry *entry = malloc(sizeof(ListEntry)); listentry_t *entry = malloc(sizeof(listentry_t));
if(entry == NULL) return NULL; if(entry == NULL) return NULL;
entry->data = data; entry->data = data;
@ -33,7 +33,7 @@ ListEntry * listAdd(List *list, void *data) {
return entry; return entry;
} }
void listAddEntry(List *list, ListEntry *entry) { void listAddEntry(list_t *list, listentry_t *entry) {
//Is this the first / only thing in the list? //Is this the first / only thing in the list?
if(list->start == NULL) { if(list->start == NULL) {
list->start = entry; list->start = entry;
@ -48,8 +48,21 @@ void listAddEntry(List *list, ListEntry *entry) {
list->size++; list->size++;
} }
void listRemove(list_t *list, void *data) {
uint32_t i = 0;
listentry_t *previous = list->start;
void listRemove(List *list, ListEntry *entry, bool freeData) { while(previous != NULL) {
if(previous->data == data) {
listRemoveEntry(list, previous, false);
break;
}
i++;
previous = previous->next;
}
}
void listRemoveEntry(list_t *list, listentry_t *entry, bool freeData) {
//Update next and prev //Update next and prev
if(entry->prev != NULL) entry->prev->next = entry->next; if(entry->prev != NULL) entry->prev->next = entry->next;
if(entry->next != NULL) entry->next->prev = entry->prev; if(entry->next != NULL) entry->next->prev = entry->prev;
@ -64,14 +77,15 @@ void listRemove(List *list, ListEntry *entry, bool freeData) {
list->size--; list->size--;
} }
ListEntry * listGetByIndex(List *list, int index) {
listentry_t * listGetByIndex(list_t *list, uint32_t index) {
if(index >= list->size) return NULL; if(index >= list->size) return NULL;
//TODO: We can probably make this more efficient by deciding which way we //TODO: We can probably make this more efficient by deciding which way we
//should loop from based on the list size. //should loop from based on the list size.
int i = 0; uint32_t i = 0;
ListEntry *previous = list->start; listentry_t *previous = list->start;
while(previous != NULL) { while(previous != NULL) {
if(i == index) return previous; if(i == index) return previous;
@ -82,9 +96,22 @@ ListEntry * listGetByIndex(List *list, int index) {
return NULL; return NULL;
} }
int listGetIndex(List *list, ListEntry *entry) { uint32_t listGetIndex(list_t *list, void* data) {
int i = 0; uint32_t i = 0;
ListEntry *previous = list->start; listentry_t *previous = list->start;
while(previous != NULL) {
if(previous->data == data) return i;
i++;
previous = previous->next;
}
return -1;
}
uint32_t listGetEntryIndex(list_t *list, listentry_t *entry) {
uint32_t i = 0;
listentry_t *previous = list->start;
while(previous != NULL) { while(previous != NULL) {
if(previous == entry) return i; if(previous == entry) return i;
@ -95,10 +122,10 @@ int listGetIndex(List *list, ListEntry *entry) {
return -1; return -1;
} }
void listDispose(List *list, bool freeData) { void listDispose(list_t *list, bool freeData) {
//Free all of the entries //Free all of the entries
ListEntry *next = list->start; listentry_t *next = list->start;
ListEntry *current; listentry_t *current;
while(next != NULL) { while(next != NULL) {
current = next; current = next;

View File

@ -7,6 +7,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdbool.h> #include <stdbool.h>
#include <malloc.h> #include <malloc.h>
#include <stdint.h>
/** /**
* Entry within a given linked list. * Entry within a given linked list.
@ -14,11 +15,11 @@
* @param prev* Pointer to the previous entry in the list. * @param prev* Pointer to the previous entry in the list.
* @param next* Pointer to the next entry in the list. * @param next* Pointer to the next entry in the list.
*/ */
typedef struct ListEntry { typedef struct listentry_t {
void *data; void *data;
struct ListEntry *prev; struct listentry_t *prev;
struct ListEntry *next; struct listentry_t *next;
} ListEntry; } listentry_t;
/** /**
* Linked List of elements, Doubly Linked. * Linked List of elements, Doubly Linked.
@ -27,10 +28,10 @@ typedef struct ListEntry {
* @param end* Last element within the list. * @param end* Last element within the list.
*/ */
typedef struct { typedef struct {
int size; uint32_t size;
ListEntry *start; listentry_t *start;
ListEntry *end; listentry_t *end;
} List; } list_t;
//Method definitions //Method definitions
@ -38,7 +39,7 @@ typedef struct {
* Creates a new linked list * Creates a new linked list
* @return Pointer to a new linked list. * @return Pointer to a new linked list.
*/ */
List * listCreate(); list_t * listCreate();
/** /**
* Adds data to a linked list * Adds data to a linked list
@ -47,20 +48,29 @@ List * listCreate();
* @param data* Pointer to your data * @param data* Pointer to your data
* @return A pointer to the new entry in the linked list that was created * @return A pointer to the new entry in the linked list that was created
*/ */
ListEntry * listAdd(List *list, void *data); listentry_t * listAdd(list_t *list, void *data);
/** /**
* Internal function * Internal function
*/ */
void listAddEntry(List *list, ListEntry *entry); void listAddEntry(list_t *list, listentry_t *entry);
/** /**
* Remove a list entry from the linked list * Remove data from a linked list.
* @param list* Pointer to a previously created linked list *
* @param entry* Pointer to the entry within the linked list. * @param list Pointer to a previously created linked list.
* @param freeData If true the data of the ListEntry will be free()'d * @param data* Pointer to your data.
*/ */
void listRemove(List *list, ListEntry *entry, bool freeData); void listRemove(list_t *list, void *data);
/**
* Remove a list entry from the linked list.
*
* @param list* Pointer to a previously created linked list.
* @param entry* Pointer to the entry within the linked list.
* @param freeData If true the data of the listentry_t will be free()'d
*/
void listRemoveEntry(list_t *list, listentry_t *entry, bool freeData);
/** /**
* Returns the entry at a given index. This method is costly. * Returns the entry at a given index. This method is costly.
@ -68,19 +78,29 @@ void listRemove(List *list, ListEntry *entry, bool freeData);
* @param index Index of element within the linked list to remove * @param index Index of element within the linked list to remove
* @return The entry at the index or NULL if outside the bounds. * @return The entry at the index or NULL if outside the bounds.
*/ */
ListEntry * listGetByIndex(List *list, int index); listentry_t * listGetByIndex(list_t *list, uint32_t index);
/**
* Returns the index of data within the linked list. This method is costly.
*
* @param list* Pointer to a previously created linked list
* @param data* Pointer to your data.
* @return The index within the list the entry is in, or -1 if not found.
*/
uint32_t listGetIndex(list_t *list, void* data);
/** /**
* Returns the index of an entry within the linked list. This method is costly. * Returns the index of an entry within the linked list. This method is costly.
*
* @param list* Pointer to a previously created linked list * @param list* Pointer to a previously created linked list
* @param entry* Pointer to the entry within the linked list. * @param entry* Pointer to the entry within the linked list.
* @return The index within the list the entry is in, or -1 if not found. * @return The index within the list the entry is in, or -1 if not found.
*/ */
int listGetIndex(List *list, ListEntry *entry); uint32_t listGetEntryIndex(list_t *list, listentry_t *entry);
/** /**
* Dispose a previously created link list. * Dispose a previously created link list.
* @param list* Pointer to a previously created linked list * @param list* Pointer to a previously created linked list
* @param freeData If true the data within each ListEntry will be free()'d * @param freeData If true the data within each listentry_t will be free()'d
*/ */
void listDispose(List *list, bool freeData); void listDispose(list_t *list, bool freeData);

View File

@ -1,26 +0,0 @@
/**
* Copyright (c) 2021 Dominic Msters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "main.h"
int32_t main() {
platform_t *platform = platformInit();
if(platform == NULL) return 1;
// Create the game instance
game_t *game = gameInit(platform);
if(game == NULL) return 1;
// Start running the game instance
gameStart(game);
// Game has finished running, cleanup.
gameDispose(game);
platformDispose(platform);
return 0;
}

View File

@ -1,17 +0,0 @@
/**
* Copyright (c) 2021 Dominic Msters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include <stdint.h>
#include "platform/platform.h"
#include "game/game.h"
/**
* Entry of the program
* @return 0 if success, anything else for failure.
*/
int32_t main();

View File

@ -0,0 +1,75 @@
// Copyright (c) 2021 Dominic Msters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#include "glwfwplatform.h"
GLFWwindow *window;
game_t *runningGame;
int32_t main() {
// Create out platform context
platform_t platform = {
.name = "glfw",
.screenWidth = WINDOW_WIDTH_DEFAULT,
.screenHeight = WINDOW_HEIGHT_DEFAULT
};
// Attempt to init GLFW
if(!glfwInit()) return NULL;
window = glfwCreateWindow(platform.screenWidth, platform.screenHeight,
"", NULL, NULL
);
if(!window) {
glfwTerminate();
return 1;
}
// Load GLAD
glfwMakeContextCurrent(window);
gladLoadGLLoader((GLADloadproc)glfwGetProcAddress);
// Setup window listeners
glfwSetWindowSizeCallback(window, &glfwOnResize);
glfwSetKeyCallback(window, &glfwOnKey);
// Create the game instance
runningGame = gameInit(&platform);
if(runningGame == NULL) return 1;
// Main Render Loop
while(!glfwWindowShouldClose(window)) {
gameUpdate(runningGame);
glfwSwapBuffers(window);
glfwPollEvents();
}
// Game has finished running, cleanup.
gameDispose(runningGame);
// Terminate the GLFW context.
glfwSetWindowSizeCallback(window, NULL);
glfwTerminate();
return 0;
}
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);
}
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");
}

View File

@ -0,0 +1,47 @@
// Copyright (c) 2021 Dominic Msters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
// I load GLAD and GLFW Here because they need to be included in specific orders
#include <glad/glad.h>
#include <GLFW/glfw3.h>
#include <stdint.h>
#include "../../engine/platform.h"
#include "../../engine/game/game.h"
#include "../../engine/display/render.h"
#define WINDOW_WIDTH_DEFAULT 480
#define WINDOW_HEIGHT_DEFAULT 270
/** The GLFW Window Context Pointer */
extern GLFWwindow *window;
extern game_t *runningGame;
/**
* Entry of the program
* @return 0 if success, anything else for failure.
*/
int32_t main();
/**
* Resize callbacks.
*
* @param window Window that was resized.
* @param width New window width.
* @param height New window height.
*/
void glfwOnResize(GLFWwindow *window, int32_t width, int32_t height);
/**
* Keyboard Input callbacks.
*
* @param window Window that was resized.
*/
void glfwOnKey(GLFWwindow *window,
int32_t key, int32_t scancode, int32_t action, int32_t mods
);

View File

@ -1,52 +0,0 @@
// Copyright (c) 2021 Dominic Msters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include <malloc.h>
#include <stdint.h>
typedef void platforminputsource_t;
/**
* Platform stuct, contains information about the device/method that is running
* the program that the game itself is running on, typically this will be either
* the operating system, or perhaps the specific device information.
*/
typedef struct {
/** Internal name of the platform */
char *name;
/** List of known input sources */
platforminputsource_t **inputSources;
/** Count of known input source */
uint32_t *inputSourceCount;
/** State of the input sources, updated by the platform. */
float *inputStates;
} platform_t;
/**
* Initialize the current platform context. The platform itself is responsible
* for deciding how this method is implemented.
*
* @return The context information for the platform.
*/
platform_t * platformInit();
/**
* Cleanup a previously created platform instance.
*
* @param platform The platform instance to cleanse.
*/
void platformDispose(platform_t *platform);
/**
* Method will be polled for each known input source to request the current
* state from the device. Values returned will be defined within the 0 to 1
* range.
*
* @param source The input source.
* @return Input state between 0 and 1.
*/
float platformInputGetState(platforminputsource_t *source);

View File

@ -1,26 +0,0 @@
// Copyright (c) 2021 Dominic Msters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#include "win32platform.h"
platform_t * platformInit() {
platform_t *platform = malloc(sizeof(platform_t));
platform->name = WIN32_NAME;
platform->inputSourceCount = 0;
platform->inputSources = NULL;
platform->inputStates = NULL;
return platform;
}
void platformDispose(platform_t *platform) {
free(platform);
}
float platformInputGetState(platforminputsource_t *source) {
return 0;
}

View File

@ -1,9 +0,0 @@
// Copyright (c) 2021 Dominic Msters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "../platform.h"
#define WIN32_NAME "Win32"