More refactoring.

This commit is contained in:
2021-09-19 12:40:39 -07:00
parent 8543d93c72
commit 3ed24da3b6
7 changed files with 19 additions and 25 deletions

View File

@ -47,9 +47,9 @@ queueaction_t * queueAdd(queue_t *queue) {
return action; return action;
} }
void queueUpdate(queue_t *queue, engine_t *engine) { void queueUpdate(queue_t *queue, float delta) {
queueaction_t *action; queueaction_t *action;
queue->timeline += engine->time.delta; queue->timeline += delta;
if(queue->current >= queue->count) return; if(queue->current >= queue->count) return;
action = queue->items + queue->current; action = queue->items + queue->current;

View File

@ -8,7 +8,6 @@
#pragma once #pragma once
#include "../../libs.h" #include "../../libs.h"
#include "../../util/array.h" #include "../../util/array.h"
#include "../../engine/engine.h"
#define ANIMATION_QUEUE_ITEM_MAX 128 #define ANIMATION_QUEUE_ITEM_MAX 128
#define ANIMATION_QUEUE_START 0xFF #define ANIMATION_QUEUE_START 0xFF
@ -82,9 +81,9 @@ queueaction_t * queueAdd(queue_t *queue);
/** /**
* Updates the queue logic. * Updates the queue logic.
* @param convo Queue to update. * @param convo Queue to update.
* @param engine Engine used to update. * @param delta Time delta to tick the queue by.
*/ */
void queueUpdate(queue_t *queue, engine_t *engine); void queueUpdate(queue_t *queue, float delta);
/** /**
* Dispose the queue when finished. * Dispose the queue when finished.

View File

@ -58,9 +58,9 @@ void frameBufferResize(framebuffer_t *frameBuffer,int32_t width,int32_t height){
frameBufferInit(frameBuffer, width, height); frameBufferInit(frameBuffer, width, height);
} }
void frameBufferUnbind(render_t *render, bool clear) { void frameBufferUnbind(float viewWidth, float viewHeight, bool clear) {
glBindFramebuffer(GL_FRAMEBUFFER, 0); glBindFramebuffer(GL_FRAMEBUFFER, 0);
glViewport(0, 0, (GLsizei)render->width, (GLsizei)render->height); glViewport(0, 0, (GLsizei)viewWidth, (GLsizei)viewHeight);
if(clear) { if(clear) {
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

View File

@ -8,7 +8,6 @@
#pragma once #pragma once
#include "../libs.h" #include "../libs.h"
#include "texture.h" #include "texture.h"
#include "render.h"
typedef struct { typedef struct {
GLuint fboId; GLuint fboId;
@ -46,10 +45,11 @@ void frameBufferResize(framebuffer_t *frameBuffer,int32_t width,int32_t height);
/** /**
* Unbind the currently bound frame buffer. * Unbind the currently bound frame buffer.
* *
* @param render Render manager * @param viewWidth Viewport width.
* @param viewHeight Viewport height.
* @param clear Whether or not to clear the back buffer. * @param clear Whether or not to clear the back buffer.
*/ */
void frameBufferUnbind(render_t *render, bool clear); void frameBufferUnbind(float viewWidth, float viewHeight, bool clear);
/** /**
* Dispose/cleanup a previously created frame buffer. * Dispose/cleanup a previously created frame buffer.

View File

@ -24,7 +24,7 @@ void renderInit() {
void renderFrameStart(render_t *render) { void renderFrameStart(render_t *render) {
// Clear the frame buffer. // Clear the frame buffer.
frameBufferUnbind(render, true); frameBufferUnbind(render->width, render->height, true);
} }
void renderDispose() { void renderDispose() {

View File

@ -7,19 +7,19 @@
#include "engine.h" #include "engine.h"
void engineInit(engine_t *engine, game_t *game) { void engineInit(engine_t *engine) {
epochInit(&engine->time); epochInit(&engine->time);
renderInit(); renderInit();
inputInit(&engine->input); inputInit(&engine->input);
} }
void engineUpdateStart(engine_t *engine, game_t *game, float delta) { void engineUpdateStart(engine_t *engine, float delta) {
epochUpdate(&engine->time, delta); epochUpdate(&engine->time, delta);
inputUpdate(&engine->input); inputUpdate(&engine->input);
renderFrameStart(&engine->render); renderFrameStart(&engine->render);
} }
bool engineUpdateEnd(engine_t *engine, game_t *game) { bool engineUpdateEnd(engine_t *engine) {
if(inputIsPressed(&engine->input, INPUT_NULL)) { if(inputIsPressed(&engine->input, INPUT_NULL)) {
printf("Game exit requested\n"); printf("Game exit requested\n");
return false; return false;
@ -27,7 +27,7 @@ bool engineUpdateEnd(engine_t *engine, game_t *game) {
return true; return true;
} }
void engineDispose(engine_t *engine, game_t *game) { void engineDispose(engine_t *engine) {
inputDispose(&engine->input); inputDispose(&engine->input);
renderDispose(); renderDispose();
} }

View File

@ -7,7 +7,6 @@
#pragma once #pragma once
#include "../libs.h" #include "../libs.h"
#include "../game/game.h"
#include "../input/input.h" #include "../input/input.h"
#include "../epoch/epoch.h" #include "../epoch/epoch.h"
#include "../display/render.h" #include "../display/render.h"
@ -28,31 +27,27 @@ typedef struct {
* managers for the game to use. * managers for the game to use.
* *
* @param engine Engine to initialize. * @param engine Engine to initialize.
* @param game Game that intiialized this engine.
*/ */
void engineInit(engine_t *engine, game_t *game); void engineInit(engine_t *engine);
/** /**
* Updates the given engine at the start of a frame. * Updates the given engine at the start of a frame.
* *
* @param engine Engine that is being updated * @param engine Engine that is being updated
* @param game Game that initialized the engine update
* @param delta Delta tick provided by the game's platform. * @param delta Delta tick provided by the game's platform.
*/ */
void engineUpdateStart(engine_t *engine, game_t *game, float delta); void engineUpdateStart(engine_t *engine, float delta);
/** /**
* Updates the given engine at the end of a frame. * Updates the given engine at the end of a frame.
* *
* @param engine Engine to update. * @param engine Engine to update.
* @param game Game that called this update.
*/ */
bool engineUpdateEnd(engine_t *engine, game_t *game); bool engineUpdateEnd(engine_t *engine);
/** /**
* Cleanup the engine context. * Cleanup the engine context.
* *
* @param engine Engine to clean up. * @param engine Engine to clean up.
* @param game Game that initialized the cleanup.
*/ */
void engineDispose(engine_t *engine, game_t *game); void engineDispose(engine_t *engine);