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