Cleaned up some UI code.
This commit is contained in:
@ -20,7 +20,7 @@ set(SETTING_GAME_POKER 1)
|
|||||||
set(SETTING_GAME_DAWN 2)
|
set(SETTING_GAME_DAWN 2)
|
||||||
set(SETTING_GAME_SANDBOX 3)
|
set(SETTING_GAME_SANDBOX 3)
|
||||||
|
|
||||||
set(SETTING_GAME SETTING_GAME_SANDBOX)
|
set(SETTING_GAME SETTING_GAME_POKER)
|
||||||
set(SETTING_GAME_NAME "DawnGame")
|
set(SETTING_GAME_NAME "DawnGame")
|
||||||
|
|
||||||
################################## Targets #####################################
|
################################## Targets #####################################
|
||||||
|
@ -77,13 +77,10 @@
|
|||||||
#include "ui/grid.h"
|
#include "ui/grid.h"
|
||||||
#include "ui/image.h"
|
#include "ui/image.h"
|
||||||
#include "ui/label.h"
|
#include "ui/label.h"
|
||||||
#include "ui/menuv2.h"
|
#include "ui/menu.h"
|
||||||
#include "ui/rectangle.h"
|
#include "ui/rectangle.h"
|
||||||
#include "ui/textmenu.h"
|
#include "ui/textmenu.h"
|
||||||
|
|
||||||
#include "ui/menu.h"
|
|
||||||
#include "ui/menulist.h"
|
|
||||||
|
|
||||||
// Utility Objects
|
// Utility Objects
|
||||||
#include "util/array.h"
|
#include "util/array.h"
|
||||||
#include "util/dynarray.h"
|
#include "util/dynarray.h"
|
||||||
|
@ -7,31 +7,17 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "../libs.h"
|
#include "../libs.h"
|
||||||
|
#include "grid.h"
|
||||||
|
|
||||||
/** The maximum number of items a menu can hold */
|
/** Generic callback for menu events */
|
||||||
#define MENU_ITEMS_MAX 32
|
typedef void menucallback_t(void *user, uint8_t i);
|
||||||
|
|
||||||
|
/** Structure for a menu */
|
||||||
typedef struct _menuitem_t menuitem_t;
|
typedef struct {
|
||||||
typedef struct _menu_t menu_t;
|
grid_t grid;
|
||||||
|
|
||||||
/** Callback for when menu events are fired. */
|
|
||||||
typedef void menucallback_t(menu_t *m, menuitem_t *t, uint8_t i, void *user);
|
|
||||||
|
|
||||||
typedef struct _menuitem_t {
|
|
||||||
uint8_t x;
|
|
||||||
uint8_t y;
|
|
||||||
uint8_t width;
|
|
||||||
uint8_t height;
|
|
||||||
} menuitem_t;
|
|
||||||
|
|
||||||
typedef struct _menu_t {
|
|
||||||
menuitem_t items[MENU_ITEMS_MAX];
|
|
||||||
uint8_t itemCount;
|
|
||||||
uint8_t selected;
|
uint8_t selected;
|
||||||
uint8_t cursorX;
|
uint8_t cursorX;
|
||||||
uint8_t cursorY;
|
uint8_t cursorY;
|
||||||
|
|
||||||
void *user;
|
void *user;
|
||||||
menucallback_t *onSelect;
|
menucallback_t *onSelect;
|
||||||
} menu_t;
|
} menu_t;
|
||||||
|
@ -1,35 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright (c) 2021 Dominic Masters
|
|
||||||
*
|
|
||||||
* This software is released under the MIT License.
|
|
||||||
* https://opensource.org/licenses/MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
#include "../libs.h"
|
|
||||||
#include "frame.h"
|
|
||||||
#include "label.h"
|
|
||||||
#include "menu.h"
|
|
||||||
#include "rectangle.h"
|
|
||||||
|
|
||||||
/** Color of the menulist selection rectangle */
|
|
||||||
#define MENULIST_SELECTION_COLOR ((pixel_t){ .r=255, .g=255, .b=255, .a=150 })
|
|
||||||
|
|
||||||
/** Maximum number of items that the list supports */
|
|
||||||
#define MENULIST_ITEMS_MAX 32
|
|
||||||
|
|
||||||
typedef struct _menulist_t menulist_t;
|
|
||||||
|
|
||||||
/** Callback for when a menulist item is selected */
|
|
||||||
typedef void menulistcallback_t(menulist_t *list, uint8_t i, void *user);
|
|
||||||
|
|
||||||
/** Representation of a menu list, a menu with multiple menu items. */
|
|
||||||
typedef struct _menulist_t {
|
|
||||||
char *items[MENULIST_ITEMS_MAX];
|
|
||||||
label_t labels[MENULIST_ITEMS_MAX];
|
|
||||||
frame_t frame;
|
|
||||||
menu_t menu;
|
|
||||||
rectangle_t selection;
|
|
||||||
menulistcallback_t *onSelect;
|
|
||||||
void *user;
|
|
||||||
} menulist_t;
|
|
@ -1,23 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright (c) 2021 Dominic Masters
|
|
||||||
*
|
|
||||||
* This software is released under the MIT License.
|
|
||||||
* https://opensource.org/licenses/MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
#include "../libs.h"
|
|
||||||
#include "grid.h"
|
|
||||||
|
|
||||||
/** Generic callback for menu events */
|
|
||||||
typedef void menuv2callback_t(void *user, uint8_t i);
|
|
||||||
|
|
||||||
/** Structure for a menu */
|
|
||||||
typedef struct {
|
|
||||||
grid_t grid;
|
|
||||||
uint8_t selected;
|
|
||||||
uint8_t cursorX;
|
|
||||||
uint8_t cursorY;
|
|
||||||
void *user;
|
|
||||||
menuv2callback_t *onSelect;
|
|
||||||
} menuv2_t;
|
|
@ -6,11 +6,13 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "../libs.h"
|
#include "../libs.h"
|
||||||
#include "../display/font.h"
|
#include "../display/font.h"
|
||||||
#include "menuv2.h"
|
#include "menu.h"
|
||||||
#include "grid.h"
|
#include "grid.h"
|
||||||
#include "label.h"
|
#include "label.h"
|
||||||
#include "rectangle.h"
|
#include "rectangle.h"
|
||||||
|
|
||||||
|
#define TEXTMENU_SELECTION_COLOR ((pixel_t){.r=0xFF,.g=0xFF,.b=0xFF,.a=0x64})
|
||||||
|
|
||||||
typedef void textmenucallback_t(void *user, uint8_t i, char *text);
|
typedef void textmenucallback_t(void *user, uint8_t i, char *text);
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
@ -19,7 +21,7 @@ typedef struct {
|
|||||||
} textmenulabelinfo_t;
|
} textmenulabelinfo_t;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
menuv2_t menu;
|
menu_t menu;
|
||||||
char *texts[GRID_CHILD_COUNT];
|
char *texts[GRID_CHILD_COUNT];
|
||||||
|
|
||||||
font_t *font;
|
font_t *font;
|
||||||
|
@ -130,4 +130,10 @@ void assetFontLoad(font_t *font, char *assetName) {
|
|||||||
char *data = assetStringLoad(assetName);
|
char *data = assetStringLoad(assetName);
|
||||||
fontInit(font, data);
|
fontInit(font, data);
|
||||||
free(data);
|
free(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
void assetXmlLoad(xml_t *xml, char *assetName) {
|
||||||
|
char *data = assetStringLoad(assetName);
|
||||||
|
xmlLoad(xml, data);
|
||||||
|
free(data);
|
||||||
}
|
}
|
@ -10,6 +10,7 @@
|
|||||||
#include "../display/shader.h"
|
#include "../display/shader.h"
|
||||||
#include "../display/texture.h"
|
#include "../display/texture.h"
|
||||||
#include "../display/font.h"
|
#include "../display/font.h"
|
||||||
|
#include "xml.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method to load an asset into memory as a raw string.
|
* Method to load an asset into memory as a raw string.
|
||||||
|
@ -158,6 +158,7 @@ int32_t xmlLoadChild(xml_t *xml, char *data, int32_t i) {
|
|||||||
doing = XML_DOING_NOTHING;
|
doing = XML_DOING_NOTHING;
|
||||||
|
|
||||||
//TODO: Return index or something?
|
//TODO: Return index or something?
|
||||||
|
free(buffer);
|
||||||
return i;
|
return i;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
@ -166,6 +167,8 @@ int32_t xmlLoadChild(xml_t *xml, char *data, int32_t i) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
free(buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
void xmlLoad(xml_t *xml, char *data) {
|
void xmlLoad(xml_t *xml, char *data) {
|
||||||
@ -180,6 +183,9 @@ void xmlDispose(xml_t *xml) {
|
|||||||
xmlDispose(xml->children + i);
|
xmlDispose(xml->children + i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Free children array.
|
||||||
|
free(xml->children);
|
||||||
|
|
||||||
// Dispose attributes
|
// Dispose attributes
|
||||||
for(i = 0; i < xml->attributeCount; i++) {
|
for(i = 0; i < xml->attributeCount; i++) {
|
||||||
free(xml->attributeNames + i);
|
free(xml->attributeNames + i);
|
||||||
|
@ -15,17 +15,6 @@ bool sandboxSceneInit(sandboxscene_t *game) {
|
|||||||
assetShaderLoad(&game->shader,
|
assetShaderLoad(&game->shader,
|
||||||
"shaders/textured.vert", "shaders/textured.frag"
|
"shaders/textured.vert", "shaders/textured.frag"
|
||||||
);
|
);
|
||||||
|
|
||||||
xml_t xml;
|
|
||||||
xmlLoad(&xml, "<a><b>Hello World</b><b>Hello Bruh</b></a>", 0);
|
|
||||||
|
|
||||||
for(uint8_t i = 0; i < xml.childrenCount; i++) {
|
|
||||||
printf("Value: %s\n", xml.children[i].value);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
framedTextMenuInit(&menu, &game->font, &game->texture);
|
framedTextMenuInit(&menu, &game->font, &game->texture);
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#include "../../file/xml.h"
|
#include "../../file/xml.h"
|
||||||
|
|
||||||
#include "../../ui/grid.h"
|
#include "../../ui/grid.h"
|
||||||
#include "../../ui/menuv2.h"
|
#include "../../ui/menu.h"
|
||||||
#include "../../ui/textmenu.h"
|
#include "../../ui/textmenu.h"
|
||||||
#include "../../ui/framedtextmenu.h"
|
#include "../../ui/framedtextmenu.h"
|
||||||
|
|
||||||
|
@ -56,7 +56,7 @@ void framedTextMenuUpdate(framedtextmenu_t *menu, engine_t *engine) {
|
|||||||
iw, ih,
|
iw, ih,
|
||||||
0, 0
|
0, 0
|
||||||
);
|
);
|
||||||
menu2Update(&menu->menu.menu, engine);
|
menuUpdate(&menu->menu.menu, engine);
|
||||||
}
|
}
|
||||||
|
|
||||||
void framedTextMenuRender(
|
void framedTextMenuRender(
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include "frame.h"
|
#include "frame.h"
|
||||||
#include "textmenu.h"
|
#include "textmenu.h"
|
||||||
#include "grid.h"
|
#include "grid.h"
|
||||||
|
#include "menu.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize a framed text ui element.
|
* Initialize a framed text ui element.
|
||||||
|
@ -8,27 +8,32 @@
|
|||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
|
|
||||||
void menuInit(menu_t *menu) {
|
void menuInit(menu_t *menu) {
|
||||||
menu->itemCount = 0;
|
gridInit(&menu->grid);
|
||||||
menu->selected = 0;
|
menu->grid.user = menu;
|
||||||
|
|
||||||
menu->cursorX = 0;
|
menu->cursorX = 0;
|
||||||
menu->cursorY = 0;
|
menu->cursorY = 0;
|
||||||
|
menu->selected = 0;
|
||||||
menu->user = NULL;
|
menu->user = NULL;
|
||||||
menu->onSelect = NULL;
|
menu->onSelect = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void menuUpdate(menu_t *menu, engine_t *engine) {
|
void menuUpdate(menu_t *menu, engine_t *engine) {
|
||||||
menuitem_t *current;
|
uint8_t x, y, i, j, cx, cy;
|
||||||
menuitem_t *item;
|
gridchild_t *current;
|
||||||
uint8_t x, y, i, j;
|
gridchildbreakpoint_t *currentbp;
|
||||||
|
gridchild_t *item;
|
||||||
|
gridchildbreakpoint_t *itembp;
|
||||||
|
|
||||||
current = menu->items + menu->selected;
|
|
||||||
|
|
||||||
|
current = menu->grid.children + menu->selected;
|
||||||
|
currentbp = gridChildGetBreakpoint(current, menu->grid.breakpointCurrent);
|
||||||
|
|
||||||
if(inputIsPressed(&engine->input, INPUT_ACCEPT)) {
|
if(inputIsPressed(&engine->input, INPUT_ACCEPT)) {
|
||||||
if(menu->onSelect != NULL) {
|
if(menu->onSelect != NULL) menu->onSelect(menu->user, menu->selected);
|
||||||
menu->onSelect(menu, current, menu->selected, menu->user);
|
|
||||||
}
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Handle press binds.
|
// Handle press binds.
|
||||||
if(inputIsPressed(&engine->input, INPUT_DOWN)) {
|
if(inputIsPressed(&engine->input, INPUT_DOWN)) {
|
||||||
@ -48,29 +53,35 @@ void menuUpdate(menu_t *menu, engine_t *engine) {
|
|||||||
y = 0;
|
y = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Update cursor positions
|
// Update cursor positions
|
||||||
if(x != 0 || y != 0) {
|
if(x != 0 || y != 0) {
|
||||||
if(x > 0) {
|
if(x > 0) {
|
||||||
menu->cursorX = (current->x + current->width - 1) + x;
|
cx = (currentbp->x + currentbp->columns - 1) + x;
|
||||||
} else if(x < 0) {
|
} else if(x < 0) {
|
||||||
menu->cursorX = current->x + x;
|
cx = currentbp->x + x;
|
||||||
|
} else {
|
||||||
|
cx = menu->cursorX;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(y > 0) {
|
if(y > 0) {
|
||||||
menu->cursorY = (current->y + current->height - 1) + y;
|
cy = (currentbp->y + currentbp->rows - 1) + y;
|
||||||
} else if(y < 0) {
|
} else if(y < 0) {
|
||||||
menu->cursorY = current->y + y;
|
cy = currentbp->y + y;
|
||||||
|
} else {
|
||||||
|
cy = menu->cursorY;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the item selected
|
// Get the item selected
|
||||||
j = MENU_ITEMS_MAX;
|
j = GRID_CHILD_COUNT;
|
||||||
for(i = 0; i < menu->itemCount; i++) {
|
for(i = 0; i < menu->grid.childCount; i++) {
|
||||||
if(i == menu->selected) continue;
|
if(i == menu->selected) continue;
|
||||||
item = menu->items + i;
|
item = menu->grid.children + i;
|
||||||
|
itembp = gridChildGetBreakpoint(item, menu->grid.breakpointCurrent);
|
||||||
|
|
||||||
if(
|
if(
|
||||||
item->x > menu->cursorX || (item->x+item->width-1) < menu->cursorX ||
|
itembp->x > cx || (itembp->x + itembp->columns - 1) < cx ||
|
||||||
item->y > menu->cursorY || (item->y+item->height-1) < menu->cursorY
|
itembp->y > cy || (itembp->y + itembp->rows - 1) < cy
|
||||||
) continue;
|
) continue;
|
||||||
|
|
||||||
j = i;
|
j = i;
|
||||||
@ -78,19 +89,9 @@ void menuUpdate(menu_t *menu, engine_t *engine) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Was a target found?
|
// Was a target found?
|
||||||
if(j == MENU_ITEMS_MAX) return;
|
if(j == GRID_CHILD_COUNT) return;
|
||||||
|
menu->cursorX = cx;
|
||||||
|
menu->cursorY = cy;
|
||||||
menu->selected = j;
|
menu->selected = j;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
menuitem_t * menuAdd(menu_t *menu) {
|
|
||||||
menuitem_t *item = menu->items + menu->itemCount;
|
|
||||||
|
|
||||||
item->x = 0;
|
|
||||||
item->y = 0;
|
|
||||||
item->width = 1;
|
|
||||||
item->height = 1;
|
|
||||||
|
|
||||||
menu->itemCount++;
|
|
||||||
return item;
|
|
||||||
}
|
}
|
@ -7,31 +7,20 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <dawn/dawn.h>
|
#include <dawn/dawn.h>
|
||||||
|
#include "grid.h"
|
||||||
#include "../input/input.h"
|
#include "../input/input.h"
|
||||||
#include "../epoch/epoch.h"
|
|
||||||
#include "../util/array.h"
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize a menu.
|
* Initialize a Menu UI component.
|
||||||
*
|
*
|
||||||
* @param menu Menu to initialize.
|
* @param menu Menu to initialize.
|
||||||
* @param columns Count of rows.
|
|
||||||
* @param rows Count of columns.
|
|
||||||
*/
|
*/
|
||||||
void menuInit(menu_t *menu);
|
void menuInit(menu_t *menu);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Updates the menu to handle inputs.
|
* Update a Menu UI Component
|
||||||
*
|
*
|
||||||
* @param menu Menu to update.
|
* @param menu Menu to update
|
||||||
* @param engine Engine to update from.
|
* @param engine Engine to use during the update.
|
||||||
*/
|
*/
|
||||||
void menuUpdate(menu_t *menu, engine_t *engine);
|
void menuUpdate(menu_t *menu, engine_t *engine);
|
||||||
|
|
||||||
/**
|
|
||||||
* Add an item to the menu
|
|
||||||
*
|
|
||||||
* @param menu Menu to add to.
|
|
||||||
* @return Item to add to.
|
|
||||||
*/
|
|
||||||
menuitem_t * menuAdd(menu_t *menu);
|
|
@ -1,101 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright (c) 2021 Dominic Masters
|
|
||||||
*
|
|
||||||
* This software is released under the MIT License.
|
|
||||||
* https://opensource.org/licenses/MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "menulist.h"
|
|
||||||
|
|
||||||
void _menuListMenuOnSelect(menu_t *menu, menuitem_t *item, uint8_t i, void *u) {
|
|
||||||
menulist_t *ml = (menulist_t *)u;
|
|
||||||
if(ml->onSelect == NULL) return;
|
|
||||||
ml->onSelect(ml, i, ml->user);
|
|
||||||
}
|
|
||||||
|
|
||||||
void menuListInit(menulist_t *ml, texture_t *texture) {
|
|
||||||
ml->onSelect = NULL;
|
|
||||||
|
|
||||||
// Initialize menu
|
|
||||||
menuInit(&ml->menu);
|
|
||||||
ml->menu.onSelect = &_menuListMenuOnSelect;
|
|
||||||
ml->menu.user = (void *)ml;
|
|
||||||
|
|
||||||
// Init the selection rectangle
|
|
||||||
rectangleInit(&ml->selection);
|
|
||||||
rectangleSetColor(&ml->selection, MENULIST_SELECTION_COLOR);
|
|
||||||
|
|
||||||
// Init the frame
|
|
||||||
frameInit(&ml->frame);
|
|
||||||
ml->frame.texture = texture;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t menuListAdd(menulist_t *ml, font_t *font, char *text) {
|
|
||||||
uint8_t i;
|
|
||||||
label_t *label;
|
|
||||||
menuitem_t *item;
|
|
||||||
|
|
||||||
// Get the variables.
|
|
||||||
i = ml->menu.itemCount;
|
|
||||||
label = ml->labels + i;
|
|
||||||
ml->items[i] = text;
|
|
||||||
|
|
||||||
// Initialize the label.
|
|
||||||
labelInit(label);
|
|
||||||
labelSetText(label, font, text);
|
|
||||||
|
|
||||||
// Reize the frame
|
|
||||||
frameSetInnerSize(
|
|
||||||
&ml->frame,
|
|
||||||
100,
|
|
||||||
FONT_LINE_HEIGHT * fontGetScale(label->fontSize) * (i+1)
|
|
||||||
);
|
|
||||||
|
|
||||||
// Add Menu Item
|
|
||||||
item = menuAdd(&ml->menu);
|
|
||||||
item->width = 1;
|
|
||||||
item->height = 1;
|
|
||||||
item->x = 0;
|
|
||||||
item->y = i;
|
|
||||||
|
|
||||||
return i;
|
|
||||||
}
|
|
||||||
|
|
||||||
void menuListUpdate(menulist_t *ml, engine_t *engine) {
|
|
||||||
menuUpdate(&ml->menu, engine);
|
|
||||||
}
|
|
||||||
|
|
||||||
void menuListRender(menulist_t *ml, shader_t *shader, float x, float y) {
|
|
||||||
uint8_t i;
|
|
||||||
float fontScale;
|
|
||||||
|
|
||||||
fontScale = fontGetScale(ml->labels->fontSize);
|
|
||||||
|
|
||||||
// Render the frame
|
|
||||||
frameRender(&ml->frame, shader, x, y);
|
|
||||||
|
|
||||||
// Render selection box.
|
|
||||||
ml->selection.width = 100;
|
|
||||||
ml->selection.height = FONT_LINE_HEIGHT * fontScale;
|
|
||||||
rectangleRender(&ml->selection, shader,
|
|
||||||
x + FRAME_BORDER_SIZE,
|
|
||||||
y + FRAME_BORDER_SIZE +ml->menu.selected * FONT_LINE_HEIGHT * fontScale
|
|
||||||
);
|
|
||||||
|
|
||||||
// Render each label.
|
|
||||||
for(i = 0; i < ml->menu.itemCount; i++) {
|
|
||||||
labelRender(ml->labels + i, shader,
|
|
||||||
FRAME_BORDER_SIZE,
|
|
||||||
FRAME_BORDER_SIZE + i * FONT_LINE_HEIGHT * fontScale
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void menuListDispose(menulist_t *ml) {
|
|
||||||
uint8_t i;
|
|
||||||
for(i = 0; i < ml->menu.itemCount; i++) {
|
|
||||||
labelDispose(ml->labels + i);
|
|
||||||
}
|
|
||||||
|
|
||||||
frameDispose(&ml->frame);
|
|
||||||
}
|
|
@ -1,59 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright (c) 2021 Dominic Masters
|
|
||||||
*
|
|
||||||
* This software is released under the MIT License.
|
|
||||||
* https://opensource.org/licenses/MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
#include <dawn/dawn.h>
|
|
||||||
#include "label.h"
|
|
||||||
#include "menu.h"
|
|
||||||
#include "frame.h"
|
|
||||||
#include "rectangle.h"
|
|
||||||
|
|
||||||
/** Callback to listen for when the menu is selected. */
|
|
||||||
void _menuListMenuOnSelect(menu_t *menu, menuitem_t *item, uint8_t i, void *u);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Initialize a menu list.
|
|
||||||
*
|
|
||||||
* @param ml Menu List to initialize.
|
|
||||||
* @param texture Texture to use for the frame.
|
|
||||||
*/
|
|
||||||
void menuListInit(menulist_t *ml, texture_t *texture);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add an item to the menu list.
|
|
||||||
*
|
|
||||||
* @param ml Menu list to add to.
|
|
||||||
* @param font Font to use for the label.
|
|
||||||
* @param text Text to add.
|
|
||||||
* @return Index that refers to the label/menu item.
|
|
||||||
*/
|
|
||||||
uint8_t menuListAdd(menulist_t *ml, font_t *font, char *text);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tick the menu list and listen for input changes.
|
|
||||||
*
|
|
||||||
* @param ml Menu list to update.
|
|
||||||
* @param engine Engine to update with.
|
|
||||||
*/
|
|
||||||
void menuListUpdate(menulist_t *ml, engine_t *engine);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Render a menu list.
|
|
||||||
*
|
|
||||||
* @param ml Menu list to render.
|
|
||||||
* @param shader Shader to use.
|
|
||||||
* @param x X position.
|
|
||||||
* @param y Y position.
|
|
||||||
*/
|
|
||||||
void menuListRender(menulist_t *ml, shader_t *shader, float x, float y);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Cleanup a previously created menu list.
|
|
||||||
*
|
|
||||||
* @param ml Menu list to clean up.
|
|
||||||
*/
|
|
||||||
void menuListDispose(menulist_t *ml);
|
|
@ -1,97 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright (c) 2021 Dominic Masters
|
|
||||||
*
|
|
||||||
* This software is released under the MIT License.
|
|
||||||
* https://opensource.org/licenses/MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "menuv2.h"
|
|
||||||
|
|
||||||
void menu2Init(menuv2_t *menu) {
|
|
||||||
gridInit(&menu->grid);
|
|
||||||
menu->grid.user = menu;
|
|
||||||
|
|
||||||
menu->cursorX = 0;
|
|
||||||
menu->cursorY = 0;
|
|
||||||
menu->selected = 0;
|
|
||||||
menu->user = NULL;
|
|
||||||
menu->onSelect = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
void menu2Update(menuv2_t *menu, engine_t *engine) {
|
|
||||||
uint8_t x, y, i, j, cx, cy;
|
|
||||||
gridchild_t *current;
|
|
||||||
gridchildbreakpoint_t *currentbp;
|
|
||||||
gridchild_t *item;
|
|
||||||
gridchildbreakpoint_t *itembp;
|
|
||||||
|
|
||||||
|
|
||||||
current = menu->grid.children + menu->selected;
|
|
||||||
currentbp = gridChildGetBreakpoint(current, menu->grid.breakpointCurrent);
|
|
||||||
|
|
||||||
if(inputIsPressed(&engine->input, INPUT_ACCEPT)) {
|
|
||||||
if(menu->onSelect != NULL) menu->onSelect(menu->user, menu->selected);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Handle press binds.
|
|
||||||
if(inputIsPressed(&engine->input, INPUT_DOWN)) {
|
|
||||||
x = 0;
|
|
||||||
y = 1;
|
|
||||||
} else if(inputIsPressed(&engine->input, INPUT_UP)) {
|
|
||||||
x = 0;
|
|
||||||
y = -1;
|
|
||||||
} else if(inputIsPressed(&engine->input, INPUT_LEFT)) {
|
|
||||||
x = -1;
|
|
||||||
y = 0;
|
|
||||||
} else if(inputIsPressed(&engine->input, INPUT_RIGHT)) {
|
|
||||||
x = 1;
|
|
||||||
y = 0;
|
|
||||||
} else {
|
|
||||||
x = 0;
|
|
||||||
y = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Update cursor positions
|
|
||||||
if(x != 0 || y != 0) {
|
|
||||||
if(x > 0) {
|
|
||||||
cx = (currentbp->x + currentbp->columns - 1) + x;
|
|
||||||
} else if(x < 0) {
|
|
||||||
cx = currentbp->x + x;
|
|
||||||
} else {
|
|
||||||
cx = menu->cursorX;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(y > 0) {
|
|
||||||
cy = (currentbp->y + currentbp->rows - 1) + y;
|
|
||||||
} else if(y < 0) {
|
|
||||||
cy = currentbp->y + y;
|
|
||||||
} else {
|
|
||||||
cy = menu->cursorY;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get the item selected
|
|
||||||
j = GRID_CHILD_COUNT;
|
|
||||||
for(i = 0; i < menu->grid.childCount; i++) {
|
|
||||||
if(i == menu->selected) continue;
|
|
||||||
item = menu->grid.children + i;
|
|
||||||
itembp = gridChildGetBreakpoint(item, menu->grid.breakpointCurrent);
|
|
||||||
|
|
||||||
if(
|
|
||||||
itembp->x > cx || (itembp->x + itembp->columns - 1) < cx ||
|
|
||||||
itembp->y > cy || (itembp->y + itembp->rows - 1) < cy
|
|
||||||
) continue;
|
|
||||||
|
|
||||||
j = i;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Was a target found?
|
|
||||||
if(j == GRID_CHILD_COUNT) return;
|
|
||||||
menu->cursorX = cx;
|
|
||||||
menu->cursorY = cy;
|
|
||||||
menu->selected = j;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright (c) 2021 Dominic Masters
|
|
||||||
*
|
|
||||||
* This software is released under the MIT License.
|
|
||||||
* https://opensource.org/licenses/MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
#include <dawn/dawn.h>
|
|
||||||
#include "grid.h"
|
|
||||||
#include "../input/input.h"
|
|
||||||
|
|
||||||
void menu2Init(menuv2_t *menu);
|
|
||||||
|
|
||||||
void menu2Update(menuv2_t *menu, engine_t *engine);
|
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
#include "textmenu.h"
|
#include "textmenu.h"
|
||||||
|
|
||||||
void _textMenuOnSelect(menuv2_t *menu, uint8_t i) {
|
void _textMenuOnSelect(menu_t *menu, uint8_t i) {
|
||||||
textmenu_t *textMenu = (textmenu_t *)menu->user;
|
textmenu_t *textMenu = (textmenu_t *)menu->user;
|
||||||
|
|
||||||
if(textMenu->onSelect != NULL) {
|
if(textMenu->onSelect != NULL) {
|
||||||
@ -21,7 +21,7 @@ void _textMenuOnResize(
|
|||||||
float x, float y,
|
float x, float y,
|
||||||
float width, float height
|
float width, float height
|
||||||
) {
|
) {
|
||||||
textmenu_t *textMenu = (textmenu_t *)((menuv2_t *)user);
|
textmenu_t *textMenu = (textmenu_t *)((menu_t *)user);
|
||||||
label_t *label = textMenu->labels + i;
|
label_t *label = textMenu->labels + i;
|
||||||
textmenulabelinfo_t *info = textMenu->labelInfo + i;
|
textmenulabelinfo_t *info = textMenu->labelInfo + i;
|
||||||
info->x = x;
|
info->x = x;
|
||||||
@ -33,9 +33,9 @@ void _textMenuOnResize(
|
|||||||
}
|
}
|
||||||
|
|
||||||
void textMenuInit(textmenu_t *menu, font_t *font) {
|
void textMenuInit(textmenu_t *menu, font_t *font) {
|
||||||
menu2Init(&menu->menu);
|
menuInit(&menu->menu);
|
||||||
rectangleInit(&menu->rectangle);
|
rectangleInit(&menu->rectangle);
|
||||||
rectangleSetColor(&menu->rectangle, MENULIST_SELECTION_COLOR);
|
rectangleSetColor(&menu->rectangle, TEXTMENU_SELECTION_COLOR);
|
||||||
|
|
||||||
menu->menu.user = menu;
|
menu->menu.user = menu;
|
||||||
menu->menu.onSelect = &_textMenuOnSelect;
|
menu->menu.onSelect = &_textMenuOnSelect;
|
||||||
|
@ -7,17 +7,17 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <dawn/dawn.h>
|
#include <dawn/dawn.h>
|
||||||
#include "menuv2.h"
|
#include "menu.h"
|
||||||
#include "grid.h"
|
#include "grid.h"
|
||||||
#include "label.h"
|
#include "label.h"
|
||||||
#include "rectangle.h"
|
#include "rectangle.h"
|
||||||
|
|
||||||
/** Callback to be notified from the menu when the menu items are selected. */
|
/** Callback to be notified from the menu when the menu items are selected. */
|
||||||
void _textMenuOnSelect(menuv2_t *menu, uint8_t i);
|
void _textMenuOnSelect(menu_t *menu, uint8_t i);
|
||||||
|
|
||||||
/** Callback to lisen for resize events from the grid subsystem */
|
/** Callback to lisen for resize events from the grid subsystem */
|
||||||
void _textMenuOnResize(
|
void _textMenuOnResize(
|
||||||
void *user, uint8_t i,
|
void *user, uint8_t i, gridchildbreakpoint_t *breakpoint,
|
||||||
float screenWidth, float screenHeight,
|
float screenWidth, float screenHeight,
|
||||||
float x, float y,
|
float x, float y,
|
||||||
float width, float height
|
float width, float height
|
||||||
|
Reference in New Issue
Block a user