2005-03-03 20:02:39 +00:00
|
|
|
/*********************************************************************/
|
|
|
|
/* menu.c - user menu for rockboy */
|
|
|
|
/* */
|
|
|
|
/* Note: this file only exposes one function: do_user_menu(). */
|
|
|
|
/*********************************************************************/
|
|
|
|
|
|
|
|
#include "button.h"
|
|
|
|
#include "rockmacros.h"
|
2005-03-04 09:30:27 +00:00
|
|
|
#include "mem.h"
|
2007-10-16 18:16:22 +00:00
|
|
|
#include "save.h"
|
2007-07-30 05:19:05 +00:00
|
|
|
#include "rtc-gb.h"
|
2007-10-16 18:32:55 +00:00
|
|
|
#include "pcm.h"
|
2005-03-03 20:02:39 +00:00
|
|
|
|
|
|
|
/* load/save state function declarations */
|
2005-03-04 09:30:27 +00:00
|
|
|
static void do_opt_menu(void);
|
2006-06-19 01:47:45 +00:00
|
|
|
static void do_slot_menu(bool is_load);
|
2005-03-04 09:30:27 +00:00
|
|
|
static void munge_name(char *buf, size_t bufsiz);
|
|
|
|
|
|
|
|
/* directory ROM save slots belong in */
|
2007-09-10 09:46:36 +00:00
|
|
|
#define STATE_DIR ROCKBOX_DIR "/rockboy"
|
2005-03-03 20:02:39 +00:00
|
|
|
|
2007-10-16 18:16:22 +00:00
|
|
|
static int getbutton(char *text)
|
2006-01-20 13:05:52 +00:00
|
|
|
{
|
2007-06-24 16:00:55 +00:00
|
|
|
int fw, fh;
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
rb->font_getstringsize(text, &fw, &fh,0);
|
|
|
|
rb->lcd_putsxy(LCD_WIDTH/2-fw/2, LCD_HEIGHT/2-fh/2, text);
|
2006-06-19 01:47:45 +00:00
|
|
|
rb->lcd_update();
|
|
|
|
rb->sleep(30);
|
|
|
|
|
2007-06-24 16:00:55 +00:00
|
|
|
while (rb->button_get(false) != BUTTON_NONE)
|
2006-06-19 01:47:45 +00:00
|
|
|
rb->yield();
|
|
|
|
|
|
|
|
int button;
|
|
|
|
while(true)
|
|
|
|
{
|
|
|
|
button = rb->button_get(true);
|
|
|
|
button=button&0x00000FFF;
|
|
|
|
|
2007-06-24 16:00:55 +00:00
|
|
|
return button;
|
2006-06-19 01:47:45 +00:00
|
|
|
}
|
2006-01-20 13:05:52 +00:00
|
|
|
}
|
|
|
|
|
2007-10-16 18:16:22 +00:00
|
|
|
static void setupkeys(void)
|
2006-01-20 13:05:52 +00:00
|
|
|
{
|
2007-06-24 16:00:55 +00:00
|
|
|
options.UP=getbutton ("Press Up");
|
|
|
|
options.DOWN=getbutton ("Press Down");
|
|
|
|
options.LEFT=getbutton ("Press Left");
|
|
|
|
options.RIGHT=getbutton ("Press Right");
|
2006-01-20 13:05:52 +00:00
|
|
|
|
2007-06-24 16:00:55 +00:00
|
|
|
options.A=getbutton ("Press A");
|
|
|
|
options.B=getbutton ("Press B");
|
2006-01-20 13:05:52 +00:00
|
|
|
|
2007-06-24 16:00:55 +00:00
|
|
|
options.START=getbutton ("Press Start");
|
2006-06-19 01:47:45 +00:00
|
|
|
options.SELECT=getbutton("Press Select");
|
2006-01-20 13:05:52 +00:00
|
|
|
|
2007-06-24 16:00:55 +00:00
|
|
|
options.MENU=getbutton ("Press Menu");
|
2006-01-20 13:05:52 +00:00
|
|
|
}
|
|
|
|
|
2005-03-03 20:02:39 +00:00
|
|
|
/*
|
|
|
|
* do_user_menu - create the user menu on the screen.
|
|
|
|
*
|
|
|
|
* Returns USER_MENU_QUIT if the user selected "quit", otherwise
|
|
|
|
* returns zero.
|
|
|
|
*/
|
|
|
|
int do_user_menu(void) {
|
2006-06-19 01:47:45 +00:00
|
|
|
bool done=false;
|
2009-06-16 04:25:21 +00:00
|
|
|
int selected=0, ret=0;
|
2006-06-19 01:47:45 +00:00
|
|
|
int result;
|
2007-07-30 05:19:05 +00:00
|
|
|
int time = 0;
|
|
|
|
|
|
|
|
#if CONFIG_RTC
|
|
|
|
time = rb->mktime(rb->get_time());
|
|
|
|
#endif
|
2006-06-19 01:47:45 +00:00
|
|
|
|
2009-08-09 03:20:55 +00:00
|
|
|
#if defined(HAVE_LCD_MODES) && (HAVE_LCD_MODES & LCD_MODE_PAL256)
|
|
|
|
rb->lcd_set_mode(LCD_MODE_RGB565);
|
|
|
|
#endif
|
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
/* Clean out the button Queue */
|
|
|
|
while (rb->button_get(false) != BUTTON_NONE)
|
|
|
|
rb->yield();
|
|
|
|
|
2009-06-16 04:25:21 +00:00
|
|
|
MENUITEM_STRINGLIST(menu, "Rockboy Menu", NULL,
|
|
|
|
"Load Game", "Save Game",
|
|
|
|
"Options", "Quit");
|
2006-06-19 01:47:45 +00:00
|
|
|
|
|
|
|
pcm_init();
|
|
|
|
|
|
|
|
while(!done)
|
|
|
|
{
|
2009-06-16 04:25:21 +00:00
|
|
|
result = rb->do_menu(&menu, &selected, NULL, false);
|
2006-06-19 01:47:45 +00:00
|
|
|
|
|
|
|
switch (result)
|
|
|
|
{
|
|
|
|
case 0: /* Load Game */
|
|
|
|
do_slot_menu(true);
|
|
|
|
break;
|
|
|
|
case 1: /* Save Game */
|
|
|
|
do_slot_menu(false);
|
|
|
|
break;
|
|
|
|
case 2: /* Options */
|
|
|
|
do_opt_menu();
|
|
|
|
break;
|
|
|
|
case 3: /* Quit */
|
|
|
|
ret = USER_MENU_QUIT;
|
|
|
|
done=true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
done=true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2005-03-03 20:02:39 +00:00
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
rb->lcd_setfont(0); /* Reset the font */
|
|
|
|
rb->lcd_clear_display(); /* Clear display for screen size changes */
|
2007-07-30 05:19:05 +00:00
|
|
|
|
|
|
|
/* Keep the RTC in sync */
|
|
|
|
#if CONFIG_RTC
|
|
|
|
time = (rb->mktime(rb->get_time()) - time) * 60;
|
|
|
|
#endif
|
|
|
|
while (time-- > 0) rtc_tick();
|
2006-06-19 01:47:45 +00:00
|
|
|
|
2009-08-09 03:20:55 +00:00
|
|
|
#if defined(HAVE_LCD_MODES) && (HAVE_LCD_MODES & LCD_MODE_PAL256)
|
|
|
|
rb->lcd_set_mode(LCD_MODE_PAL256);
|
|
|
|
#endif
|
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
return ret;
|
2005-03-03 20:02:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2005-03-04 09:30:27 +00:00
|
|
|
* munge_name - munge a string into a filesystem-safe name
|
|
|
|
*/
|
|
|
|
static void munge_name(char *buf, const size_t bufsiz) {
|
2006-06-19 01:47:45 +00:00
|
|
|
unsigned int i, max;
|
2005-03-04 09:30:27 +00:00
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
/* check strlen */
|
|
|
|
max = strlen(buf);
|
|
|
|
max = (max < bufsiz) ? max : bufsiz;
|
2005-03-04 09:30:27 +00:00
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
/* iterate over characters and munge them (if necessary) */
|
|
|
|
for (i = 0; i < max; i++)
|
|
|
|
if (!isalnum(buf[i]))
|
|
|
|
buf[i] = '_';
|
2005-03-04 09:30:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* build_slot_path - build a path to an slot state file for this rom
|
|
|
|
*
|
|
|
|
* Note: uses rom.name. Is there a safer way of doing this? Like a ROM
|
|
|
|
* checksum or something like that?
|
|
|
|
*/
|
|
|
|
static void build_slot_path(char *buf, size_t bufsiz, size_t slot_id) {
|
2009-07-14 13:57:45 +00:00
|
|
|
char name_buf[17];
|
2005-03-04 09:30:27 +00:00
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
/* munge state file name */
|
2009-07-14 13:57:45 +00:00
|
|
|
strlcpy(name_buf, rom.name, sizeof(name_buf));
|
2006-06-19 01:47:45 +00:00
|
|
|
munge_name(name_buf, strlen(name_buf));
|
2005-03-04 09:30:27 +00:00
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
/* glom the whole mess together */
|
2007-03-17 09:02:53 +00:00
|
|
|
snprintf(buf, bufsiz, "%s/%s-%ld.rbs", STATE_DIR, name_buf, slot_id + 1);
|
2005-03-04 09:30:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* do_file - load or save game data in the given file
|
|
|
|
*
|
|
|
|
* Returns true on success and false on failure.
|
2005-03-03 20:02:39 +00:00
|
|
|
*
|
2005-03-04 09:30:27 +00:00
|
|
|
* @desc is a brief user-provided description (<20 bytes) of the state.
|
|
|
|
* If no description is provided, set @desc to NULL.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static bool do_file(char *path, char *desc, bool is_load) {
|
2006-06-19 01:47:45 +00:00
|
|
|
char buf[200], desc_buf[20];
|
|
|
|
int fd, file_mode;
|
2005-03-04 09:30:27 +00:00
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
/* set file mode */
|
|
|
|
file_mode = is_load ? O_RDONLY : (O_WRONLY | O_CREAT);
|
2005-03-04 09:30:27 +00:00
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
/* attempt to open file descriptor here */
|
2009-12-06 13:52:28 +00:00
|
|
|
if ((fd = open(path, file_mode)) < 0)
|
2006-06-19 01:47:45 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* load/save state */
|
|
|
|
if (is_load)
|
|
|
|
{
|
|
|
|
/* load description */
|
|
|
|
read(fd, desc_buf, 20);
|
|
|
|
|
|
|
|
/* load state */
|
|
|
|
loadstate(fd);
|
|
|
|
|
|
|
|
/* print out a status message so the user knows the state loaded */
|
|
|
|
snprintf(buf, 200, "Loaded state from \"%s\"", path);
|
2007-03-16 21:56:08 +00:00
|
|
|
rb->splash(HZ * 1, buf);
|
2006-06-19 01:47:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* build description buffer */
|
|
|
|
memset(desc_buf, 0, 20);
|
|
|
|
if (desc)
|
2009-07-14 13:57:45 +00:00
|
|
|
strlcpy(desc_buf, desc, 20);
|
2006-06-19 01:47:45 +00:00
|
|
|
|
|
|
|
/* save state */
|
|
|
|
write(fd, desc_buf, 20);
|
|
|
|
savestate(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* close file descriptor */
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
/* return true (for success) */
|
|
|
|
return true;
|
2005-03-04 09:30:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* do_slot - load or save game data in the given slot
|
2005-03-03 20:02:39 +00:00
|
|
|
*
|
2005-03-04 09:30:27 +00:00
|
|
|
* Returns true on success and false on failure.
|
|
|
|
*/
|
|
|
|
static bool do_slot(size_t slot_id, bool is_load) {
|
2006-06-19 01:47:45 +00:00
|
|
|
char path_buf[256], desc_buf[20];
|
2005-03-04 09:30:27 +00:00
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
/* build slot filename, clear desc buf */
|
|
|
|
build_slot_path(path_buf, 256, slot_id);
|
|
|
|
memset(desc_buf, 0, 20);
|
|
|
|
|
|
|
|
/* if we're saving to a slot, then get a brief description */
|
|
|
|
if (!is_load)
|
2009-08-12 15:00:16 +00:00
|
|
|
if ( (rb->kbd_input(desc_buf, 20) < 0) || !strlen(desc_buf) )
|
2006-06-19 01:47:45 +00:00
|
|
|
{
|
2009-07-14 13:57:45 +00:00
|
|
|
strlcpy(desc_buf, "Untitled", 20);
|
2006-06-19 01:47:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* load/save file */
|
|
|
|
return do_file(path_buf, desc_buf, is_load);
|
2005-03-04 09:30:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get information on the given slot
|
|
|
|
*/
|
|
|
|
static void slot_info(char *info_buf, size_t info_bufsiz, size_t slot_id) {
|
2006-06-19 01:47:45 +00:00
|
|
|
char buf[256];
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
/* get slot file path */
|
|
|
|
build_slot_path(buf, 256, slot_id);
|
|
|
|
|
|
|
|
/* attempt to open slot */
|
|
|
|
if ((fd = open(buf, O_RDONLY)) >= 0)
|
|
|
|
{
|
|
|
|
/* this slot has a some data in it, read it */
|
|
|
|
if (read(fd, buf, 20) > 0)
|
|
|
|
{
|
|
|
|
buf[20] = '\0';
|
2007-03-17 09:02:53 +00:00
|
|
|
snprintf(info_buf, info_bufsiz, "%ld. %s", slot_id + 1, buf);
|
2006-06-19 01:47:45 +00:00
|
|
|
}
|
|
|
|
else
|
2007-03-17 09:02:53 +00:00
|
|
|
snprintf(info_buf, info_bufsiz, "%ld. ERROR", slot_id + 1);
|
2006-06-19 01:47:45 +00:00
|
|
|
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* if we couldn't open the file, then the slot is empty */
|
2007-03-17 09:02:53 +00:00
|
|
|
snprintf(info_buf, info_bufsiz, "%ld. %s", slot_id + 1, "<Empty>");
|
2005-03-04 09:30:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-16 04:25:21 +00:00
|
|
|
/*
|
|
|
|
* slot_get_name
|
|
|
|
*/
|
2009-08-20 16:47:44 +00:00
|
|
|
static const char* slot_get_name(int selected_item, void * data,
|
|
|
|
char * buffer, size_t buffer_len)
|
2009-06-16 04:25:21 +00:00
|
|
|
{
|
2009-08-20 16:47:44 +00:00
|
|
|
const char (*items)[20] = data;
|
2009-06-16 04:25:21 +00:00
|
|
|
(void) buffer;
|
|
|
|
(void) buffer_len;
|
|
|
|
return items[selected_item];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* list_action_callback
|
|
|
|
*/
|
|
|
|
static int list_action_callback(int action, struct gui_synclist *lists)
|
|
|
|
{
|
|
|
|
(void) lists;
|
|
|
|
if (action == ACTION_STD_OK)
|
|
|
|
return ACTION_STD_CANCEL;
|
|
|
|
return action;
|
|
|
|
}
|
|
|
|
|
2005-03-04 09:30:27 +00:00
|
|
|
/*
|
|
|
|
* do_slot_menu - prompt the user for a load/save memory slot
|
2005-03-03 20:02:39 +00:00
|
|
|
*/
|
|
|
|
static void do_slot_menu(bool is_load) {
|
2006-06-19 01:47:45 +00:00
|
|
|
bool done=false;
|
2009-06-16 04:25:21 +00:00
|
|
|
char items[5][20];
|
2006-06-19 01:47:45 +00:00
|
|
|
int result;
|
|
|
|
int i;
|
|
|
|
int num_items = sizeof(items) / sizeof(*items);
|
2009-06-16 04:25:21 +00:00
|
|
|
struct simplelist_info info;
|
2005-03-04 09:30:27 +00:00
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
/* create menu items */
|
|
|
|
for (i = 0; i < num_items; i++)
|
2009-06-16 04:25:21 +00:00
|
|
|
slot_info(items[i], 20, i);
|
2005-03-03 20:02:39 +00:00
|
|
|
|
2009-06-16 04:25:21 +00:00
|
|
|
rb->simplelist_info_init(&info, NULL, num_items, (void *)items);
|
|
|
|
info.get_name = slot_get_name;
|
|
|
|
info.action_callback = list_action_callback;
|
2005-03-03 20:02:39 +00:00
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
while(!done)
|
|
|
|
{
|
2009-06-16 04:25:21 +00:00
|
|
|
if(rb->simplelist_show_list(&info))
|
|
|
|
break;
|
|
|
|
|
|
|
|
result = info.selection;
|
2006-06-19 01:47:45 +00:00
|
|
|
if (result<num_items && result >= 0 )
|
|
|
|
done = do_slot(result, is_load);
|
|
|
|
else
|
|
|
|
done = true;
|
|
|
|
}
|
2005-03-03 20:02:39 +00:00
|
|
|
}
|
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
static void do_opt_menu(void)
|
|
|
|
{
|
|
|
|
bool done=false;
|
2009-06-16 04:25:21 +00:00
|
|
|
int selected=0;
|
2006-06-19 01:47:45 +00:00
|
|
|
int result;
|
|
|
|
|
|
|
|
static const struct opt_items onoff[2] = {
|
2006-08-11 12:48:36 +00:00
|
|
|
{ "Off", -1 },
|
|
|
|
{ "On" , -1 },
|
2006-06-19 01:47:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct opt_items frameskip[]= {
|
2007-06-24 16:00:55 +00:00
|
|
|
{ "0 Max", -1 },
|
|
|
|
{ "1 Max", -1 },
|
|
|
|
{ "2 Max", -1 },
|
2006-08-11 12:48:36 +00:00
|
|
|
{ "3 Max", -1 },
|
|
|
|
{ "4 Max", -1 },
|
|
|
|
{ "5 Max", -1 },
|
|
|
|
{ "6 Max", -1 },
|
2006-06-19 01:47:45 +00:00
|
|
|
};
|
2007-02-06 21:41:08 +00:00
|
|
|
|
2007-06-25 04:26:23 +00:00
|
|
|
#ifdef HAVE_LCD_COLOR
|
2009-08-09 03:35:53 +00:00
|
|
|
static const struct opt_items rotate[] = {
|
|
|
|
{ "No rotation", -1 },
|
|
|
|
{ "Rotate Right" , -1 },
|
|
|
|
{ "Rotate Left" , -1 },
|
|
|
|
};
|
|
|
|
|
2007-10-16 18:16:22 +00:00
|
|
|
static const struct opt_items scaling[]= {
|
2007-06-25 04:26:23 +00:00
|
|
|
{ "Scaled", -1 },
|
|
|
|
{ "Scaled - Maintain Ratio", -1 },
|
|
|
|
#if (LCD_WIDTH>=160) && (LCD_HEIGHT>=144)
|
|
|
|
{ "Unscaled", -1 },
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2007-02-06 21:41:08 +00:00
|
|
|
static const struct opt_items palette[]= {
|
|
|
|
{ "Brown (Default)", -1 },
|
|
|
|
{ "Gray", -1 },
|
|
|
|
{ "Light Gray", -1 },
|
|
|
|
{ "Multi-Color 1", -1 },
|
|
|
|
{ "Multi-Color 2", -1 },
|
|
|
|
{ "Adventure Island", -1 },
|
|
|
|
{ "Adventure Island 2", -1 },
|
|
|
|
{ "Balloon Kid", -1 },
|
|
|
|
{ "Batman", -1 },
|
|
|
|
{ "Batman: Return of Joker", -1 },
|
|
|
|
{ "Bionic Commando", -1 },
|
|
|
|
{ "Castlvania Adventure", -1 },
|
|
|
|
{ "Donkey Kong Land", -1 },
|
|
|
|
{ "Dr. Mario", -1 },
|
|
|
|
{ "Kirby", -1 },
|
|
|
|
{ "Metroid", -1 },
|
|
|
|
{ "Zelda", -1 },
|
|
|
|
};
|
|
|
|
#endif
|
2006-06-19 01:47:45 +00:00
|
|
|
|
2009-06-16 04:25:21 +00:00
|
|
|
MENUITEM_STRINGLIST(menu, "Options", NULL,
|
|
|
|
"Max Frameskip", "Sound", "Stats", "Set Keys (Buggy)",
|
2007-02-06 21:41:08 +00:00
|
|
|
#ifdef HAVE_LCD_COLOR
|
2009-06-16 04:25:21 +00:00
|
|
|
"Screen Size", "Screen Rotate", "Set Palette",
|
2007-02-06 21:41:08 +00:00
|
|
|
#endif
|
2009-06-16 04:25:21 +00:00
|
|
|
);
|
2006-06-19 01:47:45 +00:00
|
|
|
|
2007-06-25 04:26:23 +00:00
|
|
|
options.dirty=1; /* Assume that the settings have been changed */
|
2007-06-24 16:00:55 +00:00
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
while(!done)
|
|
|
|
{
|
2009-06-16 04:25:21 +00:00
|
|
|
result = rb->do_menu(&menu, &selected, NULL, false);
|
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
switch (result)
|
|
|
|
{
|
|
|
|
case 0: /* Frameskip */
|
2009-06-16 04:25:21 +00:00
|
|
|
rb->set_option("Max Frameskip", &options.maxskip, INT, frameskip,
|
2007-06-24 16:00:55 +00:00
|
|
|
sizeof(frameskip)/sizeof(*frameskip), NULL );
|
2006-06-19 01:47:45 +00:00
|
|
|
break;
|
|
|
|
case 1: /* Sound */
|
|
|
|
if(options.sound>1) options.sound=1;
|
2009-06-16 04:25:21 +00:00
|
|
|
rb->set_option("Sound", &options.sound, INT, onoff, 2, NULL );
|
2007-02-06 21:41:08 +00:00
|
|
|
if(options.sound) sound_dirty();
|
2006-06-19 01:47:45 +00:00
|
|
|
break;
|
|
|
|
case 2: /* Stats */
|
2009-06-16 04:25:21 +00:00
|
|
|
rb->set_option("Stats", &options.showstats, INT, onoff, 2, NULL );
|
2006-06-19 01:47:45 +00:00
|
|
|
break;
|
2007-06-25 04:26:23 +00:00
|
|
|
case 3: /* Keys */
|
|
|
|
setupkeys();
|
|
|
|
break;
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
case 4: /* Screen Size */
|
2009-06-16 04:25:21 +00:00
|
|
|
rb->set_option("Screen Size", &options.scaling, INT, scaling,
|
2007-10-16 18:16:22 +00:00
|
|
|
sizeof(scaling)/sizeof(*scaling), NULL );
|
2007-06-24 16:00:55 +00:00
|
|
|
setvidmode();
|
|
|
|
break;
|
2007-06-25 04:26:23 +00:00
|
|
|
case 5: /* Screen rotate */
|
2009-08-09 03:20:55 +00:00
|
|
|
rb->set_option("Screen Rotate", &options.rotate, INT, rotate,
|
|
|
|
sizeof(rotate)/sizeof(*rotate), NULL );
|
2007-06-24 16:00:55 +00:00
|
|
|
setvidmode();
|
2006-06-19 01:47:45 +00:00
|
|
|
break;
|
2007-06-24 16:00:55 +00:00
|
|
|
case 6: /* Palette */
|
2009-06-16 04:25:21 +00:00
|
|
|
rb->set_option("Set Palette", &options.pal, INT, palette, 17, NULL );
|
2007-02-06 21:41:08 +00:00
|
|
|
set_pal();
|
|
|
|
break;
|
2009-06-16 04:25:21 +00:00
|
|
|
#endif
|
2006-06-19 01:47:45 +00:00
|
|
|
default:
|
|
|
|
done=true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2005-03-03 20:02:39 +00:00
|
|
|
}
|