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