#include #include #include #include "window.hpp" #include "init/splash_window.hpp" #include "init/tasks.hpp" #include int main(int argc, char **argv, char **envp) { using namespace hex; ImHexApi::System::impl::setProgramArguments(argc, argv, envp); #if defined(OS_WINDOWS) ImHexApi::System::impl::setBorderlessWindowMode(true); #endif bool shouldRestart = false; do { EventManager::subscribe([&]{ shouldRestart = true; }); shouldRestart = false; // Initialization { Window::initNative(); hex::log::info("Welcome to ImHex {}!", IMHEX_VERSION); init::WindowSplash splashWindow; TaskManager::init(); for (const auto &[name, task, async] : init::getInitTasks()) splashWindow.addStartupTask(name, task, async); if (!splashWindow.loop()) ImHexApi::System::getInitArguments().insert({ "tasks-failed", {} }); } // Clean up ON_SCOPE_EXIT { for (const auto &[name, task, async] : init::getExitTasks()) task(); TaskManager::exit(); }; // Main window { Window window; if (argc == 1) ; // No arguments provided else if (argc >= 2) { for (auto i = 1; i < argc; i++) { if (auto argument = ImHexApi::System::getProgramArgument(i); argument.has_value()) EventManager::post(argument.value()); } } window.loop(); } } while (shouldRestart); return EXIT_SUCCESS; }