2021-01-11 20:31:40 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
2021-01-13 17:41:16 +01:00
|
|
|
#include <hex/helpers/utils.hpp>
|
|
|
|
|
2021-01-11 20:31:40 +01:00
|
|
|
#include <functional>
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
2021-01-12 16:50:15 +01:00
|
|
|
class View;
|
2021-01-11 23:54:12 +01:00
|
|
|
namespace lang { class ASTNode; }
|
2021-01-22 18:01:39 +01:00
|
|
|
namespace lang { class Evaluator; }
|
2021-01-11 23:54:12 +01:00
|
|
|
|
2021-01-12 16:50:15 +01:00
|
|
|
/*
|
|
|
|
The Content Registry is the heart of all features in ImHex that are in some way extendable by Plugins.
|
|
|
|
It allows you to add/register new content that will be picked up and used by the ImHex core or by other
|
|
|
|
plugins when needed.
|
|
|
|
*/
|
2021-01-20 20:16:24 +01:00
|
|
|
struct ContentRegistry {
|
2021-01-11 20:31:40 +01:00
|
|
|
ContentRegistry() = delete;
|
|
|
|
|
2021-01-12 16:50:15 +01:00
|
|
|
/* Settings Registry. Allows adding of new entries into the ImHex preferences window. */
|
2021-01-11 20:31:40 +01:00
|
|
|
struct Settings {
|
|
|
|
Settings() = delete;
|
|
|
|
|
|
|
|
struct Entry {
|
|
|
|
std::string name;
|
|
|
|
std::function<bool(nlohmann::json&)> callback;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void load();
|
|
|
|
static void store();
|
|
|
|
|
|
|
|
static void add(std::string_view category, std::string_view name, s64 defaultValue, const std::function<bool(nlohmann::json&)> &callback);
|
|
|
|
static void add(std::string_view category, std::string_view name, std::string_view defaultValue, const std::function<bool(nlohmann::json&)> &callback);
|
|
|
|
|
|
|
|
static std::map<std::string, std::vector<Entry>>& getEntries();
|
|
|
|
static nlohmann::json& getSettingsData();
|
|
|
|
};
|
2021-01-11 21:11:03 +01:00
|
|
|
|
2021-01-12 16:50:15 +01:00
|
|
|
/* Events Registry. Allows to define new events that can be used by other plugins later on subscribe to */
|
2021-01-11 21:11:03 +01:00
|
|
|
struct Events {
|
2021-01-11 21:42:21 +01:00
|
|
|
Events() = delete;
|
|
|
|
|
2021-01-11 21:11:03 +01:00
|
|
|
static auto get(std::string_view name);
|
|
|
|
};
|
2021-01-11 23:02:55 +01:00
|
|
|
|
2021-01-12 16:50:15 +01:00
|
|
|
/* Command Palette Command Registry. Allows adding of new commands to the command palette */
|
2021-01-11 23:02:55 +01:00
|
|
|
struct CommandPaletteCommands {
|
|
|
|
CommandPaletteCommands() = delete;
|
|
|
|
|
|
|
|
enum class Type : u32 {
|
|
|
|
SymbolCommand,
|
|
|
|
KeywordCommand
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Entry {
|
|
|
|
Type type;
|
|
|
|
std::string command;
|
|
|
|
std::string description;
|
|
|
|
std::function<std::string(std::string)> callback;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void add(Type type, std::string_view command, std::string_view description, const std::function<std::string(std::string)> &callback);
|
2021-01-12 16:50:15 +01:00
|
|
|
static std::vector<Entry>& getEntries();
|
2021-01-11 23:02:55 +01:00
|
|
|
};
|
2021-01-11 23:54:12 +01:00
|
|
|
|
2021-01-12 16:50:15 +01:00
|
|
|
/* Pattern Language Function Registry. Allows adding of new functions that may be used inside the pattern language */
|
2021-01-11 23:54:12 +01:00
|
|
|
struct PatternLanguageFunctions {
|
|
|
|
PatternLanguageFunctions() = delete;
|
|
|
|
|
|
|
|
constexpr static u32 UnlimitedParameters = 0xFFFF'FFFF;
|
|
|
|
constexpr static u32 MoreParametersThan = 0x8000'0000;
|
|
|
|
constexpr static u32 LessParametersThan = 0x4000'0000;
|
|
|
|
constexpr static u32 NoParameters = 0x0000'0000;
|
|
|
|
|
|
|
|
struct Function {
|
|
|
|
u32 parameterCount;
|
2021-01-22 18:01:39 +01:00
|
|
|
std::function<hex::lang::ASTNode*(hex::lang::Evaluator&, std::vector<hex::lang::ASTNode*>)> func;
|
2021-01-11 23:54:12 +01:00
|
|
|
};
|
|
|
|
|
2021-01-22 18:01:39 +01:00
|
|
|
static void add(std::string_view name, u32 parameterCount, const std::function<hex::lang::ASTNode*(hex::lang::Evaluator&, std::vector<hex::lang::ASTNode*>)> &func);
|
2021-01-12 16:50:15 +01:00
|
|
|
static std::map<std::string, ContentRegistry::PatternLanguageFunctions::Function>& getEntries();
|
|
|
|
};
|
|
|
|
|
|
|
|
/* View Registry. Allows adding of new windows */
|
|
|
|
struct Views {
|
|
|
|
Views() = delete;
|
|
|
|
|
2021-01-13 17:41:16 +01:00
|
|
|
template<hex::derived_from<View> T, typename ... Args>
|
2021-01-12 16:50:15 +01:00
|
|
|
static T* add(Args&& ... args) {
|
|
|
|
return static_cast<T*>(add(new T(std::forward<Args>(args)...)));
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::vector<View*>& getEntries();
|
|
|
|
|
|
|
|
private:
|
|
|
|
static View* add(View *view);
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Tools Registry. Allows adding new entries to the tools window */
|
|
|
|
struct Tools {
|
2021-01-13 01:24:27 +01:00
|
|
|
Tools() = delete;
|
|
|
|
|
2021-01-13 13:18:03 +01:00
|
|
|
struct Entry {
|
|
|
|
std::string name;
|
|
|
|
std::function<void()> function;
|
|
|
|
};
|
2021-01-12 16:50:15 +01:00
|
|
|
|
2021-01-13 13:18:03 +01:00
|
|
|
static void add(std::string_view name, const std::function<void()> &function);
|
|
|
|
|
|
|
|
static std::vector<Entry>& getEntries();
|
2021-01-11 23:54:12 +01:00
|
|
|
};
|
2021-01-13 01:24:27 +01:00
|
|
|
|
|
|
|
/* Data Inspector Registry. Allows adding of new types to the data inspector */
|
|
|
|
struct DataInspector {
|
|
|
|
DataInspector() = delete;
|
|
|
|
|
|
|
|
enum class NumberDisplayStyle {
|
|
|
|
Decimal,
|
|
|
|
Hexadecimal,
|
|
|
|
Octal
|
|
|
|
};
|
|
|
|
|
|
|
|
using DisplayFunction = std::function<void()>;
|
|
|
|
using GeneratorFunction = std::function<DisplayFunction(const std::vector<u8>&, std::endian, NumberDisplayStyle)>;
|
|
|
|
|
|
|
|
struct Entry {
|
|
|
|
std::string name;
|
|
|
|
size_t requiredSize;
|
|
|
|
GeneratorFunction generatorFunction;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void add(std::string_view name, size_t requiredSize, GeneratorFunction function);
|
|
|
|
|
|
|
|
static std::vector<Entry>& getEntries();
|
|
|
|
};
|
2021-01-11 20:31:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|