2015-04-10 01:32:04 +09:00
|
|
|
/*
|
2020-05-11 21:51:41 +09:00
|
|
|
Copyright 2013,2016,2020 Jun Wako <wakojun@gmail.com>
|
2015-04-10 01:32:04 +09:00
|
|
|
|
|
|
|
|
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, either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
|
*/
|
|
|
|
|
#include "keymap.h"
|
|
|
|
|
#include "report.h"
|
|
|
|
|
#include "keycode.h"
|
|
|
|
|
#include "action_layer.h"
|
|
|
|
|
#include "action.h"
|
|
|
|
|
#include "action_macro.h"
|
2015-09-16 12:42:38 +09:00
|
|
|
#include "wait.h"
|
2015-04-10 01:32:04 +09:00
|
|
|
#include "debug.h"
|
2015-10-12 07:14:07 +01:00
|
|
|
#include "bootloader.h"
|
2016-06-25 23:10:31 +09:00
|
|
|
#if defined(__AVR__)
|
|
|
|
|
#include <avr/pgmspace.h>
|
|
|
|
|
#endif
|
2015-04-10 01:32:04 +09:00
|
|
|
|
2015-10-12 09:46:48 +01:00
|
|
|
#ifdef BOOTMAGIC_ENABLE
|
|
|
|
|
extern keymap_config_t keymap_config;
|
|
|
|
|
#endif
|
2015-04-10 01:32:04 +09:00
|
|
|
|
|
|
|
|
static action_t keycode_to_action(uint8_t keycode);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* converts key to action */
|
2016-06-25 23:10:31 +09:00
|
|
|
__attribute__ ((weak))
|
2015-04-10 01:32:04 +09:00
|
|
|
action_t action_for_key(uint8_t layer, keypos_t key)
|
|
|
|
|
{
|
|
|
|
|
uint8_t keycode = keymap_key_to_keycode(layer, key);
|
|
|
|
|
switch (keycode) {
|
|
|
|
|
case KC_FN0 ... KC_FN31:
|
|
|
|
|
return keymap_fn_to_action(keycode);
|
|
|
|
|
#ifdef BOOTMAGIC_ENABLE
|
|
|
|
|
case KC_CAPSLOCK:
|
|
|
|
|
case KC_LOCKING_CAPS:
|
|
|
|
|
if (keymap_config.swap_control_capslock || keymap_config.capslock_to_control) {
|
|
|
|
|
return keycode_to_action(KC_LCTL);
|
|
|
|
|
}
|
|
|
|
|
return keycode_to_action(keycode);
|
|
|
|
|
case KC_LCTL:
|
|
|
|
|
if (keymap_config.swap_control_capslock) {
|
|
|
|
|
return keycode_to_action(KC_CAPSLOCK);
|
|
|
|
|
}
|
|
|
|
|
return keycode_to_action(KC_LCTL);
|
|
|
|
|
case KC_LALT:
|
|
|
|
|
if (keymap_config.swap_lalt_lgui) {
|
|
|
|
|
if (keymap_config.no_gui) {
|
2016-03-30 03:37:57 +09:00
|
|
|
return keycode_to_action(KC_NO);
|
2015-04-10 01:32:04 +09:00
|
|
|
}
|
|
|
|
|
return keycode_to_action(KC_LGUI);
|
|
|
|
|
}
|
|
|
|
|
return keycode_to_action(KC_LALT);
|
|
|
|
|
case KC_LGUI:
|
|
|
|
|
if (keymap_config.swap_lalt_lgui) {
|
|
|
|
|
return keycode_to_action(KC_LALT);
|
|
|
|
|
}
|
|
|
|
|
if (keymap_config.no_gui) {
|
2016-03-30 03:37:57 +09:00
|
|
|
return keycode_to_action(KC_NO);
|
2015-04-10 01:32:04 +09:00
|
|
|
}
|
|
|
|
|
return keycode_to_action(KC_LGUI);
|
|
|
|
|
case KC_RALT:
|
|
|
|
|
if (keymap_config.swap_ralt_rgui) {
|
|
|
|
|
if (keymap_config.no_gui) {
|
2016-03-30 03:37:57 +09:00
|
|
|
return keycode_to_action(KC_NO);
|
2015-04-10 01:32:04 +09:00
|
|
|
}
|
|
|
|
|
return keycode_to_action(KC_RGUI);
|
|
|
|
|
}
|
|
|
|
|
return keycode_to_action(KC_RALT);
|
|
|
|
|
case KC_RGUI:
|
|
|
|
|
if (keymap_config.swap_ralt_rgui) {
|
|
|
|
|
return keycode_to_action(KC_RALT);
|
|
|
|
|
}
|
|
|
|
|
if (keymap_config.no_gui) {
|
2016-03-30 03:37:57 +09:00
|
|
|
return keycode_to_action(KC_NO);
|
2015-04-10 01:32:04 +09:00
|
|
|
}
|
|
|
|
|
return keycode_to_action(KC_RGUI);
|
|
|
|
|
case KC_GRAVE:
|
|
|
|
|
if (keymap_config.swap_grave_esc) {
|
|
|
|
|
return keycode_to_action(KC_ESC);
|
|
|
|
|
}
|
|
|
|
|
return keycode_to_action(KC_GRAVE);
|
|
|
|
|
case KC_ESC:
|
|
|
|
|
if (keymap_config.swap_grave_esc) {
|
|
|
|
|
return keycode_to_action(KC_GRAVE);
|
|
|
|
|
}
|
|
|
|
|
return keycode_to_action(KC_ESC);
|
|
|
|
|
case KC_BSLASH:
|
|
|
|
|
if (keymap_config.swap_backslash_backspace) {
|
|
|
|
|
return keycode_to_action(KC_BSPACE);
|
|
|
|
|
}
|
|
|
|
|
return keycode_to_action(KC_BSLASH);
|
|
|
|
|
case KC_BSPACE:
|
|
|
|
|
if (keymap_config.swap_backslash_backspace) {
|
|
|
|
|
return keycode_to_action(KC_BSLASH);
|
|
|
|
|
}
|
|
|
|
|
return keycode_to_action(KC_BSPACE);
|
|
|
|
|
#endif
|
|
|
|
|
default:
|
|
|
|
|
return keycode_to_action(keycode);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Macro */
|
|
|
|
|
__attribute__ ((weak))
|
|
|
|
|
const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
|
|
|
|
|
{
|
2015-09-07 21:33:06 +01:00
|
|
|
(void)record;
|
|
|
|
|
(void)id;
|
|
|
|
|
(void)opt;
|
2015-04-10 01:32:04 +09:00
|
|
|
return MACRO_NONE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Function */
|
|
|
|
|
__attribute__ ((weak))
|
|
|
|
|
void action_function(keyrecord_t *record, uint8_t id, uint8_t opt)
|
|
|
|
|
{
|
2015-09-07 21:33:06 +01:00
|
|
|
(void)record;
|
|
|
|
|
(void)id;
|
|
|
|
|
(void)opt;
|
2015-04-10 01:32:04 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* translates keycode to action */
|
|
|
|
|
static action_t keycode_to_action(uint8_t keycode)
|
|
|
|
|
{
|
|
|
|
|
switch (keycode) {
|
|
|
|
|
case KC_A ... KC_EXSEL:
|
|
|
|
|
case KC_LCTRL ... KC_RGUI:
|
2016-03-30 03:37:57 +09:00
|
|
|
return (action_t)ACTION_KEY(keycode);
|
2015-04-10 01:32:04 +09:00
|
|
|
break;
|
|
|
|
|
case KC_SYSTEM_POWER ... KC_SYSTEM_WAKE:
|
2016-03-30 03:37:57 +09:00
|
|
|
return (action_t)ACTION_USAGE_SYSTEM(KEYCODE2SYSTEM(keycode));
|
2015-04-10 01:32:04 +09:00
|
|
|
break;
|
2020-05-11 21:51:41 +09:00
|
|
|
case KC_AUDIO_MUTE ... KC_BRIGHTNESS_DEC:
|
2016-03-30 03:37:57 +09:00
|
|
|
return (action_t)ACTION_USAGE_CONSUMER(KEYCODE2CONSUMER(keycode));
|
2015-04-10 01:32:04 +09:00
|
|
|
break;
|
|
|
|
|
case KC_MS_UP ... KC_MS_ACCEL2:
|
2016-03-30 03:37:57 +09:00
|
|
|
return (action_t)ACTION_MOUSEKEY(keycode);
|
2015-04-10 01:32:04 +09:00
|
|
|
break;
|
|
|
|
|
case KC_TRNS:
|
2016-03-30 03:37:57 +09:00
|
|
|
return (action_t)ACTION_TRANSPARENT;
|
2015-09-15 09:17:02 -07:00
|
|
|
break;
|
2015-09-16 12:42:38 +09:00
|
|
|
case KC_BOOTLOADER:
|
2019-09-17 20:55:35 +09:00
|
|
|
return (action_t)ACTION_COMMAND(COMMAND_BOOTLOADER, 0);
|
2015-04-10 01:32:04 +09:00
|
|
|
break;
|
|
|
|
|
default:
|
2016-03-30 03:37:57 +09:00
|
|
|
return (action_t)ACTION_NO;
|
2015-04-10 01:32:04 +09:00
|
|
|
break;
|
|
|
|
|
}
|
2016-03-30 03:37:57 +09:00
|
|
|
return (action_t)ACTION_NO;
|
2015-04-10 01:32:04 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef USE_LEGACY_KEYMAP
|
|
|
|
|
/*
|
|
|
|
|
* Legacy keymap support
|
|
|
|
|
* Consider using new keymap API instead.
|
|
|
|
|
*/
|
2016-06-25 23:10:31 +09:00
|
|
|
__attribute__ ((weak))
|
|
|
|
|
uint8_t keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t col)
|
|
|
|
|
{
|
|
|
|
|
return pgm_read_byte(&keymaps[(layer)][(row)][(col)]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
__attribute__ ((weak))
|
|
|
|
|
uint8_t keymap_fn_layer(uint8_t index)
|
|
|
|
|
{
|
|
|
|
|
return pgm_read_byte(&fn_layer[index]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
__attribute__ ((weak))
|
|
|
|
|
uint8_t keymap_fn_keycode(uint8_t index)
|
|
|
|
|
{
|
|
|
|
|
return pgm_read_byte(&fn_keycode[index]);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-10 01:32:04 +09:00
|
|
|
__attribute__ ((weak))
|
|
|
|
|
uint8_t keymap_key_to_keycode(uint8_t layer, keypos_t key)
|
|
|
|
|
{
|
|
|
|
|
return keymap_get_keycode(layer, key.row, key.col);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Legacy keymap support */
|
|
|
|
|
__attribute__ ((weak))
|
|
|
|
|
action_t keymap_fn_to_action(uint8_t keycode)
|
|
|
|
|
{
|
|
|
|
|
switch (keycode) {
|
|
|
|
|
case KC_FN0 ... KC_FN31:
|
|
|
|
|
{
|
|
|
|
|
uint8_t layer = keymap_fn_layer(FN_INDEX(keycode));
|
|
|
|
|
uint8_t key = keymap_fn_keycode(FN_INDEX(keycode));
|
|
|
|
|
if (key) {
|
2016-03-30 03:37:57 +09:00
|
|
|
return (action_t)ACTION_LAYER_TAP_KEY(layer, key);
|
2015-04-10 01:32:04 +09:00
|
|
|
} else {
|
2016-03-30 03:37:57 +09:00
|
|
|
return (action_t)ACTION_LAYER_MOMENTARY(layer);
|
2015-04-10 01:32:04 +09:00
|
|
|
}
|
|
|
|
|
}
|
2016-03-30 03:37:57 +09:00
|
|
|
return (action_t)ACTION_NO;
|
2015-04-10 01:32:04 +09:00
|
|
|
default:
|
2016-03-30 03:37:57 +09:00
|
|
|
return (action_t)ACTION_NO;
|
2015-04-10 01:32:04 +09:00
|
|
|
}
|
|
|
|
|
}
|
2016-06-25 23:10:31 +09:00
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
__attribute__ ((weak))
|
|
|
|
|
uint8_t keymap_key_to_keycode(uint8_t layer, keypos_t key)
|
|
|
|
|
{
|
|
|
|
|
#if defined(__AVR__)
|
|
|
|
|
return pgm_read_byte(&keymaps[(layer)][(key.row)][(key.col)]);
|
|
|
|
|
#else
|
|
|
|
|
return keymaps[(layer)][(key.row)][(key.col)];
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
__attribute__ ((weak))
|
|
|
|
|
action_t keymap_fn_to_action(uint8_t keycode)
|
|
|
|
|
{
|
|
|
|
|
#if defined(__AVR__)
|
|
|
|
|
return (action_t)pgm_read_word(&fn_actions[FN_INDEX(keycode)]);
|
|
|
|
|
#else
|
|
|
|
|
return fn_actions[FN_INDEX(keycode)];
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-10 01:32:04 +09:00
|
|
|
#endif
|