mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2024-11-26 04:24:16 +01:00
split action bar text lines
This commit is contained in:
parent
90157f5930
commit
0019e5e445
1
Makefile
1
Makefile
@ -56,6 +56,7 @@ SRCS = \
|
|||||||
menu/ui_components/common.c \
|
menu/ui_components/common.c \
|
||||||
menu/ui_components/context_menu.c \
|
menu/ui_components/context_menu.c \
|
||||||
menu/ui_components/file_list.c \
|
menu/ui_components/file_list.c \
|
||||||
|
menu/ui_components/joypad_buttons.c \
|
||||||
menu/usb_comm.c \
|
menu/usb_comm.c \
|
||||||
menu/views/browser.c \
|
menu/views/browser.c \
|
||||||
menu/views/credits.c \
|
menu/views/credits.c \
|
||||||
|
@ -29,6 +29,36 @@ typedef enum {
|
|||||||
IMAGE_TYPE_END /**< List end marker */
|
IMAGE_TYPE_END /**< List end marker */
|
||||||
} file_image_type_t;
|
} file_image_type_t;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief joypad button sprite Enumeration.
|
||||||
|
*
|
||||||
|
* Enumeration for different types of joypad button sprites used in the user interface.
|
||||||
|
*/
|
||||||
|
typedef enum {
|
||||||
|
SPRITE_JOYPAD_BUTTON_A,
|
||||||
|
SPRITE_JOYPAD_BUTTON_B,
|
||||||
|
SPRITE_JOYPAD_BUTTON_C_DOWN,
|
||||||
|
SPRITE_JOYPAD_BUTTON_C_LEFT,
|
||||||
|
SPRITE_JOYPAD_BUTTON_C_RIGHT,
|
||||||
|
SPRITE_JOYPAD_BUTTON_C_UP,
|
||||||
|
SPRITE_JOYPAD_BUTTON_D_DOWN,
|
||||||
|
SPRITE_JOYPAD_BUTTON_D_LEFT,
|
||||||
|
SPRITE_JOYPAD_BUTTON_D_RIGHT,
|
||||||
|
SPRITE_JOYPAD_BUTTON_D_UP,
|
||||||
|
SPRITE_JOYPAD_BUTTON_L,
|
||||||
|
SPRITE_JOYPAD_BUTTON_R,
|
||||||
|
SPRITE_JOYPAD_BUTTON_Z,
|
||||||
|
SPRITE_JOYPAD_BUTTON_TYPE_END /**< List end marker */
|
||||||
|
} sprite_joypad_button_type_t;
|
||||||
|
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
ACTION_BAR_LINE_ONE,
|
||||||
|
ACTION_BAR_LINE_TWO,
|
||||||
|
ACTION_BAR_LINE_END
|
||||||
|
} action_bar_line_t;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Draw a box component.
|
* @brief Draw a box component.
|
||||||
*
|
*
|
||||||
@ -136,7 +166,7 @@ void ui_components_main_text_draw(rdpq_align_t align, rdpq_valign_t valign, char
|
|||||||
* @param fmt Format string for the text.
|
* @param fmt Format string for the text.
|
||||||
* @param ... Additional arguments for the format string.
|
* @param ... Additional arguments for the format string.
|
||||||
*/
|
*/
|
||||||
void ui_components_actions_bar_text_draw(rdpq_align_t align, rdpq_valign_t valign, char *fmt, ...);
|
void ui_components_actions_bar_text_draw(rdpq_align_t align, rdpq_valign_t valign, action_bar_line_t line, char *fmt, ...);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Initialize the background component.
|
* @brief Initialize the background component.
|
||||||
|
@ -166,7 +166,7 @@ void ui_components_main_text_draw (rdpq_align_t align, rdpq_valign_t valign, cha
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ui_components_actions_bar_text_draw (rdpq_align_t align, rdpq_valign_t valign, char *fmt, ...) {
|
void ui_components_actions_bar_text_draw (rdpq_align_t align, rdpq_valign_t valign, action_bar_line_t line, char *fmt, ...) {
|
||||||
char buffer[256];
|
char buffer[256];
|
||||||
size_t nbytes = sizeof(buffer);
|
size_t nbytes = sizeof(buffer);
|
||||||
|
|
||||||
|
12
src/menu/ui_components/joypad_buttons.c
Normal file
12
src/menu/ui_components/joypad_buttons.c
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "../ui_components.h"
|
||||||
|
|
||||||
|
void ui_components_joypad_buttons_init(void) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void ui_components_joypad_buttons_draw (void) {
|
||||||
|
|
||||||
|
}
|
@ -386,23 +386,31 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_ONE,
|
||||||
"%s\n"
|
"%s",
|
||||||
|
menu->browser.entries == 0 ? "" : action
|
||||||
|
);
|
||||||
|
ui_components_actions_bar_text_draw(
|
||||||
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
|
"\n"
|
||||||
"^%02XB: Back^00",
|
"^%02XB: Back^00",
|
||||||
menu->browser.entries == 0 ? "" : action,
|
|
||||||
path_is_root(menu->browser.directory) ? STL_GRAY : STL_DEFAULT
|
path_is_root(menu->browser.directory) ? STL_GRAY : STL_DEFAULT
|
||||||
);
|
);
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_RIGHT, VALIGN_TOP,
|
ALIGN_RIGHT, VALIGN_TOP, ACTION_BAR_LINE_ONE,
|
||||||
"Start: Settings\n"
|
"Start: Settings"
|
||||||
|
);
|
||||||
|
ui_components_actions_bar_text_draw(
|
||||||
|
ALIGN_RIGHT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
|
"\n"
|
||||||
"^%02XR: Options^00",
|
"^%02XR: Options^00",
|
||||||
menu->browser.entries == 0 ? STL_GRAY : STL_DEFAULT
|
menu->browser.entries == 0 ? STL_GRAY : STL_DEFAULT
|
||||||
);
|
);
|
||||||
|
|
||||||
if (menu->current_time >= 0) {
|
if (menu->current_time >= 0) {
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_CENTER, VALIGN_TOP,
|
ALIGN_CENTER, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
"\n"
|
"\n"
|
||||||
"%s",
|
"%s",
|
||||||
ctime(&menu->current_time)
|
ctime(&menu->current_time)
|
||||||
|
@ -55,7 +55,7 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
"\n"
|
"\n"
|
||||||
"B: Exit"
|
"B: Exit"
|
||||||
);
|
);
|
||||||
|
@ -88,7 +88,7 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
"\n"
|
"\n"
|
||||||
"B: Exit"
|
"B: Exit"
|
||||||
);
|
);
|
||||||
|
@ -79,7 +79,7 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
"\n"
|
"\n"
|
||||||
"B: Back"
|
"B: Back"
|
||||||
);
|
);
|
||||||
|
@ -81,14 +81,18 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_ONE,
|
||||||
"A: Load and run 64DD disk\n"
|
"A: Load and run 64DD disk"
|
||||||
|
);
|
||||||
|
ui_components_actions_bar_text_draw(
|
||||||
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
|
"\n"
|
||||||
"B: Exit"
|
"B: Exit"
|
||||||
);
|
);
|
||||||
|
|
||||||
if (menu->load.rom_path) {
|
if (menu->load.rom_path) {
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_RIGHT, VALIGN_TOP,
|
ALIGN_RIGHT, VALIGN_TOP, ACTION_BAR_LINE_ONE,
|
||||||
"R: Load with ROM"
|
"R: Load with ROM"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -66,8 +66,12 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_ONE,
|
||||||
"A: Load and run Emulated ROM\n"
|
"A: Load and run Emulated ROM"
|
||||||
|
);
|
||||||
|
ui_components_actions_bar_text_draw(
|
||||||
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
|
"\n"
|
||||||
"B: Exit"
|
"B: Exit"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -263,14 +263,22 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_ONE,
|
||||||
"A: Load and run ROM\n"
|
"A: Load and run ROM"
|
||||||
|
);
|
||||||
|
ui_components_actions_bar_text_draw(
|
||||||
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
|
"\n"
|
||||||
"B: Back"
|
"B: Back"
|
||||||
);
|
);
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_RIGHT, VALIGN_TOP,
|
ALIGN_RIGHT, VALIGN_TOP, ACTION_BAR_LINE_ONE,
|
||||||
"L|Z: Extra Info\n"
|
"L|Z: Extra Info"
|
||||||
|
);
|
||||||
|
ui_components_actions_bar_text_draw(
|
||||||
|
ALIGN_RIGHT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
|
"\n"
|
||||||
"R: Options"
|
"R: Options"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -103,11 +103,15 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_ONE,
|
||||||
"A: %s\n"
|
"A: %s",
|
||||||
"B: Exit | Left / Right: Rewind / Fast forward",
|
|
||||||
mp3player_is_playing() ? "Pause" : mp3player_is_finished() ? "Play again" : "Play"
|
mp3player_is_playing() ? "Pause" : mp3player_is_finished() ? "Play again" : "Play"
|
||||||
);
|
);
|
||||||
|
ui_components_actions_bar_text_draw(
|
||||||
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
|
"\n"
|
||||||
|
"B: Exit | Left / Right: Rewind / Fast forward"
|
||||||
|
);
|
||||||
|
|
||||||
rdpq_detach_show();
|
rdpq_detach_show();
|
||||||
}
|
}
|
||||||
|
@ -187,8 +187,12 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_ONE,
|
||||||
"A: Change\n"
|
"A: Change"
|
||||||
|
);
|
||||||
|
ui_components_actions_bar_text_draw(
|
||||||
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
|
"\n"
|
||||||
"B: Back"
|
"B: Back"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -207,7 +211,7 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
"\n"
|
"\n"
|
||||||
"B: Back"
|
"B: Back"
|
||||||
);
|
);
|
||||||
@ -215,13 +219,21 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_RIGHT, VALIGN_TOP,
|
ALIGN_RIGHT, VALIGN_TOP, ACTION_BAR_LINE_ONE,
|
||||||
"Up/Down: Adjust Field\n"
|
"Up/Down: Adjust Field"
|
||||||
|
);
|
||||||
|
ui_components_actions_bar_text_draw(
|
||||||
|
ALIGN_RIGHT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
|
"\n"
|
||||||
"Left/Right: Switch Field"
|
"Left/Right: Switch Field"
|
||||||
);
|
);
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_ONE,
|
||||||
"R: Save\n"
|
"R: Save"
|
||||||
|
);
|
||||||
|
ui_components_actions_bar_text_draw(
|
||||||
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
|
"\n"
|
||||||
"B: Back"
|
"B: Back"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -164,8 +164,13 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
|
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_ONE,
|
||||||
"A: Change\n"
|
"A: Change"
|
||||||
|
);
|
||||||
|
|
||||||
|
ui_components_actions_bar_text_draw(
|
||||||
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
|
"\n"
|
||||||
"B: Back"
|
"B: Back"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
"\n"
|
"\n"
|
||||||
"B: Exit"
|
"B: Exit"
|
||||||
);
|
);
|
||||||
|
@ -82,12 +82,17 @@ static void draw (menu_t *menu, surface_t *d) {
|
|||||||
ui_components_list_scrollbar_draw(text->current_line, text->lines, LIST_ENTRIES);
|
ui_components_list_scrollbar_draw(text->current_line, text->lines, LIST_ENTRIES);
|
||||||
|
|
||||||
ui_components_actions_bar_text_draw(
|
ui_components_actions_bar_text_draw(
|
||||||
ALIGN_LEFT, VALIGN_TOP,
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_ONE,
|
||||||
"^%02XUp / Down: Scroll^00\n"
|
"^%02XUp / Down: Scroll^00",
|
||||||
"B: Back",
|
|
||||||
text->vertical_scroll_possible ? STL_DEFAULT : STL_GRAY
|
text->vertical_scroll_possible ? STL_DEFAULT : STL_GRAY
|
||||||
);
|
);
|
||||||
|
|
||||||
|
ui_components_actions_bar_text_draw(
|
||||||
|
ALIGN_LEFT, VALIGN_TOP, ACTION_BAR_LINE_TWO,
|
||||||
|
"\n"
|
||||||
|
"B: Back"
|
||||||
|
);
|
||||||
|
|
||||||
rdpq_detach_show();
|
rdpq_detach_show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user