From 64a2dd5773b6ce771cce530d5240994e1ea5c066 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 29 Aug 2021 10:07:42 -0700 Subject: [PATCH] Added missing header comments. --- src/display/animation/queue.c | 1 - src/display/gui/bitmapfont.c | 8 +++- src/display/gui/bitmapfont.h | 11 ++++-- src/display/primitive.c | 4 +- src/display/primitive.h | 4 +- src/display/render.c | 1 + src/display/shader.h | 2 +- src/engine/engine.h | 2 +- src/epoch/epoch.c | 5 +-- src/file/csv.c | 1 + src/file/csv.h | 3 +- src/game/dawn/dawngame.h | 16 ++++++++ src/game/poker/actions/action.h | 1 - src/game/poker/actions/bet.c | 2 + src/game/poker/actions/bet.h | 16 ++++++++ src/game/poker/actions/look.c | 1 - src/game/poker/actions/look.h | 1 + src/game/poker/actions/restack.c | 21 ++++++++++ src/game/poker/actions/restack.h | 27 +++++++++++++ src/game/poker/actions/round.h | 2 + src/game/poker/actions/start.h | 2 + src/game/poker/discussion/pokerdiscussion.h | 14 +++++-- src/game/poker/pokergame.c | 11 ++++++ src/game/poker/pokergame.h | 10 ++++- src/game/poker/pokergameassets.h | 12 ++++++ src/game/poker/pokerui.h | 15 +++++++ src/physics/aabb.c | 44 --------------------- src/physics/aabb.h | 18 ++++++--- src/util/array.h | 2 +- 29 files changed, 184 insertions(+), 73 deletions(-) create mode 100644 src/game/poker/actions/restack.c create mode 100644 src/game/poker/actions/restack.h diff --git a/src/display/animation/queue.c b/src/display/animation/queue.c index 6741f285..47d9f8be 100644 --- a/src/display/animation/queue.c +++ b/src/display/animation/queue.c @@ -83,7 +83,6 @@ void queueRestack(queue_t *queue) { } } - void _queueDelayUpdate(queue_t *queue, queueaction_t *action, uint8_t i) { float n = queue->timeline - queue->actionStarted; if(n < queue->delays[i]) return; diff --git a/src/display/gui/bitmapfont.c b/src/display/gui/bitmapfont.c index a8951f2a..b064613a 100644 --- a/src/display/gui/bitmapfont.c +++ b/src/display/gui/bitmapfont.c @@ -7,12 +7,16 @@ #include "bitmapfont.h" -tilesetdiv_t * bitmapFontGetCharacterDivision(tileset_t *tileset, char character) { +tilesetdiv_t * bitmapFontGetCharacterDivision(tileset_t *tileset, + char character +) { int32_t i = ((int32_t)character) - BITMAP_FONT_CHAR_START; return tileset->divisions + i; } -bitmapfontmeasure_t bitmapFontMeasure(char *string, float charWidth, float charHeight) { +bitmapfontmeasure_t bitmapFontMeasure(char *string, + float charWidth, float charHeight +) { int32_t i; float x, y; char c; diff --git a/src/display/gui/bitmapfont.h b/src/display/gui/bitmapfont.h index 6c44c0a5..07827ea2 100644 --- a/src/display/gui/bitmapfont.h +++ b/src/display/gui/bitmapfont.h @@ -16,7 +16,9 @@ * @param character Character to get the division for. * @return The division from the tileset for the character. */ -tilesetdiv_t * bitmapFontGetCharacterDivision(tileset_t *tileset, char character); +tilesetdiv_t * bitmapFontGetCharacterDivision(tileset_t *tileset, + char character +); /** * Measures a string's fully rendered size. @@ -26,7 +28,9 @@ tilesetdiv_t * bitmapFontGetCharacterDivision(tileset_t *tileset, char character * @param charHeight The height of each character. * @return The measured string. */ -bitmapfontmeasure_t bitmapFontMeasure(char *string, float charWidth, float charHeight); +bitmapfontmeasure_t bitmapFontMeasure(char *string, + float charWidth, float charHeight +); /** * Renders a set of font characters to the sprite. Coordinates are anchored to @@ -42,6 +46,7 @@ bitmapfontmeasure_t bitmapFontMeasure(char *string, float charWidth, float charH * @param charHeight Height of each character. Set to -1 to be the width ratio. * @returns The string measurement. */ -bitmapfontmeasure_t bitmapFontSpriteBatchBuffer(spritebatch_t *batch, tileset_t *tileset, +bitmapfontmeasure_t bitmapFontSpriteBatchBuffer( + spritebatch_t *batch, tileset_t *tileset, char *string, float x, float y, float z, float charWidth, float charHeight ); \ No newline at end of file diff --git a/src/display/primitive.c b/src/display/primitive.c index dfbbbd78..1c2351c6 100644 --- a/src/display/primitive.c +++ b/src/display/primitive.c @@ -7,7 +7,9 @@ #include "primitive.h" -void primitiveInit(primitive_t *primitive, int32_t verticeCount, int32_t indiceCount) { +void primitiveInit(primitive_t *primitive, + int32_t verticeCount, int32_t indiceCount +) { primitive->verticeCount = verticeCount; primitive->indiceCount = indiceCount; diff --git a/src/display/primitive.h b/src/display/primitive.h index df264abc..cff1c23c 100644 --- a/src/display/primitive.h +++ b/src/display/primitive.h @@ -14,7 +14,9 @@ * @param verticeCount How many vertices can the primitive hold. * @param indiceCount How many indices can the primitive hold. */ -void primitiveInit(primitive_t *primitive, int32_t verticeCount, int32_t indiceCount); +void primitiveInit(primitive_t *primitive, + int32_t verticeCount, int32_t indiceCount +); /** * Buffer Vertices to a primitive for use in rendering. diff --git a/src/display/render.c b/src/display/render.c index ebddac3b..0ab8f936 100644 --- a/src/display/render.c +++ b/src/display/render.c @@ -28,6 +28,7 @@ void renderFrameStart(render_t *render) { } void renderDispose() { + } void renderSetResolution(render_t *render, float width, float height) { diff --git a/src/display/shader.h b/src/display/shader.h index 25eadef5..b35e4cac 100644 --- a/src/display/shader.h +++ b/src/display/shader.h @@ -53,7 +53,7 @@ void shaderUseTexture(shader_t *shader, texture_t *texture); * @param uniform Uniform on the shader to set. * @param matrix Matrix to apply. */ -void shaderUseMatrix(shader_t *shader, shaderuniform_t uniform,matrix_t *matrix); +void shaderUseMatrix(shader_t *shader,shaderuniform_t uniform,matrix_t *matrix); /** * Set's the current translation matrix onto the shader for the next diff --git a/src/engine/engine.h b/src/engine/engine.h index 7f8c8523..ab42febc 100644 --- a/src/engine/engine.h +++ b/src/engine/engine.h @@ -18,7 +18,7 @@ * @param engine Engine to initialize. * @param game Game that intiialized this engine. */ -void engineInit(engine_t *engine, game_t *game);// TODO: This needs to return valid state. +void engineInit(engine_t *engine, game_t *game); /** * Updates the given engine at the start of a frame. diff --git a/src/epoch/epoch.c b/src/epoch/epoch.c index 7f4a6625..6d47a150 100644 --- a/src/epoch/epoch.c +++ b/src/epoch/epoch.c @@ -14,10 +14,7 @@ void epochInit(epoch_t *epoch) { } void epochUpdate(epoch_t *epoch, float platformDelta) { - platformDelta = mathMax( - mathMin(platformDelta, EPOCH_FIXED_STEP), - 0 - ); + platformDelta = mathClamp(platformDelta, 0, EPOCH_FIXED_STEP); epoch->last = epoch->current; epoch->current = epoch->current + platformDelta; diff --git a/src/file/csv.c b/src/file/csv.c index 71536be6..54dfae1f 100644 --- a/src/file/csv.c +++ b/src/file/csv.c @@ -208,6 +208,7 @@ bool _csvRowSearchCallback( data->rowIndex = row; return false; } + int32_t csvRowSearch( assetbuffer_t *asset, csvrow_t *row, int32_t column, char *value ) { diff --git a/src/file/csv.h b/src/file/csv.h index 85fffa4d..b7de9993 100644 --- a/src/file/csv.h +++ b/src/file/csv.h @@ -67,7 +67,6 @@ csvbufferresult_t csvBufferRowWithHeaders( */ void csvRowPopulate(csvrow_t *source, csvrow_t *dest); - /** Callback used to parse and get the headers row */ bool _csvHeadersGetCallback( assetbuffer_t *asset, void *user, int32_t row, csvrow_t *current @@ -82,7 +81,6 @@ bool _csvHeadersGetCallback( */ csvbufferresult_t csvHeadersGet(assetbuffer_t *asset, csvrow_t *row); - /** * Gets the column index within the CSV Row for the specific key. * @param row Row to get from. @@ -95,6 +93,7 @@ int32_t csvColumnGetIndex(csvrow_t *row, char *key); bool _csvRowSearchCallback( assetbuffer_t *asset, void *user, int32_t row, csvrow_t *csv ); + /** * Search the CSV for a matching row. Will return data only if the given column * matches the given value. diff --git a/src/game/dawn/dawngame.h b/src/game/dawn/dawngame.h index c55b2321..27876fd8 100644 --- a/src/game/dawn/dawngame.h +++ b/src/game/dawn/dawngame.h @@ -8,8 +8,24 @@ #pragma once #include +/** + * Initializes the Dawn Game instance. + * + * @param game Game to instanciate. + * @return True if successful otherwise false. + */ bool dawnGameInit(game_t *game); +/** + * Update the Dawn Game Instance. + * + * @param game Game to update. + */ void dawnGameUpdate(game_t *game); +/** + * Cleanup the dawn game instance. + * + * @param game Game to dispose. + */ void dawnGameDispose(game_t *game); \ No newline at end of file diff --git a/src/game/poker/actions/action.h b/src/game/poker/actions/action.h index add449d5..28570fe2 100644 --- a/src/game/poker/actions/action.h +++ b/src/game/poker/actions/action.h @@ -7,7 +7,6 @@ #pragma once #include -#include "../../../vn/conversation/talk.h" #include "../../../display/animation/queue.h" /** diff --git a/src/game/poker/actions/bet.c b/src/game/poker/actions/bet.c index bb1a9b2f..19c7210d 100644 --- a/src/game/poker/actions/bet.c +++ b/src/game/poker/actions/bet.c @@ -10,12 +10,14 @@ void _pokerGameActionBetOnUpdate( queue_t *queue, queueaction_t *action, uint8_t i ) { + // Restack bool isHuman; bool turnMade = false; pokerturn_t turn; pokergame_t *game = (pokergame_t *)action->data; pokerplayer_t *player; + // Are they human? player = game->poker.players + game->poker.bet.better; isHuman = game->poker.bet.better == POKER_PLAYER_HUMAN_INDEX; diff --git a/src/game/poker/actions/bet.h b/src/game/poker/actions/bet.h index b6247e7d..17620e29 100644 --- a/src/game/poker/actions/bet.h +++ b/src/game/poker/actions/bet.h @@ -12,4 +12,20 @@ #include "../../../poker/bet.h" #include "../../../poker/actions/flop.h" +/** Callback when the bet action is updated. */ +void _pokerGameActionBetOnUpdate( + queue_t *queue, queueaction_t *action, uint8_t i +); + +/** Callback for when the bet action ends. */ +void _pokerGameActionBetOnEnd( + queue_t *queue, queueaction_t *action, uint8_t i +); + +/** + * Queues the bet action to the queue. + * + * @param game Game to queue onto. + * @return The action that was queued. + */ queueaction_t * pokerGameActionBetAdd(pokergame_t *game); \ No newline at end of file diff --git a/src/game/poker/actions/look.c b/src/game/poker/actions/look.c index 1b4b44b3..4c7ee347 100644 --- a/src/game/poker/actions/look.c +++ b/src/game/poker/actions/look.c @@ -7,7 +7,6 @@ #include "look.h" - void _pokerGameActionLookOnStart( queue_t *queue, queueaction_t *action, uint8_t i ) { diff --git a/src/game/poker/actions/look.h b/src/game/poker/actions/look.h index 6463645b..9ec8c501 100644 --- a/src/game/poker/actions/look.h +++ b/src/game/poker/actions/look.h @@ -11,6 +11,7 @@ #include "../../../display/animation/queue.h" #include "../pokerworld.h" +/** Callback when the look action starts. */ void _pokerGameActionLookOnStart( queue_t *queue, queueaction_t *action, uint8_t i ); diff --git a/src/game/poker/actions/restack.c b/src/game/poker/actions/restack.c new file mode 100644 index 00000000..47c19ca2 --- /dev/null +++ b/src/game/poker/actions/restack.c @@ -0,0 +1,21 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#include "restack.h" + +void _pokerGameActionRestackOnStart( + queue_t *queue, queueaction_t *action, uint8_t i +) { + pokerGameQueueRestack(game); + queueNext(queue); +} + +queueaction_t * pokerGameActionRestackAdd(pokergame_t *game) { + queueaction_t *action = pokerGameActionAdd(game); + action->onStart = &_pokerGameActionRestackOnStart; + return action; +} \ No newline at end of file diff --git a/src/game/poker/actions/restack.h b/src/game/poker/actions/restack.h new file mode 100644 index 00000000..68f052bc --- /dev/null +++ b/src/game/poker/actions/restack.h @@ -0,0 +1,27 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include +#include "action.h" +#include "../pokergame.h" +#include "../../../poker/turn.h" +#include "../../../poker/bet.h" +#include "../../../poker/actions/flop.h" + +/** Callback for when the queue restack action stars. */ +void _pokerGameActionRestackOnStart( + queue_t *queue, queueaction_t *action, uint8_t i +); + +/** + * Adds a restack action to the queue. + * + * @param game Game to restack. + * @return The queued action. + */ +queueaction_t * pokerGameActionRestackAdd(pokergame_t *game); \ No newline at end of file diff --git a/src/game/poker/actions/round.h b/src/game/poker/actions/round.h index 33c9be19..21abd770 100644 --- a/src/game/poker/actions/round.h +++ b/src/game/poker/actions/round.h @@ -13,10 +13,12 @@ #include "../discussion/pokerdiscussion.h" #include "bet.h" +/** Callback that is fired when the round start event starts. */ void _pokerGameActionRoundOnStart( queue_t *queue, queueaction_t *action, uint8_t i ); +/** Callback that is fired when the round action ends. */ void _pokerGameActionRoundOnEnd(queue_t *queue,queueaction_t *action,uint8_t i); /** diff --git a/src/game/poker/actions/start.h b/src/game/poker/actions/start.h index e79892d8..c5019ff1 100644 --- a/src/game/poker/actions/start.h +++ b/src/game/poker/actions/start.h @@ -14,10 +14,12 @@ #include "action.h" #include "round.h" +/** Callback fired when the game action first starts */ void _pokerGameActionStartOnStart( queue_t *queue, queueaction_t *action, uint8_t i ); +/** Callback fired when the game start action ends */ void _pokerGameActionStartOnEnd(queue_t *queue,queueaction_t *action,uint8_t i); /** diff --git a/src/game/poker/discussion/pokerdiscussion.h b/src/game/poker/discussion/pokerdiscussion.h index cc0f9e9c..c0b301e5 100644 --- a/src/game/poker/discussion/pokerdiscussion.h +++ b/src/game/poker/discussion/pokerdiscussion.h @@ -11,8 +11,16 @@ #include "../../../vn/conversation/talk.h" #include "../actions/look.h" -void pokerDiscussionGet( - pokerdiscussion_t *discussion, pokerdiscussiondata_t *data -); +/** + * Retreives the discussion based on some discussion data. + * @param disc The discussion data to buffer into. + * @param data The discussion data. + */ +void pokerDiscussionGet(pokerdiscussion_t *disc, pokerdiscussiondata_t *data); +/** + * Queue a discussion data result onto the conversation stack. + * + * @param data The discussion data. + */ void pokerDiscussionQueue(pokerdiscussiondata_t *data); \ No newline at end of file diff --git a/src/game/poker/pokergame.c b/src/game/poker/pokergame.c index fc04cf49..577d6214 100644 --- a/src/game/poker/pokergame.c +++ b/src/game/poker/pokergame.c @@ -68,4 +68,15 @@ void pokerGameDispose(game_t *game) { // Unload all assets pokerGameAssetsDispose(&pokerGame->assets); +} + +void pokerGameQueueRestack(pokergame_t *pokerGame) { + arrayRewind( + sizeof(pokergameactiondata_t), + pokerGame->actionData, + ANIMATION_QUEUE_ITEM_MAX, + pokerGame->scene.conversation.actionQueue.current, + pokerGame->scene.conversation.actionQueue.count + ); + queueRestack(&pokerGame->scene.conversation.actionQueue); } \ No newline at end of file diff --git a/src/game/poker/pokergame.h b/src/game/poker/pokergame.h index b9f0df25..db8b797d 100644 --- a/src/game/poker/pokergame.h +++ b/src/game/poker/pokergame.h @@ -11,6 +11,7 @@ #include "../../poker/poker.h" #include "../../vn/conversation/talk.h" #include "../../vn/vnscene.h" +#include "../../util/array.h" #include "actions/start.h" #include "pokerui.h" #include "pokerworld.h" @@ -34,4 +35,11 @@ void pokerGameUpdate(game_t *game); * Disposes a previously initialized poker game instance. * @param game Game to initialize for. */ -void pokerGameDispose(game_t *game); \ No newline at end of file +void pokerGameDispose(game_t *game); + +/** + * Restacks the poker game's stack. + * + * @param pokerGame Poker game to restack + */ +void pokerGameQueueRestack(pokergame_t *pokerGame); \ No newline at end of file diff --git a/src/game/poker/pokergameassets.h b/src/game/poker/pokergameassets.h index 63276180..a79e0c45 100644 --- a/src/game/poker/pokergameassets.h +++ b/src/game/poker/pokergameassets.h @@ -11,5 +11,17 @@ #include "../../locale/language.h" #include "../../display/texture.h" +/** + * Load and initializes all the assets used by the poker game. + * + * @param assets Assets instance to initailize. + * @return True if successful, otherwise false. + */ bool pokerGameAssetsInit(pokergameassets_t *assets); + +/** + * Cleans a previously initialized game assets set. + * + * @param assets Assets to dispose. + */ void pokerGameAssetsDispose(pokergameassets_t *assets); \ No newline at end of file diff --git a/src/game/poker/pokerui.h b/src/game/poker/pokerui.h index f66c8778..5b7926e7 100644 --- a/src/game/poker/pokerui.h +++ b/src/game/poker/pokerui.h @@ -9,8 +9,23 @@ #include #include "../../ui/label.h" +/** + * Initializes the UI Module. + * + * @param pokerGame Poker game to initialize the UI for. + */ void pokerUiInit(pokergame_t *pokerGame); +/** + * Render the Poker Game UI. + * + * @param pokerGame Game to render the UI for. + */ void pokerUiRender(pokergame_t *pokerGame); +/** + * Cleanup only the UI elements for a poker game. + * + * @param pokerGame Game to dispose the UI for. + */ void pokerUiDispose(pokergame_t *pokerGame); \ No newline at end of file diff --git a/src/physics/aabb.c b/src/physics/aabb.c index 6af6f94e..c79eaa03 100644 --- a/src/physics/aabb.c +++ b/src/physics/aabb.c @@ -52,49 +52,5 @@ bool aabbPoint2D( hit->hitY = x + (halfHeight * sy); } - return true; -} - -bool aabbVector2D( - float x, float y, - float vx, float vy, - float bx, float by, float width, float height, - aabbvectorhit2d_t *hit -) { - // float halfWidth = width / 2.0; - // float halfHeight = height / 2.0; - // float paddingX = 0; - // float paddingY = 0; - - // float scaleX = 1.0 / vx; - // float scaleY = 1.0 / vy; - // float signX = mathSign(scaleX); - // float signY = mathSign(scaleY); - - // float nearTimeX = (bx - signX * (halfWidth + paddingX) - bx) * scaleX; - // float nearTimeY = (by - signY * (halfHeight + paddingY) - by) * scaleY; - // float farTimeX = (bx + signX * (halfWidth + paddingX) - bx) * scaleX; - // float farTimeY = (by + signY * (halfHeight + paddingY) - by) * scaleY; - - // if(nearTimeX > farTimeY || nearTimeY > farTimeX) return false; - - // float nearTime = nearTimeX > nearTimeY ? nearTimeX : nearTimeY; - // float farTime = farTimeX < farTimeY ? farTimeX : farTimeY; - // if (nearTime >= 1 || farTime <= 0) return false; - - // hit->time = mathClamp(nearTime, 0, 1); - // if(nearTimeX > nearTimeY) { - // hit->normalX = -signX; - // hit->normalY = 0; - // } else { - // hit->normalX = 0; - // hit->normalY = -signY; - // } - - // float deltaX = (1.0 - hit->time) * -vx; - // float deltaY = (1.0 - hit->time) * -vy; - // hit->hitX = bx + deltaX * hit->time; - // hit->hitY = by + deltaY * hit->time; - return true; } \ No newline at end of file diff --git a/src/physics/aabb.h b/src/physics/aabb.h index 08ff9825..9e8f8202 100644 --- a/src/physics/aabb.h +++ b/src/physics/aabb.h @@ -10,14 +10,20 @@ #include "sphere.h" #include "../input/input.h" +/** + * Perform a test against a point and an AABB. + * + * @param pointX Point X coordinate. + * @param pointY Point Y coordinate. + * @param x Box X coordinate. + * @param y Box Y coordinate. + * @param width Box width. + * @param height Box height. + * @param hit Pointer to hit information to store result in, or NULL for none. + * @return True if a hit occured, otherwise false. + */ bool aabbPoint2D( float pointX, float pointY, float x, float y, float width, float height, aabbpointhit2d_t *hit -); - -bool aabbVector2D( - float x, float y, float vx, float vy, - float bx, float by, float width, float height, - aabbvectorhit2d_t *vector ); \ No newline at end of file diff --git a/src/util/array.h b/src/util/array.h index 43323a6a..95e9ca46 100644 --- a/src/util/array.h +++ b/src/util/array.h @@ -113,5 +113,5 @@ int32_t arrayFindString(char **array, int32_t arrayLength, char *value); * @param count Count of items after start to use. Use -1 to take the remaining. */ void arrayRewind(size_t size, void *source, int32_t length, int32_t start, - int32_t end + int32_t count ); \ No newline at end of file