summaryrefslogtreecommitdiff
path: root/users/jdelkins
diff options
context:
space:
mode:
Diffstat (limited to 'users/jdelkins')
-rw-r--r--users/jdelkins/.gitignore1
-rw-r--r--users/jdelkins/jdelkins.c287
-rw-r--r--users/jdelkins/jdelkins.h134
-rw-r--r--users/jdelkins/rules.mk15
4 files changed, 0 insertions, 437 deletions
diff --git a/users/jdelkins/.gitignore b/users/jdelkins/.gitignore
deleted file mode 100644
index 03b2b46668..0000000000
--- a/users/jdelkins/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-secrets.h
diff --git a/users/jdelkins/jdelkins.c b/users/jdelkins/jdelkins.c
deleted file mode 100644
index 4f59e8901b..0000000000
--- a/users/jdelkins/jdelkins.c
+++ /dev/null
@@ -1,287 +0,0 @@
-/*
- Copyright 2020 Joel Elkins <joel@elkins.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/>.
-*/
-
-#include "jdelkins.h"
-#include "version.h"
-
-#ifdef DO_SECRETS
-# include "secrets.h"
-#else
-# ifndef NO_SECRETS
-# pragma message("Warning: secrets.h not found")
-# endif
-#endif
-
-user_config_t user_config;
-
-__attribute__ ((weak))
-bool process_record_keymap(uint16_t keycode, keyrecord_t *record) {
- return true;
-}
-
-void send_secret_string(uint8_t n) {
-#ifdef DO_SECRETS
- send_string(secret[n]);
-#else
- SEND_STRING("");
-#endif
-}
-
-#ifdef TAP_DANCE_ENABLE
-
-// To activate SINGLE_HOLD, you will need to hold for 200ms first.
-// This tap dance favors keys that are used frequently in typing like 'f'
-int cur_dance(tap_dance_state_t *state) {
- if (state->count == 1) {
- // If count = 1, and it has been interrupted - it doesn't matter if it
- // is pressed or not: Send SINGLE_TAP
- if (state->interrupted) {
- // if (!state->pressed) return SINGLE_TAP;
- // need "permissive hold" here.
- // else return SINsGLE_HOLD;
- // If the interrupting key is released before the tap-dance key,
- // then it is a single HOLD However, if the tap-dance key is
- // released first, then it is a single TAP But how to get access to
- // the state of the interrupting key????
- return SINGLE_TAP;
- } else {
- if (!state->pressed)
- return SINGLE_TAP;
- else
- return SINGLE_HOLD;
- }
- }
- // If count = 2, and it has been interrupted - assume that user is trying to
- // type the letter associated with single tap.
- else if (state->count == 2) {
- if (state->interrupted)
- return DOUBLE_SINGLE_TAP;
- else if (state->pressed)
- return DOUBLE_HOLD;
- else
- return DOUBLE_TAP;
- } else if ((state->count == 3) && ((state->interrupted) || (!state->pressed)))
- return TRIPLE_TAP;
- else if (state->count == 3)
- return TRIPLE_HOLD;
- else
- return 8; // magic number. At some point this method will expand to work for more presses
-}
-
-// This works well if you want this key to work as a "fast modifier". It favors
-// being held over being tapped.
-int hold_cur_dance(tap_dance_state_t *state) {
- if (state->count == 1) {
- if (state->interrupted) {
- if (!state->pressed)
- return SINGLE_TAP;
- else
- return SINGLE_HOLD;
- } else {
- if (!state->pressed)
- return SINGLE_TAP;
- else
- return SINGLE_HOLD;
- }
- }
- // If count = 2, and it has been interrupted - assume that user is trying to
- // type the letter associated with single tap.
- else if (state->count == 2) {
- if (state->pressed)
- return DOUBLE_HOLD;
- else
- return DOUBLE_TAP;
- } else if (state->count == 3) {
- if (!state->pressed)
- return TRIPLE_TAP;
- else
- return TRIPLE_HOLD;
- } else
- return 8; // magic number. At some point this method will expand to work for more presses
-}
-
-#endif // TAP_DANCE_ENABLE
-
-__attribute__ ((weak))
-void keyboard_post_init_keymap(void) {
-}
-
-void keyboard_post_init_user(void) {
- user_config.raw = eeconfig_read_user();
- keyboard_post_init_keymap();
-}
-
-void eeconfig_init_user(void) {
- user_config.raw = 0;
- user_config.system_mac = false;
- eeconfig_update_user(user_config.raw);
-}
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- static uint32_t boot_timer;
-
- if (!process_record_keymap(keycode, record)) {
- return false;
- }
-
- switch (keycode) {
- case FW_WRD:
- do_mac_key(LCTL(KC_RIGHT), ROPT(KC_RIGHT), record);
- break;
-
- case BK_WRD:
- do_mac_key(LCTL(KC_LEFT), ROPT(KC_LEFT), record);
- break;
-
- case KB_BOL:
- do_mac_key(KC_HOME, RCMD(KC_LEFT), record);
- break;
-
- case KB_EOL:
- do_mac_key(KC_END, RCMD(KC_RIGHT), record);
- break;
-
- case TG_SYS:
- if (record->event.pressed) {
- user_config.system_mac ^= 1;
- eeconfig_update_user(user_config.raw);
- }
- break;
-
- case KB_COPY:
- do_mac_key(LCTL(KC_INS), RCMD(KC_C), record);
- break;
-
- case KB_PASTE:
- do_mac_key(LSFT(KC_INS), RCMD(KC_V), record);
- break;
-
- case MY_GUI:
- do_mac_key(KC_LGUI, KC_LOPT, record);
- break;
-
- case MY_ALT:
- do_mac_key(KC_LALT, KC_LCMD, record);
- break;
-
- case MY_RGUI:
- do_mac_key(KC_RGUI, KC_ROPT, record);
- break;
-
- case MY_RALT:
- do_mac_key(KC_RALT, KC_RCMD, record);
- break;
-
- case MY_CALC:
- do_mac_key(KC_CALC, KC_F14, record);
- break;
-
- case KB_MAKE:
- if (!get_mods()) {
- if (!record->event.pressed)
-#ifdef NO_SECRETS
- SEND_STRING("make NO_SECRETS=1 " QMK_KEYBOARD ":" QMK_KEYMAP SS_TAP(X_ENTER));
-#else
- SEND_STRING("make " QMK_KEYBOARD ":" QMK_KEYMAP SS_TAP(X_ENTER));
-#endif
- return false;
- }
- break;
-
- case KB_VRSN:
- if (!get_mods()) {
- if (!record->event.pressed) {
-#ifdef DO_SECRETS
-# define SECRET_MSG " (with secrets)"
-#else
-# define SECRET_MSG
-#endif
- if (user_config.system_mac) {
- SEND_STRING(QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION " (mac mode)" SECRET_MSG);
- } else {
- SEND_STRING(QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION " (non-mac mode)" SECRET_MSG);
- }
- }
- return false;
- }
- break;
-
- case KB_BOOT:
- if (!get_mods()) {
- if (record->event.pressed) {
- boot_timer = timer_read32();
- } else {
- if (timer_elapsed32(boot_timer) >= 500) {
- reset_keyboard();
- }
- }
- return false;
- }
- break;
-
- case KB_FLSH:
- if (!get_mods()) {
- if (!record->event.pressed) {
-#ifdef NO_SECRETS
- SEND_STRING("make NO_SECRETS=1 " QMK_KEYBOARD ":" QMK_KEYMAP ":flash\n");
-#else
- SEND_STRING("make " QMK_KEYBOARD ":" QMK_KEYMAP ":flash\n");
-#endif
- reset_keyboard();
- }
- return false;
- }
- break;
-
-#ifdef DO_SECRETS
- case KC_SECRET_1 ... KC_SECRET_6: // Secrets! Externally defined strings, not stored in repo
- if (!record->event.pressed) {
- clear_oneshot_layer_state(ONESHOT_OTHER_KEY_PRESSED);
- send_secret_string(keycode - KC_SECRET_1);
- }
- return false;
- break;
-#endif
- }
-
- return true;
-}
-
-__attribute__ ((weak))
-void matrix_init_keymap(void) {
-}
-
-void matrix_init_user(void) {
- matrix_init_keymap();
-}
-
-__attribute__ ((weak))
-void matrix_scan_keymap(void) {
-}
-
-void matrix_scan_user(void) {
- matrix_scan_keymap();
-}
-
-__attribute__ ((weak))
-layer_state_t layer_state_set_keymap(layer_state_t state) {
- return state;
-}
-
-layer_state_t layer_state_set_user(layer_state_t state) {
- return layer_state_set_keymap(state);
-}
diff --git a/users/jdelkins/jdelkins.h b/users/jdelkins/jdelkins.h
deleted file mode 100644
index 7c9f2d021c..0000000000
--- a/users/jdelkins/jdelkins.h
+++ /dev/null
@@ -1,134 +0,0 @@
-/*
- Copyright 2020 Joel Elkins <joel@elkins.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/>.
-*/
-
-#pragma once
-
-#include QMK_KEYBOARD_H
-
-// Secrets
-
-#if !defined(NO_SECRETS) && __has_include("secrets.h")
-# define DO_SECRETS
-#endif
-
-void send_secret_string(uint8_t n);
-
-// standard layers
-
-enum jdelkins_layers {
- _QWERTY = 0,
- _RPT,
- _GAME,
- _FUNC,
- _KP,
- _SECRETS,
- _ADJUST,
- _LAYER_MAX
-};
-
-// key definitions
-
-typedef union {
- uint32_t raw;
- struct {
- bool system_mac :1;
- };
-} user_config_t;
-
-extern user_config_t user_config;
-
-static inline void do_mac_key(uint16_t norm_key, uint16_t mac_key, keyrecord_t *record) {
- uint16_t key = user_config.system_mac ? mac_key : norm_key;
- if (record->event.pressed)
- register_code16(key);
- else
- unregister_code16(key);
-}
-
-enum jdelkins_keycodes {
- KB_MAKE = SAFE_RANGE,
- KB_FLSH,
- KB_VRSN,
- KB_BOOT,
- FW_WRD,
- BK_WRD,
- KB_BOL,
- KB_EOL,
- TG_SYS,
- KB_COPY,
- KB_PASTE,
- MY_GUI,
- MY_ALT,
- MY_RGUI,
- MY_RALT,
- MY_CALC,
-
-#ifdef DO_SECRETS
- KC_SECRET_1,
- KC_SECRET_2,
- KC_SECRET_3,
- KC_SECRET_4,
- KC_SECRET_5,
- KC_SECRET_6,
-#endif
-
- USER_SAFE_RANGE,
-};
-
-#ifdef DO_SECRETS
-# define KC_SEC1 KC_SECRET_1
-# define KC_SEC2 KC_SECRET_2
-# define KC_SEC3 KC_SECRET_3
-# define KC_SEC4 KC_SECRET_4
-# define KC_SEC5 KC_SECRET_5
-# define KC_SEC6 KC_SECRET_6
-#else
-# define KC_SEC1 KC_NO
-# define KC_SEC2 KC_NO
-# define KC_SEC3 KC_NO
-# define KC_SEC4 KC_NO
-# define KC_SEC5 KC_NO
-# define KC_SEC6 KC_NO
-#endif
-
-#define MODS_SHIFT (get_mods() & MOD_MASK_SHIFT)
-#define MODS_CTRL (get_mods() & MOD_MASK_CTRL)
-#define MODS_ALT (get_mods() & MOD_MASK_ALT)
-#define MODS_GUI (get_mods() & MOD_MASK_GUI)
-
-#define MY_CAPS LCTL_T(KC_CAPS)
-#define MY_SPC LT(_FUNC, KC_SPC)
-
-#define NUMLOCK_ON host_keyboard_led_state().num_lock
-#define CAPSLOCK_ON host_keyboard_led_state().caps_lock
-
-#ifdef TAP_DANCE_ENABLE
-
-enum {
- SINGLE_TAP = 1,
- SINGLE_HOLD = 2,
- DOUBLE_TAP = 3,
- DOUBLE_HOLD = 4,
- DOUBLE_SINGLE_TAP = 5, //send two single taps
- TRIPLE_TAP = 6,
- TRIPLE_HOLD = 7
-};
-
-int cur_dance(tap_dance_state_t *state); // prefer tap
-int hold_cur_dance(tap_dance_state_t *state); // prefer hold
-
-#endif // TAP_DANCE_ENABLE
diff --git a/users/jdelkins/rules.mk b/users/jdelkins/rules.mk
deleted file mode 100644
index 075aab7d3b..0000000000
--- a/users/jdelkins/rules.mk
+++ /dev/null
@@ -1,15 +0,0 @@
-SRC += jdelkins.c
-
-ifneq ($(strip $(NO_SECRETS)),)
- OPT_DEFS += -DNO_SECRETS
-endif
-
-ifeq ($(shell test -f users/jdelkins/secrets.h.gpg && echo yes || echo no),yes)
-users/jdelkins/jdelkins.c: users/jdelkins/secrets.h
- touch $@
-
-users/jdelkins/secrets.h: users/jdelkins/secrets.h.gpg
- gpg -d $< >$@
-endif
-
-BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite