Dawn/src/platform/glfw/glwfwplatform.c

87 lines
2.1 KiB
C

// Copyright (c) 2021 Dominic Msters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#include "glwfwplatform.h"
GLFWwindow *window = NULL;
game_t *runningGame = NULL;
int32_t main() {
// Create out platform context
platform_t platform = {
.name = "glfw",
.screenWidth = WINDOW_WIDTH_DEFAULT,
.screenHeight = WINDOW_HEIGHT_DEFAULT,
.inputSourceCount = 400
};
// 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;
// Update the window title.
engine_t *engine = gameGetEngine(runningGame);
glfwSetWindowTitle(window, engine->name);
// Bind inputs
inputBind(engine->input, INPUT_NULL, (inputsource_t *)GLFW_KEY_ESCAPE);
// 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
) {
if(runningGame == NULL) return;
engine_t *engine = gameGetEngine(runningGame);
if(action == GLFW_PRESS) {
engine->input->buffer[key] = 1;
} else if(action == GLFW_RELEASE) {
engine->input->buffer[key] = 0;
}
}