2014-04-08 19:15:46 -04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 00:38:14 -05: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-02-21 08:13:52 -05:00
|
|
|
#include "audio_core/audio_core.h"
|
|
|
|
|
2014-04-08 20:15:08 -04:00
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/core_timing.h"
|
|
|
|
#include "core/system.h"
|
2016-02-21 08:13:52 -05:00
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2014-04-08 20:15:08 -04:00
|
|
|
#include "core/hw/hw.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 11:08:00 -04:00
|
|
|
#include "core/hle/kernel/memory.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-08-29 21:28:31 -04:00
|
|
|
static bool is_powered_on{ false };
|
|
|
|
|
2016-01-07 14:33:54 -05: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 02:55:11 -05:00
|
|
|
Kernel::Init();
|
2014-04-10 22:45:40 -04:00
|
|
|
HLE::Init();
|
2016-01-07 14:33:54 -05:00
|
|
|
if (!VideoCore::Init(emu_window)) {
|
|
|
|
return Result::ErrorInitVideoCore;
|
|
|
|
}
|
2016-02-21 08:13:52 -05:00
|
|
|
AudioCore::Init();
|
2015-09-02 08:56:38 -04:00
|
|
|
GDBStub::Init();
|
2016-03-09 16:20:08 -05:00
|
|
|
|
2016-08-29 21:28:31 -04:00
|
|
|
is_powered_on = true;
|
|
|
|
|
2016-03-09 16:20:08 -05: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 08:13:52 -05:00
|
|
|
AudioCore::Shutdown();
|
2014-04-06 16:55:54 -04:00
|
|
|
VideoCore::Shutdown();
|
2014-12-14 02:55:11 -05:00
|
|
|
HLE::Shutdown();
|
2014-06-10 22:43:50 -04:00
|
|
|
Kernel::Shutdown();
|
2014-12-14 02:55:11 -05:00
|
|
|
HW::Shutdown();
|
2015-01-08 21:48:18 -05:00
|
|
|
CoreTiming::Shutdown();
|
2014-12-14 02:55:11 -05:00
|
|
|
Core::Shutdown();
|
2016-08-29 21:28:31 -04:00
|
|
|
|
|
|
|
is_powered_on = false;
|
2013-10-01 19:10:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|