2021-02-10 17:17:09 +00:00
|
|
|
#include <hex.hpp>
|
|
|
|
|
2021-08-29 20:15:18 +00:00
|
|
|
#include <hex/helpers/utils.hpp>
|
|
|
|
#include <hex/helpers/logger.hpp>
|
|
|
|
|
2020-11-10 14:26:38 +00:00
|
|
|
#include "window.hpp"
|
|
|
|
|
2021-04-20 19:46:48 +00:00
|
|
|
#include "init/splash_window.hpp"
|
|
|
|
#include "init/tasks.hpp"
|
|
|
|
|
2022-08-08 19:23:52 +00:00
|
|
|
#include <hex/api/project_file_manager.hpp>
|
|
|
|
|
2021-12-22 12:16:51 +00:00
|
|
|
int main(int argc, char **argv, char **envp) {
|
2021-01-13 16:28:27 +00:00
|
|
|
using namespace hex;
|
2022-02-01 17:09:40 +00:00
|
|
|
ImHexApi::System::impl::setProgramArguments(argc, argv, envp);
|
2021-01-13 16:28:27 +00:00
|
|
|
|
2022-02-15 21:36:36 +00:00
|
|
|
#if defined(OS_WINDOWS)
|
2022-02-15 22:07:48 +00:00
|
|
|
ImHexApi::System::impl::setBorderlessWindowMode(true);
|
2022-02-15 21:36:36 +00:00
|
|
|
#endif
|
|
|
|
|
2022-08-16 09:48:37 +00:00
|
|
|
bool shouldRestart = false;
|
|
|
|
|
|
|
|
EventManager::subscribe<RequestRestartImHex>([&]{ shouldRestart = true; });
|
|
|
|
|
|
|
|
do {
|
|
|
|
shouldRestart = false;
|
|
|
|
|
|
|
|
// Initialization
|
|
|
|
{
|
|
|
|
Window::initNative();
|
|
|
|
|
|
|
|
hex::log::info("Welcome to ImHex!");
|
|
|
|
|
|
|
|
init::WindowSplash splashWindow;
|
|
|
|
|
|
|
|
for (const auto &[name, task] : init::getInitTasks())
|
|
|
|
splashWindow.addStartupTask(name, task);
|
|
|
|
|
|
|
|
if (!splashWindow.loop())
|
|
|
|
ImHexApi::System::getInitArguments().insert({ "tasks-failed", {} });
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clean up
|
|
|
|
ON_SCOPE_EXIT {
|
|
|
|
for (const auto &[name, task] : init::getExitTasks())
|
|
|
|
task();
|
|
|
|
};
|
|
|
|
|
|
|
|
// Main window
|
|
|
|
{
|
|
|
|
Window window;
|
|
|
|
|
|
|
|
if (argc == 1)
|
|
|
|
; // No arguments provided
|
2022-09-15 07:48:02 +00:00
|
|
|
else if (argc >= 2) {
|
|
|
|
for (auto i = 1; i < argc; i++)
|
|
|
|
EventManager::post<RequestOpenFile>(argv[i]);
|
2022-08-16 09:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
window.loop();
|
2021-04-20 19:46:48 +00:00
|
|
|
}
|
|
|
|
|
2022-08-16 09:48:37 +00:00
|
|
|
} while (shouldRestart);
|
2021-01-12 15:50:15 +00:00
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
2020-11-10 14:26:38 +00:00
|
|
|
}
|