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