2021-01-22 18:01:39 +01:00
|
|
|
#include <hex/plugin.hpp>
|
|
|
|
|
2022-12-02 12:00:04 +01:00
|
|
|
#include <hex/api/content_registry.hpp>
|
2024-01-28 22:14:59 +01:00
|
|
|
#include <hex/api/task_manager.hpp>
|
2022-12-05 09:31:16 +01:00
|
|
|
#include <hex/helpers/logger.hpp>
|
|
|
|
|
2022-12-02 12:00:04 +01:00
|
|
|
#include <romfs/romfs.hpp>
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
2023-07-16 23:46:41 +02:00
|
|
|
#include "content/command_line_interface.hpp"
|
|
|
|
|
2023-07-13 14:08:23 +02:00
|
|
|
using namespace hex;
|
|
|
|
|
2021-01-22 18:01:39 +01:00
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
|
2022-05-27 20:42:07 +02:00
|
|
|
void registerEventHandlers();
|
|
|
|
void registerDataVisualizers();
|
2024-01-28 15:28:55 +01:00
|
|
|
void registerMiniMapVisualizers();
|
2021-01-22 18:01:39 +01:00
|
|
|
void registerDataInspectorEntries();
|
|
|
|
void registerToolEntries();
|
|
|
|
void registerPatternLanguageFunctions();
|
2022-04-17 16:57:30 +02:00
|
|
|
void registerPatternLanguagePragmas();
|
2023-01-20 21:16:28 +01:00
|
|
|
void registerPatternLanguageVisualizers();
|
2021-01-22 18:01:39 +01:00
|
|
|
void registerCommandPaletteCommands();
|
|
|
|
void registerSettings();
|
2022-07-02 16:22:38 +02:00
|
|
|
void loadSettings();
|
2021-01-30 22:39:06 +01:00
|
|
|
void registerDataProcessorNodes();
|
2021-12-07 22:47:41 +01:00
|
|
|
void registerProviders();
|
2022-01-13 00:27:31 +01:00
|
|
|
void registerDataFormatters();
|
2022-01-18 00:10:10 +01:00
|
|
|
void registerMainMenuEntries();
|
2022-02-01 18:09:40 +01:00
|
|
|
void createWelcomeScreen();
|
2022-05-27 20:42:07 +02:00
|
|
|
void registerViews();
|
2022-12-29 19:26:00 +01:00
|
|
|
void registerThemeHandlers();
|
2023-02-16 18:06:40 +01:00
|
|
|
void registerStyleHandlers();
|
2022-12-29 19:26:00 +01:00
|
|
|
void registerThemes();
|
2023-05-15 11:30:24 +02:00
|
|
|
void registerBackgroundServices();
|
|
|
|
void registerNetworkEndpoints();
|
2023-06-06 21:35:13 +02:00
|
|
|
void registerFileHandlers();
|
2023-06-21 20:07:36 +02:00
|
|
|
void registerProjectHandlers();
|
2023-08-06 21:33:15 +02:00
|
|
|
void registerAchievements();
|
2023-11-22 08:26:31 +01:00
|
|
|
void registerReportGenerators();
|
2023-12-13 23:03:39 +01:00
|
|
|
void registerTutorials();
|
2024-02-21 00:06:52 +01:00
|
|
|
void registerDataInformationSections();
|
2023-12-11 15:54:22 +01:00
|
|
|
void loadWorkspaces();
|
2021-01-22 18:01:39 +01:00
|
|
|
|
2024-01-28 22:14:59 +01:00
|
|
|
void addWindowDecoration();
|
2021-06-07 18:13:54 +02:00
|
|
|
void addFooterItems();
|
2023-05-25 09:26:40 +02:00
|
|
|
void addTitleBarButtons();
|
2021-08-21 00:52:11 +02:00
|
|
|
void addToolbarItems();
|
2022-05-27 20:42:07 +02:00
|
|
|
void addGlobalUIItems();
|
2023-11-28 00:19:42 +01:00
|
|
|
void addInitTasks();
|
2021-06-07 18:13:54 +02:00
|
|
|
|
2022-07-29 11:34:55 +02:00
|
|
|
void handleBorderlessWindowMode();
|
2024-01-21 18:39:51 +01:00
|
|
|
void setupOutOfBoxExperience();
|
2022-07-29 11:34:55 +02:00
|
|
|
|
2023-10-29 19:43:40 +01:00
|
|
|
void extractBundledFiles();
|
|
|
|
|
2021-01-22 18:01:39 +01:00
|
|
|
}
|
|
|
|
|
2023-07-13 14:08:23 +02:00
|
|
|
IMHEX_PLUGIN_SUBCOMMANDS() {
|
2024-06-26 19:38:25 +02:00
|
|
|
{ "help", "h", "Print help about this command", hex::plugin::builtin::handleHelpCommand },
|
|
|
|
{ "version", "", "Print ImHex version", hex::plugin::builtin::handleVersionCommand },
|
|
|
|
{ "plugins", "", "Lists all plugins that have been installed", hex::plugin::builtin::handlePluginsCommand },
|
|
|
|
{ "language", "", "Changes the language ImHex uses", hex::plugin::builtin::handleLanguageCommand },
|
|
|
|
{ "verbose", "v", "Enables verbose debug logging", hex::plugin::builtin::handleVerboseCommand },
|
|
|
|
|
|
|
|
{ "open", "o", "Open files passed as argument. [default]", hex::plugin::builtin::handleOpenCommand },
|
|
|
|
|
|
|
|
{ "calc", "", "Evaluate a mathematical expression", hex::plugin::builtin::handleCalcCommand },
|
|
|
|
{ "hash", "", "Calculate the hash of a file", hex::plugin::builtin::handleHashCommand },
|
|
|
|
{ "encode", "", "Encode a string", hex::plugin::builtin::handleEncodeCommand },
|
|
|
|
{ "decode", "", "Decode a string", hex::plugin::builtin::handleDecodeCommand },
|
|
|
|
{ "magic", "", "Identify file types", hex::plugin::builtin::handleMagicCommand },
|
|
|
|
{ "pl", "", "Interact with the pattern language", hex::plugin::builtin::handlePatternLanguageCommand },
|
|
|
|
{ "hexdump", "", "Generate a hex dump of the provided file", hex::plugin::builtin::handleHexdumpCommand },
|
|
|
|
{ "demangle", "", "Demangle a mangled symbol", hex::plugin::builtin::handleDemangleCommand },
|
|
|
|
{ "reset-settings", "", "Demangle a mangled symbol", hex::plugin::builtin::handleSettingsResetCommand },
|
2023-07-13 14:08:23 +02:00
|
|
|
};
|
|
|
|
|
2021-02-19 13:22:12 +01:00
|
|
|
IMHEX_PLUGIN_SETUP("Built-in", "WerWolv", "Default ImHex functionality") {
|
2021-01-22 18:01:39 +01:00
|
|
|
using namespace hex::plugin::builtin;
|
|
|
|
|
2022-12-05 09:31:16 +01:00
|
|
|
hex::log::debug("Using romfs: '{}'", romfs::name());
|
2022-12-02 12:00:04 +01:00
|
|
|
for (auto &path : romfs::list("lang"))
|
|
|
|
hex::ContentRegistry::Language::addLocalization(nlohmann::json::parse(romfs::get(path).string()));
|
2022-02-16 21:32:33 +01:00
|
|
|
|
2023-11-28 00:19:42 +01:00
|
|
|
addInitTasks();
|
2023-12-11 15:54:22 +01:00
|
|
|
extractBundledFiles();
|
2023-11-28 00:19:42 +01:00
|
|
|
|
2024-01-21 18:39:32 +01:00
|
|
|
registerMainMenuEntries();
|
|
|
|
|
2022-05-27 20:42:07 +02:00
|
|
|
registerEventHandlers();
|
|
|
|
registerDataVisualizers();
|
2024-01-28 15:28:55 +01:00
|
|
|
registerMiniMapVisualizers();
|
2021-01-22 18:01:39 +01:00
|
|
|
registerDataInspectorEntries();
|
|
|
|
registerToolEntries();
|
|
|
|
registerPatternLanguageFunctions();
|
2022-04-17 16:57:30 +02:00
|
|
|
registerPatternLanguagePragmas();
|
2023-01-20 21:16:28 +01:00
|
|
|
registerPatternLanguageVisualizers();
|
2021-01-22 18:01:39 +01:00
|
|
|
registerCommandPaletteCommands();
|
2023-10-21 23:07:33 +02:00
|
|
|
registerThemes();
|
2021-01-22 18:01:39 +01:00
|
|
|
registerSettings();
|
2022-07-02 16:22:38 +02:00
|
|
|
loadSettings();
|
2021-01-30 22:39:06 +01:00
|
|
|
registerDataProcessorNodes();
|
2021-12-07 22:47:41 +01:00
|
|
|
registerProviders();
|
2022-01-13 00:27:31 +01:00
|
|
|
registerDataFormatters();
|
2022-05-27 20:42:07 +02:00
|
|
|
registerViews();
|
2022-12-29 19:26:00 +01:00
|
|
|
registerThemeHandlers();
|
2023-02-16 18:06:40 +01:00
|
|
|
registerStyleHandlers();
|
2023-05-15 11:30:24 +02:00
|
|
|
registerBackgroundServices();
|
|
|
|
registerNetworkEndpoints();
|
2023-06-06 21:35:13 +02:00
|
|
|
registerFileHandlers();
|
2023-06-21 20:07:36 +02:00
|
|
|
registerProjectHandlers();
|
2023-07-16 23:46:41 +02:00
|
|
|
registerCommandForwarders();
|
2023-08-06 21:33:15 +02:00
|
|
|
registerAchievements();
|
2023-11-22 08:26:31 +01:00
|
|
|
registerReportGenerators();
|
2023-12-13 23:03:39 +01:00
|
|
|
registerTutorials();
|
2024-02-21 00:06:52 +01:00
|
|
|
registerDataInformationSections();
|
2023-12-11 15:54:22 +01:00
|
|
|
loadWorkspaces();
|
2024-01-28 22:14:59 +01:00
|
|
|
addWindowDecoration();
|
|
|
|
createWelcomeScreen();
|
2021-02-13 15:15:32 +01:00
|
|
|
|
2021-06-07 18:13:54 +02:00
|
|
|
addFooterItems();
|
2023-05-25 09:26:40 +02:00
|
|
|
addTitleBarButtons();
|
2021-08-21 00:52:11 +02:00
|
|
|
addToolbarItems();
|
2022-05-27 20:42:07 +02:00
|
|
|
addGlobalUIItems();
|
|
|
|
|
2024-01-21 18:39:51 +01:00
|
|
|
setupOutOfBoxExperience();
|
2021-01-22 18:01:39 +01:00
|
|
|
}
|