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>
|
2017-12-03 10:29:48 +01:00
|
|
|
#include <regex>
|
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
|
|
|
#include <getopt.h>
|
2017-12-29 19:04:10 +01:00
|
|
|
#ifndef _MSC_VER
|
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
|
2017-06-25 02:38:16 +02:00
|
|
|
// windows.h needs to be included before shellapi.h
|
2016-12-03 21:08:02 +01:00
|
|
|
#include <windows.h>
|
2017-06-25 02:38:16 +02:00
|
|
|
|
|
|
|
#include <shellapi.h>
|
2016-06-08 07:53:41 +02:00
|
|
|
#endif
|
|
|
|
|
2016-09-20 17:21:23 +02:00
|
|
|
#include "citra/config.h"
|
|
|
|
#include "citra/emu_window/emu_window_sdl2.h"
|
2018-02-20 01:51:27 +01:00
|
|
|
#include "common/common_paths.h"
|
2017-11-14 22:59:18 +01:00
|
|
|
#include "common/file_util.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"
|
2017-11-14 22:59:18 +01:00
|
|
|
#include "core/file_sys/cia_container.h"
|
2015-10-22 04:19:55 +02:00
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2017-11-14 22:59:18 +01:00
|
|
|
#include "core/hle/service/am/am.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"
|
2017-12-03 10:29:48 +01:00
|
|
|
#include "network/network.h"
|
2015-05-19 06:21:33 +02:00
|
|
|
|
2018-03-16 02:36:53 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
extern "C" {
|
2018-03-16 22:06:33 +01:00
|
|
|
// tells Nvidia drivers to use the dedicated GPU by default on laptops with switchable graphics
|
2018-03-16 02:36:53 +01:00
|
|
|
__declspec(dllexport) unsigned long NvOptimusEnablement = 0x00000001;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
static void PrintHelp(const char* argv0) {
|
2017-12-17 04:43:09 +01:00
|
|
|
std::cout << "Usage: " << argv0
|
|
|
|
<< " [options] <filename>\n"
|
|
|
|
"-g, --gdbport=NUMBER Enable gdb stub on port NUMBER\n"
|
|
|
|
"-i, --install=FILE Installs a specified CIA file\n"
|
|
|
|
"-m, --multiplayer=nick:password@address:port"
|
|
|
|
" Nickname, password, address and port for multiplayer\n"
|
|
|
|
"-r, --movie-record=[file] Record a movie (game inputs) to the given file\n"
|
|
|
|
"-p, --movie-play=[file] Playback the movie (game inputs) from the given file\n"
|
2018-03-29 07:54:34 +02:00
|
|
|
"-f, --fullscreen Start in fullscreen mode\n"
|
2017-12-17 04:43:09 +01:00
|
|
|
"-h, --help Display this help and exit\n"
|
|
|
|
"-v, --version Output version information and exit\n";
|
2016-04-19 03:24:21 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-12-03 10:29:48 +01:00
|
|
|
static void OnStateChanged(const Network::RoomMember::State& state) {
|
|
|
|
switch (state) {
|
|
|
|
case Network::RoomMember::State::Idle:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_DEBUG(Network, "Network is idle");
|
2017-12-03 10:29:48 +01:00
|
|
|
break;
|
|
|
|
case Network::RoomMember::State::Joining:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_DEBUG(Network, "Connection sequence to room started");
|
2017-12-03 10:29:48 +01:00
|
|
|
break;
|
|
|
|
case Network::RoomMember::State::Joined:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_DEBUG(Network, "Successfully joined to the room");
|
2017-12-03 10:29:48 +01:00
|
|
|
break;
|
|
|
|
case Network::RoomMember::State::LostConnection:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_DEBUG(Network, "Lost connection to the room");
|
2017-12-03 10:29:48 +01:00
|
|
|
break;
|
|
|
|
case Network::RoomMember::State::CouldNotConnect:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_ERROR(Network, "State: CouldNotConnect");
|
2017-12-03 10:29:48 +01:00
|
|
|
exit(1);
|
|
|
|
break;
|
|
|
|
case Network::RoomMember::State::NameCollision:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_ERROR(
|
2017-12-03 10:29:48 +01:00
|
|
|
Network,
|
|
|
|
"You tried to use the same nickname then another user that is connected to the Room");
|
|
|
|
exit(1);
|
|
|
|
break;
|
|
|
|
case Network::RoomMember::State::MacCollision:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_ERROR(Network, "You tried to use the same MAC-Address then another user that is "
|
|
|
|
"connected to the Room");
|
2017-12-03 10:29:48 +01:00
|
|
|
exit(1);
|
|
|
|
break;
|
|
|
|
case Network::RoomMember::State::WrongPassword:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_ERROR(Network, "Room replied with: Wrong password");
|
2017-12-03 10:29:48 +01:00
|
|
|
exit(1);
|
|
|
|
break;
|
|
|
|
case Network::RoomMember::State::WrongVersion:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_ERROR(Network,
|
|
|
|
"You are using a different version then the room you are trying to connect to");
|
2017-12-03 10:29:48 +01:00
|
|
|
exit(1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void OnMessageReceived(const Network::ChatEntry& msg) {
|
|
|
|
std::cout << std::endl << msg.nickname << ": " << msg.message << std::endl << std::endl;
|
|
|
|
}
|
|
|
|
|
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);
|
2017-12-17 04:43:09 +01:00
|
|
|
std::string movie_record;
|
|
|
|
std::string movie_play;
|
|
|
|
|
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) {
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_CRITICAL(Frontend, "Failed to get command line arguments");
|
2016-06-08 07:53:41 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
2016-11-05 04:14:38 +01:00
|
|
|
std::string filepath;
|
2016-04-06 13:01:00 +02:00
|
|
|
|
2017-12-03 10:29:48 +01:00
|
|
|
bool use_multiplayer = false;
|
2018-03-29 07:54:34 +02:00
|
|
|
bool fullscreen = false;
|
2017-12-03 10:29:48 +01:00
|
|
|
std::string nickname{};
|
|
|
|
std::string password{};
|
|
|
|
std::string address{};
|
|
|
|
u16 port = Network::DefaultRoomPort;
|
|
|
|
|
2016-09-19 03:01:46 +02:00
|
|
|
static struct option long_options[] = {
|
2018-03-29 07:54:34 +02:00
|
|
|
{"gdbport", required_argument, 0, 'g'},
|
|
|
|
{"install", required_argument, 0, 'i'},
|
|
|
|
{"multiplayer", required_argument, 0, 'm'},
|
|
|
|
{"movie-record", required_argument, 0, 'r'},
|
|
|
|
{"movie-play", required_argument, 0, 'p'},
|
|
|
|
{"fullscreen", no_argument, 0, 'f'},
|
|
|
|
{"help", no_argument, 0, 'h'},
|
|
|
|
{"version", no_argument, 0, 'v'},
|
|
|
|
{0, 0, 0, 0},
|
2016-09-19 03:01:46 +02:00
|
|
|
};
|
2015-06-23 02:59:00 +02:00
|
|
|
|
|
|
|
while (optind < argc) {
|
2018-03-29 07:54:34 +02:00
|
|
|
char arg = getopt_long(argc, argv, "g:i:m:r:p:fhv", 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;
|
2017-11-14 22:59:18 +01:00
|
|
|
case 'i': {
|
|
|
|
const auto cia_progress = [](size_t written, size_t total) {
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_INFO(Frontend, "{:02d}%", (written * 100 / total));
|
2017-11-14 22:59:18 +01:00
|
|
|
};
|
2017-11-20 05:56:02 +01:00
|
|
|
if (Service::AM::InstallCIA(std::string(optarg), cia_progress) !=
|
|
|
|
Service::AM::InstallStatus::Success)
|
2017-11-14 22:59:18 +01:00
|
|
|
errno = EINVAL;
|
|
|
|
if (errno != 0)
|
|
|
|
exit(1);
|
2017-12-29 19:04:10 +01:00
|
|
|
break;
|
2017-12-03 10:29:48 +01:00
|
|
|
}
|
|
|
|
case 'm': {
|
|
|
|
use_multiplayer = true;
|
2017-12-29 19:04:10 +01:00
|
|
|
const std::string str_arg(optarg);
|
2017-12-03 10:29:48 +01:00
|
|
|
// regex to check if the format is nickname:password@ip:port
|
|
|
|
// with optional :password
|
2017-12-29 19:04:10 +01:00
|
|
|
const std::regex re("^([^:]+)(?::(.+))?@([^:]+)(?::([0-9]+))?$");
|
2017-12-03 10:29:48 +01:00
|
|
|
if (!std::regex_match(str_arg, re)) {
|
|
|
|
std::cout << "Wrong format for option --multiplayer\n";
|
|
|
|
PrintHelp(argv[0]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::smatch match;
|
|
|
|
std::regex_search(str_arg, match, re);
|
|
|
|
ASSERT(match.size() == 5);
|
|
|
|
nickname = match[1];
|
|
|
|
password = match[2];
|
|
|
|
address = match[3];
|
|
|
|
if (!match[4].str().empty())
|
|
|
|
port = std::stoi(match[4]);
|
|
|
|
std::regex nickname_re("^[a-zA-Z0-9._- ]+$");
|
|
|
|
if (!std::regex_match(nickname, nickname_re)) {
|
|
|
|
std::cout
|
|
|
|
<< "Nickname is not valid. Must be 4 to 20 alphanumeric characters.\n";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (address.empty()) {
|
|
|
|
std::cout << "Address to room must not be empty.\n";
|
|
|
|
return 0;
|
|
|
|
}
|
2017-11-14 22:59:18 +01:00
|
|
|
break;
|
|
|
|
}
|
2017-12-17 04:43:09 +01:00
|
|
|
case 'r':
|
|
|
|
movie_record = optarg;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
movie_play = optarg;
|
|
|
|
break;
|
2018-03-29 07:54:34 +02:00
|
|
|
case 'f':
|
|
|
|
fullscreen = true;
|
|
|
|
NGLOG_INFO(Frontend, "Starting in fullscreen mode...");
|
|
|
|
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
|
2016-11-05 04:14:38 +01:00
|
|
|
filepath = Common::UTF16ToUTF8(argv_w[optind]);
|
2016-06-08 07:53:41 +02:00
|
|
|
#else
|
2016-11-05 04:14:38 +01:00
|
|
|
filepath = 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
|
|
|
|
|
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
|
|
|
|
2016-11-05 04:14:38 +01:00
|
|
|
if (filepath.empty()) {
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_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
|
|
|
|
2017-12-17 04:43:09 +01:00
|
|
|
if (!movie_record.empty() && !movie_play.empty()) {
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_CRITICAL(Frontend, "Cannot both play and record a movie");
|
2017-12-17 05:55:56 +01:00
|
|
|
return -1;
|
2017-12-17 04:43:09 +01:00
|
|
|
}
|
|
|
|
|
2018-02-20 01:51:27 +01:00
|
|
|
Log::Filter log_filter;
|
2014-12-06 23:00:08 +01:00
|
|
|
log_filter.ParseFilterString(Settings::values.log_filter);
|
2018-02-20 01:51:27 +01:00
|
|
|
Log::SetGlobalFilter(log_filter);
|
|
|
|
|
|
|
|
Log::AddBackend(std::make_unique<Log::ColorConsoleBackend>());
|
|
|
|
FileUtil::CreateFullPath(FileUtil::GetUserPath(D_LOGS_IDX));
|
|
|
|
Log::AddBackend(
|
|
|
|
std::make_unique<Log::FileBackend>(FileUtil::GetUserPath(D_LOGS_IDX) + LOG_FILE));
|
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;
|
2017-12-17 04:43:09 +01:00
|
|
|
Settings::values.movie_play = std::move(movie_play);
|
|
|
|
Settings::values.movie_record = std::move(movie_record);
|
2016-04-11 15:20:05 +02:00
|
|
|
Settings::Apply();
|
2015-06-23 02:59:00 +02:00
|
|
|
|
2018-03-29 07:54:34 +02:00
|
|
|
std::unique_ptr<EmuWindow_SDL2> emu_window{std::make_unique<EmuWindow_SDL2>(fullscreen)};
|
2014-06-19 00:58:09 +02:00
|
|
|
|
2016-12-17 07:20:47 +01:00
|
|
|
Core::System& system{Core::System::GetInstance()};
|
2016-11-27 05:13:40 +01:00
|
|
|
|
2016-11-05 04:14:38 +01:00
|
|
|
SCOPE_EXIT({ system.Shutdown(); });
|
2016-11-20 02:40:04 +01:00
|
|
|
|
2016-12-17 07:20:47 +01:00
|
|
|
const Core::System::ResultStatus load_result{system.Load(emu_window.get(), filepath)};
|
2016-11-20 02:40:04 +01:00
|
|
|
|
2016-11-05 04:14:38 +01:00
|
|
|
switch (load_result) {
|
|
|
|
case Core::System::ResultStatus::ErrorGetLoader:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_CRITICAL(Frontend, "Failed to obtain loader for {}!", filepath);
|
2016-11-05 04:14:38 +01:00
|
|
|
return -1;
|
|
|
|
case Core::System::ResultStatus::ErrorLoader:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_CRITICAL(Frontend, "Failed to load ROM!");
|
2014-06-19 00:58:09 +02:00
|
|
|
return -1;
|
2017-01-29 18:09:33 +01:00
|
|
|
case Core::System::ResultStatus::ErrorLoader_ErrorEncrypted:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_CRITICAL(Frontend, "The game that you are trying to load must be decrypted before "
|
|
|
|
"being used with Citra. \n\n For more information on dumping and "
|
|
|
|
"decrypting games, please refer to: "
|
|
|
|
"https://citra-emu.org/wiki/dumping-game-cartridges/");
|
2017-01-29 18:09:33 +01:00
|
|
|
return -1;
|
|
|
|
case Core::System::ResultStatus::ErrorLoader_ErrorInvalidFormat:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_CRITICAL(Frontend, "Error while loading ROM: The ROM format is not supported.");
|
2017-01-29 18:09:33 +01:00
|
|
|
return -1;
|
|
|
|
case Core::System::ResultStatus::ErrorNotInitialized:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_CRITICAL(Frontend, "CPUCore not initialized");
|
2017-01-29 18:09:33 +01:00
|
|
|
return -1;
|
|
|
|
case Core::System::ResultStatus::ErrorSystemMode:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_CRITICAL(Frontend, "Failed to determine system mode!");
|
2017-01-29 18:09:33 +01:00
|
|
|
return -1;
|
|
|
|
case Core::System::ResultStatus::ErrorVideoCore:
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_CRITICAL(Frontend, "VideoCore not initialized");
|
2017-01-29 18:09:33 +01:00
|
|
|
return -1;
|
|
|
|
case Core::System::ResultStatus::Success:
|
|
|
|
break; // Expected case
|
2014-04-01 04:25:55 +02:00
|
|
|
}
|
2014-04-07 06:53:47 +02:00
|
|
|
|
2017-08-23 04:47:56 +02:00
|
|
|
Core::Telemetry().AddField(Telemetry::FieldType::App, "Frontend", "SDL");
|
|
|
|
|
2017-12-03 10:29:48 +01:00
|
|
|
if (use_multiplayer) {
|
|
|
|
if (auto member = Network::GetRoomMember().lock()) {
|
|
|
|
member->BindOnChatMessageRecieved(OnMessageReceived);
|
|
|
|
member->BindOnStateChanged(OnStateChanged);
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_DEBUG(Network, "Start connection to {}:{} with nickname {}", address, port,
|
|
|
|
nickname);
|
2017-12-03 10:29:48 +01:00
|
|
|
member->Join(nickname, address.c_str(), port, 0, Network::NoPreferredMac, password);
|
|
|
|
} else {
|
2018-02-20 01:51:27 +01:00
|
|
|
NGLOG_ERROR(Network, "Could not access RoomMember");
|
2017-12-03 10:29:48 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-16 03:48:02 +02:00
|
|
|
while (emu_window->IsOpen()) {
|
2016-12-16 01:01:48 +01:00
|
|
|
system.RunLoop();
|
2014-08-30 05:24:32 +02:00
|
|
|
}
|
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
|
|
|
}
|