From 7f80cb0fa07f361478a9af1b5083bcdeb340ae5f Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Thu, 19 Aug 2021 11:18:56 -0700 Subject: [PATCH] Committing current progress. --- include/dawn/dawn.h | 1 + include/dawn/physics/aabb.h | 12 ++++++- include/dawn/ui/menu.h | 38 ++++++++++++++++++++++ include/dawn/util/math.h | 3 +- src/game/poker/pokergame.c | 35 ++------------------ src/physics/aabb.c | 45 +++++++++++++++++++++++++- src/physics/aabb.h | 8 ++++- src/ui/menu.c | 64 +++++++++++++++++++++++++++++++++++++ src/ui/menu.h | 28 ++++++++++++++++ src/vn/vnscene.c | 2 +- 10 files changed, 199 insertions(+), 37 deletions(-) create mode 100644 include/dawn/ui/menu.h create mode 100644 src/ui/menu.c create mode 100644 src/ui/menu.h diff --git a/include/dawn/dawn.h b/include/dawn/dawn.h index 7242f831..ef4f04c6 100644 --- a/include/dawn/dawn.h +++ b/include/dawn/dawn.h @@ -66,6 +66,7 @@ // User Interface Objects #include "ui/frame.h" #include "ui/label.h" +#include "ui/menu.h" // Utility Objects #include "util/array.h" diff --git a/include/dawn/physics/aabb.h b/include/dawn/physics/aabb.h index 870cee62..a02beecf 100644 --- a/include/dawn/physics/aabb.h +++ b/include/dawn/physics/aabb.h @@ -13,4 +13,14 @@ typedef struct { float normalX; float normalY; -} aabbpointhit_t; \ No newline at end of file +} aabbpointhit2d_t; + +typedef struct { + float time; + + float normalX; + float normalY; + + float hitX; + float hitY; +} aabbvectorhit2d_t; \ No newline at end of file diff --git a/include/dawn/ui/menu.h b/include/dawn/ui/menu.h new file mode 100644 index 00000000..6642ec21 --- /dev/null +++ b/include/dawn/ui/menu.h @@ -0,0 +1,38 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include "../libs.h" + +#define MENU_ITEMS_COLUMNS_MAX 16 +#define MENU_ITEMS_ROWS_MAX 128 +#define MENU_ITEMS_MAX MENU_ITEMS_COLUMNS_MAX * MENU_ITEMS_ROWS_MAX + +#define MENU_DIRECTION_DOWN 0x01 +#define MENU_DIRECTION_UP 0x02 +#define MENU_DIRECTION_LEFT 0x03 +#define MENU_DIRECTION_RIGHT 0x04 + +#define MENU_HOLD_DURATION 1.0 + +typedef struct { + int32_t bruh; +} menuitem_t; + +typedef struct { + int32_t columns; + int32_t rows; + + int32_t x; + int32_t y; + + uint8_t direction; + + menuitem_t* items[MENU_ITEMS_MAX]; + bool holdAllow; + float holdLast; +} menu_t; \ No newline at end of file diff --git a/include/dawn/util/math.h b/include/dawn/util/math.h index c7e357c5..8be1acc7 100644 --- a/include/dawn/util/math.h +++ b/include/dawn/util/math.h @@ -16,4 +16,5 @@ #define mathAbs(n) (n<0?-n:n) #define mathDeg2Rad(n) (n * M_PI / 180.0) #define mathRad2Deg(n) (n * 180 / M_PI) -#define mathSign(n) (n>=0 ? 1 : -1) \ No newline at end of file +#define mathSign(n) (n>=0 ? 1 : -1) +#define mathClamp(val,min,max) mathMin(mathMax(val,min),max) \ No newline at end of file diff --git a/src/game/poker/pokergame.c b/src/game/poker/pokergame.c index 0e52fc69..20ba3115 100644 --- a/src/game/poker/pokergame.c +++ b/src/game/poker/pokergame.c @@ -7,10 +7,6 @@ #include "pokergame.h" -primitive_t primitive; -primitive_t dot; -float x, y; - bool pokerGameInit(game_t *game) { pokergame_t *pokerGame = &game->pokerGame; @@ -25,11 +21,6 @@ bool pokerGameInit(game_t *game) { pokerGameActionStartAdd(pokerGame); queueNext(&pokerGame->scene.conversation.actionQueue); - // - quadInit(&primitive, 0, 0,0,0,0, 64,64,1,1); - quadInit(&dot, 0, 0,0,0,0, 2,2,1,1); - x = 0, y = 0; - return true; } @@ -38,35 +29,15 @@ void pokerGameUpdate(game_t *game) { pokerGame = &game->pokerGame; // Update the scene - // vnSceneUpdate(&pokerGame->scene, &game->engine); + vnSceneUpdate(&pokerGame->scene, &game->engine); // Bind the shader. shaderUse(&pokerGame->assets.shader); - // Render the visual novel scene - // vnSceneRenderWorld(&pokerGame->scene, &game->engine, &pokerGame->assets.shader); + vnSceneRenderWorld(&pokerGame->scene, &game->engine, &pokerGame->assets.shader); vnSceneRenderGui(&pokerGame->scene, &game->engine, &pokerGame->assets.shader); - - shaderUseTexture(&pokerGame->assets.shader, &pokerGame->assets.testTexture); - - x = inputGetAxis(&game->engine.input, INPUT_MOUSE_X); - y = inputGetAxis(&game->engine.input, INPUT_MOUSE_Y); - - aabbpointhit_t hitting; - bool hit = aabbPoint2D(x, y, 64,64, 64,64, &hitting); - - shaderUsePosition(&pokerGame->assets.shader, 64,64,0, 0,0,0); - primitiveDraw(&primitive, 0, -1); - - if(hit) { - shaderUsePosition(&pokerGame->assets.shader, hitting.hitX,hitting.hitY,0, 0,0,0); - } else { - shaderUsePosition(&pokerGame->assets.shader, x,y,0, 0,0,0); - } - primitiveDraw(&dot, 0, -1); - - // pokerUiRender(pokerGame); + pokerUiRender(pokerGame); } void pokerGameDispose(game_t *game) { diff --git a/src/physics/aabb.c b/src/physics/aabb.c index 8837e095..6af6f94e 100644 --- a/src/physics/aabb.c +++ b/src/physics/aabb.c @@ -10,7 +10,7 @@ bool aabbPoint2D( float pointX, float pointY, float x, float y, float width, float height, - aabbpointhit_t *hit + aabbpointhit2d_t *hit ) { float dx, px, sx, halfWidth; @@ -55,3 +55,46 @@ bool aabbPoint2D( 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 6dc0ee45..08ff9825 100644 --- a/src/physics/aabb.h +++ b/src/physics/aabb.h @@ -13,5 +13,11 @@ bool aabbPoint2D( float pointX, float pointY, float x, float y, float width, float height, - aabbpointhit_t *hit + 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/ui/menu.c b/src/ui/menu.c new file mode 100644 index 00000000..6772391f --- /dev/null +++ b/src/ui/menu.c @@ -0,0 +1,64 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#include "menu.h" + +void menuInit(menu_t *menu, int32_t columns, int32_t rows) { + int32_t i; + menu->columns = columns; + menu->rows = rows; + menu->holdAllow = true; + menu->direction = 0x00; + for(i = 0; i < MENU_ITEMS_MAX; i++) menu->items[i] = NULL; +} + +void menuUpdate(menu_t *menu, engine_t *engine) { + inputbind_t bind; + float heldTime, heldDue; + + // Handle press binds. + if(inputIsPressed(&engine->input, INPUT_DOWN)) { + menu->y = (menu->y + 1) % menu->rows; + menu->direction = MENU_DIRECTION_DOWN; + } else if(inputIsPressed(&engine->input, INPUT_UP)) { + menu->y = (menu->y - 1) % menu->rows; + menu->direction = MENU_DIRECTION_DOWN; + } else if(inputIsPressed(&engine->input, INPUT_LEFT)) { + menu->x = (menu->x - 1) % menu->columns; + menu->direction = MENU_DIRECTION_DOWN; + } else if(inputIsPressed(&engine->input, INPUT_RIGHT)) { + menu->x = (menu->x + 1) % menu->columns; + menu->direction = MENU_DIRECTION_DOWN; + } + + // Handle held + if(menu->holdAllow && menu->direction != 0x00) { + bind = ( + menu->direction == MENU_DIRECTION_DOWN ? INPUT_DOWN : + menu->direction == MENU_DIRECTION_UP ? INPUT_UP : + menu->direction == MENU_DIRECTION_LEFT ? INPUT_LEFT : + menu->direction == MENU_DIRECTION_RIGHT ? INPUT_RIGHT : + INPUT_NULL + ); + + if(inputIsDown(&engine->input, bind)) { + heldTime = engine->time.current - inputGetAccuated(&engine->input, bind); + heldDue = engine->time.current - menu->holdLast; + + // Have we held long enough? + if(heldTime >= MENU_HOLD_DURATION) { + + menu->holdLast = engine->time.current; + } + } else { + menu->holdLast = engine->time.current; + } + } + + // Handle Mouse + +} \ No newline at end of file diff --git a/src/ui/menu.h b/src/ui/menu.h new file mode 100644 index 00000000..d7674e6c --- /dev/null +++ b/src/ui/menu.h @@ -0,0 +1,28 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include +#include "../input/input.h" +#include "../epoch/epoch.h" + +/** + * Initialize a menu. + * + * @param menu Menu to initialize. + * @param columns Count of rows. + * @param rows Count of columns. + */ +void menuInit(menu_t *menu, int32_t columns, int32_t rows); + +/** + * Updates the menu to handle inputs. + * + * @param menu Menu to update. + * @param engine Engine to update from. + */ +void menuUpdate(menu_t *menu, engine_t *engine); \ No newline at end of file diff --git a/src/vn/vnscene.c b/src/vn/vnscene.c index 2a9e9396..05d7946f 100644 --- a/src/vn/vnscene.c +++ b/src/vn/vnscene.c @@ -80,5 +80,5 @@ void vnSceneRenderGui(vnscene_t *scene, engine_t *engine, shader_t *shader) { shaderUseCamera(shader, &scene->camera); // Render Conversation Element - // vnConversationRender(&scene->conversation, shader); + vnConversationRender(&scene->conversation, shader); } \ No newline at end of file