2009-04-15 17:33:51 +02:00
|
|
|
/****************************************************************************
|
2009-05-13 16:26:55 +02:00
|
|
|
* gui.c
|
2009-04-15 17:33:51 +02:00
|
|
|
*
|
2009-05-13 16:26:55 +02:00
|
|
|
* GUI engine, using GX hardware
|
2009-04-15 17:33:51 +02:00
|
|
|
*
|
2009-05-13 16:26:55 +02:00
|
|
|
* Eke-Eke (2009)
|
2009-04-15 17:33:51 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2009-05-13 16:26:55 +02:00
|
|
|
#ifndef _GUI_H
|
|
|
|
#define _GUI_H
|
2009-04-15 17:33:51 +02:00
|
|
|
|
|
|
|
#ifdef HW_RVL
|
|
|
|
#include <wiiuse/wpad.h>
|
|
|
|
#endif
|
|
|
|
|
2009-04-20 00:31:08 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* GUI Buttons state */
|
|
|
|
/*****************************************************************************/
|
2009-05-04 23:43:16 +02:00
|
|
|
#define BUTTON_VISIBLE 0x01
|
2009-05-25 09:46:19 +02:00
|
|
|
#define BUTTON_ACTIVE 0x02
|
|
|
|
#define BUTTON_OVER_SFX 0x04
|
2009-05-04 23:43:16 +02:00
|
|
|
#define BUTTON_SELECT_SFX 0x10
|
|
|
|
#define BUTTON_FADE 0x20
|
|
|
|
#define BUTTON_SLIDE_LEFT 0x40
|
|
|
|
#define BUTTON_SLIDE_RIGHT 0x80
|
|
|
|
#define BUTTON_SLIDE_TOP 0x100
|
|
|
|
#define BUTTON_SLIDE_BOTTOM 0x200
|
2009-04-20 00:31:08 +02:00
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* GUI Image state */
|
|
|
|
/*****************************************************************************/
|
2009-05-04 23:43:16 +02:00
|
|
|
#define IMAGE_VISIBLE 0x01
|
|
|
|
#define IMAGE_REPEAT 0x02
|
|
|
|
#define IMAGE_FADE 0x04
|
|
|
|
#define IMAGE_SLIDE_LEFT 0x08
|
|
|
|
#define IMAGE_SLIDE_RIGHT 0x10
|
|
|
|
#define IMAGE_SLIDE_TOP 0x20
|
|
|
|
#define IMAGE_SLIDE_BOTTOM 0x40
|
2009-04-20 00:31:08 +02:00
|
|
|
|
2009-04-15 18:55:11 +02:00
|
|
|
/*****************************************************************************/
|
2009-05-13 16:26:55 +02:00
|
|
|
/* Generic GUI structures */
|
2009-04-15 18:55:11 +02:00
|
|
|
/*****************************************************************************/
|
2009-04-15 17:33:51 +02:00
|
|
|
|
2009-05-13 16:26:55 +02:00
|
|
|
/* Item descriptor*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
gx_texture *texture; /* temporary texture data */
|
|
|
|
const u8 *data; /* pointer to png image data (items icon only) */
|
|
|
|
char text[64]; /* item string (items list only) */
|
|
|
|
char comment[64]; /* item comment */
|
|
|
|
u16 x; /* item image or text X position (upper left corner) */
|
|
|
|
u16 y; /* item image or text Y position (upper left corner) */
|
|
|
|
u16 w; /* item image or text width */
|
|
|
|
u16 h; /* item image or text height */
|
|
|
|
} gui_item;
|
|
|
|
|
|
|
|
/* Button Data descriptor */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
gx_texture *texture[2]; /* temporary texture datas */
|
|
|
|
const u8 *image[2]; /* pointer to png image datas (default) */
|
|
|
|
} butn_data;
|
|
|
|
|
|
|
|
/* Button descriptor */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
butn_data *data; /* pointer to button image/texture data */
|
|
|
|
u16 state; /* button state (ACTIVE,VISIBLE,SELECTED...) */
|
|
|
|
u8 shift[4]; /* direction offsets */
|
|
|
|
u16 x; /* button image X position (upper left corner) */
|
|
|
|
u16 y; /* button image Y position (upper left corner) */
|
|
|
|
u16 w; /* button image pixels width */
|
|
|
|
u16 h; /* button image pixels height */
|
|
|
|
} gui_butn;
|
|
|
|
|
|
|
|
/* Image descriptor */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
gx_texture *texture; /* temporary texture data */
|
|
|
|
const u8 *data; /* pointer to png image data */
|
|
|
|
u8 state; /* image state (VISIBLE) */
|
|
|
|
u16 x; /* image X position (upper left corner) */
|
|
|
|
u16 y; /* image Y position (upper left corner) */
|
|
|
|
u16 w; /* image width */
|
|
|
|
u16 h; /* image height */
|
|
|
|
u8 alpha; /* alpha transparency */
|
|
|
|
} gui_image;
|
|
|
|
|
|
|
|
/* Menu descriptor */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
char title[64]; /* menu title */
|
|
|
|
s8 selected; /* index of selected item */
|
|
|
|
s8 offset; /* items list offset */
|
|
|
|
u8 max_items; /* total number of items */
|
|
|
|
u8 max_buttons; /* total number of buttons */
|
|
|
|
u8 max_images; /* total number of background images */
|
|
|
|
gui_item *items; /* menu items */
|
|
|
|
gui_butn *buttons; /* menu buttons */
|
|
|
|
gui_image *bg_images; /* background images */
|
|
|
|
gui_item *helpers[2]; /* left & right key comments */
|
|
|
|
gui_butn *arrows[2]; /* arrows buttons */
|
|
|
|
bool screenshot; /* use gamescreen as background */
|
|
|
|
} gui_menu;
|
|
|
|
|
2009-05-19 18:14:43 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
2009-05-23 19:29:53 +02:00
|
|
|
u32 progress; /* progress counter */
|
|
|
|
bool refresh; /* messagebox current state */
|
|
|
|
gui_menu *parent; /* parent menu */
|
|
|
|
char title[64]; /* box title */
|
|
|
|
char msg[64]; /* box message */
|
|
|
|
gx_texture *window; /* pointer to box texture */
|
|
|
|
gx_texture *top; /* pointer to box title texture */
|
|
|
|
gx_texture *buttonA; /* pointer to button A texture */
|
|
|
|
gx_texture *buttonB; /* pointer to button B texture */
|
|
|
|
gx_texture *throbber; /* pointer to throbber texture */
|
2009-05-19 18:14:43 +02:00
|
|
|
} gui_message;
|
|
|
|
|
2009-05-25 12:41:16 +02:00
|
|
|
/* Menu inputs */
|
2009-05-13 16:26:55 +02:00
|
|
|
struct t_input_menu
|
|
|
|
{
|
|
|
|
u16 keys;
|
|
|
|
#ifdef HW_RVL
|
|
|
|
struct ir_t ir;
|
|
|
|
#endif
|
|
|
|
} m_input;
|
|
|
|
|
2009-05-25 12:41:16 +02:00
|
|
|
/* Optionbox callback */
|
|
|
|
typedef void (*optioncallback)(void);
|
|
|
|
|
|
|
|
|
2009-05-13 16:26:55 +02:00
|
|
|
/* PNG images */
|
|
|
|
|
|
|
|
/* Intro */
|
|
|
|
extern const u8 Bg_intro_c1_png[];
|
|
|
|
extern const u8 Bg_intro_c2_png[];
|
|
|
|
extern const u8 Bg_intro_c3_png[];
|
|
|
|
extern const u8 Bg_intro_c4_png[];
|
|
|
|
extern const u8 Bg_intro_c5_png[];
|
|
|
|
|
2009-05-02 17:00:13 +02:00
|
|
|
/* Generic backgrounds */
|
2009-04-15 18:55:11 +02:00
|
|
|
extern const u8 Bg_main_png[];
|
|
|
|
extern const u8 Bg_overlay_png[];
|
|
|
|
extern const u8 Banner_main_png[];
|
|
|
|
extern const u8 Banner_bottom_png[];
|
|
|
|
extern const u8 Banner_top_png[];
|
2009-05-02 17:00:13 +02:00
|
|
|
extern const u8 Main_logo_png[];
|
2009-04-15 17:33:51 +02:00
|
|
|
|
2009-05-02 17:00:13 +02:00
|
|
|
/* Generic frames */
|
2009-04-15 18:55:11 +02:00
|
|
|
extern const u8 Frame_s1_png[];
|
|
|
|
extern const u8 Frame_s2_png[];
|
2009-05-01 14:56:48 +02:00
|
|
|
extern const u8 Frame_s3_png[];
|
2009-05-02 17:00:13 +02:00
|
|
|
extern const u8 Frame_s4_png[];
|
2009-05-01 14:56:48 +02:00
|
|
|
extern const u8 Frame_s1_title_png[];
|
2009-05-19 18:14:43 +02:00
|
|
|
extern const u8 Frame_s4_title_png[];
|
2009-05-23 19:29:53 +02:00
|
|
|
extern const u8 Frame_throbber_png[];
|
2009-04-15 17:33:51 +02:00
|
|
|
|
2009-05-02 17:00:13 +02:00
|
|
|
/* ROM Browser */
|
2009-04-15 18:55:11 +02:00
|
|
|
extern const u8 Overlay_bar_png[];
|
|
|
|
extern const u8 Browser_dir_png[];
|
|
|
|
extern const u8 Star_full_png[];
|
|
|
|
extern const u8 Star_empty_png[];
|
|
|
|
extern const u8 Snap_empty_png[];
|
|
|
|
extern const u8 Snap_frame_png[];
|
2009-04-15 17:33:51 +02:00
|
|
|
|
2009-05-02 17:00:13 +02:00
|
|
|
/* Main menu */
|
2009-04-15 18:55:11 +02:00
|
|
|
extern const u8 Main_load_png[];
|
|
|
|
extern const u8 Main_options_png[];
|
2009-04-20 19:41:54 +02:00
|
|
|
extern const u8 Main_quit_png[];
|
2009-04-15 18:55:11 +02:00
|
|
|
extern const u8 Main_file_png[];
|
|
|
|
extern const u8 Main_reset_png[];
|
2009-04-20 19:41:54 +02:00
|
|
|
extern const u8 Main_ggenie_png[];
|
|
|
|
extern const u8 Main_showinfo_png[];
|
2009-05-01 14:56:48 +02:00
|
|
|
extern const u8 Main_takeshot_png[];
|
2009-04-21 03:05:56 +02:00
|
|
|
#ifdef HW_RVL
|
|
|
|
extern const u8 Main_play_wii_png[];
|
|
|
|
#else
|
|
|
|
extern const u8 Main_play_gcn_png[];
|
|
|
|
#endif
|
2009-04-15 17:33:51 +02:00
|
|
|
|
2009-05-02 17:00:13 +02:00
|
|
|
/* Options menu */
|
2009-04-20 19:41:54 +02:00
|
|
|
extern const u8 Option_menu_png[];
|
2009-04-15 18:55:11 +02:00
|
|
|
extern const u8 Option_ctrl_png[];
|
|
|
|
extern const u8 Option_sound_png[];
|
|
|
|
extern const u8 Option_video_png[];
|
|
|
|
extern const u8 Option_system_png[];
|
2009-04-15 17:33:51 +02:00
|
|
|
|
2009-05-02 17:00:13 +02:00
|
|
|
/* Load ROM menu */
|
2009-04-15 18:55:11 +02:00
|
|
|
extern const u8 Load_recent_png[];
|
|
|
|
extern const u8 Load_sd_png[];
|
|
|
|
extern const u8 Load_dvd_png[];
|
2009-04-21 03:05:56 +02:00
|
|
|
#ifdef HW_RVL
|
|
|
|
extern const u8 Load_usb_png[];
|
|
|
|
#endif
|
2009-04-15 17:33:51 +02:00
|
|
|
|
2009-05-02 17:00:13 +02:00
|
|
|
/* Generic Buttons */
|
2009-04-15 18:55:11 +02:00
|
|
|
extern const u8 Button_text_png[];
|
|
|
|
extern const u8 Button_text_over_png[];
|
|
|
|
extern const u8 Button_icon_png[];
|
|
|
|
extern const u8 Button_icon_over_png[];
|
2009-05-02 17:00:13 +02:00
|
|
|
extern const u8 Button_icon_sm_png[];
|
|
|
|
extern const u8 Button_icon_sm_over_png[];
|
2009-04-15 18:55:11 +02:00
|
|
|
extern const u8 Button_up_png[];
|
|
|
|
extern const u8 Button_down_png[];
|
|
|
|
extern const u8 Button_up_over_png[];
|
|
|
|
extern const u8 Button_down_over_png[];
|
2009-05-25 09:46:19 +02:00
|
|
|
extern const u8 Button_right_png[];
|
|
|
|
extern const u8 Button_left_png[];
|
|
|
|
extern const u8 Button_right_over_png[];
|
|
|
|
extern const u8 Button_left_over_png[];
|
2009-04-15 17:33:51 +02:00
|
|
|
|
2009-05-02 17:00:13 +02:00
|
|
|
/* Controller Settings */
|
|
|
|
extern const u8 Ctrl_4wayplay_png[];
|
|
|
|
extern const u8 Ctrl_gamepad_png[];
|
|
|
|
extern const u8 Ctrl_justifiers_png[];
|
|
|
|
extern const u8 Ctrl_menacer_png[];
|
|
|
|
extern const u8 Ctrl_mouse_png[];
|
|
|
|
extern const u8 Ctrl_none_png[];
|
|
|
|
extern const u8 Ctrl_teamplayer_png[];
|
|
|
|
extern const u8 Ctrl_pad3b_png[];
|
|
|
|
extern const u8 Ctrl_pad6b_png[];
|
|
|
|
extern const u8 Ctrl_config_png[];
|
|
|
|
extern const u8 Ctrl_player_png[];
|
|
|
|
extern const u8 Ctrl_player_over_png[];
|
|
|
|
extern const u8 Ctrl_player_none_png[];
|
|
|
|
extern const u8 ctrl_option_off_png[];
|
|
|
|
extern const u8 ctrl_option_on_png[];
|
|
|
|
extern const u8 ctrl_gamecube_png[];
|
2009-04-15 17:33:51 +02:00
|
|
|
#ifdef HW_RVL
|
2009-05-02 17:00:13 +02:00
|
|
|
extern const u8 ctrl_classic_png[];
|
|
|
|
extern const u8 ctrl_nunchuk_png[];
|
|
|
|
extern const u8 ctrl_wiimote_png[];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Generic images*/
|
|
|
|
#ifdef HW_RVL
|
2009-05-19 18:14:43 +02:00
|
|
|
#define Key_A_png Key_A_wii_png
|
|
|
|
#define Key_B_png Key_B_wii_png
|
2009-05-02 17:00:13 +02:00
|
|
|
extern const u8 generic_point_png[];
|
2009-04-15 18:55:11 +02:00
|
|
|
extern const u8 Key_A_wii_png[];
|
|
|
|
extern const u8 Key_B_wii_png[];
|
2009-04-15 17:33:51 +02:00
|
|
|
#else
|
2009-05-19 18:14:43 +02:00
|
|
|
#define Key_A_png Key_A_gcn_png
|
|
|
|
#define Key_B_png Key_B_gcn_png
|
2009-04-15 18:55:11 +02:00
|
|
|
extern const u8 Key_A_gcn_png[];
|
|
|
|
extern const u8 Key_B_gcn_png[];
|
2009-04-15 17:33:51 +02:00
|
|
|
#endif
|
|
|
|
|
2009-05-13 16:26:55 +02:00
|
|
|
/* Generic Sounds */
|
|
|
|
extern const u8 button_over_pcm[];
|
2009-04-15 18:55:11 +02:00
|
|
|
extern const u8 button_select_pcm[];
|
2009-05-13 16:26:55 +02:00
|
|
|
extern const u8 intro_pcm[];
|
2009-04-15 18:55:11 +02:00
|
|
|
extern const u32 button_select_pcm_size;
|
|
|
|
extern const u32 button_over_pcm_size;
|
2009-05-13 16:26:55 +02:00
|
|
|
extern const u32 intro_pcm_size;
|
2009-04-15 18:55:11 +02:00
|
|
|
|
2009-05-13 16:26:55 +02:00
|
|
|
/* Generic textures*/
|
2009-04-20 00:31:08 +02:00
|
|
|
#ifdef HW_RVL
|
|
|
|
extern gx_texture *w_pointer;
|
|
|
|
#endif
|
2009-04-15 17:33:51 +02:00
|
|
|
|
2009-05-19 18:14:43 +02:00
|
|
|
extern u8 SILENT;
|
|
|
|
|
2009-04-20 00:31:08 +02:00
|
|
|
extern void GUI_InitMenu(gui_menu *menu);
|
|
|
|
extern void GUI_DeleteMenu(gui_menu *menu);
|
|
|
|
extern void GUI_DrawMenu(gui_menu *menu);
|
2009-04-21 03:05:56 +02:00
|
|
|
extern void GUI_DrawMenuFX(gui_menu *menu, u8 speed, u8 out);
|
2009-05-04 23:43:16 +02:00
|
|
|
extern int GUI_UpdateMenu(gui_menu *menu);
|
2009-04-20 00:31:08 +02:00
|
|
|
extern int GUI_RunMenu(gui_menu *menu);
|
2009-05-01 14:56:48 +02:00
|
|
|
extern int GUI_WindowPrompt(gui_menu *parent, char *title, char *items[], u8 nb_items);
|
2009-05-25 12:41:16 +02:00
|
|
|
extern void GUI_OptionBox(gui_menu *parent, optioncallback cb, char *title, void *option, float step, float min, float max, u8 type);
|
2009-05-19 18:14:43 +02:00
|
|
|
extern void GUI_SlideMenuTitle(gui_menu *m, int title_offset);
|
2009-05-23 19:29:53 +02:00
|
|
|
extern void GUI_MsgBoxOpen(char *title, char *msg, bool throbber);
|
2009-05-26 15:14:33 +02:00
|
|
|
extern void GUI_MsgBoxUpdate(char *title, char *msg);
|
2009-05-19 18:14:43 +02:00
|
|
|
extern void GUI_MsgBoxClose(void);
|
|
|
|
extern void GUI_WaitPrompt(char *title, char *msg);
|
2009-05-26 15:14:33 +02:00
|
|
|
extern int GUI_ConfirmPrompt(char *msg);
|
2009-05-19 18:14:43 +02:00
|
|
|
extern void GUI_FadeOut();
|
|
|
|
extern void GUI_SetBgColor(GXColor color);
|
|
|
|
extern void GUI_Initialize(void);
|
2009-05-13 16:26:55 +02:00
|
|
|
|
2009-04-15 17:33:51 +02:00
|
|
|
#endif
|