2014-04-09 00:25:53 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-09 00:25:53 +00:00
|
|
|
// Refer to the license.txt file included.
|
2013-08-30 03:35:09 +00:00
|
|
|
|
2015-06-23 00:59:00 +00:00
|
|
|
#include <iostream>
|
2016-04-05 12:29:55 +00:00
|
|
|
#include <memory>
|
2016-09-18 00:38:01 +00:00
|
|
|
#include <string>
|
|
|
|
#include <thread>
|
2015-06-23 00:59:00 +00:00
|
|
|
|
2015-08-17 21:25:21 +00:00
|
|
|
// This needs to be included before getopt.h because the latter #defines symbols used by it
|
|
|
|
#include "common/microprofile.h"
|
|
|
|
|
2015-06-23 00:59:00 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <getopt.h>
|
|
|
|
#else
|
|
|
|
#include <getopt.h>
|
2016-09-18 00:38:01 +00:00
|
|
|
#include <unistd.h>
|
2015-06-23 00:59:00 +00:00
|
|
|
#endif
|
2014-10-28 07:36:00 +00:00
|
|
|
|
2016-06-08 05:53:41 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <Windows.h>
|
|
|
|
#endif
|
|
|
|
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "citra/config.h"
|
|
|
|
#include "citra/emu_window/emu_window_sdl2.h"
|
2014-10-28 07:36:00 +00:00
|
|
|
#include "common/logging/backend.h"
|
2014-12-06 22:00:08 +00:00
|
|
|
#include "common/logging/filter.h"
|
2016-09-18 00:38:01 +00:00
|
|
|
#include "common/logging/log.h"
|
2016-04-19 01:24:21 +00:00
|
|
|
#include "common/scm_rev.h"
|
2016-03-15 02:59:14 +00:00
|
|
|
#include "common/scope_exit.h"
|
2016-06-08 05:53:41 +00:00
|
|
|
#include "common/string_util.h"
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "core/core.h"
|
2015-10-22 02:19:55 +00:00
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2014-06-16 22:03:13 +00:00
|
|
|
#include "core/loader/loader.h"
|
2016-09-18 00:38:01 +00:00
|
|
|
#include "core/settings.h"
|
|
|
|
#include "core/system.h"
|
2015-05-19 04:21:33 +00:00
|
|
|
#include "video_core/video_core.h"
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
static void PrintHelp(const char* argv0) {
|
|
|
|
std::cout << "Usage: " << argv0
|
|
|
|
<< " [options] <filename>\n"
|
2016-04-19 01:24:21 +00:00
|
|
|
"-g, --gdbport=NUMBER Enable gdb stub on port NUMBER\n"
|
|
|
|
"-h, --help Display this help and exit\n"
|
|
|
|
"-v, --version Output version information and exit\n";
|
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
static void PrintVersion() {
|
2016-04-19 01:24:21 +00:00
|
|
|
std::cout << "Citra " << Common::g_scm_branch << " " << Common::g_scm_desc << std::endl;
|
2015-06-23 00:59:00 +00:00
|
|
|
}
|
|
|
|
|
2013-08-30 03:35:09 +00:00
|
|
|
/// Application entry point
|
2016-09-18 00:38:01 +00:00
|
|
|
int main(int argc, char** argv) {
|
2016-04-07 02:27:28 +00:00
|
|
|
Config config;
|
2015-06-23 00:59:00 +00:00
|
|
|
int option_index = 0;
|
2016-04-07 02:27:28 +00:00
|
|
|
bool use_gdbstub = Settings::values.use_gdbstub;
|
|
|
|
u32 gdb_port = static_cast<u32>(Settings::values.gdbstub_port);
|
2016-09-18 00:38:01 +00:00
|
|
|
char* endarg;
|
2016-06-08 05:53:41 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
int argc_w;
|
|
|
|
auto argv_w = CommandLineToArgvW(GetCommandLineW(), &argc_w);
|
|
|
|
|
|
|
|
if (argv_w == nullptr) {
|
|
|
|
LOG_CRITICAL(Frontend, "Failed to get command line arguments");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
2015-06-23 00:59:00 +00:00
|
|
|
std::string boot_filename;
|
2016-04-06 11:01:00 +00:00
|
|
|
|
2016-09-19 01:01:46 +00:00
|
|
|
static struct option long_options[] = {
|
|
|
|
{"gdbport", required_argument, 0, 'g'},
|
|
|
|
{"help", no_argument, 0, 'h'},
|
|
|
|
{"version", no_argument, 0, 'v'},
|
|
|
|
{0, 0, 0, 0},
|
|
|
|
};
|
2015-06-23 00:59:00 +00:00
|
|
|
|
|
|
|
while (optind < argc) {
|
2016-04-19 01:24:21 +00:00
|
|
|
char arg = getopt_long(argc, argv, "g:hv", long_options, &option_index);
|
2015-06-23 00:59:00 +00:00
|
|
|
if (arg != -1) {
|
|
|
|
switch (arg) {
|
2016-04-06 11:01:00 +00:00
|
|
|
case 'g':
|
|
|
|
errno = 0;
|
|
|
|
gdb_port = strtoul(optarg, &endarg, 0);
|
2016-04-07 02:27:28 +00:00
|
|
|
use_gdbstub = true;
|
2016-09-18 00:38:01 +00:00
|
|
|
if (endarg == optarg)
|
|
|
|
errno = EINVAL;
|
2016-04-06 11:01:00 +00:00
|
|
|
if (errno != 0) {
|
|
|
|
perror("--gdbport");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
break;
|
2016-04-19 01:24:21 +00:00
|
|
|
case 'h':
|
|
|
|
PrintHelp(argv[0]);
|
|
|
|
return 0;
|
|
|
|
case 'v':
|
|
|
|
PrintVersion();
|
|
|
|
return 0;
|
2015-06-23 00:59:00 +00:00
|
|
|
}
|
|
|
|
} else {
|
2016-06-08 05:53:41 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
boot_filename = Common::UTF16ToUTF8(argv_w[optind]);
|
|
|
|
#else
|
2015-06-23 00:59:00 +00:00
|
|
|
boot_filename = argv[optind];
|
2016-06-08 05:53:41 +00:00
|
|
|
#endif
|
2015-06-23 00:59:00 +00:00
|
|
|
optind++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-08 05:53:41 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
LocalFree(argv_w);
|
|
|
|
#endif
|
|
|
|
|
2014-12-06 22:00:08 +00:00
|
|
|
Log::Filter log_filter(Log::Level::Debug);
|
2015-03-06 18:15:02 +00:00
|
|
|
Log::SetFilter(&log_filter);
|
2013-09-18 02:57:59 +00:00
|
|
|
|
2015-08-17 21:25:21 +00:00
|
|
|
MicroProfileOnThreadCreate("EmuThread");
|
2016-03-15 02:59:14 +00:00
|
|
|
SCOPE_EXIT({ MicroProfileShutdown(); });
|
2015-08-17 21:25:21 +00:00
|
|
|
|
2015-06-23 00:59:00 +00:00
|
|
|
if (boot_filename.empty()) {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_CRITICAL(Frontend, "Failed to load ROM: No ROM specified");
|
2014-06-18 22:58:09 +00:00
|
|
|
return -1;
|
2014-05-04 22:47:42 +00:00
|
|
|
}
|
2014-05-17 15:59:18 +00:00
|
|
|
|
2014-12-06 22:00:08 +00:00
|
|
|
log_filter.ParseFilterString(Settings::values.log_filter);
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2016-04-11 13:20:05 +00:00
|
|
|
// Apply the command line arguments
|
|
|
|
Settings::values.gdbstub_port = gdb_port;
|
|
|
|
Settings::values.use_gdbstub = use_gdbstub;
|
|
|
|
Settings::Apply();
|
2015-06-23 00:59:00 +00:00
|
|
|
|
2016-04-05 12:29:55 +00:00
|
|
|
std::unique_ptr<EmuWindow_SDL2> emu_window = std::make_unique<EmuWindow_SDL2>();
|
2014-06-18 22:58:09 +00:00
|
|
|
|
2016-03-15 02:59:14 +00:00
|
|
|
System::Init(emu_window.get());
|
|
|
|
SCOPE_EXIT({ System::Shutdown(); });
|
2014-04-01 02:25:55 +00:00
|
|
|
|
2016-05-18 21:06:50 +00:00
|
|
|
std::unique_ptr<Loader::AppLoader> loader = Loader::GetLoader(boot_filename);
|
2016-05-17 22:06:33 +00:00
|
|
|
if (!loader) {
|
|
|
|
LOG_CRITICAL(Frontend, "Failed to obtain loader for %s!", boot_filename.c_str());
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Loader::ResultStatus load_result = loader->Load();
|
2014-09-13 00:06:13 +00:00
|
|
|
if (Loader::ResultStatus::Success != load_result) {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_CRITICAL(Frontend, "Failed to load ROM (Error %i)!", load_result);
|
2014-06-18 22:58:09 +00:00
|
|
|
return -1;
|
2014-04-01 02:25:55 +00:00
|
|
|
}
|
2014-04-07 04:53:47 +00:00
|
|
|
|
2014-10-16 01:48:02 +00:00
|
|
|
while (emu_window->IsOpen()) {
|
2014-08-30 03:24:32 +00:00
|
|
|
Core::RunLoop();
|
|
|
|
}
|
2013-08-30 03:35:09 +00:00
|
|
|
|
2014-05-17 15:59:18 +00:00
|
|
|
return 0;
|
2013-08-30 03:35:09 +00:00
|
|
|
}
|