Cleaned the timeline code up nicely.

This commit is contained in:
2021-07-15 09:26:31 -07:00
parent 9e40d8f576
commit 06202f6f7e
4 changed files with 35 additions and 31 deletions

View File

@ -8,6 +8,8 @@
#pragma once #pragma once
#include "../../libs.h" #include "../../libs.h"
#define TIMELINE_ACTION_COUNT_MAX 128
/** Type forwarder for timeline_t */ /** Type forwarder for timeline_t */
typedef struct _timeline_t timeline_t; typedef struct _timeline_t timeline_t;
@ -50,6 +52,6 @@ typedef struct _timeline_t {
void *user; void *user;
/** Actions within the timeline */ /** Actions within the timeline */
timelineaction_t actions[128]; timelineaction_t actions[TIMELINE_ACTION_COUNT_MAX];
uint8_t actionCount; uint8_t actionCount;
} timeline_t; } timeline_t;

View File

@ -72,6 +72,7 @@ bool timelineIsFinished(timeline_t *timeline) {
timelineaction_t * timelineAddAction(timeline_t *timeline, float start, timelineaction_t * timelineAddAction(timeline_t *timeline, float start,
float duration float duration
) { ) {
if(timeline->actionCount == TIMELINE_ACTION_COUNT_MAX) return NULL;
timelineaction_t *action = timeline->actions + (timeline->actionCount++); timelineaction_t *action = timeline->actions + (timeline->actionCount++);
action->start = start, action->duration = duration; action->start = start, action->duration = duration;
action->onStart = action->onEnd = action->onDuration = NULL; action->onStart = action->onEnd = action->onDuration = NULL;

View File

@ -6,10 +6,38 @@
#pragma once #pragma once
#include <dawn/dawn.h> #include <dawn/dawn.h>
/**
* Initializes a timeline back to its default state.
*
* @param timeline Timeline to initialize.
*/
void timelineInit(timeline_t *timeline); void timelineInit(timeline_t *timeline);
/**
* Ticks the timeline. This can be done using any delta.
*
* @param timeline Timeline to tick
* @param delta Delta to tick.
*/
void timelineUpdate(timeline_t *timeline, float delta); void timelineUpdate(timeline_t *timeline, float delta);
/**
* Returns true if every action in the timeline has finished.
*
* @param timeline Timeline to check
* @return True if finished, otherwise false.
*/
bool timelineIsFinished(timeline_t *timeline); bool timelineIsFinished(timeline_t *timeline);
/**
* Adds an action to the timeline. This will initialize the action callbacks to
* NULL, you will need to initialize your own callbacks.
*
* @param timeline Timeline to add to.
* @param start Start time.
* @param duration Duration time
* @return Pointer to the timeline action or NULL if the list is full.
*/
timelineaction_t * timelineAddAction(timeline_t *timeline, float start, timelineaction_t * timelineAddAction(timeline_t *timeline, float start,
float duration float duration
); );

View File

@ -7,35 +7,15 @@
#include "game.h" #include "game.h"
timeline_t TIMELINE_TEST;
void onStart(timeline_t *tl) {
printf("Action started %f\n", tl->current);
}
void onDuration(timeline_t *tl) {
printf("Action duration %f\n", tl->current);
}
void onEnd(timeline_t *tl) {
printf("Action ended %f\n", tl->current);
}
bool gameInit(game_t *game) { bool gameInit(game_t *game) {
// Init the game // Init the game
game->name = GAME_NAME; game->name = GAME_NAME;
// Init the engine and the rendering pipeline // Init the engine and the rendering pipeline
engineInit(&game->engine, game); engineInit(&game->engine, game);
timelineInit(&TIMELINE_TEST);
timelineaction_t *action = timelineAddAction(&TIMELINE_TEST, 1, 1);
action->onStart = &onStart;
action->onDuration = &onDuration;
action->onEnd = &onEnd;
// Hand off to the poker logic. // Hand off to the poker logic.
// pokerInit(&game->poker, &game->engine); pokerInit(&game->poker, &game->engine);
return true; return true;
} }
@ -45,15 +25,8 @@ bool gameUpdate(game_t *game, float platformDelta) {
engineUpdateStart(&game->engine, game, platformDelta); engineUpdateStart(&game->engine, game, platformDelta);
// Hand off to the poker logic // Hand off to the poker logic
// pokerUpdate(&game->poker, &game->engine); pokerUpdate(&game->poker, &game->engine);
timelineUpdate(&TIMELINE_TEST, platformDelta);
if(timelineIsFinished(&TIMELINE_TEST)) {
printf("Timeline finished\n");
} else {
printf("Timeline not finished\n");
}
// Hand back to the engine. // Hand back to the engine.
return engineUpdateEnd(&game->engine, game); return engineUpdateEnd(&game->engine, game);
} }