2014-04-09 05:55:53 +05:30
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 11:08:14 +05:30
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-09 05:55:53 +05:30
|
|
|
// Refer to the license.txt file included.
|
2013-08-30 09:05:09 +05:30
|
|
|
|
2015-06-21 01:04:41 +05:30
|
|
|
#include <string>
|
2014-10-28 13:06:00 +05:30
|
|
|
|
2015-05-06 12:36:12 +05:30
|
|
|
#include "common/logging/log.h"
|
2014-10-28 13:06:00 +05:30
|
|
|
#include "common/logging/backend.h"
|
2014-12-07 03:30:08 +05:30
|
|
|
#include "common/logging/filter.h"
|
2013-08-30 09:05:09 +05:30
|
|
|
|
2014-10-28 02:48:28 +05:30
|
|
|
#include "core/settings.h"
|
2014-04-09 05:45:08 +05:30
|
|
|
#include "core/system.h"
|
|
|
|
#include "core/core.h"
|
2014-06-17 03:33:13 +05:30
|
|
|
#include "core/loader/loader.h"
|
2013-08-30 09:05:09 +05:30
|
|
|
|
2014-09-13 05:36:13 +05:30
|
|
|
#include "citra/config.h"
|
2014-04-09 05:45:08 +05:30
|
|
|
#include "citra/emu_window/emu_window_glfw.h"
|
2013-08-30 09:05:09 +05:30
|
|
|
|
2015-05-19 09:51:33 +05:30
|
|
|
#include "video_core/video_core.h"
|
|
|
|
|
2013-08-30 09:05:09 +05:30
|
|
|
/// Application entry point
|
2015-05-07 07:29:59 +05:30
|
|
|
int main(int argc, char **argv) {
|
2014-12-07 03:30:08 +05:30
|
|
|
Log::Filter log_filter(Log::Level::Debug);
|
2015-03-06 23:45:02 +05:30
|
|
|
Log::SetFilter(&log_filter);
|
2013-09-18 08:27:59 +05:30
|
|
|
|
2014-05-05 04:17:42 +05:30
|
|
|
if (argc < 2) {
|
2014-12-06 07:23:49 +05:30
|
|
|
LOG_CRITICAL(Frontend, "Failed to load ROM: No ROM specified");
|
2014-06-19 04:28:09 +05:30
|
|
|
return -1;
|
2014-05-05 04:17:42 +05:30
|
|
|
}
|
2014-05-17 21:29:18 +05:30
|
|
|
|
2014-09-13 05:36:13 +05:30
|
|
|
Config config;
|
2014-12-07 03:30:08 +05:30
|
|
|
log_filter.ParseFilterString(Settings::values.log_filter);
|
2014-11-19 14:19:13 +05:30
|
|
|
|
2014-06-19 04:28:09 +05:30
|
|
|
std::string boot_filename = argv[1];
|
|
|
|
EmuWindow_GLFW* emu_window = new EmuWindow_GLFW;
|
|
|
|
|
2015-05-19 09:51:33 +05:30
|
|
|
VideoCore::g_hw_renderer_enabled = Settings::values.use_hw_renderer;
|
|
|
|
|
2014-06-19 04:28:09 +05:30
|
|
|
System::Init(emu_window);
|
2014-04-01 07:55:55 +05:30
|
|
|
|
2014-09-13 05:36:13 +05:30
|
|
|
Loader::ResultStatus load_result = Loader::LoadFile(boot_filename);
|
|
|
|
if (Loader::ResultStatus::Success != load_result) {
|
2014-12-06 07:23:49 +05:30
|
|
|
LOG_CRITICAL(Frontend, "Failed to load ROM (Error %i)!", load_result);
|
2014-06-19 04:28:09 +05:30
|
|
|
return -1;
|
2014-04-01 07:55:55 +05:30
|
|
|
}
|
2014-04-07 10:23:47 +05:30
|
|
|
|
2014-10-16 07:18:02 +05:30
|
|
|
while (emu_window->IsOpen()) {
|
2014-08-30 08:54:32 +05:30
|
|
|
Core::RunLoop();
|
|
|
|
}
|
2013-08-30 09:05:09 +05:30
|
|
|
|
2015-01-04 08:34:17 +05:30
|
|
|
System::Shutdown();
|
|
|
|
|
2014-04-01 07:55:55 +05:30
|
|
|
delete emu_window;
|
2013-08-30 09:05:09 +05:30
|
|
|
|
2014-05-17 21:29:18 +05:30
|
|
|
return 0;
|
2013-08-30 09:05:09 +05:30
|
|
|
}
|