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-02-03 00:56:33 +01:00
|
|
|
#include <memory>
|
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-02-03 00:56:33 +01:00
|
|
|
#include <hex/views/view.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
|
|
|
|
2021-08-29 14:18:45 +02:00
|
|
|
#include <nlohmann/json_fwd.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-04-20 21:46:48 +02:00
|
|
|
namespace lang { class PatternData; }
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-07-31 17:11:10 +02:00
|
|
|
static void clearVariables() {
|
|
|
|
SharedData::sharedVariables.clear();
|
|
|
|
}
|
|
|
|
|
2021-01-04 00:19:56 +01:00
|
|
|
public:
|
2021-01-12 23:28:41 +01:00
|
|
|
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::vector<ContentRegistry::CommandPaletteCommands::Entry> commandPaletteCommands;
|
|
|
|
static std::map<std::string, ContentRegistry::PatternLanguageFunctions::Function> patternLanguageFunctions;
|
2021-03-16 22:44:37 +01:00
|
|
|
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-04-20 21:46:48 +02:00
|
|
|
static std::vector<lang::PatternData*> patternData;
|
2021-02-11 00:35:30 +01:00
|
|
|
|
|
|
|
static std::map<std::string, std::string> languageNames;
|
|
|
|
static std::map<std::string, std::vector<LanguageDefinition>> languageDefinitions;
|
|
|
|
static std::map<std::string, std::string> loadedLanguageStrings;
|
2021-01-12 23:28:41 +01:00
|
|
|
|
2021-02-18 12:09:19 +01:00
|
|
|
static std::vector<ContentRegistry::Interface::DrawCallback> welcomeScreenEntries;
|
|
|
|
static std::vector<ContentRegistry::Interface::DrawCallback> footerItems;
|
2021-08-21 00:52:11 +02:00
|
|
|
static std::vector<ContentRegistry::Interface::DrawCallback> toolbarItems;
|
2021-02-18 12:09:19 +01:00
|
|
|
|
2021-01-30 22:39:06 +01:00
|
|
|
static std::vector<ContentRegistry::DataProcessorNode::Entry> dataProcessorNodes;
|
|
|
|
static u32 dataProcessorNodeIdCounter;
|
2021-05-17 23:17:58 +02:00
|
|
|
static u32 dataProcessorLinkIdCounter;
|
|
|
|
static u32 dataProcessorAttrIdCounter;
|
2021-01-30 22:39:06 +01:00
|
|
|
|
2021-04-13 08:41:59 +02:00
|
|
|
static std::list<std::string> recentFilePaths;
|
|
|
|
|
2021-01-12 23:28:41 +01:00
|
|
|
static int mainArgc;
|
|
|
|
static char **mainArgv;
|
|
|
|
|
2021-08-31 15:22:00 +02:00
|
|
|
static ImFontAtlas *fontAtlas;
|
|
|
|
static ImFontConfig fontConfig;
|
2021-01-12 23:28:41 +01:00
|
|
|
static ImVec2 windowPos;
|
|
|
|
static ImVec2 windowSize;
|
2021-01-11 20:31:40 +01:00
|
|
|
|
2021-08-31 15:22:00 +02:00
|
|
|
static float globalScale;
|
|
|
|
static float fontScale;
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|