2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2008-09-12 07:28:40 +02:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
2008-08-14 00:44:59 +02:00
|
|
|
* softdev July 2006
|
|
|
|
* crunchy2 June 2007
|
2008-09-23 06:13:33 +02:00
|
|
|
* Michniewski 2008
|
2008-08-14 00:44:59 +02:00
|
|
|
* Tantric August 2008
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
2008-08-14 00:44:59 +02:00
|
|
|
* menudraw.h
|
|
|
|
*
|
|
|
|
* Menu drawing routines
|
|
|
|
*
|
|
|
|
* Uses libfreetype 2.2.1 compiled for GC with TTF support only.
|
|
|
|
* TTF only reduces the library by some 900k bytes!
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* **WARNING***
|
|
|
|
*
|
|
|
|
* ONLY USE GUARANTEED PATENT FREE FONTS.
|
2008-09-12 07:28:40 +02:00
|
|
|
***************************************************************************/
|
2008-08-14 00:44:59 +02:00
|
|
|
#ifndef _NGCMENUDRAW_
|
|
|
|
#define _NGCMENUDRAW_
|
|
|
|
|
|
|
|
#include "filesel.h"
|
|
|
|
|
|
|
|
#define PAGESIZE 17 // max item listing on a screen
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
int FT_Init ();
|
|
|
|
void setfontsize (int pixelsize);
|
2008-08-07 05:25:02 +02:00
|
|
|
void setfontcolour (u8 r, u8 g, u8 b);
|
2008-08-06 03:09:59 +02:00
|
|
|
void DrawText (int x, int y, char *text);
|
2008-08-07 05:25:02 +02:00
|
|
|
void unpackbackdrop ();
|
|
|
|
void Credits ();
|
|
|
|
void RomInfo ();
|
2008-08-06 03:09:59 +02:00
|
|
|
void WaitButtonA ();
|
2008-08-07 05:25:02 +02:00
|
|
|
int RunMenu (char items[][50], int maxitems, char *title, int fontsize = 20, int x = -1);
|
|
|
|
void DrawMenu (char items[][50], char *title, int maxitems, int selected, int fontsize = 20, int x = -1);
|
2008-08-14 00:44:59 +02:00
|
|
|
void ShowCheats (char items[][50], char itemvalues[][50], int maxitems, int offset, int selection);
|
|
|
|
void ShowFiles (FILEENTRIES filelist[], int maxfiles, int offset, int selection);
|
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
void WaitPrompt (char *msg);
|
|
|
|
int WaitPromptChoice (char *msg, char* bmsg, char* amsg);
|
|
|
|
void ShowAction (char *msg);
|
|
|
|
void ShowProgress (char *msg, int done, int total);
|
|
|
|
void DrawPolygon (int vertices, int *varray, u8 r, u8 g, u8 b);
|
|
|
|
void DrawLineFast( int startx, int endx, int y, u8 r, u8 g, u8 b );
|
|
|
|
|
2008-10-28 06:13:24 +01:00
|
|
|
extern int menu;
|
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
#endif
|