2021-01-04 00:19:56 +01:00
|
|
|
#pragma once
|
|
|
|
|
2021-01-11 20:31:40 +01:00
|
|
|
#include <any>
|
2021-01-04 00:19:56 +01:00
|
|
|
#include <functional>
|
2021-01-20 20:16:24 +01:00
|
|
|
#include <list>
|
2021-01-11 21:11:03 +01:00
|
|
|
#include <map>
|
2021-01-20 20:16:24 +01:00
|
|
|
#include <vector>
|
2021-01-04 00:19:56 +01:00
|
|
|
|
2021-01-13 17:28:27 +01:00
|
|
|
#include <hex/api/content_registry.hpp>
|
2021-01-20 20:16:24 +01:00
|
|
|
#include <hex/api/imhex_api.hpp>
|
2021-01-13 17:28:27 +01:00
|
|
|
#include <hex/api/event.hpp>
|
2021-01-11 20:31:40 +01:00
|
|
|
|
2021-01-04 00:19:56 +01:00
|
|
|
#include <imgui.h>
|
2021-01-27 00:44:10 +01:00
|
|
|
#include <ImGuiFileBrowser.h>
|
|
|
|
|
2021-01-11 20:31:40 +01:00
|
|
|
#include <nlohmann/json.hpp>
|
2021-01-04 00:19:56 +01:00
|
|
|
|
|
|
|
namespace hex { class SharedData; }
|
|
|
|
|
|
|
|
namespace hex::plugin::internal {
|
|
|
|
void initializePlugin(SharedData &sharedData);
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
|
|
|
namespace prv { class Provider; }
|
2021-01-30 22:39:06 +01:00
|
|
|
namespace dp { class Node; }
|
2021-01-27 14:26:24 +01:00
|
|
|
class View;
|
2021-01-04 00:19:56 +01:00
|
|
|
|
|
|
|
class SharedData {
|
|
|
|
SharedData() = default;
|
|
|
|
public:
|
|
|
|
SharedData(const SharedData&) = delete;
|
|
|
|
SharedData(SharedData&&) = delete;
|
|
|
|
|
|
|
|
friend class Window;
|
|
|
|
|
2021-01-11 20:31:40 +01:00
|
|
|
template<typename T>
|
2021-01-12 23:28:41 +01:00
|
|
|
static T& getVariable(std::string variableName) {
|
|
|
|
return std::any_cast<T&>(SharedData::sharedVariables[variableName]);
|
2021-01-11 20:31:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
2021-01-12 23:28:41 +01:00
|
|
|
static void setVariable(std::string variableName, T value) {
|
|
|
|
SharedData::sharedVariables[variableName] = value;
|
2021-01-04 00:19:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2021-01-12 23:28:41 +01:00
|
|
|
static std::vector<EventHandler> eventHandlers;
|
|
|
|
static std::vector<std::function<void()>> deferredCalls;
|
|
|
|
static prv::Provider *currentProvider;
|
|
|
|
static std::map<std::string, std::vector<ContentRegistry::Settings::Entry>> settingsEntries;
|
|
|
|
static nlohmann::json settingsJson;
|
|
|
|
static std::map<std::string, Events> customEvents;
|
|
|
|
static u32 customEventsLastId;
|
|
|
|
static std::vector<ContentRegistry::CommandPaletteCommands::Entry> commandPaletteCommands;
|
|
|
|
static std::map<std::string, ContentRegistry::PatternLanguageFunctions::Function> patternLanguageFunctions;
|
|
|
|
static std::vector<View*> views;
|
2021-01-13 13:18:03 +01:00
|
|
|
static std::vector<ContentRegistry::Tools::Entry> toolsEntries;
|
2021-01-13 01:24:27 +01:00
|
|
|
static std::vector<ContentRegistry::DataInspector::Entry> dataInspectorEntries;
|
2021-01-13 23:08:41 +01:00
|
|
|
static u32 patternPaletteOffset;
|
|
|
|
static std::string errorPopupMessage;
|
2021-01-20 20:16:24 +01:00
|
|
|
static std::list<ImHexApi::Bookmarks::Entry> bookmarkEntries;
|
2021-01-12 23:28:41 +01:00
|
|
|
|
2021-01-27 00:44:10 +01:00
|
|
|
static imgui_addons::ImGuiFileBrowser fileBrowser;
|
|
|
|
static imgui_addons::ImGuiFileBrowser::DialogMode fileBrowserDialogMode;
|
|
|
|
static std::string fileBrowserTitle;
|
|
|
|
static std::string fileBrowserValidExtensions;
|
|
|
|
static std::function<void(std::string)> fileBrowserCallback;
|
|
|
|
|
2021-01-30 22:39:06 +01:00
|
|
|
static std::vector<ContentRegistry::DataProcessorNode::Entry> dataProcessorNodes;
|
|
|
|
static u32 dataProcessorNodeIdCounter;
|
|
|
|
|
2021-01-12 23:28:41 +01:00
|
|
|
static int mainArgc;
|
|
|
|
static char **mainArgv;
|
|
|
|
|
|
|
|
static ImVec2 windowPos;
|
|
|
|
static ImVec2 windowSize;
|
2021-01-11 20:31:40 +01:00
|
|
|
|
|
|
|
private:
|
2021-01-12 23:28:41 +01:00
|
|
|
static std::map<std::string, std::any> sharedVariables;
|
2021-01-04 00:19:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|