#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; EventManager::subscribe([&]{ shouldRestart = true; }); do { shouldRestart = false; // Initialization { Window::initNative(); hex::log::info("Welcome to ImHex!"); 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++) EventManager::post(argv[i]); } try { window.loop(); } catch (const std::exception &e) { log::fatal("Exception thrown in main loop: {}", e.what()); throw; } catch (...) { log::fatal("Unknown exception thrown in main loop!"); throw; } } } while (shouldRestart); return EXIT_SUCCESS; }