You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
input-remapper/inputremapper/injection/mapping_handlers/macro_handler.py

108 lines
3.4 KiB
Python

#!/usr/bin/python3
# -*- coding: utf-8 -*-
# input-remapper - GUI for device specific keyboard mappings
# Copyright (C) 2022 sezanzeb <proxima@sezanzeb.de>
#
# This file is part of input-remapper.
#
# input-remapper is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# input-remapper is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with input-remapper. If not, see <https://www.gnu.org/licenses/>.
import asyncio
from typing import Dict
from inputremapper.configs.mapping import Mapping
from inputremapper.event_combination import EventCombination
from inputremapper.injection.global_uinputs import global_uinputs
from inputremapper.injection.macros.macro import Macro
from inputremapper.injection.macros.parse import parse
from inputremapper.injection.mapping_handlers.mapping_handler import (
ContextProtocol,
MappingHandler,
HandlerEnums,
)
from inputremapper.input_event import InputEvent
from inputremapper.logger import logger
class MacroHandler(MappingHandler):
"""Runs the target macro if notified."""
# TODO: replace this by the macro itself
_macro: Macro
_active: bool
def __init__(
self,
combination: EventCombination,
mapping: Mapping,
*,
context: ContextProtocol,
):
super().__init__(combination, mapping)
self._active = False
self._macro = parse(self.mapping.output_symbol, context, mapping)
def __str__(self):
return f"MacroHandler <{id(self)}>:"
def __repr__(self):
return self.__str__()
@property
def child(self): # used for logging
return f"maps to {self._macro} on {self.mapping.target_uinput}"
async def run_macro(self, f):
"""run the macro with the provided function"""
try:
await self._macro.run(f)
except Exception as e:
logger.error(f'Macro "%s" failed: %s', self._macro.code, e)
def notify(self, event: InputEvent, *_, **__) -> bool:
if event.value == 1:
self._active = True
self._macro.press_trigger()
if self._macro.running:
return True
def f(ev_type, code, value) -> None:
"""Handler for macros."""
logger.debug_key(
(ev_type, code, value),
"sending from macro to %s",
self.mapping.target_uinput,
)
global_uinputs.write((ev_type, code, value), self.mapping.target_uinput)
asyncio.ensure_future(self.run_macro(f))
return True
else:
self._active = False
if self._macro.is_holding():
self._macro.release_trigger()
return True
def reset(self) -> None:
self._active = False
if self._macro.is_holding():
self._macro.release_trigger()
def needs_wrapping(self) -> bool:
return True
def wrap_with(self) -> Dict[EventCombination, HandlerEnums]:
return {EventCombination(self.input_events): HandlerEnums.combination}