mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 22:05:36 +08:00
76 lines
2.0 KiB
C++
76 lines
2.0 KiB
C++
#ifndef LUNA_PLUGINMANAGER_H
|
|
#define LUNA_PLUGINMANAGER_H
|
|
#include "Plugin/extension.h"
|
|
#include "textthread.h"
|
|
#include <nlohmann/json.hpp>
|
|
class LunaHost;
|
|
class confighelper;
|
|
enum class addpluginresult
|
|
{
|
|
success,
|
|
invaliddll,
|
|
isnotaplugins,
|
|
dumplicate
|
|
};
|
|
struct pluginitem
|
|
{
|
|
std::string path;
|
|
bool isQt;
|
|
bool isref;
|
|
bool enable;
|
|
bool vissetting;
|
|
pluginitem(const nlohmann::json &);
|
|
pluginitem(const std::wstring &, bool);
|
|
std::wstring wpath();
|
|
nlohmann::json dump() const;
|
|
};
|
|
class Pluginmanager;
|
|
struct plugindata
|
|
{
|
|
typedef wchar_t *(*OnNewSentence_t)(wchar_t *, const InfoForExtension *);
|
|
typedef void (*VisSetting_t)(bool);
|
|
std::wstring refpath;
|
|
bool isQt;
|
|
OnNewSentence_t OnNewSentence;
|
|
VisSetting_t VisSetting;
|
|
HMODULE hmodule;
|
|
void clear();
|
|
plugindata() {};
|
|
plugindata(const std::wstring &, Pluginmanager *, bool, HMODULE);
|
|
bool valid();
|
|
void initstatus(const pluginitem &);
|
|
};
|
|
class Pluginmanager
|
|
{
|
|
std::unordered_map<std::wstring, plugindata> OnNewSentenceS;
|
|
concurrency::reader_writer_lock OnNewSentenceSLock;
|
|
bool checkisdump(const std::wstring &);
|
|
confighelper *configs;
|
|
LunaHost *host;
|
|
std::array<InfoForExtension, 20> GetSentenceInfo(TextThread &thread);
|
|
void loadqtdlls(std::vector<std::wstring> &collectQtplugs);
|
|
|
|
public:
|
|
Pluginmanager(LunaHost *);
|
|
bool dispatch(TextThread &, std::wstring &sentence);
|
|
addpluginresult addplugin(const std::wstring &);
|
|
std::optional<std::wstring> selectpluginfile();
|
|
|
|
pluginitem get(int);
|
|
std::optional<pluginitem> get(const std::wstring &);
|
|
std::wstring getname(int);
|
|
bool getenable(int);
|
|
void set(int, const pluginitem &);
|
|
void setenable(int, bool);
|
|
int count();
|
|
void add(const pluginitem &);
|
|
void remove(const std::wstring &);
|
|
void unload(const std::wstring &);
|
|
addpluginresult load(const std::wstring &, bool *isqt = 0);
|
|
void swaprank(int, int);
|
|
bool getvisible(int);
|
|
bool getvisible_setable(int);
|
|
void setvisible(int, bool);
|
|
};
|
|
|
|
#endif |