ppsspp/Core/System.cpp

118 lines
2.6 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 "Core.h"
#include "CoreTiming.h"
#include "CoreParameter.h"
#include "FileSystems/MetaFileSystem.h"
#include "Loaders.h"
#include "ELF/ParamSFO.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)
{
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
}
// 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();
2012-11-01 15:19:01 +00:00
CoreTiming::ClearPendingEvents();
CoreTiming::UnregisterAllEvents();
__KernelShutdown();
HLEShutdown();
host->ShutdownSound();
Memory::Shutdown();
coreParameter.fileToStart = "";
return false;
}
// 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
TextureCache_Clear(true);
CoreTiming::ClearPendingEvents();
CoreTiming::UnregisterAllEvents();
if (coreParameter.enableSound)
{
host->ShutdownSound();
2013-01-13 15:46:45 +00:00
delete mixer;
mixer = 0;
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;
}