2019-09-05 00:26:26 +08:00
|
|
|
#include "pch.h"
|
|
|
|
#include "powertoy_module.h"
|
2020-09-21 18:44:16 +08:00
|
|
|
#include "centralized_kb_hook.h"
|
2019-09-05 00:26:26 +08:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-06-22 18:01:33 +08:00
|
|
|
PowertoyModule load_powertoy(const std::wstring_view filename)
|
2019-12-27 00:26:11 +08:00
|
|
|
{
|
2020-06-22 18:01:33 +08:00
|
|
|
auto handle = winrt::check_pointer(LoadLibraryW(filename.data()));
|
2019-12-27 00:26:11 +08:00
|
|
|
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);
|
2020-09-18 21:18:01 +08:00
|
|
|
winrt::throw_hresult(winrt::hresult(E_POINTER));
|
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");
|
|
|
|
}
|
2020-09-21 18:44:16 +08:00
|
|
|
|
|
|
|
update_hotkeys();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PowertoyModule::update_hotkeys()
|
|
|
|
{
|
|
|
|
CentralizedKeyboardHook::ClearModuleHotkeys(module->get_name());
|
|
|
|
|
|
|
|
size_t hotkeyCount = module->get_hotkeys(nullptr, 0);
|
|
|
|
std::vector<PowertoyModuleIface::Hotkey> hotkeys(hotkeyCount);
|
|
|
|
module->get_hotkeys(hotkeys.data(), hotkeyCount);
|
|
|
|
|
|
|
|
auto modulePtr = module.get();
|
|
|
|
|
|
|
|
for (size_t i = 0; i < hotkeyCount; i++)
|
|
|
|
{
|
|
|
|
CentralizedKeyboardHook::SetHotkeyAction(module->get_name(), hotkeys[i], [modulePtr, i] {
|
|
|
|
return modulePtr->on_hotkey(i);
|
|
|
|
});
|
|
|
|
}
|
2020-03-13 17:55:15 +08:00
|
|
|
}
|