2021-12-30 10:17:34 +06:00
|
|
|
// Copyright 2020 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com>
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-11-18 01:59:54 +06:00
|
|
|
|
2018-08-29 23:42:15 +06:00
|
|
|
#pragma once
|
2019-11-21 02:37:24 +06:00
|
|
|
#include QMK_KEYBOARD_H
|
|
|
|
|
2018-08-29 23:42:15 +06:00
|
|
|
#include "eeprom.h"
|
2021-12-15 10:53:36 +06:00
|
|
|
#include "keyrecords/wrappers.h"
|
|
|
|
#include "keyrecords/process_records.h"
|
2021-12-30 10:17:34 +06:00
|
|
|
#include "callbacks.h"
|
|
|
|
|
2018-12-05 03:27:41 +06:00
|
|
|
#ifdef TAP_DANCE_ENABLE
|
2021-12-15 10:53:36 +06:00
|
|
|
# include "keyrecords/tap_dances.h"
|
2023-03-01 01:14:48 +06:00
|
|
|
#endif // TAP_DANCE_ENABLE
|
2020-04-01 05:26:43 +06:00
|
|
|
#if defined(RGBLIGHT_ENABLE)
|
2021-12-15 10:53:36 +06:00
|
|
|
# include "rgb/rgb_stuff.h"
|
2019-04-23 00:55:55 +06:00
|
|
|
#endif
|
2020-04-01 05:26:43 +06:00
|
|
|
#if defined(RGB_MATRIX_ENABLE)
|
2021-12-15 10:53:36 +06:00
|
|
|
# include "rgb/rgb_matrix_stuff.h"
|
2020-04-01 05:26:43 +06:00
|
|
|
#endif
|
2021-08-24 12:28:26 +06:00
|
|
|
#if defined(OLED_ENABLE)
|
2021-12-15 10:53:36 +06:00
|
|
|
# include "oled/oled_stuff.h"
|
2020-06-15 16:41:28 +06:00
|
|
|
#endif
|
2021-07-01 13:42:32 +06:00
|
|
|
#ifdef SPLIT_KEYBOARD
|
2021-12-15 10:53:36 +06:00
|
|
|
# include "split/transport_sync.h"
|
|
|
|
#endif
|
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
|
|
|
# include "pointing/pointing.h"
|
2021-07-01 13:42:32 +06:00
|
|
|
#endif
|
2023-03-01 01:14:48 +06:00
|
|
|
#ifdef OS_DETECTION_ENABLE
|
|
|
|
# include "os_detection.h"
|
|
|
|
#endif
|
2018-10-02 07:00:14 +06:00
|
|
|
|
2018-10-16 01:34:49 +06:00
|
|
|
/* Define layer names */
|
2018-04-21 06:53:19 +06:00
|
|
|
enum userspace_layers {
|
2021-07-27 06:59:49 +06:00
|
|
|
_QWERTY = 0,
|
|
|
|
_NUMLOCK = 0,
|
|
|
|
FIRST_DEFAULT_LAYER = 0,
|
|
|
|
_COLEMAK_DH,
|
2019-05-07 11:34:09 +06:00
|
|
|
_COLEMAK,
|
|
|
|
_DVORAK,
|
2021-07-27 06:59:49 +06:00
|
|
|
LAST_DEFAULT_LAYER = _DVORAK,
|
2019-05-07 11:34:09 +06:00
|
|
|
_GAMEPAD,
|
|
|
|
_DIABLO,
|
2021-11-18 02:45:50 +06:00
|
|
|
_DIABLOII,
|
2021-07-27 06:59:49 +06:00
|
|
|
_MOUSE,
|
2019-05-07 11:34:09 +06:00
|
|
|
_MEDIA,
|
|
|
|
_LOWER,
|
|
|
|
_RAISE,
|
|
|
|
_ADJUST,
|
2018-04-21 06:53:19 +06:00
|
|
|
};
|
2017-11-07 11:11:08 +06:00
|
|
|
|
2021-12-30 10:17:34 +06:00
|
|
|
#define _MACROS _MOUSE
|
2021-07-27 06:59:49 +06: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 14:37:14 +06:00
|
|
|
#define DEFAULT_LAYER_2_HSV HSV_CHARTREUSE
|
2021-07-27 06:59:49 +06:00
|
|
|
#define DEFAULT_LAYER_3_HSV HSV_MAGENTA
|
|
|
|
#define DEFAULT_LAYER_4_HSV HSV_GOLDENROD
|
2021-01-22 22:23:03 +06:00
|
|
|
|
2021-08-24 14:37:14 +06: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 10:17:34 +06: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 09:36:52 +06:00
|
|
|
void tap_code16_nomods(uint16_t kc);
|
2023-03-01 01:14:48 +06:00
|
|
|
void format_layer_bitmap_string(char* buffer, layer_state_t state, layer_state_t default_state);
|
2018-06-01 11:11:06 +06:00
|
|
|
|
2019-11-21 02:37:24 +06:00
|
|
|
// clang-format off
|
2018-05-02 21:39:46 +06:00
|
|
|
typedef union {
|
2019-05-07 11:34:09 +06:00
|
|
|
uint32_t raw;
|
|
|
|
struct {
|
2019-09-07 21:57:30 +06: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 10:53:36 +06:00
|
|
|
bool autocorrection :1;
|
2019-05-07 11:34:09 +06:00
|
|
|
};
|
2018-05-02 21:39:46 +06:00
|
|
|
} userspace_config_t;
|
2019-11-21 02:37:24 +06:00
|
|
|
// clang-format on
|
2017-11-07 11:11:08 +06:00
|
|
|
|
2018-11-27 06:45:24 +06:00
|
|
|
extern userspace_config_t userspace_config;
|