2008-09-16 07:42:21 +02:00
|
|
|
/****************************************************************************
|
2008-09-17 04:27:55 +02:00
|
|
|
* Visual Boy Advance GX
|
|
|
|
*
|
|
|
|
* Tantric September 2008
|
|
|
|
*
|
|
|
|
* vba.cpp
|
|
|
|
*
|
|
|
|
* This file controls overall program flow. Most things start and end here!
|
|
|
|
***************************************************************************/
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
#include <gccore.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <wiiuse/wpad.h>
|
|
|
|
#include <sdcard/card_cmn.h>
|
|
|
|
#include <sdcard/wiisd_io.h>
|
|
|
|
#include <sdcard/card_io.h>
|
|
|
|
#include <fat.h>
|
|
|
|
|
|
|
|
#ifdef WII_DVD
|
|
|
|
extern "C" {
|
|
|
|
#include <di/di.h>
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "vbasupport.h"
|
2008-09-17 03:54:21 +02:00
|
|
|
#include "preferences.h"
|
2008-09-16 07:42:21 +02:00
|
|
|
#include "audio.h"
|
|
|
|
#include "dvd.h"
|
|
|
|
#include "smbop.h"
|
|
|
|
#include "menu.h"
|
|
|
|
#include "menudraw.h"
|
|
|
|
#include "input.h"
|
|
|
|
#include "video.h"
|
|
|
|
#include "vbaconfig.h"
|
|
|
|
|
2008-09-29 09:35:26 +02:00
|
|
|
extern bool ROMLoaded;
|
2008-09-16 07:42:21 +02:00
|
|
|
extern int emulating;
|
2008-10-18 22:40:48 +02:00
|
|
|
int ConfigRequested = 0;
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* main
|
|
|
|
*
|
|
|
|
* Program entry
|
|
|
|
****************************************************************************/
|
|
|
|
int main()
|
|
|
|
{
|
2008-09-17 03:54:21 +02:00
|
|
|
#ifdef WII_DVD
|
2008-09-16 07:42:21 +02:00
|
|
|
DI_Init(); // first
|
2008-09-17 03:54:21 +02:00
|
|
|
#endif
|
2008-09-16 07:42:21 +02:00
|
|
|
|
2008-09-17 03:54:21 +02:00
|
|
|
// Initialise controllers
|
2008-09-16 07:42:21 +02:00
|
|
|
#ifdef HW_RVL
|
|
|
|
WPAD_Init();
|
|
|
|
// read wiimote accelerometer and IR data
|
|
|
|
WPAD_SetDataFormat(WPAD_CHAN_ALL,WPAD_FMT_BTNS_ACC_IR);
|
|
|
|
WPAD_SetVRes(WPAD_CHAN_ALL,640,480);
|
|
|
|
#endif
|
2008-09-17 03:54:21 +02:00
|
|
|
PAD_Init ();
|
|
|
|
|
|
|
|
int selectedMenu = -1;
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
InitialiseVideo();
|
|
|
|
|
|
|
|
// Initialise freetype font system
|
|
|
|
if (FT_Init ())
|
|
|
|
{
|
|
|
|
printf ("Cannot initialise font subsystem!\n");
|
|
|
|
while (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize libFAT for SD and USB
|
2008-10-03 08:58:21 +02:00
|
|
|
fatInit (8, false);
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
// Initialize DVD subsystem (GameCube only)
|
2008-09-26 10:10:36 +02:00
|
|
|
#ifdef HW_DOL
|
2008-09-16 07:42:21 +02:00
|
|
|
DVD_Init ();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Check if DVD drive belongs to a Wii
|
|
|
|
SetDVDDriveType();
|
|
|
|
|
|
|
|
InitialiseSound();
|
|
|
|
|
|
|
|
InitialisePalette();
|
|
|
|
|
|
|
|
// Set defaults
|
|
|
|
DefaultSettings ();
|
|
|
|
|
2008-09-17 03:54:21 +02:00
|
|
|
// Load preferences
|
|
|
|
if(!LoadPrefs())
|
|
|
|
{
|
|
|
|
WaitPrompt((char*) "Preferences reset - check settings!");
|
|
|
|
selectedMenu = 2; // change to preferences menu
|
|
|
|
}
|
|
|
|
|
2008-09-16 07:42:21 +02:00
|
|
|
//Main loop
|
|
|
|
while(1)
|
|
|
|
{
|
2008-10-18 22:40:48 +02:00
|
|
|
ResetVideo_Menu (); // change to menu video mode
|
|
|
|
MainMenu(selectedMenu);
|
|
|
|
selectedMenu = 3; // return to game menu from now on
|
|
|
|
|
2008-09-16 07:42:21 +02:00
|
|
|
while (emulating)
|
|
|
|
{
|
|
|
|
emulator.emuMain(emulator.emuCount);
|
2008-10-18 22:40:48 +02:00
|
|
|
|
|
|
|
if(ConfigRequested)
|
|
|
|
{
|
|
|
|
ConfigRequested = 0;
|
|
|
|
break;
|
|
|
|
}
|
2008-09-16 07:42:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|