blob: 5b3dc0ecb2740b6e7a24db69ad7c8c61a9386931 (
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
|
/*
Copyright 2022 Eric Gebhart <e.a.gebhart@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/>.
*/
// Derived from smart_layers by @Possumvibes
// Derived from one shot_mod by @Callum.
#include "smart_lock.h"
#include USERSPACE_H
/* print("string"): Print a simple string. */
/* uprintf("%s string", var) */
bool ignore_key(uint16_t keycode,
const uint16_t *cond_keys){
// look for non-cancel condition.
// look for keys to ignore, if we match, we do nothing.
for (; pgm_read_word(cond_keys) != COND_KEYS_END ; ++cond_keys){
if (pgm_read_word(cond_keys) == keycode){
return true;
}
}
return false;
}
void deactivate_sml_layer(smart_lock_t *sml){
layer_off(sml->thing);
sml->active = false;
}
void deactivate_sml_mod(smart_lock_t *sml){
unregister_mods(sml->thing);
sml->active = false;
}
void deactivate_sml(smart_lock_t *sml){
switch(sml->type){
case sml_layer:
deactivate_sml_layer(sml);
case sml_mod:
deactivate_sml_mod(sml);
}
}
void sml_activate_layer(smart_lock_t *sml){
sml->active = true;
layer_on(sml->thing);
}
void sml_maybe_activate_mod(smart_lock_t *sml ){
if (sml->active) {
unregister_mods(sml->thing);
} else {
register_mods(sml->thing);
}
sml->active = !sml->active;
}
void sml_activate(smart_lock_t *sml){
switch(sml->type){
case sml_layer:
sml_activate_layer(sml);
break;
case sml_mod:
sml_maybe_activate_mod(sml);
break;
}
}
void update_smart_lock(uint16_t keycode) {
#ifdef SMART_LOCK_ENABLE
bool deactivate = false;
smart_lock_t *sml;
for (int i = 0; i < SML_LEN; ++i){
sml = &smart_locks[i];
// if it's a match,
// maybe activate/deactivate it if we got it's keycode.
if (sml->keycode == keycode){
sml_activate(sml);
return;
}
// deactivate what we need to.
if(sml->active){
deactivate = !ignore_key(keycode, &sml->keys[0]);
if (deactivate){
deactivate_sml(sml);
}
}
}
#endif
return;
}
void process_smart_lock(uint16_t keycode, keyrecord_t *record) {
if (record->event.pressed) {
update_smart_lock(keycode);
}
}
|