ppsspp/Core/System.cpp

125 lines
2.8 KiB
C++
Raw Normal View History

2012-11-01 15:19:01 +00:00
// Copyright (C) 2012 PPSSPP 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 or later versions.
2012-11-01 15:19:01 +00:00
// 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 git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#include "MemMap.h"
#include "MIPS/MIPS.h"
#include "MIPS/JitCommon/JitCommon.h"
2012-11-01 15:19:01 +00:00
#include "System.h"
// Bad dependency
#include "GPU/GLES/Framebuffer.h"
#include "GPU/GLES/TextureCache.h"
#include "GPU/GLES/ShaderManager.h"
#include "PSPMixer.h"
#include "HLE/HLE.h"
#include "HLE/sceKernel.h"
#include "HLE/sceKernelMemory.h"
#include "HLE/sceAudio.h"
#include "Config.h"
2012-11-01 15:19:01 +00:00
#include "Core.h"
#include "CoreTiming.h"
#include "CoreParameter.h"
#include "FileSystems/MetaFileSystem.h"
#include "Loaders.h"
#include "ELF/ParamSFO.h"
2013-01-15 12:57:35 +00:00
#include "../Common/LogManager.h"
2012-11-01 15:19:01 +00:00
MetaFileSystem pspFileSystem;
ParamSFOData g_paramSFO;
2012-11-01 15:19:01 +00:00
static CoreParameter coreParameter;
2013-01-13 15:46:45 +00:00
static PSPMixer *mixer;
2012-11-01 15:19:01 +00:00
bool PSP_Init(const CoreParameter &coreParam, std::string *error_string)
{
INFO_LOG(HLE, "PPSSPP %s", PPSSPP_GIT_VERSION);
2012-11-01 15:19:01 +00:00
coreParameter = coreParam;
currentCPU = &mipsr4k;
numCPUs = 1;
Memory::Init();
mipsr4k.Reset();
mipsr4k.pc = 0;
if (coreParameter.enableSound)
{
2013-01-13 15:46:45 +00:00
mixer = new PSPMixer();
host->InitSound(mixer);
2012-11-01 15:19:01 +00:00
}
2013-01-15 12:57:35 +00:00
if (coreParameter.disableG3Dlog)
{
LogManager::GetInstance()->SetEnable(LogTypes::G3D, false);
}
CoreTiming::Init();
2012-11-01 15:19:01 +00:00
// Init all the HLE modules
HLEInit();
// TODO: Check Game INI here for settings, patches and cheats, and modify coreParameter accordingly
if (!LoadFile(coreParameter.fileToStart.c_str(), error_string))
{
2013-01-10 11:27:10 +00:00
pspFileSystem.Shutdown();
CoreTiming::Shutdown();
2012-11-01 15:19:01 +00:00
__KernelShutdown();
HLEShutdown();
host->ShutdownSound();
Memory::Shutdown();
coreParameter.fileToStart = "";
return false;
}
g_Config.AddRecent(coreParameter.fileToStart);
2012-11-01 15:19:01 +00:00
// Setup JIT here.
if (coreParameter.startPaused)
coreState = CORE_STEPPING;
else
coreState = CORE_RUNNING;
return true;
}
bool PSP_IsInited()
{
return currentCPU != 0;
}
void PSP_Shutdown()
{
2013-01-10 11:27:10 +00:00
pspFileSystem.Shutdown();
2012-11-01 15:19:01 +00:00
CoreTiming::Shutdown();
2012-11-01 15:19:01 +00:00
if (coreParameter.enableSound)
{
host->ShutdownSound();
2013-01-13 16:10:59 +00:00
mixer = 0; // deleted in ShutdownSound
2012-11-01 15:19:01 +00:00
}
__KernelShutdown();
HLEShutdown();
2013-01-13 15:46:45 +00:00
Memory::Shutdown();
2012-11-01 15:19:01 +00:00
currentCPU = 0;
}
CoreParameter &PSP_CoreParameter()
2012-11-01 15:19:01 +00:00
{
return coreParameter;
}