]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/planck/keymaps/callum/keymap.c
572756a383034418b8065cd9c741b694c101f79e
[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 _FUNC 3
18
19 enum planck_keycodes {
20   BASE = SAFE_RANGE,
21   MOVE,
22   SYMB,
23   FUNC,
24   LOCK
25 };
26
27 // Fillers to make layering more clear
28 #define _______ KC_TRNS
29 #define XXXXXXX KC_NO
30
31 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
32
33 /* BASE
34  * ,-----------------------------------------------------------------------------------.
35  * | Tab  |   Q  |   W  |   F  |   P  |   G  |   J  |   L  |   U  |   Y  |   ;  |  -   |
36  * |------+------+------+------+------+-------------+------+------+------+------+------|
37  * | Bksp |   A  |   R  |   S  |   T  |   D  |   H  |   N  |   E  |   I  |   O  |  "   |
38  * |------+------+------+------+------+------|------+------+------+------+------+------|
39  * | Shift|   Z  |   X  |   C  |   V  |   B  |   K  |   M  |   ,  |   .  |   /  |Shift |
40  * |------+------+------+------+------+------+------+------+------+------+------+------|
41  * | Func | Ctrl | Alt  | GUI  | Symb |Enter |Space | Move | GUI  | Alt  | Ctrl |Caps  |
42  * `-----------------------------------------------------------------------------------'
43  */
44 [_BASE] = {
45   {KC_TAB,  KC_Q,    KC_W,    KC_F,    KC_P,    KC_G,    KC_J,    KC_L,    KC_U,    KC_Y,    KC_SCLN, KC_MINS},
46   {KC_BSPC, KC_A,    KC_R,    KC_S,    KC_T,    KC_D,    KC_H,    KC_N,    KC_E,    KC_I,    KC_O,    KC_QUOT},
47   {KC_LSFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_K,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_RSFT},
48   {FUNC,    KC_LCTL, KC_LALT, KC_LGUI, SYMB,    KC_ENT,  KC_SPC,  MOVE,    KC_RGUI, KC_RALT, KC_RCTL, KC_CAPS}
49 },
50
51 /* MOVE
52  * ,-----------------------------------------------------------------------------------.
53  * | Esc  |      | Home |  Up  | End  |      |      | Home |  Up  | End  |      | Esc  |
54  * |------+------+------+------+------+-------------+------+------+------+------+------|
55  * | Del  |      | Left | Down |Right |      |      | Left | Down |Right |      | Del  |
56  * |------+------+------+------+------+------|------+------+------+------+------+------|
57  * |      |      |      |Pg Up |Pg Dn |      |      |Pg Dn |Pg Up |      |      |      |
58  * |------+------+------+------+------+------+------+------+------+------+------+------|
59  * |      |      |      |      |      |      |      |      |      |      |      |      |
60  * `-----------------------------------------------------------------------------------'
61  */
62 [_MOVE] = {
63   {KC_ESC,  _______, KC_HOME,   KC_UP,  KC_END, _______, _______, KC_HOME,   KC_UP,  KC_END, _______,  KC_ESC},
64   {KC_DEL,  _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______,  KC_DEL},
65   {_______, _______, _______, KC_PGUP, KC_PGDN, _______, _______, KC_PGDN, KC_PGUP, _______, _______, _______},
66   {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
67 },
68
69 /* SYMB
70  * ,-----------------------------------------------------------------------------------.
71  * |  Esc |   1  |   2  |   3  |   4  |   5  |   6  |   7  |   8  |   9  |   0  | Esc  |
72  * |-----------------------------------------------------------------------------------.
73  * |  Del |   !  |   @  |   #  |   $  |   %  |   ^  |   &  |   *  |   (  |   )  | Del  |
74  * |------+------+------+------+------+-------------+------+------+------+------+------|
75  * |      |   ~  |   `  |   +  |   =  |   |  |   \  |   [  |   ]  |   {  |   }  |      |
76  * |------+------+------+------+------+------+------+------+------+------+------+------|
77  * |      |      |      |      |      |      |      |      |      |      |      |      |
78  * `-----------------------------------------------------------------------------------'
79  */
80 [_SYMB] = {
81   {KC_ESC,  KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    KC_ESC },
82   {KC_DEL,  KC_EXLM, KC_AT,   KC_HASH, KC_DLR,  KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL },
83   {_______, KC_TILD, KC_GRV,  KC_PLUS, KC_EQL,  KC_PIPE, KC_BSLS, KC_LBRC, KC_RBRC, KC_LCBR, KC_RCBR, _______},
84   {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
85 },
86
87 /* FUNC
88  * ,-----------------------------------------------------------------------------------.
89  * | F12  |  F1  |  F2  |  F3  |  F4  |  F5  |  F6  |  F7  |  F8  |  F9  | F10  | F11  |
90  * |-----------------------------------------------------------------------------------.
91  * |      | Play | Prev | Next | BL+  |      |      | Lock |      |      |      |      |
92  * |------+------+------+------+------+------|------+------+------+------+------+------|
93  * |      | Mute | Vol- | Vol+ | BL-  |      |      |      |      |      |      |      |
94  * |------+------+------+------+------+------+------+------+------+------+------+------|
95  * |      |      |      |      |      |      |      |      |      |      |      |Reset |
96  * `-----------------------------------------------------------------------------------'
97  */
98 [_FUNC] = {
99   {KC_F12,  KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11 },
100   {_______, KC_MPLY, KC_MPRV, KC_MNXT, KC_PAUS, _______, _______, LOCK,    _______, _______, _______, _______},
101   {_______, KC_MUTE, KC_VOLD, KC_VOLU, KC_SLCK, _______, _______, _______, _______, _______, _______, _______},
102   {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET  }
103 }
104
105 };
106
107 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
108   switch (keycode) {
109     case MOVE:
110       if (record->event.pressed) {
111         layer_on(_MOVE);
112         update_tri_layer(_MOVE, _SYMB, _FUNC);
113       } else {
114         layer_off(_MOVE);
115         update_tri_layer(_MOVE, _SYMB, _FUNC);
116       }
117       return false;
118       break;
119     case SYMB:
120       if (record->event.pressed) {
121         layer_on(_SYMB);
122         update_tri_layer(_MOVE, _SYMB, _FUNC);
123       } else {
124         layer_off(_SYMB);
125         update_tri_layer(_MOVE, _SYMB, _FUNC);
126       }
127       return false;
128       break;
129     case FUNC:
130       if (record->event.pressed) {
131         layer_on(_FUNC);
132       } else {
133         layer_off(_FUNC);
134       }
135       return false;
136       break;
137     case LOCK:
138       if (record->event.pressed) {
139         register_code(KC_RSFT);
140         register_code(KC_RGUI);
141         register_code(KC_POWER);
142       } else {
143         unregister_code(KC_POWER);
144         unregister_code(KC_RGUI);
145         unregister_code(KC_RSFT);
146       }
147       return false;
148       break;
149   }
150   return true;
151 }