2005-03-02 23:49:38 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Gameboy emulator based on gnuboy
|
|
|
|
*
|
2008-06-28 18:10:04 +00: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.
|
2005-03-02 23:49:38 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "plugin.h"
|
2010-11-11 12:08:00 +00:00
|
|
|
#include "lib/helper.h"
|
2005-03-02 23:49:38 +00:00
|
|
|
#include "loader.h"
|
|
|
|
#include "rockmacros.h"
|
2007-10-16 18:16:22 +00:00
|
|
|
#include "input.h"
|
|
|
|
#include "emu.h"
|
|
|
|
#include "hw.h"
|
|
|
|
#include "pcm.h"
|
2005-03-02 23:49:38 +00:00
|
|
|
|
|
|
|
int shut,cleanshut;
|
|
|
|
char *errormsg;
|
|
|
|
|
2006-01-20 13:05:52 +00:00
|
|
|
#define optionname "options"
|
|
|
|
|
2005-03-02 23:49:38 +00:00
|
|
|
void die(char *message, ...)
|
|
|
|
{
|
|
|
|
shut=1;
|
|
|
|
errormsg=message;
|
|
|
|
}
|
|
|
|
|
2006-06-19 02:44:50 +00:00
|
|
|
struct options options;
|
2006-06-19 01:47:45 +00:00
|
|
|
|
2005-04-05 11:33:58 +00:00
|
|
|
void *audio_bufferbase;
|
|
|
|
void *audio_bufferpointer;
|
2007-04-21 18:38:25 +00:00
|
|
|
size_t audio_buffer_free;
|
2005-03-02 23:49:38 +00:00
|
|
|
|
|
|
|
void *my_malloc(size_t size)
|
|
|
|
{
|
|
|
|
void *alloc;
|
|
|
|
|
2005-04-05 11:33:58 +00:00
|
|
|
if (size + 4 > audio_buffer_free)
|
2005-03-02 23:49:38 +00:00
|
|
|
return 0;
|
2005-04-05 11:33:58 +00:00
|
|
|
alloc = audio_bufferpointer;
|
|
|
|
audio_bufferpointer += size + 4;
|
|
|
|
audio_buffer_free -= size + 4;
|
2005-03-02 23:49:38 +00:00
|
|
|
return alloc;
|
|
|
|
}
|
|
|
|
|
2007-10-16 18:16:22 +00:00
|
|
|
static void setoptions (void)
|
2006-06-19 01:47:45 +00:00
|
|
|
{
|
2010-11-11 11:35:38 +00:00
|
|
|
int fd;
|
|
|
|
DIR* dir;
|
|
|
|
char optionsave[sizeof(savedir)+sizeof(optionname)];
|
2006-01-20 13:05:52 +00:00
|
|
|
|
2007-07-20 17:06:55 +00:00
|
|
|
dir=rb->opendir(savedir);
|
2006-03-23 23:49:22 +00:00
|
|
|
if(!dir)
|
2010-11-11 11:35:38 +00:00
|
|
|
rb->mkdir(savedir);
|
2006-03-23 23:49:22 +00:00
|
|
|
else
|
2010-11-11 11:35:38 +00:00
|
|
|
rb->closedir(dir);
|
2006-01-20 13:05:52 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
snprintf(optionsave, sizeof(optionsave), "%s/%s", savedir, optionname);
|
2006-01-20 13:05:52 +00:00
|
|
|
|
2007-06-24 16:00:55 +00:00
|
|
|
fd = open(optionsave, O_RDONLY);
|
2010-11-25 12:45:13 +00:00
|
|
|
|
|
|
|
int optionssize = sizeof(options);
|
|
|
|
int filesize = 0;
|
|
|
|
if(fd >= 0)
|
|
|
|
filesize = rb->filesize(fd);
|
|
|
|
|
|
|
|
/* don't read the option file if the size
|
|
|
|
* is not as expected to avoid crash */
|
|
|
|
if(fd < 0 || filesize!=optionssize)
|
2007-06-24 16:00:55 +00:00
|
|
|
{
|
2010-11-26 13:29:35 +00:00
|
|
|
/* no options to read, set defaults */
|
2008-08-23 09:46:38 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
2010-11-11 11:35:38 +00:00
|
|
|
options.LEFT = BUTTON_MIDLEFT;
|
|
|
|
options.RIGHT = BUTTON_MIDRIGHT;
|
2020-10-08 22:27:03 +00:00
|
|
|
#elif defined(BUTTON_LEFT) && defined(BUTTON_RIGHT)
|
2010-11-11 11:35:38 +00:00
|
|
|
options.LEFT = BUTTON_LEFT;
|
|
|
|
options.RIGHT = BUTTON_RIGHT;
|
2020-10-08 22:27:03 +00:00
|
|
|
#else
|
|
|
|
#warning "LEFT/RIGHT not defined!"
|
2008-04-27 15:30:19 +00:00
|
|
|
#endif
|
2007-06-24 16:00:55 +00:00
|
|
|
|
2007-10-16 18:16:22 +00:00
|
|
|
#if CONFIG_KEYPAD == IRIVER_H100_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
2007-06-24 16:00:55 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_ON;
|
|
|
|
options.B = BUTTON_OFF;
|
|
|
|
options.START = BUTTON_REC;
|
|
|
|
options.SELECT = BUTTON_SELECT;
|
|
|
|
options.MENU = BUTTON_MODE;
|
2006-01-20 13:05:52 +00:00
|
|
|
|
2007-10-16 18:16:22 +00:00
|
|
|
#elif CONFIG_KEYPAD == IRIVER_H300_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
2007-06-24 16:00:55 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_REC;
|
|
|
|
options.B = BUTTON_MODE;
|
|
|
|
options.START = BUTTON_ON;
|
|
|
|
options.SELECT = BUTTON_SELECT;
|
|
|
|
options.MENU = BUTTON_OFF;
|
2006-01-20 13:05:52 +00:00
|
|
|
|
2006-01-20 20:59:07 +00:00
|
|
|
#elif CONFIG_KEYPAD == IPOD_4G_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_MENU;
|
|
|
|
options.DOWN = BUTTON_PLAY;
|
2007-06-24 16:00:55 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_NONE;
|
|
|
|
options.B = BUTTON_NONE;
|
|
|
|
options.START = BUTTON_SELECT;
|
|
|
|
options.SELECT = BUTTON_NONE;
|
|
|
|
options.MENU = (BUTTON_SELECT | BUTTON_REPEAT);
|
2006-01-20 20:59:07 +00:00
|
|
|
|
2006-03-02 13:28:24 +00:00
|
|
|
#elif CONFIG_KEYPAD == GIGABEAT_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
|
|
|
|
options.A = BUTTON_VOL_UP;
|
|
|
|
options.B = BUTTON_VOL_DOWN;
|
|
|
|
options.START = BUTTON_A;
|
|
|
|
options.SELECT = BUTTON_SELECT;
|
|
|
|
options.MENU = BUTTON_MENU;
|
|
|
|
|
2007-01-15 20:40:48 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_E200_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
2007-06-24 16:00:55 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_SELECT;
|
|
|
|
options.B = BUTTON_REC;
|
|
|
|
options.START = BUTTON_SCROLL_BACK;
|
|
|
|
options.SELECT = BUTTON_SCROLL_FWD;
|
|
|
|
options.MENU = BUTTON_POWER;
|
2009-01-04 23:33:15 +00:00
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == SANSA_FUZE_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
2009-01-04 23:33:15 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_SELECT;
|
|
|
|
options.B = BUTTON_HOME;
|
|
|
|
options.START = BUTTON_SCROLL_BACK;
|
|
|
|
options.SELECT = BUTTON_SCROLL_FWD;
|
|
|
|
options.MENU = BUTTON_POWER;
|
2009-01-04 23:33:15 +00:00
|
|
|
|
2007-10-10 21:35:49 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_C200_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
2007-10-10 21:35:49 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_SELECT;
|
|
|
|
options.B = BUTTON_REC;
|
|
|
|
options.START = BUTTON_VOL_DOWN;
|
|
|
|
options.SELECT = BUTTON_VOL_UP;
|
|
|
|
options.MENU = BUTTON_POWER;
|
2007-06-24 16:00:55 +00:00
|
|
|
|
2010-05-17 10:01:49 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_CLIP_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
2010-05-17 10:01:49 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_SELECT;
|
|
|
|
options.B = BUTTON_HOME;
|
|
|
|
options.START = BUTTON_VOL_DOWN;
|
|
|
|
options.SELECT = BUTTON_VOL_UP;
|
|
|
|
options.MENU = BUTTON_POWER;
|
2010-05-17 10:01:49 +00:00
|
|
|
|
2007-03-16 23:02:39 +00:00
|
|
|
#elif CONFIG_KEYPAD == IAUDIO_X5M5_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
2007-06-24 16:00:55 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_PLAY;
|
|
|
|
options.B = BUTTON_REC;
|
|
|
|
options.START = BUTTON_SELECT;
|
|
|
|
options.SELECT = BUTTON_NONE;
|
|
|
|
options.MENU = BUTTON_POWER;
|
2007-11-02 05:21:34 +00:00
|
|
|
|
2007-02-06 21:41:08 +00:00
|
|
|
#elif CONFIG_KEYPAD == IRIVER_H10_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_SCROLL_UP;
|
|
|
|
options.DOWN = BUTTON_SCROLL_DOWN;
|
|
|
|
|
|
|
|
options.A = BUTTON_PLAY;
|
|
|
|
options.B = BUTTON_FF;
|
|
|
|
options.START = BUTTON_REW;
|
|
|
|
options.SELECT = BUTTON_NONE;
|
|
|
|
options.MENU = BUTTON_POWER;
|
|
|
|
|
2007-11-02 05:21:34 +00:00
|
|
|
#elif CONFIG_KEYPAD == MROBE500_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.MENU = BUTTON_POWER;
|
2008-09-16 08:14:31 +00:00
|
|
|
|
2009-12-15 20:51:41 +00:00
|
|
|
#elif CONFIG_KEYPAD == COWON_D2_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_PLUS;
|
|
|
|
options.B = BUTTON_MINUS;
|
|
|
|
options.MENU = BUTTON_MENU;
|
2008-03-22 22:03:34 +00:00
|
|
|
|
2008-05-02 00:38:11 +00:00
|
|
|
#elif CONFIG_KEYPAD == GIGABEAT_S_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
|
|
|
|
options.A = BUTTON_VOL_UP;
|
|
|
|
options.B = BUTTON_VOL_DOWN;
|
|
|
|
options.START = BUTTON_PLAY;
|
|
|
|
options.SELECT = BUTTON_SELECT;
|
|
|
|
options.MENU = BUTTON_MENU;
|
2014-03-21 21:16:02 +00:00
|
|
|
|
2008-12-04 21:28:56 +00:00
|
|
|
#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
2008-12-04 21:28:56 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_CUSTOM;
|
|
|
|
options.B = BUTTON_PLAY;
|
|
|
|
options.START = BUTTON_BACK;
|
|
|
|
options.SELECT = BUTTON_SELECT;
|
|
|
|
options.MENU = BUTTON_MENU;
|
2009-01-24 22:41:55 +00:00
|
|
|
|
2014-03-21 21:16:02 +00:00
|
|
|
#elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
|
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
|
|
|
|
options.A = BUTTON_VOL_UP;
|
|
|
|
options.B = BUTTON_VOL_DOWN;
|
|
|
|
options.START = BUTTON_PLAY;
|
|
|
|
options.SELECT = BUTTON_NONE;
|
|
|
|
options.MENU = BUTTON_POWER;
|
|
|
|
|
2009-01-24 22:41:55 +00:00
|
|
|
#elif CONFIG_KEYPAD == PHILIPS_HDD1630_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
2009-01-24 22:41:55 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_VOL_UP;
|
|
|
|
options.B = BUTTON_VOL_DOWN;
|
|
|
|
options.START = BUTTON_VIEW;
|
|
|
|
options.SELECT = BUTTON_SELECT;
|
|
|
|
options.MENU = BUTTON_MENU;
|
2009-04-07 23:41:44 +00:00
|
|
|
|
2010-11-03 02:45:53 +00:00
|
|
|
#elif CONFIG_KEYPAD == PHILIPS_HDD6330_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
options.A = BUTTON_VOL_UP;
|
|
|
|
options.B = BUTTON_VOL_DOWN;
|
|
|
|
options.START = BUTTON_NEXT;
|
|
|
|
options.SELECT = BUTTON_PLAY;
|
|
|
|
options.MENU = BUTTON_MENU;
|
2010-11-03 02:45:53 +00:00
|
|
|
|
2009-12-07 18:23:25 +00:00
|
|
|
#elif CONFIG_KEYPAD == PHILIPS_SA9200_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
2009-12-07 18:23:25 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_VOL_UP;
|
|
|
|
options.B = BUTTON_VOL_DOWN;
|
|
|
|
options.START = BUTTON_RIGHT;
|
|
|
|
options.SELECT = BUTTON_LEFT;
|
|
|
|
options.MENU = BUTTON_MENU;
|
2009-12-07 18:23:25 +00:00
|
|
|
|
2009-04-07 23:41:44 +00:00
|
|
|
#elif CONFIG_KEYPAD == ONDAVX747_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_VOL_UP;
|
|
|
|
options.B = BUTTON_VOL_DOWN;
|
|
|
|
options.MENU = BUTTON_MENU;
|
2009-08-04 03:08:32 +00:00
|
|
|
|
2009-08-31 21:11:32 +00:00
|
|
|
#elif CONFIG_KEYPAD == ONDAVX777_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.MENU = BUTTON_POWER;
|
2009-08-31 21:11:32 +00:00
|
|
|
|
2016-01-23 14:54:08 +00:00
|
|
|
#elif CONFIG_KEYPAD == SAMSUNG_YH92X_PAD
|
2015-07-19 23:50:26 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
|
|
|
|
options.A = BUTTON_PLAY;
|
|
|
|
options.B = BUTTON_FFWD;
|
|
|
|
options.START = BUTTON_REW;
|
|
|
|
options.SELECT = BUTTON_NONE;
|
|
|
|
options.MENU = BUTTON_REC_SW_ON;
|
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
2009-08-04 03:08:32 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_PLAY;
|
2014-10-15 12:25:28 +00:00
|
|
|
options.B = BUTTON_FFWD;
|
|
|
|
options.START = BUTTON_REW;
|
|
|
|
options.SELECT = BUTTON_NONE;
|
|
|
|
options.MENU = BUTTON_REC;
|
2009-08-04 03:08:32 +00:00
|
|
|
|
2010-02-13 15:46:34 +00:00
|
|
|
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_OK;
|
|
|
|
options.DOWN = BUTTON_CANCEL;
|
|
|
|
options.LEFT = BUTTON_PREV;
|
|
|
|
options.RIGHT = BUTTON_NEXT;
|
2010-02-13 15:46:34 +00:00
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_POWER;
|
|
|
|
options.B = BUTTON_REC;
|
|
|
|
options.START = BUTTON_PLAY;
|
|
|
|
options.SELECT = BUTTON_UP;
|
|
|
|
options.MENU = BUTTON_MENU;
|
2010-02-13 15:46:34 +00:00
|
|
|
|
2010-11-30 10:52:14 +00:00
|
|
|
#elif CONFIG_KEYPAD == MPIO_HD300_PAD
|
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
options.LEFT = BUTTON_REW;
|
|
|
|
options.RIGHT = BUTTON_FF;
|
|
|
|
|
2012-02-02 13:42:42 +00:00
|
|
|
options.A = BUTTON_PLAY;
|
|
|
|
options.B = BUTTON_REC;
|
|
|
|
options.START = (BUTTON_PLAY | BUTTON_REPEAT);
|
|
|
|
options.SELECT = BUTTON_ENTER;
|
|
|
|
options.MENU = BUTTON_MENU;
|
2010-11-30 10:52:14 +00:00
|
|
|
|
2011-10-02 17:34:39 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_FUZEPLUS_PAD
|
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
options.LEFT = BUTTON_LEFT;
|
|
|
|
options.RIGHT = BUTTON_RIGHT;
|
|
|
|
|
2013-07-17 16:43:33 +00:00
|
|
|
options.A = BUTTON_VOL_UP;
|
|
|
|
options.B = BUTTON_VOL_DOWN;
|
2011-10-02 17:34:39 +00:00
|
|
|
options.START = BUTTON_SELECT;
|
2013-07-17 16:43:33 +00:00
|
|
|
options.SELECT = BUTTON_PLAYPAUSE;
|
|
|
|
options.MENU = BUTTON_BACK;
|
2011-10-02 17:34:39 +00:00
|
|
|
|
2011-11-16 14:08:01 +00:00
|
|
|
#elif CONFIG_KEYPAD == SANSA_CONNECT_PAD
|
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
options.LEFT = BUTTON_LEFT;
|
|
|
|
options.RIGHT = BUTTON_RIGHT;
|
|
|
|
|
|
|
|
options.A = BUTTON_VOL_UP;
|
|
|
|
options.B = BUTTON_VOL_DOWN;
|
|
|
|
options.START = BUTTON_PREV;
|
|
|
|
options.SELECT = BUTTON_NEXT;
|
|
|
|
options.MENU = BUTTON_SELECT;
|
|
|
|
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
#elif CONFIG_KEYPAD == SAMSUNG_YPR0_PAD
|
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
options.LEFT = BUTTON_LEFT;
|
|
|
|
options.RIGHT = BUTTON_RIGHT;
|
|
|
|
|
|
|
|
options.A = BUTTON_SELECT;
|
|
|
|
options.B = BUTTON_BACK;
|
|
|
|
options.START = BUTTON_POWER;
|
|
|
|
options.SELECT = BUTTON_USER;
|
|
|
|
options.MENU = BUTTON_MENU;
|
|
|
|
|
2012-04-06 16:17:27 +00:00
|
|
|
#elif CONFIG_KEYPAD == HM801_PAD
|
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
options.LEFT = BUTTON_LEFT;
|
|
|
|
options.RIGHT = BUTTON_RIGHT;
|
|
|
|
|
|
|
|
options.A = BUTTON_PREV;
|
|
|
|
options.B = BUTTON_NEXT;
|
|
|
|
options.START = BUTTON_PLAY;
|
|
|
|
options.SELECT = BUTTON_SELECT;
|
|
|
|
options.MENU = BUTTON_POWER;
|
|
|
|
|
2014-06-30 18:24:15 +00:00
|
|
|
#elif CONFIG_KEYPAD == SONY_NWZ_PAD
|
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
options.LEFT = BUTTON_LEFT;
|
|
|
|
options.RIGHT = BUTTON_RIGHT;
|
|
|
|
|
|
|
|
options.START = BUTTON_PLAY;
|
|
|
|
options.MENU = BUTTON_BACK;
|
|
|
|
options.SELECT = (BUTTON_POWER|BUTTON_PLAY);
|
|
|
|
options.A = (BUTTON_POWER|BUTTON_LEFT);
|
|
|
|
options.B = (BUTTON_POWER|BUTTON_RIGHT);
|
|
|
|
|
2014-07-17 08:40:17 +00:00
|
|
|
#elif CONFIG_KEYPAD == CREATIVE_ZEN_PAD
|
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
options.LEFT = BUTTON_LEFT;
|
|
|
|
options.RIGHT = BUTTON_RIGHT;
|
|
|
|
|
|
|
|
options.START = BUTTON_BACK;
|
|
|
|
options.MENU = BUTTON_MENU;
|
|
|
|
options.SELECT = BUTTON_SELECT;
|
|
|
|
options.A = BUTTON_SHORTCUT;
|
|
|
|
options.B = BUTTON_PLAYPAUSE;
|
2014-06-30 18:24:15 +00:00
|
|
|
|
2014-08-30 11:15:53 +00:00
|
|
|
#elif CONFIG_KEYPAD == DX50_PAD
|
|
|
|
options.A = BUTTON_VOL_UP;
|
|
|
|
options.B = BUTTON_VOL_DOWN;
|
|
|
|
options.MENU = BUTTON_POWER;
|
|
|
|
options.START = BUTTON_LEFT;
|
|
|
|
options.SELECT = BUTTON_RIGHT;
|
|
|
|
|
2018-02-22 22:42:29 +00:00
|
|
|
#elif CONFIG_KEYPAD == CREATIVE_ZENXFI2_PAD
|
|
|
|
options.MENU = BUTTON_POWER;
|
|
|
|
|
2018-03-02 20:53:55 +00:00
|
|
|
#elif CONFIG_KEYPAD == AGPTEK_ROCKER_PAD
|
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
options.LEFT = BUTTON_LEFT;
|
|
|
|
options.RIGHT = BUTTON_RIGHT;
|
|
|
|
|
|
|
|
options.START = BUTTON_SELECT;
|
|
|
|
options.MENU = BUTTON_POWER;
|
|
|
|
options.SELECT = BUTTON_SELECT|BUTTON_REPEAT;
|
|
|
|
options.A = BUTTON_VOLDOWN;
|
|
|
|
options.B = BUTTON_VOLUP;
|
|
|
|
|
2018-06-28 10:24:26 +00:00
|
|
|
#elif CONFIG_KEYPAD == XDUOO_X3_PAD
|
|
|
|
options.UP = BUTTON_PREV;
|
|
|
|
options.DOWN = BUTTON_NEXT;
|
|
|
|
|
|
|
|
options.A = BUTTON_HOME;
|
|
|
|
options.B = BUTTON_OPTION;
|
|
|
|
options.START = BUTTON_VOL_DOWN;
|
|
|
|
options.SELECT = BUTTON_VOL_UP;
|
|
|
|
options.MENU = BUTTON_POWER;
|
|
|
|
|
2020-10-08 13:47:40 +00:00
|
|
|
#elif CONFIG_KEYPAD == XDUOO_X3II_PAD || CONFIG_KEYPAD == XDUOO_X20_PAD
|
2018-11-05 12:01:55 +00:00
|
|
|
options.UP = BUTTON_PREV;
|
|
|
|
options.DOWN = BUTTON_NEXT;
|
|
|
|
|
|
|
|
options.A = BUTTON_HOME;
|
|
|
|
options.B = BUTTON_OPTION;
|
|
|
|
options.START = BUTTON_VOL_DOWN;
|
|
|
|
options.SELECT = BUTTON_VOL_UP;
|
|
|
|
options.MENU = BUTTON_POWER;
|
|
|
|
|
2021-02-27 22:07:37 +00:00
|
|
|
#elif CONFIG_KEYPAD == FIIO_M3K_LINUX_PAD
|
2020-10-03 22:17:11 +00:00
|
|
|
options.UP = BUTTON_PREV;
|
|
|
|
options.DOWN = BUTTON_NEXT;
|
|
|
|
|
|
|
|
options.A = BUTTON_HOME;
|
|
|
|
options.B = BUTTON_OPTION;
|
|
|
|
options.START = BUTTON_VOL_DOWN;
|
|
|
|
options.SELECT = BUTTON_VOL_UP;
|
|
|
|
options.MENU = BUTTON_POWER;
|
|
|
|
|
2020-10-08 13:47:40 +00:00
|
|
|
#elif CONFIG_KEYPAD == IHIFI_770_PAD || CONFIG_KEYPAD == IHIFI_800_PAD
|
2018-06-29 20:09:28 +00:00
|
|
|
options.UP = BUTTON_PREV;
|
|
|
|
options.DOWN = BUTTON_NEXT;
|
|
|
|
|
|
|
|
options.A = BUTTON_VOL_UP;
|
|
|
|
options.B = BUTTON_VOL_DOWN;
|
|
|
|
options.START = BUTTON_PLAY;
|
|
|
|
options.SELECT = BUTTON_HOME;
|
|
|
|
options.MENU = BUTTON_POWER;
|
|
|
|
|
2020-10-08 13:47:40 +00:00
|
|
|
#elif CONFIG_KEYPAD == EROSQ_PAD
|
|
|
|
options.UP = BUTTON_PREV;
|
|
|
|
options.DOWN = BUTTON_NEXT;
|
|
|
|
options.LEFT = BUTTON_SCROLL_BACK;
|
|
|
|
options.RIGHT = BUTTON_SCROLL_FWD;
|
2018-06-29 20:09:28 +00:00
|
|
|
|
2020-10-08 13:47:40 +00:00
|
|
|
options.A = BUTTON_MENU;
|
|
|
|
options.B = BUTTON_BACK;
|
|
|
|
options.START = BUTTON_VOL_DOWN;
|
|
|
|
options.SELECT = BUTTON_VOL_UP;
|
2018-06-29 20:09:28 +00:00
|
|
|
options.MENU = BUTTON_POWER;
|
|
|
|
|
2021-02-27 22:08:58 +00:00
|
|
|
#elif CONFIG_KEYPAD == FIIO_M3K_PAD
|
|
|
|
options.UP = BUTTON_UP;
|
|
|
|
options.DOWN = BUTTON_DOWN;
|
|
|
|
options.LEFT = BUTTON_LEFT;
|
|
|
|
options.RIGHT = BUTTON_RIGHT;
|
|
|
|
options.A = BUTTON_MENU;
|
|
|
|
options.B = BUTTON_BACK;
|
|
|
|
options.START = BUTTON_VOL_DOWN;
|
|
|
|
options.SELECT = BUTTON_VOL_UP;
|
|
|
|
options.MENU = BUTTON_POWER;
|
|
|
|
|
2021-05-23 16:30:58 +00:00
|
|
|
#elif CONFIG_KEYPAD == SHANLING_Q1_PAD
|
|
|
|
/* use touchscreen */
|
|
|
|
|
2007-11-02 05:21:34 +00:00
|
|
|
#else
|
|
|
|
#error No Keymap Defined!
|
2006-01-20 13:05:52 +00:00
|
|
|
#endif
|
|
|
|
|
2008-08-23 09:46:38 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
2010-11-11 11:35:38 +00:00
|
|
|
options.UP = BUTTON_TOPMIDDLE;
|
|
|
|
options.DOWN = BUTTON_BOTTOMMIDDLE;
|
|
|
|
options.START = BUTTON_TOPRIGHT;
|
|
|
|
options.SELECT = BUTTON_CENTER;
|
2009-08-08 07:21:37 +00:00
|
|
|
#if CONFIG_KEYPAD == MROBE500_PAD
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_BOTTOMLEFT;
|
|
|
|
options.B = BUTTON_BOTTOMRIGHT;
|
2014-08-30 11:15:53 +00:00
|
|
|
#elif (CONFIG_KEYPAD != COWON_D2_PAD ) || (CONFIG_KEYPAD != DX50_PAD )
|
2010-11-11 11:35:38 +00:00
|
|
|
options.A = BUTTON_BOTTOMLEFT;
|
|
|
|
options.B = BUTTON_BOTTOMRIGHT;
|
|
|
|
options.MENU = BUTTON_TOPLEFT;
|
2008-09-16 08:14:31 +00:00
|
|
|
#endif
|
2008-04-27 15:30:19 +00:00
|
|
|
#endif
|
|
|
|
|
2010-11-11 11:35:38 +00:00
|
|
|
options.maxskip=4;
|
|
|
|
options.fps=0;
|
|
|
|
options.showstats=0;
|
2007-02-06 21:41:08 +00:00
|
|
|
#if (LCD_WIDTH>=160) && (LCD_HEIGHT>=144)
|
2010-11-11 11:35:38 +00:00
|
|
|
options.scaling=0;
|
2007-02-06 21:41:08 +00:00
|
|
|
#else
|
2010-11-11 11:35:38 +00:00
|
|
|
options.scaling=1;
|
2007-02-06 21:41:08 +00:00
|
|
|
#endif
|
2010-11-11 11:35:38 +00:00
|
|
|
options.sound=1;
|
|
|
|
options.pal=0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
read(fd,&options, sizeof(options));
|
2006-01-20 13:05:52 +00:00
|
|
|
|
2006-06-19 02:44:50 +00:00
|
|
|
close(fd);
|
2006-01-20 13:05:52 +00:00
|
|
|
}
|
|
|
|
|
2007-10-16 18:16:22 +00:00
|
|
|
static void savesettings(void)
|
2006-01-20 13:05:52 +00:00
|
|
|
{
|
2007-06-24 16:00:55 +00:00
|
|
|
int fd;
|
|
|
|
char optionsave[sizeof(savedir)+sizeof(optionname)];
|
2006-01-20 13:05:52 +00:00
|
|
|
|
2007-06-24 16:00:55 +00:00
|
|
|
if(options.dirty)
|
|
|
|
{
|
|
|
|
options.dirty=0;
|
|
|
|
snprintf(optionsave, sizeof(optionsave), "%s/%s", savedir, optionname);
|
2010-05-06 17:35:13 +00:00
|
|
|
fd = open(optionsave, O_WRONLY|O_CREAT|O_TRUNC, 0666);
|
2007-06-24 16:00:55 +00:00
|
|
|
write(fd,&options, sizeof(options));
|
|
|
|
close(fd);
|
|
|
|
}
|
2006-01-20 13:05:52 +00:00
|
|
|
}
|
|
|
|
|
2007-10-16 18:16:22 +00:00
|
|
|
void doevents(void)
|
|
|
|
{
|
|
|
|
event_t ev;
|
|
|
|
int st;
|
|
|
|
|
|
|
|
ev_poll();
|
|
|
|
while (ev_getevent(&ev))
|
|
|
|
{
|
|
|
|
if (ev.type != EV_PRESS && ev.type != EV_RELEASE)
|
|
|
|
continue;
|
|
|
|
st = (ev.type != EV_RELEASE);
|
|
|
|
pad_set(ev.code, st);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-13 09:57:56 +00:00
|
|
|
static int gnuboy_main(const char *rom)
|
2007-10-16 18:16:22 +00:00
|
|
|
{
|
|
|
|
rb->lcd_puts(0,0,"Init video");
|
|
|
|
vid_init();
|
|
|
|
rb->lcd_puts(0,1,"Init sound");
|
2010-05-27 12:00:23 +00:00
|
|
|
rockboy_pcm_init();
|
2007-10-16 18:16:22 +00:00
|
|
|
rb->lcd_puts(0,2,"Loading rom");
|
|
|
|
loader_init(rom);
|
|
|
|
if(shut)
|
|
|
|
return PLUGIN_ERROR;
|
|
|
|
rb->lcd_puts(0,3,"Emu reset");
|
|
|
|
emu_reset();
|
|
|
|
rb->lcd_puts(0,4,"Emu run");
|
|
|
|
rb->lcd_clear_display();
|
|
|
|
rb->lcd_update();
|
2010-11-25 12:45:13 +00:00
|
|
|
if(options.autosave) sn_load();
|
2007-10-16 18:16:22 +00:00
|
|
|
emu_run();
|
|
|
|
|
|
|
|
/* never reached */
|
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|
|
|
|
|
2005-03-02 23:49:38 +00:00
|
|
|
/* this is the plugin entry point */
|
2009-01-16 10:34:40 +00:00
|
|
|
enum plugin_status plugin_start(const void* parameter)
|
2005-03-02 23:49:38 +00:00
|
|
|
{
|
2011-09-24 13:19:34 +00:00
|
|
|
rb->lcd_setfont(FONT_SYSFIXED);
|
2006-01-15 18:20:18 +00:00
|
|
|
|
2006-06-19 01:47:45 +00:00
|
|
|
rb->lcd_clear_display();
|
|
|
|
|
2006-06-19 01:57:44 +00:00
|
|
|
if (!parameter)
|
|
|
|
{
|
2007-03-16 21:56:08 +00:00
|
|
|
rb->splash(HZ*3, "Play gameboy ROM file! (.gb/.gbc)");
|
2005-03-07 21:41:10 +00:00
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|
2007-04-18 07:41:31 +00:00
|
|
|
if(rb->audio_status())
|
|
|
|
{
|
|
|
|
audio_bufferbase = audio_bufferpointer
|
2007-04-21 18:38:25 +00:00
|
|
|
= rb->plugin_get_buffer(&audio_buffer_free);
|
2007-04-18 07:41:31 +00:00
|
|
|
plugbuf=true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
audio_bufferbase = audio_bufferpointer
|
2007-04-21 18:38:25 +00:00
|
|
|
= rb->plugin_get_audio_buffer(&audio_buffer_free);
|
2007-04-18 07:41:31 +00:00
|
|
|
plugbuf=false;
|
|
|
|
}
|
2011-02-02 17:43:32 +00:00
|
|
|
#if MEMORYSIZE <= 8 && (CONFIG_PLATFORM & PLATFORM_NATIVE)
|
2006-01-16 18:51:12 +00:00
|
|
|
/* loaded as an overlay plugin, protect from overwriting ourselves */
|
|
|
|
if ((unsigned)(plugin_start_addr - (unsigned char *)audio_bufferbase)
|
2005-06-29 18:54:56 +00:00
|
|
|
< audio_buffer_free)
|
2006-01-16 18:51:12 +00:00
|
|
|
audio_buffer_free = plugin_start_addr - (unsigned char *)audio_bufferbase;
|
2005-06-28 21:19:40 +00:00
|
|
|
#endif
|
2006-06-19 02:44:50 +00:00
|
|
|
setoptions();
|
2006-11-18 02:18:29 +00:00
|
|
|
|
2005-03-02 23:49:38 +00:00
|
|
|
shut=0;
|
|
|
|
cleanshut=0;
|
|
|
|
|
2006-10-02 19:28:14 +00:00
|
|
|
#ifdef HAVE_WHEEL_POSITION
|
|
|
|
rb->wheel_send_events(false);
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
|
2010-11-11 12:08:00 +00:00
|
|
|
/* ignore backlight time out */
|
2011-01-24 12:29:16 +00:00
|
|
|
backlight_ignore_timeout();
|
2022-11-24 04:00:29 +00:00
|
|
|
|
2005-03-02 23:49:38 +00:00
|
|
|
gnuboy_main(parameter);
|
|
|
|
|
2006-10-02 19:28:14 +00:00
|
|
|
#ifdef HAVE_WHEEL_POSITION
|
|
|
|
rb->wheel_send_events(true);
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
|
2010-11-11 12:08:00 +00:00
|
|
|
backlight_use_settings();
|
|
|
|
|
2010-12-15 11:33:22 +00:00
|
|
|
if(!rb->audio_status())
|
|
|
|
rockboy_pcm_close();
|
|
|
|
|
2006-06-19 01:57:44 +00:00
|
|
|
if(shut&&!cleanshut)
|
|
|
|
{
|
2007-03-16 21:56:08 +00:00
|
|
|
rb->splash(HZ/2, errormsg);
|
2005-03-02 23:49:38 +00:00
|
|
|
return PLUGIN_ERROR;
|
|
|
|
}
|
2010-11-11 11:35:38 +00:00
|
|
|
|
2007-06-24 16:00:55 +00:00
|
|
|
rb->splash(HZ/2, "Closing Rockboy");
|
2006-01-20 13:05:52 +00:00
|
|
|
|
2006-06-19 01:57:44 +00:00
|
|
|
savesettings();
|
2005-03-02 23:49:38 +00:00
|
|
|
|
|
|
|
cleanup();
|
|
|
|
|
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|