#include #include #include "window.hpp" #include "init/splash_window.hpp" #include "init/tasks.hpp" #include #include #include int main(int argc, char **argv, char **envp) { using namespace hex; ImHexApi::System::impl::setProgramArguments(argc, argv, envp); // Check if ImHex is installed in portable mode { if (const auto executablePath = wolv::io::fs::getExecutablePath(); executablePath.has_value()) { const auto flagFile = executablePath->parent_path() / "PORTABLE"; if (wolv::io::fs::exists(flagFile) && wolv::io::fs::isRegularFile(flagFile)) ImHexApi::System::impl::setPortableVersion(true); } } bool shouldRestart = false; do { // Register an event to handle restarting of ImHex EventManager::subscribe([&]{ shouldRestart = true; }); shouldRestart = false; // Initialization { Window::initNative(); hex::log::info("Welcome to ImHex {}!", IMHEX_VERSION); init::WindowSplash splashWindow; // Add initialization tasks to run TaskManager::init(); for (const auto &[name, task, async] : init::getInitTasks()) splashWindow.addStartupTask(name, task, async); // Draw the splash window while tasks are running if (!splashWindow.loop()) ImHexApi::System::getInitArguments().insert({ "tasks-failed", {} }); } // Clean up everything after the main window is closed 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()); } } // Render the main window window.loop(); } } while (shouldRestart); return EXIT_SUCCESS; }