From cb447a603317750370a00e9937a2252f959c5366 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 5 Sep 2021 00:34:29 -0700 Subject: [PATCH] Added a dynamic array. --- include/dawn/dawn.h | 2 + include/dawn/display/scene.h | 46 +++++++++++++ include/dawn/game/poker/pokergame.h | 11 ++++ include/dawn/game/poker/ui/pokerplayerui.h | 3 + include/dawn/ui/image.h | 1 + include/dawn/util/dynarray.h | 24 +++++++ src/display/scene.c | 57 ++++++++++++++++ src/display/scene.h | 21 ++++++ src/game/poker/pokergame.c | 15 ++++- src/game/poker/ui/pokerplayerui.c | 11 ++-- src/game/poker/ui/pokerplayerui.h | 3 + src/game/poker/ui/pokerui.c | 7 +- src/game/poker/ui/pokerui.h | 3 +- src/ui/image.c | 36 +++++++++-- src/ui/image.h | 18 +++++- src/util/array.c | 19 ++++++ src/util/array.h | 25 ++++++++ src/util/dynarray.c | 43 +++++++++++++ src/util/dynarray.h | 75 ++++++++++++++++++++++ src/vn/vnscene.c | 8 --- 20 files changed, 403 insertions(+), 25 deletions(-) create mode 100644 include/dawn/display/scene.h create mode 100644 include/dawn/util/dynarray.h create mode 100644 src/display/scene.c create mode 100644 src/display/scene.h create mode 100644 src/util/dynarray.c create mode 100644 src/util/dynarray.h diff --git a/include/dawn/dawn.h b/include/dawn/dawn.h index a073f72e..c474116a 100644 --- a/include/dawn/dawn.h +++ b/include/dawn/dawn.h @@ -18,6 +18,7 @@ #include "display/matrix.h" #include "display/primitive.h" #include "display/render.h" +#include "display/scene.h" #include "display/shader.h" #include "display/spritebatch.h" #include "display/texture.h" @@ -75,6 +76,7 @@ // Utility Objects #include "util/array.h" +#include "util/dynarray.h" #include "util/flags.h" #include "util/list.h" #include "util/math.h" diff --git a/include/dawn/display/scene.h b/include/dawn/display/scene.h new file mode 100644 index 00000000..e75d98e0 --- /dev/null +++ b/include/dawn/display/scene.h @@ -0,0 +1,46 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include "../libs.h" +#include "../engine/engine.h" + +/** Maximum number of items a scene can support */ +#define SCENE_ITEMS_MAX 32 + + +typedef struct _scene_t scene_t; +typedef struct _sceneitem_t sceneitem_t; + +/** + * Callback for when scene events occur. + * + * @param scene The scene that is being evented. + * @param i The index of the current scene item. + * @param engine The game's engine. + */ +typedef void sceneitemcallback_t( + scene_t *scene, int32_t i, engine_t *engine +); + +typedef struct _sceneitem_t { + sceneitemcallback_t *onUpdate; + sceneitemcallback_t *onRender; + sceneitemcallback_t *onDispose; +} sceneitem_t; + +typedef struct _scene_t { + /** Camera that is used to render the scene */ + camera_t camera; + + /** Any custom user data pointer */ + void *user; + + /** Items within the scene */ + sceneitem_t items[SCENE_ITEMS_MAX]; + int32_t itemCount; +} scene_t; \ No newline at end of file diff --git a/include/dawn/game/poker/pokergame.h b/include/dawn/game/poker/pokergame.h index e210eec0..5fb2394f 100644 --- a/include/dawn/game/poker/pokergame.h +++ b/include/dawn/game/poker/pokergame.h @@ -22,6 +22,17 @@ #define POKER_GAME_SEAT_FOR_PLAYER(p) (p - (POKER_PLAYER_COUNT/2)) #define POKER_GAME_SEAT_DEALER POKER_GAME_SEAT_FOR_PLAYER(POKER_DEALER_INDEX) +/** + * Return the seat for a given player index, also works for the dealer index. + * @param i The players index. + * @return The players seat number. + */ +#define pokerGameSeatFromIndex(i) (\ + i == POKER_DEALER_INDEX ? \ + POKER_GAME_SEAT_DEALER : \ + POKER_GAME_SEAT_FOR_PLAYER(i) \ +) + #define POKER_GAME_PENNY_BASE_WIDTH 1000 #define POKER_GAME_PENNY_BASE_HEIGHT 1920 #define POKER_GAME_PENNY_FACE_X 367 diff --git a/include/dawn/game/poker/ui/pokerplayerui.h b/include/dawn/game/poker/ui/pokerplayerui.h index 1cdcb2c3..840e4eda 100644 --- a/include/dawn/game/poker/ui/pokerplayerui.h +++ b/include/dawn/game/poker/ui/pokerplayerui.h @@ -8,6 +8,9 @@ #pragma once #include "../../../libs.h" #include "../../../ui/label.h" +#include "../../../ui/image.h" +#include "../../../display/framebuffer.h" +#include "../../../display/camera.h" typedef struct { label_t label; diff --git a/include/dawn/ui/image.h b/include/dawn/ui/image.h index 1d85a04f..ec3a5107 100644 --- a/include/dawn/ui/image.h +++ b/include/dawn/ui/image.h @@ -14,4 +14,5 @@ typedef struct { primitive_t quad; float u0, v0; float u1, v1; + float width, height; } image_t; \ No newline at end of file diff --git a/include/dawn/util/dynarray.h b/include/dawn/util/dynarray.h new file mode 100644 index 00000000..a2085fa6 --- /dev/null +++ b/include/dawn/util/dynarray.h @@ -0,0 +1,24 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include "../libs.h" + +/** Custom Array Definition */ +typedef struct { + /** The data storage */ + void *data; + + /** Size of each element within the array */ + size_t size; + + /** The count of elements currently in the array */ + int32_t length; + + /** Total count of elements the array can hold */ + int32_t total; +} dynarray_t; \ No newline at end of file diff --git a/src/display/scene.c b/src/display/scene.c new file mode 100644 index 00000000..c60e0e5b --- /dev/null +++ b/src/display/scene.c @@ -0,0 +1,57 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#include "scene.h" + +void sceneInit(scene_t *scene) { + scene->itemCount = 0; + + cameraLookAt(&scene->camera, 3,3,3, 0,0,0); + cameraPerspective(&scene->camera, 75, 16.0f/9.0f, 0.01f, 100.0f); +} + +sceneitem_t * sceneAdd(scene_t *scene) { + sceneitem_t *item = scene->items + scene->itemCount; + scene->itemCount++; + return item; +} + +void sceneUpdate(scene_t *scene, engine_t *engine) { + int32_t i; + sceneitem_t *item; + + for(i = 0; i < scene->itemCount; i++) { + item = scene->items + i; + if(item->onUpdate == NULL) continue; + item->onUpdate(scene, i, engine); + } +} + +void sceneRender(scene_t *scene, engine_t *engine, shader_t *shader) { + int32_t i; + sceneitem_t *item; + + shaderUse(shader); + shaderUseCamera(shader, &scene->camera); + + for(i = 0; i < scene->itemCount; i++) { + item = scene->items + i; + if(item->onRender == NULL) continue; + item->onRender(scene, i, engine); + } +} + +void sceneDispose(scene_t *scene) { + int32_t i; + sceneitem_t *item; + + for(i = 0; i < scene->itemCount; i++) { + item = scene->items + i; + if(item->onDispose == NULL) continue; + item->onDispose(scene, i, NULL); + } +} \ No newline at end of file diff --git a/src/display/scene.h b/src/display/scene.h new file mode 100644 index 00000000..80f97c23 --- /dev/null +++ b/src/display/scene.h @@ -0,0 +1,21 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include +#include "camera.h" +#include "shader.h" + +void sceneInit(scene_t *scene); + +sceneitem_t * sceneAdd(scene_t *scene); + +void sceneUpdate(scene_t *scene, engine_t *engine); + +void sceneRender(scene_t *scene, engine_t *engine, shader_t *shader); + +void sceneDispose(scene_t *scene); \ No newline at end of file diff --git a/src/game/poker/pokergame.c b/src/game/poker/pokergame.c index 577d6214..ed1247c9 100644 --- a/src/game/poker/pokergame.c +++ b/src/game/poker/pokergame.c @@ -29,6 +29,19 @@ bool pokerGameInit(game_t *game) { pokerGameActionStartAdd(pokerGame); queueNext(&pokerGame->scene.conversation.actionQueue); + // Testing + dynArrayInit(&dynarr, sizeof(int32_t), 100); + int32_t i, count; + count = 32; + for(i = 0; i < count; i++) { + dynArrayPush(&dynarr, &i); + printf("Count i is %i\n", *((int32_t *)dynArrayGet(&dynarr, i)) ); + } + + dynArraySploice(&dynarr, 0, 16); + printf("Count 0 is %i\n", *((int32_t *)dynArrayGet(&dynarr, 0)) ); + printf("Count 8 is %i\n", *((int32_t *)dynArrayGet(&dynarr, 8)) ); + return true; } @@ -50,7 +63,7 @@ void pokerGameUpdate(game_t *game) { // Render the UI vnSceneRenderGui(&pokerGame->scene, &game->engine, &pokerGame->assets.shader); - pokerUiRender(pokerGame); + pokerUiRender(pokerGame, &game->engine); } void pokerGameDispose(game_t *game) { diff --git a/src/game/poker/ui/pokerplayerui.c b/src/game/poker/ui/pokerplayerui.c index 251e1a7c..9801029d 100644 --- a/src/game/poker/ui/pokerplayerui.c +++ b/src/game/poker/ui/pokerplayerui.c @@ -25,7 +25,9 @@ void pokerPlayerUiRender( // Render chips sprintf(buffer, "$%i", player->chips); labelSetText(&ui->label, font, buffer); - labelRender(&ui->label, shader, x, y); + labelRender(&ui->label, shader, x - ui->label.info.width, y); + + // Render Face // Render state if(player->state & POKER_PLAYER_STATE_OUT) { @@ -40,10 +42,9 @@ void pokerPlayerUiRender( sprintf(buffer, "Whatever"); } labelSetText(&ui->label, font, buffer); - labelRender(&ui->label, shader, x, y + scale * FONT_LINE_HEIGHT); - - // Render face? - + labelRender(&ui->label, shader, + x - ui->label.info.width, y + scale * FONT_LINE_HEIGHT + ); } void pokerPlayerUiDispose(pokerplayerui_t *ui) { diff --git a/src/game/poker/ui/pokerplayerui.h b/src/game/poker/ui/pokerplayerui.h index d098de3f..020f0255 100644 --- a/src/game/poker/ui/pokerplayerui.h +++ b/src/game/poker/ui/pokerplayerui.h @@ -8,6 +8,9 @@ #pragma once #include #include "../../../ui/label.h" +#include "../../../ui/image.h" +#include "../../../display/framebuffer.h" +#include "../../../display/camera.h" void pokerPlayerUiInit(pokerplayerui_t *ui); diff --git a/src/game/poker/ui/pokerui.c b/src/game/poker/ui/pokerui.c index a951b17a..72ea5ce6 100644 --- a/src/game/poker/ui/pokerui.c +++ b/src/game/poker/ui/pokerui.c @@ -15,7 +15,7 @@ void pokerUiInit(pokergame_t *pokerGame) { } } -void pokerUiRender(pokergame_t *pokerGame) { +void pokerUiRender(pokergame_t *pokerGame, engine_t *engine) { uint8_t i; pokerplayerui_t *ui; @@ -23,9 +23,8 @@ void pokerUiRender(pokergame_t *pokerGame) { ui = pokerGame->ui.player + i; pokerPlayerUiRender(ui, pokerGame, - &pokerGame->assets.shader, &pokerGame->assets.font, - i, - i * 150.0f, 0 + &pokerGame->assets.shader, &pokerGame->assets.font, i, + engine->render.width, i * 75.0f ); } } diff --git a/src/game/poker/ui/pokerui.h b/src/game/poker/ui/pokerui.h index 9b68ea1c..7ce53040 100644 --- a/src/game/poker/ui/pokerui.h +++ b/src/game/poker/ui/pokerui.h @@ -21,8 +21,9 @@ void pokerUiInit(pokergame_t *pokerGame); * Render the Poker Game UI. * * @param pokerGame Game to render the UI for. + * @param engine Engine to use for the render. */ -void pokerUiRender(pokergame_t *pokerGame); +void pokerUiRender(pokergame_t *pokerGame, engine_t *engine); /** * Cleanup only the UI elements for a poker game. diff --git a/src/ui/image.c b/src/ui/image.c index 78f3d42e..667d610c 100644 --- a/src/ui/image.c +++ b/src/ui/image.c @@ -7,23 +7,51 @@ #include "image.h" -void imageInit(image_t *image, texture_t *texture) { +void imageInit(image_t *image) { image->quad.verticeCount = -1; - imageSetTexture(image, texture); + image->width = 1; + image->height = 1; + imageSetTexture(image, NULL); } void imageSetTexture(image_t *image, texture_t *texture) { + imageSetTextureAndCrop(image, texture, + 0, 0, + texture == NULL ? 0 : (float)texture->width, + texture == NULL ? 0 : (float)texture->height + ); +} + +void imageSetTextureAndCrop(image_t *image, texture_t *texture, + float x, float y, float width, float height +) { + float u0, u1, v0, v1; if(image->quad.verticeCount != -1) { primitiveDispose(&image->quad); image->quad.verticeCount = -1; } + if(texture == NULL) return; + + u0 = x / texture->width; + u1 = u0 + (width / texture->width); + v0 = y / texture->height; + v1 = v0 + (height / texture->height); image->texture = texture; - quadInit(&image->quad, 0, 0,0,0,0, texture->width,texture->height,1,1); + quadInit(&image->quad, 0, + 0,0,u0,v0, + 1,1,u1,v1 + ); } void imageRender(image_t *image, shader_t *shader, float x, float y) { - shaderUsePosition(shader, x, y, 0, 0, 0, 0); + if(image->texture == NULL) return; + shaderUsePositionAndScale(shader, + x,y,0, + 0,0,0, + image->width, image->height, 1 + ); + shaderUseTexture(shader, image->texture); primitiveDraw(&image->quad, 0, -1); } diff --git a/src/ui/image.h b/src/ui/image.h index ebe68a8c..27447782 100644 --- a/src/ui/image.h +++ b/src/ui/image.h @@ -15,9 +15,8 @@ * Initialize an image. * * @param image Image to initialize. - * @param texture Texture to use for initialization. */ -void imageInit(image_t *image, texture_t *texture); +void imageInit(image_t *image); /** * Set the texture for an image. This will also initialize the underlying quad. @@ -27,6 +26,21 @@ void imageInit(image_t *image, texture_t *texture); */ void imageSetTexture(image_t *image, texture_t *texture); +/** + * Set the texture for an image. This will also initialize the underlying quad. + * Also allows cropping of the texture image. + * + * @param image Image to set the texture for. + * @param texture Texture to use. + * @param x X position of the crop. + * @param y Y position of the crop. + * @param width Width of the crop. + * @param height Height of the crop. + */ +void imageSetTextureAndCrop(image_t *image, texture_t *texture, + float x, float y, float width, float height +); + /** * Render an image * diff --git a/src/util/array.c b/src/util/array.c index 9a54084f..ad87d257 100644 --- a/src/util/array.c +++ b/src/util/array.c @@ -11,6 +11,10 @@ void * arrayGet(size_t size, void *array, int32_t index) { return (char *)array + (index * (size/sizeof(char))); } +void arraySet(size_t size, void *array, int32_t index, void *data) { + memcpy(arrayGet(size, array, index), data, size); +} + void arrayShuffle(size_t size, void *array, int32_t arrayLength) { int32_t x, y; void *itemDest, *itemSource; @@ -104,4 +108,19 @@ void arrayRewind(size_t size, void *source, int32_t length, int32_t start, // Cleanup the temporary array. free(temporary); +} + +void arraySplice( + size_t size, void *array, int32_t start, int32_t count, int32_t length +) { + // Take the end of the array... + int32_t takeStart = start + count; + int32_t takeLength = length - takeStart; + + void *temporary = malloc(size * takeLength); + arrayCopy(size, arrayGet(size, array, takeStart), takeLength, temporary); + + // Now copy it back into the original array + arrayCopy(size, temporary, takeLength, arrayGet(size, array, start)); + free(temporary); } \ No newline at end of file diff --git a/src/util/array.h b/src/util/array.h index 95e9ca46..fb240808 100644 --- a/src/util/array.h +++ b/src/util/array.h @@ -18,6 +18,17 @@ */ void * arrayGet(size_t size, void *array, int32_t index); +/** + * Set an object into the array. + * + * @param size Size of the element to set. + * @param array Array to set in to. + * @param index Index to set into. + * @param data Data to set into the array. + * @return void* + */ +void arraySet(size_t size, void *array, int32_t index, void *data); + /** * Randomizes the contents of an array. * @@ -114,4 +125,18 @@ int32_t arrayFindString(char **array, int32_t arrayLength, char *value); */ void arrayRewind(size_t size, void *source, int32_t length, int32_t start, int32_t count +); + +/** + * Remove some elements from an array. This will cause the elements after the + * removed items to be shifted down into their place. + * + * @param size Size of each element within the array. + * @param array Array itself. + * @param start The first index you want to remove. + * @param count The count of elements to remove. + * @param length The length of the total array. + */ +void arraySplice( + size_t size, void *array, int32_t start, int32_t count, int32_t length ); \ No newline at end of file diff --git a/src/util/dynarray.c b/src/util/dynarray.c new file mode 100644 index 00000000..4f265c24 --- /dev/null +++ b/src/util/dynarray.c @@ -0,0 +1,43 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#include "dynarray.h" + +void dynArrayInit(dynarray_t *array, size_t size, int32_t total) { + array->total = total; + array->size = size; + array->length = 0; + array->data = malloc(size * total); +} + +void * dynArrayGet(dynarray_t *array, int32_t i) { + return arrayGet(array->size, array->data, i); +} + +void dynArraySet(dynarray_t *array, int32_t i, void *data) { + array->length = mathMax(array->length, i+1); + arraySet(array->size, array->data, i, data); +} + +int32_t dynArrayPush(dynarray_t *array, void *data) { + int32_t i = array->length; + dynArraySet(array, i, data); + return i; +} + +void dynArrayPop(dynarray_t *array) { + array->length -= 1; +} + +void dynArraySplice(dynarray_t *array, int32_t start, int32_t count) { + arraySplice(array->size, array->data, start, count, array->length); + array->length -= count; +} + +void dynArrayDispose(dynarray_t *array) { + free(array->data); +} \ No newline at end of file diff --git a/src/util/dynarray.h b/src/util/dynarray.h new file mode 100644 index 00000000..c633a041 --- /dev/null +++ b/src/util/dynarray.h @@ -0,0 +1,75 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include +#include "array.h" + +/** + * Create a dynamic array. Dynamic arrays are a more highlevel array style that + * can offer great flexibility and ease-of-use, at the cost of memory, memory + * fragmentation and some slight performance. Great for when you need something + * like a traditional array, without the hassle of a linked list. + * + * @param array Array to initialize. + * @param size Size of each element within the array. + * @param total Total number of elements that the array can hold. + */ +void dynArrayInit(dynarray_t *array, size_t size, int32_t total); + +/** + * Returns the pointer to an index within the array. + * + * @param array Array to get from. + * @param i Index to get + * @return Pointer to that element. + */ +void * dynArrayGet(dynarray_t *array, int32_t i); + +/** + * Set something into the array. + * + * @param array Array to set into. + * @param i Index to set into. + * @param data Pointer to the data to set. + */ +void dynArraySet(dynarray_t *array, int32_t i, void *data); + +/** + * Push an element into the array. + * + * @param array Array to push in to. + * @param data Pointer to the data to push. + * @return The index that the data was pushed in to. + */ +int32_t dynArrayPush(dynarray_t *array, void *data); + +/** + * "Pops" (Removes) the last element from the array. + * + * @param array Array to pop. + */ +void dynArrayPop(dynarray_t *array); + +/** + * Removes elements from out of the array, and shuffles the remaining items. + * This is useful for removing a specific item from an array and keeping the + * holes out of the array. This will readjust the indexes of all elements that + * appear after the spliced index. + * + * @param array Array to splice. + * @param start First index to splice. + * @param count Count of elements to splice + */ +void dynArraySplice(dynarray_t *array, int32_t start, int32_t count); + +/** + * Dispose a previously created dynamic array. + * + * @param array Dynamic array to dispose. + */ +void dynArrayDispose(dynarray_t *array); \ No newline at end of file diff --git a/src/vn/vnscene.c b/src/vn/vnscene.c index 4d71e41b..04da03d1 100644 --- a/src/vn/vnscene.c +++ b/src/vn/vnscene.c @@ -46,14 +46,6 @@ void vnSceneRenderWorld(vnscene_t *scene, engine_t *engine, shader_t *shader) { scene->cameraLookX, scene->cameraLookY, scene->cameraLookZ ); - if(false) { - float d = 2; - cameraOrbit(&scene->camera, - 2, engine->time.current / 3.0f, mathDeg2Rad(35), - 0, 0, 0 - ); - } - // Set Camera Perspective cameraPerspective(&scene->camera, 35, engine->render.width/engine->render.height,