2014-04-09 00:15:46 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-09 00:15:46 +01:00
|
|
|
// Refer to the license.txt file included.
|
2013-10-02 00:10:47 +01:00
|
|
|
|
2016-02-21 13:13:52 +00:00
|
|
|
#include "audio_core/audio_core.h"
|
2014-04-09 01:15:08 +01:00
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/core_timing.h"
|
2016-02-21 13:13:52 +00:00
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2014-04-11 03:45:40 +01:00
|
|
|
#include "core/hle/hle.h"
|
2014-06-11 03:43:50 +01:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2015-07-29 16:08:00 +01:00
|
|
|
#include "core/hle/kernel/memory.h"
|
2016-09-18 01:38:01 +01:00
|
|
|
#include "core/hw/hw.h"
|
2016-09-21 07:52:38 +01:00
|
|
|
#include "core/system.h"
|
2014-04-09 01:15:08 +01:00
|
|
|
#include "video_core/video_core.h"
|
2013-10-02 00:10:47 +01:00
|
|
|
|
|
|
|
namespace System {
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
static bool is_powered_on{false};
|
2016-08-30 02:28:31 +01:00
|
|
|
|
2016-11-20 01:40:04 +00:00
|
|
|
Result Init(EmuWindow* emu_window, u32 system_mode) {
|
2014-04-11 03:45:40 +01:00
|
|
|
Core::Init();
|
2015-01-09 02:48:18 +00:00
|
|
|
CoreTiming::Init();
|
2014-04-11 03:45:40 +01:00
|
|
|
Memory::Init();
|
2014-04-05 05:01:07 +01:00
|
|
|
HW::Init();
|
2016-11-20 01:40:04 +00:00
|
|
|
Kernel::Init(system_mode);
|
2014-04-11 03:45:40 +01:00
|
|
|
HLE::Init();
|
2016-01-07 19:33:54 +00:00
|
|
|
if (!VideoCore::Init(emu_window)) {
|
|
|
|
return Result::ErrorInitVideoCore;
|
|
|
|
}
|
2016-02-21 13:13:52 +00:00
|
|
|
AudioCore::Init();
|
2015-09-02 13:56:38 +01:00
|
|
|
GDBStub::Init();
|
2016-03-09 21:20:08 +00:00
|
|
|
|
2016-08-30 02:28:31 +01:00
|
|
|
is_powered_on = true;
|
|
|
|
|
2016-03-09 21:20:08 +00:00
|
|
|
return Result::Success;
|
2013-10-02 00:10:47 +01:00
|
|
|
}
|
|
|
|
|
2016-08-30 02:28:31 +01:00
|
|
|
bool IsPoweredOn() {
|
|
|
|
return is_powered_on;
|
|
|
|
}
|
|
|
|
|
2013-10-02 00:10:47 +01:00
|
|
|
void Shutdown() {
|
2015-10-12 01:07:58 +01:00
|
|
|
GDBStub::Shutdown();
|
2016-02-21 13:13:52 +00:00
|
|
|
AudioCore::Shutdown();
|
2014-04-06 21:55:54 +01:00
|
|
|
VideoCore::Shutdown();
|
2014-12-14 07:55:11 +00:00
|
|
|
HLE::Shutdown();
|
2014-06-11 03:43:50 +01:00
|
|
|
Kernel::Shutdown();
|
2014-12-14 07:55:11 +00:00
|
|
|
HW::Shutdown();
|
2015-01-09 02:48:18 +00:00
|
|
|
CoreTiming::Shutdown();
|
2014-12-14 07:55:11 +00:00
|
|
|
Core::Shutdown();
|
2016-08-30 02:28:31 +01:00
|
|
|
|
|
|
|
is_powered_on = false;
|
2013-10-02 00:10:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|