5171bea0bf
This PR intends to add support for .NET scripts that can extend ImHex's functionality in a portable and cross-platform way. --------- Co-authored-by: Justus Garbe <55301990+Nowilltolife@users.noreply.github.com>
39 lines
805 B
C++
39 lines
805 B
C++
#pragma once
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace hex::script::loader {
|
|
|
|
struct Script {
|
|
std::string name;
|
|
std::function<void()> entryPoint;
|
|
};
|
|
|
|
class ScriptLoader {
|
|
public:
|
|
ScriptLoader() = default;
|
|
virtual ~ScriptLoader() = default;
|
|
|
|
virtual bool initialize() = 0;
|
|
virtual bool loadAll() = 0;
|
|
|
|
void addScript(std::string name, std::function<void()> entryPoint) {
|
|
this->m_scripts.emplace_back(std::move(name), std::move(entryPoint));
|
|
}
|
|
|
|
const auto& getScripts() const {
|
|
return this->m_scripts;
|
|
}
|
|
|
|
protected:
|
|
void clearScripts() {
|
|
this->m_scripts.clear();
|
|
}
|
|
|
|
private:
|
|
std::vector<Script> m_scripts;
|
|
};
|
|
|
|
} |