2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2008-12-08 05:30:24 +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, 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
|
|
|
|
// -------------
|
2010-07-05 02:05:47 +00:00
|
|
|
// Purpose of this file: Collect boot settings for Core::Init()
|
2008-12-09 14:57:55 +00:00
|
|
|
|
2010-07-05 02:05:47 +00:00
|
|
|
// Call sequence: 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
|
|
|
|
// Boot.cpp CBoot::BootUp()
|
|
|
|
// CBoot::EmulatedBS2_Wii() / GC() or Load_BS2()
|
2008-12-09 14:57:55 +00:00
|
|
|
|
2009-09-02 21:00:45 +00:00
|
|
|
|
2009-01-18 09:49:28 +00:00
|
|
|
// Includes
|
|
|
|
// ----------------
|
2008-12-08 05:30:24 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#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"
|
2009-09-14 06:26:49 +00:00
|
|
|
#include "SysConf.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
#include "Core.h"
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2010-08-03 03:20:44 +00:00
|
|
|
#include "Globals.h"
|
2009-01-03 01:38:44 +00:00
|
|
|
#include "ConfigMain.h"
|
|
|
|
#include "Frame.h"
|
|
|
|
#include "CodeWindow.h"
|
2009-05-08 16:00:16 +00:00
|
|
|
#include "Setup.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
extern CFrame* main_frame;
|
|
|
|
#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
|
|
|
|
2010-11-03 07:37:13 +00:00
|
|
|
// TODO this is an ugly hack which allows us to restore values trampled by per-game settings
|
|
|
|
// Apply fire liberally
|
|
|
|
struct ConfigCache
|
|
|
|
{
|
2010-11-04 12:50:44 +00:00
|
|
|
bool valid, bCPUThread, bSkipIdle, bEnableFPRF, bMMU, bMMUBAT,
|
2010-11-03 07:37:13 +00:00
|
|
|
bAlternateRFI, bFastDiscSpeed, bMergeBlocks;
|
|
|
|
int iTLBHack;
|
|
|
|
};
|
|
|
|
static ConfigCache config_cache;
|
|
|
|
|
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
|
2009-09-03 07:59:24 +00:00
|
|
|
if (main_frame->g_pCodeWindow)
|
2008-12-09 14:57:55 +00:00
|
|
|
{
|
2009-09-03 07:59:24 +00:00
|
|
|
StartUp.bBootToPause = main_frame->g_pCodeWindow->BootToPause();
|
|
|
|
StartUp.bAutomaticStart = main_frame->g_pCodeWindow->AutomaticStart();
|
2010-07-05 02:05:47 +00:00
|
|
|
StartUp.bJITNoBlockCache = main_frame->g_pCodeWindow->JITNoBlockCache();
|
2009-09-03 07:59:24 +00:00
|
|
|
StartUp.bJITBlockLinking = main_frame->g_pCodeWindow->JITBlockLinking();
|
2008-12-09 14:57:55 +00:00
|
|
|
}
|
2009-09-03 07:59:24 +00:00
|
|
|
StartUp.bEnableDebugging = main_frame->g_pCodeWindow ? true : false; // RUNNING_DEBUG
|
2008-12-09 14:57:55 +00:00
|
|
|
#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
|
|
|
|
|
|
|
// Load game specific settings
|
2009-09-13 08:54:46 +00:00
|
|
|
IniFile game_ini;
|
2008-12-08 05:30:24 +00:00
|
|
|
std::string unique_id = StartUp.GetUniqueID();
|
2010-02-02 21:56:29 +00:00
|
|
|
StartUp.m_strGameIni = std::string(File::GetUserPath(D_GAMECONFIG_IDX)) + unique_id + ".ini";
|
2009-09-13 08:54:46 +00:00
|
|
|
if (unique_id.size() == 6 && game_ini.Load(StartUp.m_strGameIni.c_str()))
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2010-11-04 12:50:44 +00:00
|
|
|
config_cache.valid = true;
|
2010-11-03 07:37:13 +00:00
|
|
|
config_cache.bCPUThread = StartUp.bCPUThread;
|
|
|
|
config_cache.bSkipIdle = StartUp.bSkipIdle;
|
|
|
|
config_cache.bEnableFPRF = StartUp.bEnableFPRF;
|
|
|
|
config_cache.bMMU = StartUp.bMMU;
|
|
|
|
config_cache.bMMUBAT = StartUp.bMMUBAT;
|
|
|
|
config_cache.iTLBHack = StartUp.iTLBHack;
|
|
|
|
config_cache.bAlternateRFI = StartUp.bAlternateRFI;
|
|
|
|
config_cache.bFastDiscSpeed = StartUp.bFastDiscSpeed;
|
|
|
|
config_cache.bMergeBlocks = StartUp.bMergeBlocks;
|
2008-12-08 05:30:24 +00:00
|
|
|
// General settings
|
2010-06-03 18:05:08 +00:00
|
|
|
game_ini.Get("Core", "CPUThread", &StartUp.bCPUThread, StartUp.bCPUThread);
|
|
|
|
game_ini.Get("Core", "SkipIdle", &StartUp.bSkipIdle, StartUp.bSkipIdle);
|
|
|
|
game_ini.Get("Core", "EnableFPRF", &StartUp.bEnableFPRF, StartUp.bEnableFPRF);
|
2010-07-29 12:17:47 +00:00
|
|
|
game_ini.Get("Core", "MMU", &StartUp.bMMU, StartUp.bMMU);
|
2010-09-06 14:43:28 +00:00
|
|
|
game_ini.Get("Core", "BAT", &StartUp.bMMUBAT, StartUp.bMMUBAT);
|
2010-09-06 10:27:33 +00:00
|
|
|
game_ini.Get("Core", "TLBHack", &StartUp.iTLBHack, StartUp.iTLBHack);
|
|
|
|
game_ini.Get("Core", "AlternateRFI", &StartUp.bAlternateRFI, StartUp.bAlternateRFI);
|
2010-10-15 21:46:51 +00:00
|
|
|
game_ini.Get("Core", "FastDiscSpeed", &StartUp.bFastDiscSpeed, StartUp.bFastDiscSpeed);
|
2010-09-14 13:50:25 +00:00
|
|
|
game_ini.Get("Core", "BlockMerging", &StartUp.bMergeBlocks, StartUp.bMergeBlocks);
|
2009-02-23 09:34:28 +00:00
|
|
|
// Wii settings
|
2009-01-19 01:30:54 +00:00
|
|
|
if (StartUp.bWii)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-09-14 06:26:49 +00:00
|
|
|
// Flush possible changes to SYSCONF to file
|
|
|
|
SConfig::GetInstance().m_SYSCONF->Save();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-09-13 08:54:46 +00:00
|
|
|
}
|
2008-12-09 14:57:55 +00:00
|
|
|
|
2009-02-23 09:34:28 +00:00
|
|
|
// Run the game
|
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
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
#endif
|
2009-02-23 09:34:28 +00:00
|
|
|
// 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-09-03 07:59:24 +00:00
|
|
|
Core::SetState((main_frame->g_pCodeWindow && StartUp.bBootToPause) ? Core::CORE_PAUSE : Core::CORE_RUN);
|
2008-12-08 05:30:24 +00:00
|
|
|
#else
|
|
|
|
Core::SetState(Core::CORE_RUN);
|
|
|
|
#endif
|
2009-01-03 01:38:44 +00:00
|
|
|
|
2008-12-09 22:20:50 +00:00
|
|
|
return true;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Stop()
|
|
|
|
{
|
|
|
|
Core::Stop();
|
2010-11-03 07:37:13 +00:00
|
|
|
|
|
|
|
SCoreStartupParameter& StartUp = SConfig::GetInstance().m_LocalCoreStartupParameter;
|
|
|
|
|
2010-11-04 12:50:44 +00:00
|
|
|
if (config_cache.valid)
|
|
|
|
{
|
|
|
|
config_cache.valid = false;
|
|
|
|
StartUp.bCPUThread = config_cache.bCPUThread;
|
|
|
|
StartUp.bSkipIdle = config_cache.bSkipIdle;
|
|
|
|
StartUp.bEnableFPRF = config_cache.bEnableFPRF;
|
|
|
|
StartUp.bMMU = config_cache.bMMU;
|
|
|
|
StartUp.bMMUBAT = config_cache.bMMUBAT;
|
|
|
|
StartUp.iTLBHack = config_cache.iTLBHack;
|
|
|
|
StartUp.bAlternateRFI = config_cache.bAlternateRFI;
|
|
|
|
StartUp.bFastDiscSpeed = config_cache.bFastDiscSpeed;
|
|
|
|
StartUp.bMergeBlocks = config_cache.bMergeBlocks;
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-09-02 21:00:45 +00:00
|
|
|
|
2008-12-09 22:20:50 +00:00
|
|
|
} // namespace
|