]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/xd75/keymaps/kloki/keymap.c
Keymap: Add fauxclicky support to my keymap (#3625)
[qmk_firmware.git] / keyboards / xd75 / keymaps / kloki / keymap.c
1 /* Copyright 2017 Wunder
2  *
3  * This program is free software: you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License as published by
5  * the Free Software Foundation, either version 2 of the License, or
6  * (at your option) any later version.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  */
16 #include "xd75.h"
17
18 // Layer shorthand
19 #define _WO 0
20 #define _QW 1
21 #define _NUM 2
22 #define _SYM 3
23 #define _FUN 4
24
25
26 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
27
28
29  [_WO] = { /* WORKMAN */
30   { KC_ESC,  KC_1,    KC_2,    KC_3,    KC_4,   KC_5,   MO(_FUN),TG(_NUM),TG(_QW),KC_6,    KC_7,   KC_8,    KC_9,    KC_0,    KC_BSPC },
31   { KC_TAB,  KC_Q,    KC_D,    KC_R,    KC_W,   KC_B,   KC_GRV,  KC_LGUI, KC_QUOT, KC_J,   KC_F,   KC_U,    KC_P,    KC_SCLN, KC_BSLS },
32   { CTL_T(KC_ESC),KC_A,KC_S,   KC_H,    KC_T,   KC_G,   KC_EQL,  KC_UP,   KC_MINS, KC_Y,   KC_N,   KC_E,    KC_O,    KC_I,    KC_ENT  },
33   { KC_LSFT, KC_Z,    KC_X,    KC_M,    KC_C,   KC_V,   KC_LEFT, KC_DOWN, KC_RGHT, KC_K,   KC_L,   KC_COMM, KC_DOT,  KC_SLSH, KC_RSFT },
34   { KC_MEH,KC_LGUI,KC_LALT,KC_LEFT,KC_RGHT,LT(_SYM,KC_SPC),LGUI_T(KC_ENT),KC_SPC,LT(_SYM,KC_TAB),KC_BSPC,KC_DOWN,KC_UP,KC_LBRC,KC_RBRC,MO(_SYM)},
35  },
36
37  [_QW] = { /* QWERTY */
38   { _______,  KC_1,    KC_2,    KC_3,    KC_4,   KC_5,   _______, _______, _______, KC_6,   KC_7,   KC_8,    KC_9,    KC_0,    _______ },
39   { _______,  KC_Q,    KC_W,    KC_E,    KC_R,   KC_T,   _______, _______, _______, KC_Y,   KC_U,   KC_I,    KC_O,    KC_P,    _______ },
40   { _______,  KC_A,    KC_S,    KC_D,    KC_F,   KC_G,   _______, _______, _______, KC_H,   KC_J,   KC_K,    KC_L,    KC_SCLN, _______ },
41   { _______,  KC_Z,    KC_X,    KC_C,    KC_V,   KC_B,   _______, _______, _______, KC_N,   KC_M,   KC_COMM, KC_DOT,  KC_SLSH, _______ },
42   { _______,  _______, _______, _______, _______,_______,_______, _______, _______, _______,_______,_______, _______, _______, _______ },
43  },//
44
45  [_NUM] = { /* NUM */
46   { _______,  _______, _______, _______, _______,_______,_______, _______, _______, _______,_______,_______, _______, _______, _______ },
47   { _______,  _______, _______, _______, _______,_______,KC_7,    KC_8,    KC_9, _______,_______,_______, _______, _______, _______ },
48   { _______,  _______, _______, _______, _______,_______,KC_4,    KC_5,    KC_6, _______,_______,_______, _______, _______, _______ },
49   { _______,  _______, _______, _______, _______,_______,KC_1,    KC_2,    KC_3, _______,_______,_______, _______, _______, _______ },
50   { _______,  _______, _______, _______, _______,_______,_______, KC_0, _______, _______,_______,_______, _______, _______, _______ },
51  },
52  [_SYM] = { /* SYM */
53   { _______,  KC_F1,   KC_F2,   KC_F3,   KC_F4,  KC_F5,  _______, _______, _______, KC_F6,  KC_F7,  KC_F8,   KC_F9,   KC_F10,  KC_DEL, },
54   { _______,  KC_EXLM, KC_AT,   KC_LCBR, KC_RCBR,KC_ASTR,_______, KC_F11,  KC_F12,  KC_LABK,KC_HOME,KC_UP,   KC_PGUP, KC_ASTR, _______ },
55   { _______,  KC_HASH, KC_DLR,  KC_LPRN, KC_RPRN,KC_GRV, _______, _______, _______, KC_RABK,KC_LEFT,KC_DOWN, KC_RIGHT,KC_PLUS, _______ },
56   { _______,  KC_PERC, KC_CIRC, KC_LBRC, KC_RBRC,KC_TILD,_______, _______, _______, KC_AMPR,KC_END, KC_DOWN, KC_PGDN, KC_BSLS, _______ },
57   { _______,  _______, _______, _______, _______,_______,_______, _______, _______, _______,_______,_______, _______, _______, _______ },
58  },
59  [_FUN] = { /* FUN */
60   { _______,  RGB_RMOD,RGB_MOD, RGB_TOG, _______,_______,_______, _______, _______, _______,_______,_______, _______, _______, RESET   },
61   { _______,  RGB_HUD, RGB_HUI, RGB_MODE_PLAIN, _______,_______,_______, _______, _______, _______,_______,_______, _______, _______, _______ },
62   { _______,  RGB_SAD, RGB_SAI, _______, _______,_______,_______, _______, _______, _______,_______,_______, _______, _______, _______ },
63   { _______,  RGB_VAD, RGB_VAI, _______, _______,_______,_______, _______, _______, _______,_______,_______, _______, _______, _______ },
64   { _______,  _______, _______, _______, _______,_______,_______, _______, _______, _______,_______,_______, _______, _______, _______ },
65  }
66 };
67 const uint16_t PROGMEM fn_actions[] = {
68
69 };
70
71 const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
72 {
73   // MACRODOWN only works in this function
74       switch(id) {
75         case 0:
76           if (record->event.pressed) {
77             register_code(KC_RSFT);
78             #ifdef BACKLIGHT_ENABLE
79               backlight_step();
80             #endif
81           } else {
82             unregister_code(KC_RSFT);
83           }
84         break;
85       }
86     return MACRO_NONE;
87 };
88
89 bool CTRLDOWN = false;
90 bool WINDOWN = false;
91 bool SHIFTDOWN = false;
92 void matrix_scan_user(void) {
93
94     uint8_t layer = biton32(layer_state);
95
96     switch (layer) {
97         case 0:
98             rgblight_setrgb(0,240, 255);
99             break;
100         case 1:
101             rgblight_setrgb(0,255, 100);
102             break;
103         case 2:
104             rgblight_setrgb(10,255, 0);
105             break;
106         case 3:
107             rgblight_setrgb(255,0, 85);
108             break;
109         case 4:
110             rgblight_setrgb(240,255, 0);
111             break;
112         default:
113             // none
114             break;
115     }
116     if ( SHIFTDOWN) {
117         rgblight_setrgb(255,255, 255);
118         }
119     if ( CTRLDOWN) {
120         rgblight_setrgb(240,255, 0);
121         }
122     if ( WINDOWN) {
123         rgblight_setrgb(255,255, 255);
124         }
125
126
127
128 };
129 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
130   switch (keycode) {
131     case KC_LGUI:
132       if (record->event.pressed) {
133         WINDOWN = true;
134         } else {
135         WINDOWN = false;
136       }
137       return true;
138     case LGUI_T(KC_ENT):
139       if (record->event.pressed) {
140         WINDOWN = true;
141         } else {
142         WINDOWN = false;
143       }
144       return true;
145     case CTL_T(KC_ESC):
146       if (record->event.pressed) {
147         CTRLDOWN = true;
148         } else {
149         CTRLDOWN = false;
150       }
151       return true;
152     case KC_LSFT:
153       if (record->event.pressed) {
154         SHIFTDOWN = true;
155         } else {
156         SHIFTDOWN = false;
157       }
158       return true;
159     case KC_RSFT:
160       if (record->event.pressed) {
161         SHIFTDOWN = true;
162         } else {
163         SHIFTDOWN = false;
164       }
165       return true;
166     default:
167       return true; // Process all other keycodes normally
168   }
169 };