2021-12-30 05:17:34 +01:00
|
|
|
// Copyright 2020 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com>
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-11-17 20:59:54 +01:00
|
|
|
|
2018-08-29 19:42:15 +02:00
|
|
|
#pragma once
|
2019-11-20 21:37:24 +01:00
|
|
|
#include QMK_KEYBOARD_H
|
|
|
|
|
2018-08-29 19:42:15 +02:00
|
|
|
#include "eeprom.h"
|
2021-12-15 05:53:36 +01:00
|
|
|
#include "keyrecords/wrappers.h"
|
|
|
|
#include "keyrecords/process_records.h"
|
2021-12-30 05:17:34 +01:00
|
|
|
#include "callbacks.h"
|
|
|
|
|
2018-12-04 22:27:41 +01:00
|
|
|
#ifdef TAP_DANCE_ENABLE
|
2021-12-15 05:53:36 +01:00
|
|
|
# include "keyrecords/tap_dances.h"
|
2021-07-27 02:59:49 +02:00
|
|
|
#endif // TAP_DANCE_ENABLE
|
2020-04-01 01:26:43 +02:00
|
|
|
#if defined(RGBLIGHT_ENABLE)
|
2021-12-15 05:53:36 +01:00
|
|
|
# include "rgb/rgb_stuff.h"
|
2019-04-22 20:55:55 +02:00
|
|
|
#endif
|
2020-04-01 01:26:43 +02:00
|
|
|
#if defined(RGB_MATRIX_ENABLE)
|
2021-12-15 05:53:36 +01:00
|
|
|
# include "rgb/rgb_matrix_stuff.h"
|
2020-04-01 01:26:43 +02:00
|
|
|
#endif
|
2021-08-24 08:28:26 +02:00
|
|
|
#if defined(OLED_ENABLE)
|
2021-12-15 05:53:36 +01:00
|
|
|
# include "oled/oled_stuff.h"
|
2020-06-15 12:41:28 +02:00
|
|
|
#endif
|
2021-07-01 09:42:32 +02:00
|
|
|
#ifdef SPLIT_KEYBOARD
|
2021-12-15 05:53:36 +01:00
|
|
|
# include "split/transport_sync.h"
|
|
|
|
#endif
|
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
|
|
|
# include "pointing/pointing.h"
|
2021-07-01 09:42:32 +02:00
|
|
|
#endif
|
2018-10-02 03:00:14 +02:00
|
|
|
|
2018-10-15 21:34:49 +02:00
|
|
|
/* Define layer names */
|
2018-04-21 02:53:19 +02:00
|
|
|
enum userspace_layers {
|
2021-07-27 02:59:49 +02:00
|
|
|
_QWERTY = 0,
|
|
|
|
_NUMLOCK = 0,
|
|
|
|
FIRST_DEFAULT_LAYER = 0,
|
|
|
|
_COLEMAK_DH,
|
2019-05-07 07:34:09 +02:00
|
|
|
_COLEMAK,
|
|
|
|
_DVORAK,
|
2021-07-27 02:59:49 +02:00
|
|
|
LAST_DEFAULT_LAYER = _DVORAK,
|
2019-05-07 07:34:09 +02:00
|
|
|
_GAMEPAD,
|
|
|
|
_DIABLO,
|
2021-11-17 21:45:50 +01:00
|
|
|
_DIABLOII,
|
2021-07-27 02:59:49 +02:00
|
|
|
_MOUSE,
|
2019-05-07 07:34:09 +02:00
|
|
|
_MEDIA,
|
|
|
|
_LOWER,
|
|
|
|
_RAISE,
|
|
|
|
_ADJUST,
|
2018-04-21 02:53:19 +02:00
|
|
|
};
|
2017-11-07 06:11:08 +01:00
|
|
|
|
2021-12-30 05:17:34 +01:00
|
|
|
#define _MACROS _MOUSE
|
2021-07-27 02:59:49 +02:00
|
|
|
#define _DEFAULT_LAYER_1 FIRST_DEFAULT_LAYER
|
|
|
|
#define _DEFAULT_LAYER_2 (FIRST_DEFAULT_LAYER + 1)
|
|
|
|
#define _DEFAULT_LAYER_3 (FIRST_DEFAULT_LAYER + 2)
|
|
|
|
#define _DEFAULT_LAYER_4 (FIRST_DEFAULT_LAYER + 3)
|
|
|
|
#if LAST_DEFAULT_LAYER > (FIRST_DEFAULT_LAYER + 3)
|
|
|
|
# define _DEFAULT_LAYER_2 (FIRST_DEFAULT_LAYER + 4)
|
|
|
|
# define _DEFAULT_LAYER_3 (FIRST_DEFAULT_LAYER + 5)
|
|
|
|
# define _DEFAULT_LAYER_4 (FIRST_DEFAULT_LAYER + 6)
|
|
|
|
# define _DEFAULT_LAYER_2 (FIRST_DEFAULT_LAYER + 7)
|
|
|
|
# if LAST_DEFAULT_LAYER > (FIRST_DEFAULT_LAYER + 7)
|
|
|
|
# define _DEFAULT_LAYER_2 (FIRST_DEFAULT_LAYER + 8)
|
|
|
|
# define _DEFAULT_LAYER_3 (FIRST_DEFAULT_LAYER + 9)
|
|
|
|
# define _DEFAULT_LAYER_4 (FIRST_DEFAULT_LAYER + 10)
|
|
|
|
# define _DEFAULT_LAYER_4 (FIRST_DEFAULT_LAYER + 11)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DEFAULT_LAYER_1_HSV HSV_CYAN
|
2021-08-24 10:37:14 +02:00
|
|
|
#define DEFAULT_LAYER_2_HSV HSV_CHARTREUSE
|
2021-07-27 02:59:49 +02:00
|
|
|
#define DEFAULT_LAYER_3_HSV HSV_MAGENTA
|
|
|
|
#define DEFAULT_LAYER_4_HSV HSV_GOLDENROD
|
2021-01-22 17:23:03 +01:00
|
|
|
|
2021-08-24 10:37:14 +02:00
|
|
|
#define DEFAULT_LAYER_1_RGB RGB_CYAN
|
|
|
|
#define DEFAULT_LAYER_2_RGB RGB_CHARTREUSE
|
|
|
|
#define DEFAULT_LAYER_3_RGB RGB_MAGENTA
|
|
|
|
#define DEFAULT_LAYER_4_RGB RGB_GOLDENROD
|
|
|
|
|
2021-12-30 05:17:34 +01:00
|
|
|
bool mod_key_press_timer(uint16_t code, uint16_t mod_code, bool pressed);
|
|
|
|
bool mod_key_press(uint16_t code, uint16_t mod_code, bool pressed, uint16_t this_timer);
|
|
|
|
bool hasAllBitsInMask(uint8_t value, uint8_t mask);
|
2022-01-22 04:36:52 +01:00
|
|
|
void tap_code16_nomods(uint16_t kc);
|
2018-06-01 07:11:06 +02:00
|
|
|
|
2019-11-20 21:37:24 +01:00
|
|
|
// clang-format off
|
2018-05-02 17:39:46 +02:00
|
|
|
typedef union {
|
2019-05-07 07:34:09 +02:00
|
|
|
uint32_t raw;
|
|
|
|
struct {
|
2019-09-07 17:57:30 +02:00
|
|
|
bool rgb_layer_change :1;
|
|
|
|
bool is_overwatch :1;
|
|
|
|
bool nuke_switch :1;
|
|
|
|
bool swapped_numbers :1;
|
|
|
|
bool rgb_matrix_idle_anim :1;
|
2021-12-15 05:53:36 +01:00
|
|
|
bool autocorrection :1;
|
2019-05-07 07:34:09 +02:00
|
|
|
};
|
2018-05-02 17:39:46 +02:00
|
|
|
} userspace_config_t;
|
2019-11-20 21:37:24 +01:00
|
|
|
// clang-format on
|
2017-11-07 06:11:08 +01:00
|
|
|
|
2018-11-27 01:45:24 +01:00
|
|
|
extern userspace_config_t userspace_config;
|