|
|
|
/* Kaleidoscope - Firmware for computer input devices
|
|
|
|
* Copyright (C) 2013-2018 Keyboard.io, Inc.
|
|
|
|
*
|
|
|
|
* This program 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, version 3.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
Major redesign of the plugin and hooking interface
With this redesign, we introduce a new way to create plugins, which is easier to
extend with new hook points, provides a better interface, uses less memory, less
program space, and is a tiny bit faster too.
It all begins with `kaleidoscope::Plugin` being the base class, which provides
the hook methods plugins can implement. Plugins should be declared with
`KALEIDOSCOPE_INIT_PLUGINS` instead of `Kaleidoscope.use()`. Behind this macro
is a bit of magic (see the in-code documentation) that allows us to unroll the
hook method calls, avoid vtables, and so on. It creates an override for
`kaleidoscope::Hooks::*` methods, each of which will call the respective methods
of each initialized plugin.
With the new API come new names: all of the methods plugins can implement
received new, more descriptive names that all follow a similar pattern.
The old (dubbed V1) API still remains in place, although deprecated. One can
turn it off by setting the `KALEIDOSCOPE_ENABLE_V1_PLUGIN_API` define to zero,
while compiling the firmware.
This work is based on #276, written by @noseglasses. @obra and @algernon did
some cleaning up and applied a little naming treatment.
Signed-off-by: noseglasses <shinynoseglasses@gmail.com>
Signed-off-by: Jesse Vincent <jesse@keyboard.io>
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
7 years ago
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
|
|
namespace kaleidoscope {
|
|
|
|
union Key;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "kaleidoscope/plugin.h"
|
|
|
|
#include "kaleidoscope/event_handlers.h"
|
Major redesign of the plugin and hooking interface
With this redesign, we introduce a new way to create plugins, which is easier to
extend with new hook points, provides a better interface, uses less memory, less
program space, and is a tiny bit faster too.
It all begins with `kaleidoscope::Plugin` being the base class, which provides
the hook methods plugins can implement. Plugins should be declared with
`KALEIDOSCOPE_INIT_PLUGINS` instead of `Kaleidoscope.use()`. Behind this macro
is a bit of magic (see the in-code documentation) that allows us to unroll the
hook method calls, avoid vtables, and so on. It creates an override for
`kaleidoscope::Hooks::*` methods, each of which will call the respective methods
of each initialized plugin.
With the new API come new names: all of the methods plugins can implement
received new, more descriptive names that all follow a similar pattern.
The old (dubbed V1) API still remains in place, although deprecated. One can
turn it off by setting the `KALEIDOSCOPE_ENABLE_V1_PLUGIN_API` define to zero,
while compiling the firmware.
This work is based on #276, written by @noseglasses. @obra and @algernon did
some cleaning up and applied a little naming treatment.
Signed-off-by: noseglasses <shinynoseglasses@gmail.com>
Signed-off-by: Jesse Vincent <jesse@keyboard.io>
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
7 years ago
|
|
|
|
|
|
|
// Forward declaration required to enable friend declarations
|
|
|
|
// in class Hooks.
|
|
|
|
class kaleidoscope_;
|
|
|
|
extern void handleKeyswitchEvent(kaleidoscope::Key mappedKey, byte row, byte col, uint8_t keyState);
|
|
|
|
|
|
|
|
namespace kaleidoscope {
|
|
|
|
|
|
|
|
// The reason why the hook routing entry point functions live within
|
|
|
|
// class Hooks and not directly within a namespace is, that we want
|
|
|
|
// to restrict who is allowed to trigger hooks, mainly to prevent
|
|
|
|
// user code from calling hook methods.
|
|
|
|
//
|
|
|
|
// A note to maintainers: When you add new hooks that are supposed to
|
|
|
|
// be called from other places than the friend classes and functions listed
|
|
|
|
// below, just add a suitable friend declaration.
|
|
|
|
|
|
|
|
class Hooks {
|
|
|
|
|
|
|
|
// The following friend declarations restrict access to
|
|
|
|
// the hook routing system.
|
|
|
|
|
|
|
|
// Kaleidoscope_ calls Hooks::onSetup, Hooks::beforeReportingState
|
|
|
|
// and Hooks::afterEachCycle.
|
|
|
|
friend class Kaleidoscope_;
|
|
|
|
|
|
|
|
// ::handleKeyswitchEvent(...) calls Hooks::onKeyswitchEvent.
|
|
|
|
friend void ::handleKeyswitchEvent(kaleidoscope::Key mappedKey,
|
|
|
|
byte row, byte col, uint8_t keyState);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// The following private functions are just to be called by classes
|
|
|
|
// and functions that are declared as friends above.
|
|
|
|
|
|
|
|
#define DEFINE_WEAK_HOOK_FUNCTION( \
|
|
|
|
HOOK_NAME, SHOULD_ABORT_ON_CONSUMED_EVENT, SIGNATURE, ARGS_LIST) __NL__ \
|
|
|
|
__NL__ \
|
|
|
|
static EventHandlerResult HOOK_NAME SIGNATURE;
|
|
|
|
|
|
|
|
_FOR_EACH_EVENT_HANDLER(DEFINE_WEAK_HOOK_FUNCTION)
|
|
|
|
|
|
|
|
#undef DEFINE_WEAK_HOOK_FUNCTION
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|