metaforce/hecl/driver/main.cpp

379 lines
9.0 KiB
C++
Raw Normal View History

2015-07-22 19:14:50 +00:00
#if _WIN32
2015-10-12 04:38:49 +00:00
#ifndef NOMINMAX
#define NOMINMAX
#endif
2017-11-06 06:56:17 +00:00
#define WIN_PAUSE 0
2015-08-31 03:36:24 +00:00
#include <objbase.h>
2015-07-22 19:14:50 +00:00
#endif
2015-08-31 03:36:24 +00:00
#include <clocale>
2017-12-29 07:56:31 +00:00
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cstdarg>
2015-08-16 23:01:35 +00:00
#include <signal.h>
2015-05-20 05:22:32 +00:00
#include <regex>
2015-05-26 04:42:20 +00:00
#include <list>
2016-03-04 23:02:44 +00:00
#include "hecl/Database.hpp"
2017-12-29 07:56:31 +00:00
#include "hecl/Blender/Connection.hpp"
2021-04-04 22:23:08 +00:00
#include "hecl/Runtime.hpp"
2016-03-04 23:02:44 +00:00
#include "logvisor/logvisor.hpp"
2021-03-29 17:22:38 +00:00
#include "../version.h"
2015-07-05 06:27:24 +00:00
2016-09-25 01:57:43 +00:00
logvisor::Module LogModule("hecl::Driver");
2015-05-17 04:55:29 +00:00
2015-06-10 02:40:03 +00:00
#include "ToolBase.hpp"
#include "ToolInit.hpp"
#include "ToolSpec.hpp"
2015-06-12 09:08:49 +00:00
#include "ToolExtract.hpp"
2015-06-10 02:40:03 +00:00
#include "ToolCook.hpp"
#include "ToolPackage.hpp"
2018-04-15 06:04:08 +00:00
#include "ToolImage.hpp"
2020-04-10 03:19:33 +00:00
#include "ToolInstallAddon.hpp"
2015-06-10 02:40:03 +00:00
#include "ToolHelp.hpp"
2015-05-15 22:39:43 +00:00
2015-07-25 23:01:02 +00:00
/* Static reference to dataspec additions
* (used by MSVC to definitively link DataSpecs) */
#include "DataSpecRegistry.hpp"
2015-07-22 19:14:50 +00:00
2015-05-26 04:42:20 +00:00
bool XTERM_COLOR = false;
2015-06-11 09:41:10 +00:00
/*
2015-06-10 02:40:03 +00:00
#define HECL_GIT 1234567
#define HECL_GIT_S "1234567"
#define HECL_BRANCH master
#define HECL_BRANCH_S "master"
2015-06-11 09:41:10 +00:00
*/
2015-06-10 02:40:03 +00:00
2015-05-20 05:22:32 +00:00
/* Main usage message */
static void printHelp(const char* pname) {
2018-12-08 05:18:42 +00:00
if (XTERM_COLOR)
fmt::print(FMT_STRING("" BOLD "HECL" NORMAL ""));
2018-12-08 05:18:42 +00:00
else
fmt::print(FMT_STRING("HECL"));
2018-04-15 06:04:08 +00:00
#if HECL_HAS_NOD
2020-04-10 03:19:33 +00:00
#define TOOL_LIST "extract|init|cook|package|image|installaddon|help"
2018-04-15 06:04:08 +00:00
#else
2020-04-10 03:19:33 +00:00
#define TOOL_LIST "extract|init|cook|package|installaddon|help"
2018-04-15 06:04:08 +00:00
#endif
2015-05-20 05:22:32 +00:00
#if HECL_GIT
fmt::print(FMT_STRING(" Commit " HECL_GIT_S " " HECL_BRANCH_S "\nUsage: {} " TOOL_LIST "\n"), pname);
2015-05-20 05:22:32 +00:00
#elif HECL_VER
fmt::print(FMT_STRING(" Version " HECL_VER_S "\nUsage: {} " TOOL_LIST "\n"), pname);
2015-05-20 05:22:32 +00:00
#else
fmt::print(FMT_STRING("\nUsage: {} " TOOL_LIST "\n"), pname);
2015-05-20 05:22:32 +00:00
#endif
}
/* Regex patterns */
static const std::regex regOPEN("-o([^\"]*|\\S*)", std::regex::ECMAScript | std::regex::optimize);
static ToolBase* ToolPtr = nullptr;
2015-08-16 23:01:35 +00:00
/* SIGINT will gracefully close blender connections and delete blends in progress */
2018-12-08 05:18:42 +00:00
static void SIGINTHandler(int sig) {
if (ToolPtr)
ToolPtr->cancel();
hecl::blender::Connection::Shutdown();
logvisor::KillProcessTree();
exit(1);
2015-08-16 23:01:35 +00:00
}
2016-03-04 23:02:44 +00:00
static logvisor::Module AthenaLog("Athena");
static void AthenaExc(athena::error::Level level, const char* file, const char*, int line, fmt::string_view fmt,
fmt::format_args args) {
2019-07-20 04:22:58 +00:00
AthenaLog.vreport(logvisor::Level(level), fmt, args);
2015-07-26 02:52:02 +00:00
}
std::string ExeDir;
2017-02-24 08:27:07 +00:00
static ToolPassInfo CreateInfo(int argc, char** argv) {
char cwdbuf[1024];
ToolPassInfo info;
info.pname = argv[0];
if (hecl::Getcwd(cwdbuf, static_cast<int>(std::size(cwdbuf)))) {
info.cwd = cwdbuf;
if (info.cwd.size() && info.cwd.back() != '/' && info.cwd.back() != '\\') {
#if _WIN32
info.cwd += '\\';
#else
info.cwd += '/';
#endif
}
if (hecl::PathRelative(argv[0])) {
ExeDir = std::string(cwdbuf) + '/';
}
std::string Argv0(argv[0]);
std::string::size_type lastIdx = Argv0.find_last_of("/\\");
if (lastIdx != std::string::npos) {
ExeDir.insert(ExeDir.end(), Argv0.begin(), Argv0.begin() + lastIdx);
}
}
/* Concatenate args */
std::vector<std::string> args;
args.reserve(argc - 2);
for (int i = 2; i < argc; ++i) {
args.emplace_back(argv[i]);
}
if (!args.empty()) {
/* Extract output argument */
for (auto it = args.cbegin(); it != args.cend();) {
const std::string& arg = *it;
std::smatch oMatch;
if (std::regex_search(arg, oMatch, regOPEN)) {
const std::string& token = oMatch[1].str();
if (token.size()) {
if (info.output.empty()) {
info.output = oMatch[1].str();
}
it = args.erase(it);
} else {
it = args.erase(it);
if (it == args.end()) {
break;
}
if (info.output.empty()) {
info.output = *it;
}
it = args.erase(it);
}
continue;
}
++it;
}
/* Iterate flags */
bool threadArg = false;
for (auto it = args.cbegin(); it != args.cend();) {
const std::string& arg = *it;
if (threadArg) {
threadArg = false;
hecl::CpuCountOverride = int(hecl::StrToUl(arg.c_str(), nullptr, 0));
it = args.erase(it);
continue;
}
if (arg.size() < 2 || arg[0] != '-' || arg[1] == '-') {
++it;
continue;
}
for (auto chit = arg.cbegin() + 1; chit != arg.cend(); ++chit) {
if (*chit == 'v')
++info.verbosityLevel;
else if (*chit == 'f')
info.force = true;
else if (*chit == 'y')
info.yes = true;
else if (*chit == 'g')
info.gui = true;
else if (*chit == 'j') {
++chit;
if (*chit)
hecl::CpuCountOverride = int(hecl::StrToUl(&*chit, nullptr, 0));
else
threadArg = true;
break;
} else
info.flags.push_back(*chit);
}
it = args.erase(it);
}
/* Gather remaining args */
info.args.reserve(args.size());
for (const std::string& arg : args)
info.args.push_back(arg);
}
return info;
}
static std::unique_ptr<hecl::Database::Project> FindProject(std::string_view cwd) {
const hecl::ProjectRootPath rootPath = hecl::SearchForProject(cwd);
if (!rootPath) {
return nullptr;
}
const size_t ErrorRef = logvisor::ErrorCount;
auto newProj = std::make_unique<hecl::Database::Project>(rootPath);
if (logvisor::ErrorCount > ErrorRef) {
#if WIN_PAUSE
system("PAUSE");
#endif
return nullptr;
}
return newProj;
}
static std::unique_ptr<ToolBase> MakeSelectedTool(std::string toolName, ToolPassInfo& info) {
std::string toolNameLower = toolName;
hecl::ToLower(toolNameLower);
if (toolNameLower == "init") {
return std::make_unique<ToolInit>(info);
}
if (toolNameLower == "spec") {
return std::make_unique<ToolSpec>(info);
}
if (toolNameLower == "extract") {
return std::make_unique<ToolExtract>(info);
}
if (toolNameLower == "cook") {
return std::make_unique<ToolCook>(info);
}
if (toolNameLower == "package" || toolNameLower == "pack") {
return std::make_unique<ToolPackage>(info);
}
#if HECL_HAS_NOD
if (toolNameLower == "image") {
return std::make_unique<ToolImage>(info);
}
#endif
if (toolNameLower == "installaddon") {
2020-04-10 03:19:33 +00:00
return std::make_unique<ToolInstallAddon>(info);
}
if (toolNameLower == "help") {
return std::make_unique<ToolHelp>(info);
}
auto fp = hecl::FopenUnique(toolName.c_str(), "rb");
if (fp == nullptr) {
LogModule.report(logvisor::Error, FMT_STRING("unrecognized tool '{}'"), toolNameLower);
return nullptr;
}
fp.reset();
/* Shortcut-case: implicit extract */
info.args.insert(info.args.begin(), std::move(toolName));
return std::make_unique<ToolExtract>(info);
}
2016-06-17 20:44:49 +00:00
#if _WIN32
#include <nowide/args.hpp>
2015-06-10 02:40:03 +00:00
#else
2018-05-25 06:34:58 +00:00
/* SIGWINCH should do nothing */
static void SIGWINCHHandler(int sig) {}
2015-06-10 02:40:03 +00:00
#endif
int main(int argc, char** argv) {
#if _WIN32
nowide::args _(argc, argv);
#endif
if (argc > 1 && !hecl::StrCmp(argv[1], "--dlpackage")) {
2021-04-06 22:58:11 +00:00
fmt::print(FMT_STRING("{}\n"), METAFORCE_DLPACKAGE);
2018-12-08 05:18:42 +00:00
return 100;
}
2018-01-02 00:58:13 +00:00
2015-08-31 03:36:24 +00:00
#if _WIN32
2018-12-08 05:18:42 +00:00
CoInitializeEx(nullptr, COINIT_MULTITHREADED | COINIT_DISABLE_OLE1DDE);
2015-08-31 03:36:24 +00:00
#else
2018-12-08 05:18:42 +00:00
std::setlocale(LC_ALL, "en-US.UTF-8");
2015-08-31 03:36:24 +00:00
#endif
2016-03-24 02:51:57 +00:00
2018-12-08 05:18:42 +00:00
/* Xterm check */
2015-09-02 22:00:05 +00:00
#if _WIN32
const auto conemuANSI = hecl::GetEnv("ConEmuANSI");
if (conemuANSI && conemuANSI == "ON") {
2018-12-08 05:18:42 +00:00
XTERM_COLOR = true;
}
2015-09-02 22:00:05 +00:00
#else
2018-12-08 05:18:42 +00:00
const char* term = getenv("TERM");
if (term && !strncmp(term, "xterm", 5))
XTERM_COLOR = true;
signal(SIGWINCH, SIGWINCHHandler);
2015-09-02 22:00:05 +00:00
#endif
2018-12-08 05:18:42 +00:00
signal(SIGINT, SIGINTHandler);
2015-08-16 23:01:35 +00:00
2018-12-08 05:18:42 +00:00
logvisor::RegisterStandardExceptions();
logvisor::RegisterConsoleLogger();
atSetExceptionHandler(AthenaExc);
2021-04-04 22:23:08 +00:00
#if SENTRY_ENABLED
hecl::Runtime::FileStoreManager fileMgr{"sentry-native-hecl"};
std::string cacheDir{fileMgr.getStoreRoot()};
2021-04-06 22:58:11 +00:00
logvisor::RegisterSentry("hecl", METAFORCE_WC_DESCRIBE, cacheDir.c_str());
2021-04-04 22:23:08 +00:00
#endif
2018-12-08 05:18:42 +00:00
/* Basic usage check */
if (argc == 1) {
printHelp(argv[0]);
2015-07-22 19:14:50 +00:00
#if WIN_PAUSE
2018-12-08 05:18:42 +00:00
system("PAUSE");
2015-07-22 19:14:50 +00:00
#endif
2018-12-08 05:18:42 +00:00
return 0;
}
if (argc == 0) {
printHelp("hecl");
2015-07-22 19:14:50 +00:00
#if WIN_PAUSE
2018-12-08 05:18:42 +00:00
system("PAUSE");
2015-07-22 19:14:50 +00:00
#endif
2018-12-08 05:18:42 +00:00
return 0;
}
/* Prepare DataSpecs */
HECLRegisterDataSpecs();
/* Assemble common tool pass info */
ToolPassInfo info = CreateInfo(argc, argv);
2018-12-08 05:18:42 +00:00
/* Attempt to find hecl project */
auto project = FindProject(info.cwd);
if (project != nullptr) {
info.project = project.get();
2018-12-08 05:18:42 +00:00
}
/* Construct selected tool */
const size_t MakeToolErrorRef = logvisor::ErrorCount;
auto tool = MakeSelectedTool(argv[1], info);
if (logvisor::ErrorCount > MakeToolErrorRef) {
2015-07-22 19:14:50 +00:00
#if WIN_PAUSE
2018-12-08 05:18:42 +00:00
system("PAUSE");
2015-07-16 02:03:38 +00:00
#endif
2018-12-08 05:18:42 +00:00
return 1;
}
if (info.verbosityLevel) {
LogModule.report(logvisor::Info, FMT_STRING("Constructed tool '{}' {}\n"), tool->toolName(),
info.verbosityLevel);
}
2018-12-08 05:18:42 +00:00
/* Run tool */
const size_t RunToolErrorRef = logvisor::ErrorCount;
2018-12-08 05:18:42 +00:00
ToolPtr = tool.get();
const int retval = tool->run();
2018-12-08 05:18:42 +00:00
ToolPtr = nullptr;
if (logvisor::ErrorCount > RunToolErrorRef) {
2018-12-08 05:18:42 +00:00
hecl::blender::Connection::Shutdown();
2015-07-22 19:14:50 +00:00
#if WIN_PAUSE
2018-12-08 05:18:42 +00:00
system("PAUSE");
2015-07-16 02:03:38 +00:00
#endif
2018-12-08 05:18:42 +00:00
return 1;
}
2018-12-08 05:18:42 +00:00
hecl::blender::Connection::Shutdown();
2015-07-22 19:14:50 +00:00
#if WIN_PAUSE
2018-12-08 05:18:42 +00:00
system("PAUSE");
2015-07-22 19:14:50 +00:00
#endif
2018-12-08 05:18:42 +00:00
return retval;
2015-05-15 22:39:43 +00:00
}