2008-12-08 05:30:24 +00:00
|
|
|
|
// Copyright (C) 2003-2008 Dolphin Project.
|
|
|
|
|
|
|
|
|
|
// 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, version 2.0.
|
|
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
2008-12-09 14:57:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// =======================================================
|
|
|
|
|
// File description
|
|
|
|
|
// -------------
|
|
|
|
|
/* Purpose of this file: Collect boot settings for Core::Init()
|
|
|
|
|
|
|
|
|
|
Call sequenc: This file has one of the first function called when a game is booted,
|
|
|
|
|
the boot sequence in the code is:
|
|
|
|
|
|
|
|
|
|
DolphinWX: GameListCtrl.cpp OnActivated
|
|
|
|
|
BootManager.cpp BootCore
|
|
|
|
|
Core Core.cpp Init Thread creation
|
|
|
|
|
EmuThread Calls CBoot::BootUp
|
2009-01-07 02:59:19 +00:00
|
|
|
|
Boot.cpp CBoot::BootUp()
|
|
|
|
|
CBoot::EmulatedBIOS_Wii() / GC() or Load_BIOS()
|
2008-12-09 14:57:55 +00:00
|
|
|
|
*/
|
|
|
|
|
// =============
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-01-18 09:49:28 +00:00
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Includes
|
|
|
|
|
// ----------------
|
2008-12-08 05:30:24 +00:00
|
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
#include "Globals.h"
|
|
|
|
|
#include "Common.h"
|
|
|
|
|
#include "IniFile.h"
|
|
|
|
|
#include "BootManager.h"
|
|
|
|
|
#include "ISOFile.h"
|
|
|
|
|
#include "Volume.h"
|
|
|
|
|
#include "VolumeCreator.h"
|
2009-01-17 23:41:21 +00:00
|
|
|
|
#include "ConfigManager.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
#include "Core.h"
|
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2009-01-03 01:38:44 +00:00
|
|
|
|
#include "ConfigMain.h"
|
|
|
|
|
#include "Frame.h"
|
|
|
|
|
#include "CodeWindow.h"
|
2009-02-09 15:29:35 +00:00
|
|
|
|
#include "../../../Externals/MusicMod/Main/Src/Setup.h"
|
2009-01-03 01:38:44 +00:00
|
|
|
|
#ifdef MUSICMOD
|
2009-02-09 15:29:35 +00:00
|
|
|
|
#include "../../../Externals/MusicMod/Main/Src/Main.h" // MusicMod
|
2009-01-03 01:38:44 +00:00
|
|
|
|
#endif
|
2008-12-08 05:30:24 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
|
extern CFrame* main_frame;
|
|
|
|
|
extern CCodeWindow* g_pCodeWindow;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
namespace BootManager
|
|
|
|
|
{
|
|
|
|
|
#ifdef _WIN32
|
2009-01-18 09:49:28 +00:00
|
|
|
|
extern "C" HINSTANCE wxGetInstance();
|
2008-12-08 05:30:24 +00:00
|
|
|
|
#endif
|
2009-01-18 09:49:28 +00:00
|
|
|
|
/////////////////////////////////
|
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
2009-01-18 09:49:28 +00:00
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Boot the ISO or file
|
|
|
|
|
// ----------------
|
2008-12-08 05:30:24 +00:00
|
|
|
|
bool BootCore(const std::string& _rFilename)
|
|
|
|
|
{
|
2009-01-18 00:45:48 +00:00
|
|
|
|
SCoreStartupParameter& StartUp = SConfig::GetInstance().m_LocalCoreStartupParameter;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
2008-12-09 14:57:55 +00:00
|
|
|
|
// Use custom settings for debugging mode
|
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
|
if (g_pCodeWindow)
|
|
|
|
|
{
|
|
|
|
|
// StartUp.bUseDualCore = code_frame->UseDualCore();
|
|
|
|
|
StartUp.bUseJIT = !g_pCodeWindow->UseInterpreter();
|
2009-01-05 02:52:55 +00:00
|
|
|
|
StartUp.bBootToPause = g_pCodeWindow->BootToPause();
|
2008-12-09 14:57:55 +00:00
|
|
|
|
StartUp.bAutomaticStart = g_pCodeWindow->AutomaticStart();
|
2009-01-07 07:35:12 +00:00
|
|
|
|
StartUp.bJITUnlimitedCache = g_pCodeWindow->UnlimitedJITCache();
|
2009-01-20 16:52:46 +00:00
|
|
|
|
StartUp.bJITBlockLinking = g_pCodeWindow->JITBlockLinking();
|
2008-12-09 14:57:55 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// StartUp.bUseDualCore = false;
|
|
|
|
|
// StartUp.bUseJIT = true;
|
|
|
|
|
}
|
|
|
|
|
StartUp.bEnableDebugging = g_pCodeWindow ? true : false; // RUNNING_DEBUG
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
|
StartUp.m_BootType = SCoreStartupParameter::BOOT_ISO;
|
|
|
|
|
StartUp.m_strFilename = _rFilename;
|
2009-01-19 20:06:03 +00:00
|
|
|
|
SConfig::GetInstance().m_LastFilename = _rFilename;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
StartUp.bRunCompareClient = false;
|
|
|
|
|
StartUp.bRunCompareServer = false;
|
2008-12-09 14:57:55 +00:00
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
StartUp.hInstance = wxGetInstance();
|
|
|
|
|
#ifdef _M_X64
|
|
|
|
|
StartUp.bUseFastMem = true;
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
2009-01-18 09:49:28 +00:00
|
|
|
|
// If for example the ISO file is bad we return here
|
|
|
|
|
if (!StartUp.AutoSetup(SCoreStartupParameter::BOOT_DEFAULT)) return false;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
2009-01-18 09:49:28 +00:00
|
|
|
|
// ====================================================
|
2008-12-08 05:30:24 +00:00
|
|
|
|
// Load game specific settings
|
|
|
|
|
// ----------------
|
|
|
|
|
IniFile ini;
|
|
|
|
|
std::string unique_id = StartUp.GetUniqueID();
|
|
|
|
|
if (unique_id.size() == 6 && ini.Load((FULL_GAMECONFIG_DIR + unique_id + ".ini").c_str()))
|
|
|
|
|
{
|
|
|
|
|
// ------------------------------------------------
|
|
|
|
|
// General settings
|
|
|
|
|
// ----------------
|
|
|
|
|
ini.Get("Core", "UseDualCore", &StartUp.bUseDualCore, StartUp.bUseDualCore);
|
|
|
|
|
ini.Get("Core", "SkipIdle", &StartUp.bSkipIdle, StartUp.bSkipIdle);
|
|
|
|
|
ini.Get("Core", "OptimizeQuantizers", &StartUp.bOptimizeQuantizers, StartUp.bOptimizeQuantizers);
|
2008-12-09 22:20:50 +00:00
|
|
|
|
ini.Get("Core", "TLBHack", &StartUp.iTLBHack, StartUp.iTLBHack);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
2009-01-19 01:30:54 +00:00
|
|
|
|
if (StartUp.bWii)
|
2008-12-08 05:30:24 +00:00
|
|
|
|
{
|
2009-01-19 01:30:54 +00:00
|
|
|
|
// ------------------------------------------------
|
|
|
|
|
// Update SYSCONF with game specific settings
|
|
|
|
|
// ----------------
|
|
|
|
|
bool bEnableProgressiveScan, bEnableWideScreen;
|
|
|
|
|
//bRefreshList = false;
|
|
|
|
|
FILE* pStream; // file handle
|
|
|
|
|
u8 m_SYSCONF[0x4000]; // SYSCONF file
|
|
|
|
|
u16 IPL_PGS = 0x17CC; // pregressive scan
|
|
|
|
|
u16 IPL_AR = 0x04D9; // widescreen
|
|
|
|
|
std::string FullSYSCONFPath = FULL_WII_USER_DIR "shared2/sys/SYSCONF";
|
|
|
|
|
|
|
|
|
|
// Load Wii SYSCONF
|
|
|
|
|
pStream = NULL;
|
|
|
|
|
pStream = fopen(FullSYSCONFPath.c_str(), "rb");
|
|
|
|
|
if (pStream != NULL)
|
|
|
|
|
{
|
|
|
|
|
fread(m_SYSCONF, 1, 0x4000, pStream);
|
|
|
|
|
fclose(pStream);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
2009-01-19 01:30:54 +00:00
|
|
|
|
//wxMessageBox(wxString::Format(": %02x", m_SYSCONF[IPL_AR]));
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
2009-01-19 01:30:54 +00:00
|
|
|
|
ini.Get("Core", "EnableProgressiveScan", &bEnableProgressiveScan, m_SYSCONF[IPL_PGS] != 0);
|
|
|
|
|
ini.Get("Core", "EnableWideScreen", &bEnableWideScreen, m_SYSCONF[IPL_AR] != 0);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
2009-01-19 01:30:54 +00:00
|
|
|
|
m_SYSCONF[IPL_PGS] = bEnableProgressiveScan;
|
|
|
|
|
m_SYSCONF[IPL_AR] = bEnableWideScreen;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
2009-01-19 01:30:54 +00:00
|
|
|
|
//wxMessageBox(wxString::Format(": %02x", m_SYSCONF[IPL_AR]));
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
2009-01-19 01:30:54 +00:00
|
|
|
|
// Enable custom Wii SYSCONF settings by saving the file to shared2
|
|
|
|
|
pStream = NULL;
|
|
|
|
|
pStream = fopen(FullSYSCONFPath.c_str(), "wb");
|
|
|
|
|
if (pStream != NULL)
|
|
|
|
|
{
|
|
|
|
|
fwrite(m_SYSCONF, 1, 0x4000, pStream);
|
|
|
|
|
fclose(pStream);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
PanicAlert("Could not write to %s", FullSYSCONFPath.c_str());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2009-01-19 01:30:54 +00:00
|
|
|
|
PanicAlert("Could not read %s", FullSYSCONFPath.c_str());
|
|
|
|
|
}
|
|
|
|
|
// ---------
|
2008-12-08 05:30:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-01-18 09:49:28 +00:00
|
|
|
|
// ==============
|
2008-12-09 14:57:55 +00:00
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
|
if(main_frame)
|
2008-12-09 14:57:55 +00:00
|
|
|
|
{
|
2009-01-18 09:49:28 +00:00
|
|
|
|
// Save the window handle of the eventual parent to the rendering window
|
2008-12-08 05:30:24 +00:00
|
|
|
|
StartUp.hMainWindow = main_frame->GetRenderHandle();
|
2008-12-09 14:57:55 +00:00
|
|
|
|
|
|
|
|
|
// Now that we know if we have a Wii game we can run this
|
|
|
|
|
main_frame->ModifyStatusBar();
|
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
#endif
|
|
|
|
|
// init the core
|
2009-01-18 01:45:53 +00:00
|
|
|
|
if (!Core::Init())
|
2008-12-08 05:30:24 +00:00
|
|
|
|
{
|
|
|
|
|
PanicAlert("Couldn't init the core.\nCheck your configuration.");
|
2008-12-09 22:20:50 +00:00
|
|
|
|
return false;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
|
// Boot to pause or not
|
2009-01-05 02:52:55 +00:00
|
|
|
|
Core::SetState((g_pCodeWindow && StartUp.bBootToPause)
|
2008-12-08 05:30:24 +00:00
|
|
|
|
? Core::CORE_PAUSE : Core::CORE_RUN);
|
|
|
|
|
#else
|
|
|
|
|
Core::SetState(Core::CORE_RUN);
|
|
|
|
|
#endif
|
2009-01-03 01:38:44 +00:00
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Music mod
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
#ifdef MUSICMOD
|
|
|
|
|
MusicMod::Main(StartUp.m_strFilename);
|
|
|
|
|
#endif
|
|
|
|
|
///////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
2008-12-09 22:20:50 +00:00
|
|
|
|
return true;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Stop()
|
|
|
|
|
{
|
|
|
|
|
Core::Stop();
|
|
|
|
|
}
|
2009-01-18 09:49:28 +00:00
|
|
|
|
/////////////////////////////////
|
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
2008-12-09 22:20:50 +00:00
|
|
|
|
} // namespace
|