2005-03-02 23:49:38 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Gameboy emulator based on gnuboy
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "plugin.h"
|
|
|
|
#include "loader.h"
|
|
|
|
#include "rockmacros.h"
|
|
|
|
|
|
|
|
#if MEM <= 8 && !defined(SIMULATOR)
|
|
|
|
/* On archos this is loaded as an overlay */
|
|
|
|
|
|
|
|
/* These are defined in the linker script */
|
|
|
|
extern unsigned char ovl_start_addr[];
|
|
|
|
extern unsigned char ovl_end_addr[];
|
|
|
|
|
|
|
|
const struct {
|
|
|
|
unsigned long magic;
|
|
|
|
unsigned char *start_addr;
|
|
|
|
unsigned char *end_addr;
|
|
|
|
enum plugin_status (*entry_point)(struct plugin_api*, void*);
|
|
|
|
} header __attribute__ ((section (".header"))) = {
|
|
|
|
0x524f564c, /* ROVL */
|
|
|
|
ovl_start_addr, ovl_end_addr, plugin_start
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2005-03-03 13:50:09 +00:00
|
|
|
#ifdef USE_IRAM
|
|
|
|
extern char iramcopy[];
|
|
|
|
extern char iramstart[];
|
|
|
|
extern char iramend[];
|
|
|
|
#endif
|
|
|
|
|
2005-03-02 23:49:38 +00:00
|
|
|
/* here is a global api struct pointer. while not strictly necessary,
|
|
|
|
it's nice not to have to pass the api pointer in all function calls
|
|
|
|
in the plugin */
|
|
|
|
struct plugin_api* rb;
|
|
|
|
int shut,cleanshut;
|
|
|
|
char *errormsg;
|
|
|
|
int gnuboy_main(char *rom);
|
2005-03-28 00:00:24 +00:00
|
|
|
void pcm_close(void);
|
2005-03-02 23:49:38 +00:00
|
|
|
|
|
|
|
void die(char *message, ...)
|
|
|
|
{
|
|
|
|
shut=1;
|
|
|
|
errormsg=message;
|
|
|
|
}
|
|
|
|
|
2005-04-05 11:33:58 +00:00
|
|
|
void *audio_bufferbase;
|
|
|
|
void *audio_bufferpointer;
|
|
|
|
unsigned int 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setmallocpos(void *pointer)
|
|
|
|
{
|
2005-04-05 11:33:58 +00:00
|
|
|
audio_bufferpointer = pointer;
|
|
|
|
audio_buffer_free = audio_bufferpointer - audio_bufferbase;
|
2005-03-02 23:49:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* this is the plugin entry point */
|
|
|
|
enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|
|
|
{
|
|
|
|
/* this macro should be called as the first thing you do in the plugin.
|
|
|
|
it test that the api version and model the plugin was compiled for
|
|
|
|
matches the machine it is running on */
|
|
|
|
TEST_PLUGIN_API(api);
|
|
|
|
|
|
|
|
/* if you are using a global api pointer, don't forget to copy it!
|
|
|
|
otherwise you will get lovely "I04: IllInstr" errors... :-) */
|
|
|
|
rb = api;
|
2005-03-07 21:41:10 +00:00
|
|
|
|
|
|
|
if (!parameter) {
|
|
|
|
rb->splash(HZ*3, true, "Play gameboy ROM file! (.gb/.gbc)");
|
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|
2005-06-29 18:54:56 +00:00
|
|
|
|
|
|
|
audio_bufferbase = audio_bufferpointer
|
|
|
|
= rb->plugin_get_audio_buffer(&audio_buffer_free);
|
2005-06-28 21:19:40 +00:00
|
|
|
#if MEM <= 8 && !defined(SIMULATOR)
|
2005-06-29 18:54:56 +00:00
|
|
|
/* loaded as an overlay, protect from overwriting ourselves */
|
|
|
|
if ((unsigned)(ovl_start_addr - (unsigned char *)audio_bufferbase)
|
|
|
|
< audio_buffer_free)
|
|
|
|
audio_buffer_free = ovl_start_addr - (unsigned char *)audio_bufferbase;
|
2005-06-28 21:19:40 +00:00
|
|
|
#endif
|
|
|
|
|
2005-03-03 13:50:09 +00:00
|
|
|
#ifdef USE_IRAM
|
2005-03-07 21:41:10 +00:00
|
|
|
memcpy(iramstart, iramcopy, iramend-iramstart);
|
2005-03-03 13:50:09 +00:00
|
|
|
#endif
|
2005-03-02 23:49:38 +00:00
|
|
|
shut=0;
|
|
|
|
cleanshut=0;
|
|
|
|
|
|
|
|
/* now go ahead and have fun! */
|
2005-03-03 19:54:47 +00:00
|
|
|
/* rb->splash(HZ*2, true, "Rockboy v0.3"); */
|
|
|
|
/* rb->lcd_clear_display(); */
|
2005-03-02 23:49:38 +00:00
|
|
|
gnuboy_main(parameter);
|
|
|
|
|
|
|
|
if(shut&&!cleanshut) {
|
|
|
|
rb->splash(HZ*2, true, errormsg);
|
|
|
|
return PLUGIN_ERROR;
|
|
|
|
}
|
2005-03-28 00:00:24 +00:00
|
|
|
pcm_close();
|
2005-03-02 23:49:38 +00:00
|
|
|
rb->splash(HZ*2, true, "Shutting down.. byebye ^^");
|
|
|
|
|
|
|
|
cleanup();
|
|
|
|
|
2005-03-28 00:00:24 +00:00
|
|
|
|
2005-03-02 23:49:38 +00:00
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|