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>
|
2015-06-23 06:29:00 +05:30
|
|
|
#include <thread>
|
|
|
|
#include <iostream>
|
|
|
|
|
2015-08-18 02:55:21 +05:30
|
|
|
// This needs to be included before getopt.h because the latter #defines symbols used by it
|
|
|
|
#include "common/microprofile.h"
|
|
|
|
|
2015-06-23 06:29:00 +05:30
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <getopt.h>
|
|
|
|
#else
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#endif
|
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"
|
2015-10-22 07:49:55 +05:30
|
|
|
#include "core/gdbstub/gdbstub.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"
|
2016-03-01 22:54:18 +05:30
|
|
|
#include "citra/emu_window/emu_window_sdl2.h"
|
2013-08-30 09:05:09 +05:30
|
|
|
|
2015-05-19 09:51:33 +05:30
|
|
|
#include "video_core/video_core.h"
|
|
|
|
|
2015-06-23 06:29:00 +05:30
|
|
|
|
|
|
|
static void PrintHelp()
|
|
|
|
{
|
|
|
|
std::cout << "Usage: citra <filename>" << std::endl;
|
|
|
|
}
|
|
|
|
|
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) {
|
2015-06-23 06:29:00 +05:30
|
|
|
int option_index = 0;
|
|
|
|
std::string boot_filename;
|
|
|
|
static struct option long_options[] = {
|
|
|
|
{ "help", no_argument, 0, 'h' },
|
|
|
|
{ 0, 0, 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
while (optind < argc) {
|
|
|
|
char arg = getopt_long(argc, argv, ":h", long_options, &option_index);
|
|
|
|
if (arg != -1) {
|
|
|
|
switch (arg) {
|
|
|
|
case 'h':
|
|
|
|
PrintHelp();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
boot_filename = argv[optind];
|
|
|
|
optind++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2015-08-18 02:55:21 +05:30
|
|
|
MicroProfileOnThreadCreate("EmuThread");
|
|
|
|
|
2015-06-23 06:29:00 +05:30
|
|
|
if (boot_filename.empty()) {
|
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
|
|
|
|
2015-10-04 20:52:07 +05:30
|
|
|
GDBStub::ToggleServer(Settings::values.use_gdbstub);
|
2015-09-02 18:26:38 +05:30
|
|
|
GDBStub::SetServerPort(static_cast<u32>(Settings::values.gdbstub_port));
|
2015-06-23 06:29:00 +05:30
|
|
|
|
2016-03-01 22:54:18 +05:30
|
|
|
EmuWindow_SDL2* emu_window = new EmuWindow_SDL2;
|
2014-06-19 04:28:09 +05:30
|
|
|
|
2015-05-19 09:51:33 +05:30
|
|
|
VideoCore::g_hw_renderer_enabled = Settings::values.use_hw_renderer;
|
2015-07-23 08:55:30 +05:30
|
|
|
VideoCore::g_shader_jit_enabled = Settings::values.use_shader_jit;
|
2015-05-19 09:51:33 +05:30
|
|
|
|
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
|
|
|
|
2015-08-18 02:55:21 +05:30
|
|
|
MicroProfileShutdown();
|
|
|
|
|
2014-05-17 21:29:18 +05:30
|
|
|
return 0;
|
2013-08-30 09:05:09 +05:30
|
|
|
}
|