1
0
mirror of synced 2024-11-14 19:17:42 +01:00
ImHex/source/main.cpp

49 lines
1020 B
C++
Raw Normal View History

#include <hex.hpp>
#include "window.hpp"
#include "init/splash_window.hpp"
#include "init/tasks.hpp"
int main(int argc, char **argv) {
using namespace hex;
// Initialization
{
init::WindowSplash splashWindow(argc, argv);
for (const auto &[name, task] : init::getInitTasks())
splashWindow.addStartupTask(name, task);
if (!splashWindow.loop())
init::getInitArguments().push_back({ "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
else if (argc == 2)
EventManager::post<EventFileDropped>(argv[1]);
else {
hex::log::fatal("Usage: imhex [file_name]");
2021-08-21 00:51:50 +02:00
return EXIT_FAILURE;
}
hex::log::info("Welcome to ImHex!");
window.loop();
}
2021-01-12 16:50:15 +01:00
return EXIT_SUCCESS;
}