summaryrefslogtreecommitdiff
path: root/keyboards/keebio/bdn9/keymaps/vosechu-ksp/keymap.c
blob: 66483b51de343ee84965c85abc77083be90a89a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/* Copyright 2019 Chuck Lauer Vose <vosechu@gmail.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 QMK_KEYBOARD_H

// // Debugging
// #include <print.h>

#define BASE   TO(_BASE)
#define PANIC  TO(_PANIC)
#define FLIGHT TO(_FLIGHT)
#define RCS    TO(_RCS)

enum my_layers {
    _BASE = 0,
    _PANIC,
    _FLIGHT,
    _RCS
};

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
    [_BASE] = LAYOUT(
        KC_MUTE, PANIC  , XXXXXXX,
        FLIGHT , XXXXXXX, RCS    ,
        XXXXXXX, XXXXXXX, XXXXXXX
    ),
    [_PANIC] = LAYOUT(
        QK_BOOT, BASE   , XXXXXXX,
        _______, XXXXXXX, _______,
        KC_F2  , KC_F5  , KC_F9
    ),
    [_FLIGHT] = LAYOUT(
        XXXXXXX, _______, KC_M   ,
        BASE   , KC_W   , _______,
        KC_A   , KC_S   , KC_D
    ),
    [_RCS] = LAYOUT(
        XXXXXXX, _______, XXXXXXX,
        _______, KC_I   , BASE   ,
        KC_J   , KC_K   , KC_L
    )
};

bool base_mode = false;
bool panic_mode = false;
bool flight_mode = false;
bool rcs_mode = false;

layer_state_t layer_state_set_user(layer_state_t state) {
    base_mode = false;
    panic_mode = false;
    flight_mode = false;
    rcs_mode = false;

    switch (get_highest_layer(state)) {
    case _PANIC:
        panic_mode = true; // For use in encoder evaluation
        rgblight_sethsv_noeeprom(HSV_RED);
        break;
    case _FLIGHT:
        flight_mode = true; // For use in encoder evaluation
        rgblight_sethsv_noeeprom(HSV_CYAN);
        break;
    case _RCS:
        rcs_mode = true; // For use in encoder evaluation
        rgblight_sethsv_noeeprom(HSV_BLUE);
        break;
    default: //  for any other layers, or the default layer
        base_mode = true;
        rgblight_sethsv_noeeprom(HSV_SPRINGGREEN);
        break;
    }
    return state;
}

void keyboard_post_init_user(void) {
    // Call the post init code.
    rgblight_enable_noeeprom(); // enables Rgb, without saving settings
    rgblight_mode_noeeprom(RGBLIGHT_MODE_BREATHING + 1); // sets mode to Slow breathing without saving
    rgblight_sethsv_noeeprom(HSV_SPRINGGREEN);
}

// bool process_record_user(uint16_t keycode, keyrecord_t *record) {
//     switch (keycode) {
//         uprintf("Keycode: %s\n", keycode);
//         if (record->event.pressed) {
//           print("pressed");
//           // Do something when pressed
//         } else {
//           print("unpressed");
//           // Do something else when release
//         }
//     }
//     return true;
// }

bool encoder_update_user(uint8_t index, bool clockwise) {
    if(base_mode == true) {
        if (index == 0) {
            if (clockwise) {
                // Volume up
                tap_code(KC_VOLU);
            } else {
                // Volume down
                tap_code(KC_VOLD);
            }
        }
        else if (index == 1) {
            if (clockwise) {
                // Time warp faster
                tap_code(KC_DOT);
            } else {
                // Time warp slower
                tap_code(KC_COMM);
            }
        }
    }

    if(rcs_mode == true) {
        if (index == 0) {
            if (clockwise) {
                // RCS Forward
                tap_code(KC_H);
            } else {
                // RCS Backward
                tap_code(KC_N);
            }
        }
        else if (index == 1) {
            if (clockwise) {
                // RCS Rotate Left
                tap_code(KC_Q);
            } else {
                // RCS Rotate Right
                tap_code(KC_E);
            }
        }
    }

    if(flight_mode == true) {
        if (index == 0) {
            if (clockwise) {
                // Throttle up
                tap_code(KC_LSFT);
            } else {
                // Throttle down
                tap_code(KC_LCTL);
            }
        }
        else if (index == 1) {
            if (clockwise) {
                // Trim left
                tap_code16(LALT(KC_A));
            } else {
                // Trim right
                tap_code16(LALT(KC_D));
            }
        }
    }
    return true;
}