2015-04-09 18:32:04 +02:00
|
|
|
/*
|
|
|
|
Copyright 2011 Jun Wako <wakojun@gmail.com>
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2018-10-31 02:03:46 +01:00
|
|
|
#pragma once
|
2015-04-09 18:32:04 +02:00
|
|
|
|
2018-03-22 07:50:38 +01:00
|
|
|
/* FIXME: Add doxygen comments for the behavioral defines in here. */
|
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
/* TODO: Refactoring */
|
|
|
|
typedef enum { ONESHOT, CONSOLE, MOUSEKEY } command_state_t;
|
|
|
|
extern command_state_t command_state;
|
|
|
|
|
|
|
|
/* This allows to extend commands. Return false when command is not processed. */
|
|
|
|
bool command_extra(uint8_t code);
|
|
|
|
bool command_console_extra(uint8_t code);
|
|
|
|
|
|
|
|
#ifdef COMMAND_ENABLE
|
2021-08-07 09:12:57 +02:00
|
|
|
bool command_proc(uint8_t code);
|
2015-04-09 18:32:04 +02:00
|
|
|
#else
|
2019-08-30 20:19:03 +02:00
|
|
|
# define command_proc(code) false
|
2015-04-09 18:32:04 +02:00
|
|
|
#endif
|
|
|
|
|
2019-01-27 00:49:45 +01:00
|
|
|
#ifndef IS_COMMAND
|
2019-08-30 20:19:03 +02:00
|
|
|
# define IS_COMMAND() (get_mods() == MOD_MASK_SHIFT)
|
2019-01-27 00:49:45 +01:00
|
|
|
#endif
|
2016-03-28 07:03:21 +02:00
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
2019-02-18 07:23:32 +01:00
|
|
|
#ifndef MAGIC_KEY_HELP
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_HELP H
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
2019-02-18 07:23:32 +01:00
|
|
|
#ifndef MAGIC_KEY_HELP_ALT
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_HELP_ALT SLASH
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_DEBUG
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_DEBUG D
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_DEBUG_MATRIX
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_DEBUG_MATRIX X
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_DEBUG_KBD
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_DEBUG_KBD K
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_DEBUG_MOUSE
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_DEBUG_MOUSE M
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_VERSION
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_VERSION V
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_STATUS
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_STATUS S
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_CONSOLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_CONSOLE C
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_LAYER0
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_LAYER0 0
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
2019-02-18 07:23:32 +01:00
|
|
|
#ifndef MAGIC_KEY_LAYER0_ALT
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_LAYER0_ALT GRAVE
|
2019-02-18 07:23:32 +01:00
|
|
|
#endif
|
|
|
|
|
2016-03-28 07:03:21 +02:00
|
|
|
#ifndef MAGIC_KEY_LAYER1
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_LAYER1 1
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_LAYER2
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_LAYER2 2
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_LAYER3
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_LAYER3 3
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_LAYER4
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_LAYER4 4
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_LAYER5
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_LAYER5 5
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_LAYER6
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_LAYER6 6
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_LAYER7
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_LAYER7 7
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_LAYER8
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_LAYER8 8
|
2015-04-09 18:32:04 +02:00
|
|
|
#endif
|
2016-03-28 07:03:21 +02:00
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_LAYER9
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_LAYER9 9
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_BOOTLOADER
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_BOOTLOADER B
|
2019-02-18 07:23:32 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_BOOTLOADER_ALT
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_BOOTLOADER_ALT ESC
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_LOCK
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_LOCK CAPS
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_EEPROM
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_EEPROM E
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
2019-02-18 07:23:32 +01:00
|
|
|
#ifndef MAGIC_KEY_EEPROM_CLEAR
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_EEPROM_CLEAR BSPACE
|
2019-02-18 07:23:32 +01:00
|
|
|
#endif
|
|
|
|
|
2016-03-28 07:03:21 +02:00
|
|
|
#ifndef MAGIC_KEY_NKRO
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_NKRO N
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAGIC_KEY_SLEEP_LED
|
2019-08-30 20:19:03 +02:00
|
|
|
# define MAGIC_KEY_SLEEP_LED Z
|
2016-03-28 07:03:21 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
#define XMAGIC_KC(key) KC_##key
|
|
|
|
#define MAGIC_KC(key) XMAGIC_KC(key)
|