More refactoring.
This commit is contained in:
@ -47,9 +47,9 @@ queueaction_t * queueAdd(queue_t *queue) {
|
||||
return action;
|
||||
}
|
||||
|
||||
void queueUpdate(queue_t *queue, engine_t *engine) {
|
||||
void queueUpdate(queue_t *queue, float delta) {
|
||||
queueaction_t *action;
|
||||
queue->timeline += engine->time.delta;
|
||||
queue->timeline += delta;
|
||||
if(queue->current >= queue->count) return;
|
||||
|
||||
action = queue->items + queue->current;
|
||||
|
@ -8,7 +8,6 @@
|
||||
#pragma once
|
||||
#include "../../libs.h"
|
||||
#include "../../util/array.h"
|
||||
#include "../../engine/engine.h"
|
||||
|
||||
#define ANIMATION_QUEUE_ITEM_MAX 128
|
||||
#define ANIMATION_QUEUE_START 0xFF
|
||||
@ -82,9 +81,9 @@ queueaction_t * queueAdd(queue_t *queue);
|
||||
/**
|
||||
* Updates the queue logic.
|
||||
* @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.
|
||||
|
@ -58,9 +58,9 @@ void frameBufferResize(framebuffer_t *frameBuffer,int32_t width,int32_t height){
|
||||
frameBufferInit(frameBuffer, width, height);
|
||||
}
|
||||
|
||||
void frameBufferUnbind(render_t *render, bool clear) {
|
||||
void frameBufferUnbind(float viewWidth, float viewHeight, bool clear) {
|
||||
glBindFramebuffer(GL_FRAMEBUFFER, 0);
|
||||
glViewport(0, 0, (GLsizei)render->width, (GLsizei)render->height);
|
||||
glViewport(0, 0, (GLsizei)viewWidth, (GLsizei)viewHeight);
|
||||
|
||||
if(clear) {
|
||||
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
||||
|
@ -8,7 +8,6 @@
|
||||
#pragma once
|
||||
#include "../libs.h"
|
||||
#include "texture.h"
|
||||
#include "render.h"
|
||||
|
||||
typedef struct {
|
||||
GLuint fboId;
|
||||
@ -46,10 +45,11 @@ void frameBufferResize(framebuffer_t *frameBuffer,int32_t width,int32_t height);
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
void frameBufferUnbind(render_t *render, bool clear);
|
||||
void frameBufferUnbind(float viewWidth, float viewHeight, bool clear);
|
||||
|
||||
/**
|
||||
* Dispose/cleanup a previously created frame buffer.
|
||||
|
@ -24,7 +24,7 @@ void renderInit() {
|
||||
|
||||
void renderFrameStart(render_t *render) {
|
||||
// Clear the frame buffer.
|
||||
frameBufferUnbind(render, true);
|
||||
frameBufferUnbind(render->width, render->height, true);
|
||||
}
|
||||
|
||||
void renderDispose() {
|
||||
|
@ -7,19 +7,19 @@
|
||||
|
||||
#include "engine.h"
|
||||
|
||||
void engineInit(engine_t *engine, game_t *game) {
|
||||
void engineInit(engine_t *engine) {
|
||||
epochInit(&engine->time);
|
||||
renderInit();
|
||||
inputInit(&engine->input);
|
||||
}
|
||||
|
||||
void engineUpdateStart(engine_t *engine, game_t *game, float delta) {
|
||||
void engineUpdateStart(engine_t *engine, float delta) {
|
||||
epochUpdate(&engine->time, delta);
|
||||
inputUpdate(&engine->input);
|
||||
renderFrameStart(&engine->render);
|
||||
}
|
||||
|
||||
bool engineUpdateEnd(engine_t *engine, game_t *game) {
|
||||
bool engineUpdateEnd(engine_t *engine) {
|
||||
if(inputIsPressed(&engine->input, INPUT_NULL)) {
|
||||
printf("Game exit requested\n");
|
||||
return false;
|
||||
@ -27,7 +27,7 @@ bool engineUpdateEnd(engine_t *engine, game_t *game) {
|
||||
return true;
|
||||
}
|
||||
|
||||
void engineDispose(engine_t *engine, game_t *game) {
|
||||
void engineDispose(engine_t *engine) {
|
||||
inputDispose(&engine->input);
|
||||
renderDispose();
|
||||
}
|
@ -7,7 +7,6 @@
|
||||
|
||||
#pragma once
|
||||
#include "../libs.h"
|
||||
#include "../game/game.h"
|
||||
#include "../input/input.h"
|
||||
#include "../epoch/epoch.h"
|
||||
#include "../display/render.h"
|
||||
@ -28,31 +27,27 @@ typedef struct {
|
||||
* managers for the game to use.
|
||||
*
|
||||
* @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.
|
||||
*
|
||||
* @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.
|
||||
*/
|
||||
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.
|
||||
*
|
||||
* @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.
|
||||
*
|
||||
* @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);
|
Reference in New Issue
Block a user