2019-09-05 00:26:26 +08:00
|
|
|
#include "pch.h"
|
|
|
|
#include "powertoy_module.h"
|
|
|
|
|
2020-03-26 18:51:05 +08:00
|
|
|
std::map<std::wstring, PowertoyModule>& modules()
|
2019-12-27 00:26:11 +08:00
|
|
|
{
|
2020-03-26 18:51:05 +08:00
|
|
|
static std::map<std::wstring, PowertoyModule> modules;
|
2019-12-27 00:26:11 +08:00
|
|
|
return modules;
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
|
|
|
|
2019-12-27 00:26:11 +08:00
|
|
|
PowertoyModule load_powertoy(const std::wstring& filename)
|
|
|
|
{
|
|
|
|
auto handle = winrt::check_pointer(LoadLibraryW(filename.c_str()));
|
|
|
|
auto create = reinterpret_cast<powertoy_create_func>(GetProcAddress(handle, "powertoy_create"));
|
|
|
|
if (!create)
|
|
|
|
{
|
|
|
|
FreeLibrary(handle);
|
|
|
|
winrt::throw_last_error();
|
|
|
|
}
|
|
|
|
auto module = create();
|
|
|
|
if (!module)
|
|
|
|
{
|
|
|
|
FreeLibrary(handle);
|
|
|
|
winrt::throw_last_error();
|
|
|
|
}
|
2020-05-27 23:06:50 +08:00
|
|
|
module->register_system_menu_helper(&SystemMenuHelperInstance());
|
2019-12-27 00:26:11 +08:00
|
|
|
return PowertoyModule(module, handle);
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
2019-12-06 16:40:23 +08:00
|
|
|
|
2019-12-27 00:26:11 +08:00
|
|
|
json::JsonObject PowertoyModule::json_config() const
|
|
|
|
{
|
|
|
|
int size = 0;
|
|
|
|
module->get_config(nullptr, &size);
|
|
|
|
std::wstring result;
|
|
|
|
result.resize(size - 1);
|
|
|
|
module->get_config(result.data(), &size);
|
|
|
|
return json::JsonObject::Parse(result);
|
2019-12-06 16:40:23 +08:00
|
|
|
}
|
2020-03-13 17:55:15 +08:00
|
|
|
|
|
|
|
PowertoyModule::PowertoyModule(PowertoyModuleIface* module, HMODULE handle) :
|
|
|
|
handle(handle), module(module)
|
|
|
|
{
|
|
|
|
if (!module)
|
|
|
|
{
|
|
|
|
throw std::runtime_error("Module not initialized");
|
|
|
|
}
|
|
|
|
auto want_signals = module->get_events();
|
|
|
|
if (want_signals)
|
|
|
|
{
|
|
|
|
for (; *want_signals; ++want_signals)
|
|
|
|
{
|
|
|
|
powertoys_events().register_receiver(*want_signals, module);
|
|
|
|
}
|
|
|
|
}
|
2020-05-27 23:06:50 +08:00
|
|
|
if (SystemMenuHelperInstance().HasCustomConfig(module))
|
2020-03-13 17:55:15 +08:00
|
|
|
{
|
|
|
|
powertoys_events().register_system_menu_action(module);
|
|
|
|
}
|
|
|
|
}
|