]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/planck/keymaps/callum/keymap.c
c89b485a41a74df237d292fa16d6ab2d35c9d3de
[qmk_firmware.git] / keyboards / planck / keymaps / callum / keymap.c
1 #include "planck.h"
2 #include "action_layer.h"
3 #ifdef AUDIO_ENABLE
4   #include "audio.h"
5 #endif
6 #include "eeconfig.h"
7
8 extern keymap_config_t keymap_config;
9
10 // Each layer gets a name for readability, which is then used in the keymap matrix below.
11 // The underscores don't mean anything - you can have a layer called STUFF or any other name.
12 // Layer names don't all need to be of the same length, obviously, and you can also skip them
13 // entirely and just use numbers.
14 #define _BASE 0
15 #define _MOVE 1
16 #define _SYMB 2
17 #define _MOUSE 3
18 #define _FUNC 4
19
20 enum planck_keycodes {
21   MOVE = SAFE_RANGE,
22   SYMB,
23   FUNC,
24   BELOW,
25   ABOVE
26 };
27
28 // Fillers to make layering more clear
29 #define _______ KC_TRNS
30 #define XXXXXXX KC_NO
31
32 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
33
34 /* BASE
35  * ,-----------------------------------------------------------------------------------.
36  * | Tab  |   Q  |   W  |   F  |   P  |   G  |   J  |   L  |   U  |   Y  |   ;  |  -   |
37  * |------+------+------+------+------+------+------+------+------+------+------+------|
38  * | Bksp |   A  |   R  |   S  |   T  |   D  |   H  |   N  |   E  |   I  |   O  |  "   |
39  * |------+------+------+------+------+------+------+------+------+------+------+------|
40  * | Shift|   Z  |   X  |   C  |   V  |   B  |   K  |   M  |   ,  |   .  |   /  | Shift|
41  * |------+------+------+------+------+------+------+------+------+------+------+------|
42  * | Func | Ctrl |  Alt |  Cmd | Symb | Enter| Space| Move |  Cmd |  Alt | Ctrl | Func |
43  * `-----------------------------------------------------------------------------------'
44  */
45 [_BASE] = {
46   {KC_TAB,  KC_Q,    KC_W,    KC_F,    KC_P,    KC_G,    KC_J,    KC_L,    KC_U,    KC_Y,    KC_SCLN, KC_MINS},
47   {KC_BSPC, KC_A,    KC_R,    KC_S,    KC_T,    KC_D,    KC_H,    KC_N,    KC_E,    KC_I,    KC_O,    KC_QUOT},
48   {KC_LSFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_K,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_RSFT},
49   {FUNC,    KC_LCTL, KC_LALT, KC_LGUI, SYMB,    KC_ENT,  KC_SPC,  MOVE,    KC_RGUI, KC_RALT, KC_RCTL, FUNC   }
50 },
51
52 /* MOVE
53  * ,-----------------------------------------------------------------------------------.
54  * |  Esc |      | Cmd-L|  Up  | Cmd-R|      |      | Cmd-L|  Up  | Cmd-R|      |  Esc |
55  * |------+------+------+------+------+------+------+------+------+------+------+------|
56  * |  Del | Caps | Left | Down | Right|      |      | Left | Down | Right| Caps |  Del |
57  * |------+------+------+------+------+------+------+------+------+------+------+------|
58  * |      |      |      | Pg Up| Pg Dn| Above|      | Pg Dn| Pg Up|      |      |      |
59  * |------+------+------+------+------+------+------+------+------+------+------+------|
60  * |      |      |      |      |      | Below|      |      |      |      |      |      |
61  * `-----------------------------------------------------------------------------------'
62  */
63 [_MOVE] = {
64   {KC_ESC,  XXXXXXX, LGUI(KC_LEFT), KC_UP, LGUI(KC_RGHT), XXXXXXX, XXXXXXX, LGUI(KC_LEFT), KC_UP, LGUI(KC_RGHT), XXXXXXX, KC_ESC },
65   {KC_DEL,  KC_CAPS, KC_LEFT, KC_DOWN, KC_RGHT, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_RGHT, KC_CAPS, KC_DEL },
66   {_______, XXXXXXX, XXXXXXX, KC_PGUP, KC_PGDN,   ABOVE, XXXXXXX, KC_PGDN, KC_PGUP, XXXXXXX, XXXXXXX, _______},
67   {_______, _______, _______, _______, _______,   BELOW, _______, _______, _______, _______, _______, _______}
68 },
69
70 /* SYMB
71  * ,-----------------------------------------------------------------------------------.
72  * |  Esc |   1  |   2  |   3  |   4  |   5  |   6  |   7  |   8  |   9  |   0  |   –  |
73  * |------+------+------+------+------+------+------+------+------+------+------+------|
74  * |  Del |   !  |   @  |   #  |   $  |   %  |   ^  |   &  |   *  |   (  |   )  |   £  |
75  * |------+------+------+------+------+------+------+------+------+------+------+------|
76  * |      |   ~  |   `  |   +  |   =  |   |  |   \  |   [  |   ]  |   {  |   }  |      |
77  * |------+------+------+------+------+------+------+------+------+------+------+------|
78  * |      |      |      |      |      |      |      |      |      |      |      |      |
79  * `-----------------------------------------------------------------------------------'
80  */
81 [_SYMB] = {
82   {KC_ESC,  KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    LALT(KC_MINS)},
83   {KC_DEL,  KC_EXLM, KC_AT,   KC_HASH, KC_DLR,  KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, LALT(KC_3)},
84   {_______, KC_TILD, KC_GRV,  KC_PLUS, KC_EQL,  KC_PIPE, KC_BSLS, KC_LBRC, KC_RBRC, KC_LCBR, KC_RCBR, _______},
85   {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
86 },
87
88 /* MOUSE
89  * ,-----------------------------------------------------------------------------------.
90  * |      |      | ACC-2| ACC-1| ACC-0|      |      | SW-L |  M-U | SW-R |      |      |
91  * |------+------+------+------+------+------+------+------+------+------+------+------|
92  * |      |      | MB-3 | MB-2 | MB-1 |      |      |  M-L |  M-D |  M-R |      |      |
93  * |------+------+------+------+------+------+------+------+------+------+------+------|
94  * |      |      |      |      |      |      |      | SW-D | SW-U |      |      |      |
95  * |------+------+------+------+------+------+------+------+------+------+------+------|
96  * |      |      |      |      |      |      |      |      |      |      |      |      |
97  * `-----------------------------------------------------------------------------------'
98  */
99 [_MOUSE] = {
100   {XXXXXXX, XXXXXXX, KC_ACL2, KC_ACL1, KC_ACL0, XXXXXXX, XXXXXXX, KC_WH_L, KC_MS_U, KC_WH_R, XXXXXXX, XXXXXXX},
101   {XXXXXXX, XXXXXXX, KC_BTN3, KC_BTN2, KC_BTN1, XXXXXXX, XXXXXXX, KC_MS_L, KC_MS_D, KC_MS_R, XXXXXXX, XXXXXXX},
102   {_______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_WH_D, KC_WH_U, XXXXXXX, XXXXXXX, _______},
103   {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
104 },
105
106 /* FUNC
107  * ,-----------------------------------------------------------------------------------.
108  * | Reset|  F1  |  F2  |  F3  |  F4  |  F5  |  F6  |  F7  |  F8  |  F9  |  F10 | Vol+ |
109  * |------+------+------+------+------+------+------+------+------+------+------+------|
110  * |      |  F11 |  F12 |  F13 |  F14 |  F15 |  F16 |  F17 |  F18 |  F19 |  F20 | Vol- |
111  * |------+------+------+------+------+------+------+------+------+------+------+------|
112  * |      |  F21 |  F22 |  F23 |  F24 |      |      | Lock |      |      |      |      |
113  * |------+------+------+------+------+------+------+------+------+------+------+------|
114  * |      |      |      |      | Prev | Mute | Play | Next |      |      |      |      |
115  * `-----------------------------------------------------------------------------------'
116  */
117 [_FUNC] = {
118   {RESET,   KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  S(LALT(KC_VOLU))},
119   {XXXXXXX, KC_F11,  KC_F12,  KC_F13,  KC_F14,  KC_F15,  KC_F16,  KC_F17,  KC_F18,  KC_F19,  KC_F20,  S(LALT(KC_VOLD))},
120   {_______, KC_F21,  KC_F22,  KC_F23,  KC_F24,  XXXXXXX, XXXXXXX, S(LCTL(KC_POWER)), XXXXXXX, XXXXXXX, XXXXXXX, _______},
121   {_______, _______, _______, _______, KC_MPRV, KC_MUTE, KC_MPLY, KC_MNXT, _______, _______, _______, _______}
122 }
123
124 };
125
126 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
127   switch (keycode) {
128     case MOVE:
129       if (record->event.pressed) {
130         layer_on(_MOVE);
131         update_tri_layer(_MOVE, _SYMB, _MOUSE);
132       } else {
133         layer_off(_MOVE);
134         update_tri_layer(_MOVE, _SYMB, _MOUSE);
135       }
136       return false;
137       break;
138     case SYMB:
139       if (record->event.pressed) {
140         layer_on(_SYMB);
141         update_tri_layer(_MOVE, _SYMB, _MOUSE);
142       } else {
143         layer_off(_SYMB);
144         update_tri_layer(_MOVE, _SYMB, _MOUSE);
145       }
146       return false;
147       break;
148     case FUNC:
149       if (record->event.pressed) {
150         layer_on(_FUNC);
151       } else {
152         layer_off(_FUNC);
153       }
154       return false;
155       break;
156     case BELOW:
157       if (record->event.pressed) {
158         register_code(KC_LGUI);
159         register_code(KC_RGHT);
160         unregister_code(KC_RGHT);
161         unregister_code(KC_LGUI);
162         register_code(KC_ENT);
163         unregister_code(KC_ENT);
164       }
165       return false;
166       break;
167     case ABOVE:
168       if (record->event.pressed) {
169         register_code(KC_LGUI);
170         register_code(KC_LEFT);
171         unregister_code(KC_LEFT);
172         unregister_code(KC_LGUI);
173         register_code(KC_ENT);
174         unregister_code(KC_ENT);
175         register_code(KC_UP);
176         unregister_code(KC_UP);
177       }
178       return false;
179       break;
180   }
181   return true;
182 }