summaryrefslogtreecommitdiff
path: root/quantum/process_keycode/process_underglow.c
blob: 779672ac0768a01bdd3fbaebef806769397b328d (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
// Copyright 2024 QMK
// SPDX-License-Identifier: GPL-2.0-or-later

#include "process_underglow.h"
#include "rgblight.h"
#include "action_util.h"
#include "keycodes.h"
#include "modifiers.h"

bool process_underglow(uint16_t keycode, keyrecord_t *record) {
    if (record->event.pressed) {
        uint8_t shifted = get_mods() & MOD_MASK_SHIFT;
        switch (keycode) {
            case QK_UNDERGLOW_TOGGLE:
                rgblight_toggle();
                return false;
            case QK_UNDERGLOW_MODE_NEXT:
                if (shifted) {
                    rgblight_step_reverse();
                } else {
                    rgblight_step();
                }
                return false;
            case QK_UNDERGLOW_MODE_PREVIOUS:
                if (shifted) {
                    rgblight_step();
                } else {
                    rgblight_step_reverse();
                }
                return false;
            case QK_UNDERGLOW_HUE_UP:
                if (shifted) {
                    rgblight_decrease_hue();
                } else {
                    rgblight_increase_hue();
                }
                return false;
            case QK_UNDERGLOW_HUE_DOWN:
                if (shifted) {
                    rgblight_increase_hue();
                } else {
                    rgblight_decrease_hue();
                }
                return false;
            case QK_UNDERGLOW_SATURATION_UP:
                if (shifted) {
                    rgblight_decrease_sat();
                } else {
                    rgblight_increase_sat();
                }
                return false;
            case QK_UNDERGLOW_SATURATION_DOWN:
                if (shifted) {
                    rgblight_increase_sat();
                } else {
                    rgblight_decrease_sat();
                }
                return false;
            case QK_UNDERGLOW_VALUE_UP:
                if (shifted) {
                    rgblight_decrease_val();
                } else {
                    rgblight_increase_val();
                }
                return false;
            case QK_UNDERGLOW_VALUE_DOWN:
                if (shifted) {
                    rgblight_increase_hue();
                } else {
                    rgblight_decrease_hue();
                }
                return false;
            case QK_UNDERGLOW_SPEED_UP:
                if (shifted) {
                    rgblight_decrease_speed();
                } else {
                    rgblight_increase_speed();
                }
                return false;
            case QK_UNDERGLOW_SPEED_DOWN:
                if (shifted) {
                    rgblight_increase_speed();
                } else {
                    rgblight_decrease_speed();
                }
                return false;
        }
    }

    return true;
}