Working on menu.

This commit is contained in:
2021-08-30 10:34:10 -07:00
parent 5369795134
commit e2e1e5fbac
3 changed files with 60 additions and 50 deletions

View File

@ -22,18 +22,18 @@
typedef struct { typedef struct {
int32_t x; int32_t x;
int32_t y; int32_t y;
int32_t width;
int32_t height;
int32_t i;
} menuitem_t; } menuitem_t;
typedef struct { typedef struct {
int32_t columns; menuitem_t items[MENU_ITEMS_MAX];
int32_t rows; int32_t itemCount;
int32_t selected;
int32_t cursorX;
int32_t cursorY;
int32_t x; // bool holdAllow;
int32_t y; // float holdLast;
uint8_t direction;
menuitem_t* items[MENU_ITEMS_MAX];
bool holdAllow;
float holdLast;
} menu_t; } menu_t;

View File

@ -7,58 +7,67 @@
#include "menu.h" #include "menu.h"
void menuInit(menu_t *menu, int32_t columns, int32_t rows) { void menuInit(menu_t *menu) {
int32_t i; int32_t i;
menu->columns = columns;
menu->rows = rows; menu->itemCount = 0;
menu->holdAllow = true; menu->selected = 0;
menu->direction = 0x00; menu->cursorX = 0;
for(i = 0; i < MENU_ITEMS_MAX; i++) menu->items[i] = NULL; menu->cursorY = 0;
for(i = 0; i < MENU_ITEMS_MAX; i++) menu->items[i].i = -1;
} }
void menuUpdate(menu_t *menu, engine_t *engine) { void menuUpdate(menu_t *menu, engine_t *engine) {
inputbind_t bind; menuitem_t *current;
float heldTime, heldDue; menuitem_t *item;
int32_t x, y, i;
current = menu->items + menu->selected;
// Handle press binds. // Handle press binds.
if(inputIsPressed(&engine->input, INPUT_DOWN)) { if(inputIsPressed(&engine->input, INPUT_DOWN)) {
menu->y = (menu->y + 1) % menu->rows; x = 0;
menu->direction = MENU_DIRECTION_DOWN; y = 1;
} else if(inputIsPressed(&engine->input, INPUT_UP)) { } else if(inputIsPressed(&engine->input, INPUT_UP)) {
menu->y = (menu->y - 1) % menu->rows; x = 0;
menu->direction = MENU_DIRECTION_DOWN; y = -1;
} else if(inputIsPressed(&engine->input, INPUT_LEFT)) { } else if(inputIsPressed(&engine->input, INPUT_LEFT)) {
menu->x = (menu->x - 1) % menu->columns; x = -1;
menu->direction = MENU_DIRECTION_DOWN; y = 0;
} else if(inputIsPressed(&engine->input, INPUT_RIGHT)) { } else if(inputIsPressed(&engine->input, INPUT_RIGHT)) {
menu->x = (menu->x + 1) % menu->columns; x = 1;
menu->direction = MENU_DIRECTION_DOWN; y = 0;
} }
// Handle held // Update cursor positions
if(menu->holdAllow && menu->direction != 0x00) { if(x > 0) {
bind = ( menu->cursorX = (current->x + current->width - 1) + x;
menu->direction == MENU_DIRECTION_DOWN ? INPUT_DOWN : } else if(x < 0) {
menu->direction == MENU_DIRECTION_UP ? INPUT_UP : menu->cursorX = current->x + x;
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 if(y > 0) {
menu->cursorY = (current->y + current->height - 1) + y;
} else if(y < 0) {
menu->cursorY = current->y + y;
}
// Get the item selected
int32_t targetIndex = -1;
for(i = 0; i < menu->itemCount; i++) {
if(i == menu->selected) continue;
item = menu->items + i;
if(
item->i == -1 ||
item->x > menu->cursorX || (item->x + item->width - 1) < menu->cursorX ||
item->y > menu->cursorY || (item->y + item->height - 1) < menu->cursorY
) continue;
targetIndex = i;
break;
}
if(targetIndex == -1) return;
menu->selected = targetIndex;
} }

View File

@ -9,6 +9,7 @@
#include <dawn/dawn.h> #include <dawn/dawn.h>
#include "../input/input.h" #include "../input/input.h"
#include "../epoch/epoch.h" #include "../epoch/epoch.h"
#include "../util/array.h"
/** /**
* Initialize a menu. * Initialize a menu.
@ -17,7 +18,7 @@
* @param columns Count of rows. * @param columns Count of rows.
* @param rows Count of columns. * @param rows Count of columns.
*/ */
void menuInit(menu_t *menu, int32_t columns, int32_t rows); void menuInit(menu_t *menu);
/** /**
* Updates the menu to handle inputs. * Updates the menu to handle inputs.