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