2021-12-03 21:40:19 +00:00
|
|
|
// Copyright 2021 Dolphin Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/Version.h"
|
|
|
|
#include "DolphinTool/Command.h"
|
|
|
|
#include "DolphinTool/ConvertCommand.h"
|
2022-02-24 10:51:52 +00:00
|
|
|
#include "DolphinTool/HeaderCommand.h"
|
2021-12-03 21:40:19 +00:00
|
|
|
#include "DolphinTool/VerifyCommand.h"
|
|
|
|
|
|
|
|
static int PrintUsage(int code)
|
|
|
|
{
|
|
|
|
std::cerr << "usage: dolphin-tool COMMAND -h" << std::endl << std::endl;
|
2022-02-24 10:51:52 +00:00
|
|
|
std::cerr << "commands supported: [convert, verify, header]" << std::endl;
|
2021-12-03 21:40:19 +00:00
|
|
|
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
2022-03-08 07:22:35 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define main app_main
|
|
|
|
#endif
|
|
|
|
|
2021-12-03 21:40:19 +00:00
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
if (argc < 2)
|
|
|
|
return PrintUsage(1);
|
|
|
|
|
|
|
|
std::vector<std::string> args(argv, argv + argc);
|
|
|
|
|
|
|
|
std::string command_str = args.at(1);
|
|
|
|
|
|
|
|
// Take off the command selector before passing arguments down
|
|
|
|
args.erase(args.begin(), args.begin() + 1);
|
|
|
|
|
|
|
|
std::unique_ptr<DolphinTool::Command> command;
|
|
|
|
|
|
|
|
if (command_str == "convert")
|
|
|
|
command = std::make_unique<DolphinTool::ConvertCommand>();
|
|
|
|
else if (command_str == "verify")
|
|
|
|
command = std::make_unique<DolphinTool::VerifyCommand>();
|
2022-02-24 10:51:52 +00:00
|
|
|
else if (command_str == "header")
|
|
|
|
command = std::make_unique<DolphinTool::HeaderCommand>();
|
2021-12-03 21:40:19 +00:00
|
|
|
else
|
|
|
|
return PrintUsage(1);
|
|
|
|
|
|
|
|
return command->Main(args);
|
|
|
|
}
|
2022-03-08 07:22:35 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
int wmain(int, wchar_t*[], wchar_t*[])
|
|
|
|
{
|
|
|
|
std::vector<std::string> args = CommandLineToUtf8Argv(GetCommandLineW());
|
|
|
|
const int argc = static_cast<int>(args.size());
|
|
|
|
std::vector<char*> argv(args.size());
|
|
|
|
for (size_t i = 0; i < args.size(); ++i)
|
|
|
|
argv[i] = args[i].data();
|
|
|
|
|
|
|
|
return main(argc, argv.data());
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef main
|
|
|
|
#endif
|