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