mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-05 18:23:16 +00:00
211 lines
7.8 KiB
C++
211 lines
7.8 KiB
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "iostream"
|
|
#include "system_error"
|
|
#include "unordered_map"
|
|
|
|
#include "common/config.h"
|
|
#include "common/memory_patcher.h"
|
|
#include "core/file_sys/fs.h"
|
|
#include "emulator.h"
|
|
#include "game_install_dialog.h"
|
|
#include "main_window.h"
|
|
|
|
#ifdef _WIN32
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
// Custom message handler to ignore Qt logs
|
|
void customMessageHandler(QtMsgType, const QMessageLogContext&, const QString&) {}
|
|
|
|
int main(int argc, char* argv[]) {
|
|
#ifdef _WIN32
|
|
SetConsoleOutputCP(CP_UTF8);
|
|
#endif
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
// Load configurations and initialize Qt application
|
|
const auto user_dir = Common::FS::GetUserPath(Common::FS::PathType::UserDir);
|
|
Config::load(user_dir / "config.toml");
|
|
|
|
bool has_command_line_argument = argc > 1;
|
|
bool show_gui = false, has_game_argument = false;
|
|
std::string game_path;
|
|
std::vector<std::string> game_args{};
|
|
|
|
// Map of argument strings to lambda functions
|
|
std::unordered_map<std::string, std::function<void(int&)>> arg_map = {
|
|
{"-h",
|
|
[&](int&) {
|
|
std::cout << "Usage: shadps4 [options]\n"
|
|
"Options:\n"
|
|
" No arguments: Opens the GUI.\n"
|
|
" -g, --game <path|ID> Specify <eboot.bin or elf path> or "
|
|
"<game ID (CUSAXXXXX)> to launch\n"
|
|
" -- ... Parameters passed to the game ELF. "
|
|
"Needs to be at the end of the line, and everything after \"--\" is a "
|
|
"game argument.\n"
|
|
" -p, --patch <patch_file> Apply specified patch file\n"
|
|
" -s, --show-gui Show the GUI\n"
|
|
" -f, --fullscreen <true|false> Specify window initial fullscreen "
|
|
"state. Does not overwrite the config file.\n"
|
|
" --add-game-folder <folder> Adds a new game folder to the config.\n"
|
|
" -h, --help Display this help message\n";
|
|
exit(0);
|
|
}},
|
|
{"--help", [&](int& i) { arg_map["-h"](i); }}, // Redirect --help to -h
|
|
|
|
{"-s", [&](int&) { show_gui = true; }},
|
|
{"--show-gui", [&](int& i) { arg_map["-s"](i); }},
|
|
|
|
{"-g",
|
|
[&](int& i) {
|
|
if (i + 1 < argc) {
|
|
game_path = argv[++i];
|
|
has_game_argument = true;
|
|
} else {
|
|
std::cerr << "Error: Missing argument for -g/--game\n";
|
|
exit(1);
|
|
}
|
|
}},
|
|
{"--game", [&](int& i) { arg_map["-g"](i); }},
|
|
|
|
{"-p",
|
|
[&](int& i) {
|
|
if (i + 1 < argc) {
|
|
MemoryPatcher::patchFile = argv[++i];
|
|
} else {
|
|
std::cerr << "Error: Missing argument for -p\n";
|
|
exit(1);
|
|
}
|
|
}},
|
|
{"--patch", [&](int& i) { arg_map["-p"](i); }},
|
|
{"-f",
|
|
[&](int& i) {
|
|
if (++i >= argc) {
|
|
std::cerr
|
|
<< "Error: Invalid argument for -f/--fullscreen. Use 'true' or 'false'.\n";
|
|
exit(1);
|
|
}
|
|
std::string f_param(argv[i]);
|
|
bool is_fullscreen;
|
|
if (f_param == "true") {
|
|
is_fullscreen = true;
|
|
} else if (f_param == "false") {
|
|
is_fullscreen = false;
|
|
} else {
|
|
std::cerr
|
|
<< "Error: Invalid argument for -f/--fullscreen. Use 'true' or 'false'.\n";
|
|
exit(1);
|
|
}
|
|
// Set fullscreen mode without saving it to config file
|
|
Config::setIsFullscreen(is_fullscreen);
|
|
}},
|
|
{"--fullscreen", [&](int& i) { arg_map["-f"](i); }},
|
|
{"--add-game-folder",
|
|
[&](int& i) {
|
|
if (++i >= argc) {
|
|
std::cerr << "Error: Missing argument for --add-game-folder\n";
|
|
exit(1);
|
|
}
|
|
std::string config_dir(argv[i]);
|
|
std::filesystem::path config_path = std::filesystem::path(config_dir);
|
|
std::error_code discard;
|
|
if (!std::filesystem::is_directory(config_path, discard)) {
|
|
std::cerr << "Error: Directory does not exist: " << config_path << "\n";
|
|
exit(1);
|
|
}
|
|
|
|
Config::addGameInstallDir(config_path);
|
|
Config::save(Common::FS::GetUserPath(Common::FS::PathType::UserDir) / "config.toml");
|
|
std::cout << "Game folder successfully saved.\n";
|
|
exit(0);
|
|
}},
|
|
};
|
|
|
|
// Parse command-line arguments using the map
|
|
for (int i = 1; i < argc; ++i) {
|
|
std::string cur_arg = argv[i];
|
|
auto it = arg_map.find(cur_arg);
|
|
if (it != arg_map.end()) {
|
|
it->second(i); // Call the associated lambda function
|
|
} else if (i == argc - 1 && !has_game_argument) {
|
|
// Assume the last argument is the game file if not specified via -g/--game
|
|
game_path = argv[i];
|
|
has_game_argument = true;
|
|
} else if (std::string(argv[i]) == "--") {
|
|
if (i + 1 == argc) {
|
|
std::cerr << "Warning: -- is set, but no game arguments are added!\n";
|
|
break;
|
|
}
|
|
for (int j = i + 1; j < argc; j++) {
|
|
game_args.push_back(argv[j]);
|
|
}
|
|
break;
|
|
} else if (i + 1 < argc && std::string(argv[i + 1]) == "--") {
|
|
if (!has_game_argument) {
|
|
game_path = argv[i];
|
|
has_game_argument = true;
|
|
}
|
|
} else {
|
|
std::cerr << "Unknown argument: " << cur_arg << ", see --help for info.\n";
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
// If no game directory is set and no command line argument, prompt for it
|
|
if (Config::getGameInstallDirs().empty() && !has_command_line_argument) {
|
|
GameInstallDialog dlg;
|
|
dlg.exec();
|
|
}
|
|
|
|
// Ignore Qt logs
|
|
qInstallMessageHandler(customMessageHandler);
|
|
|
|
// Initialize the main window
|
|
MainWindow* m_main_window = new MainWindow(nullptr);
|
|
if ((has_command_line_argument && show_gui) || !has_command_line_argument) {
|
|
m_main_window->Init();
|
|
}
|
|
|
|
if (has_command_line_argument && !has_game_argument) {
|
|
std::cerr << "Error: Please provide a game path or ID.\n";
|
|
exit(1);
|
|
}
|
|
|
|
// Process game path or ID if provided
|
|
if (has_game_argument) {
|
|
std::filesystem::path game_file_path(game_path);
|
|
|
|
// Check if the provided path is a valid file
|
|
if (!std::filesystem::exists(game_file_path)) {
|
|
// If not a file, treat it as a game ID and search in install directories
|
|
bool game_found = false;
|
|
for (const auto& install_dir : Config::getGameInstallDirs()) {
|
|
auto potential_game_path = install_dir / game_path / "eboot.bin";
|
|
if (std::filesystem::exists(potential_game_path)) {
|
|
game_file_path = potential_game_path;
|
|
game_found = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!game_found) {
|
|
std::cerr << "Error: Game ID or file path not found: " << game_path << std::endl;
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
// Run the emulator with the resolved game path
|
|
Core::Emulator emulator;
|
|
emulator.Run(game_file_path.string(), game_args);
|
|
if (!show_gui) {
|
|
return 0; // Exit after running the emulator without showing the GUI
|
|
}
|
|
}
|
|
|
|
// Show the main window and run the Qt application
|
|
m_main_window->show();
|
|
return a.exec();
|
|
}
|