Skip to content

Commit

Permalink
Introduce IS_EVENT instead of !IS_NOEVENT (qmk#19366)
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlK90 authored Dec 17, 2022
1 parent dedc54a commit 8598490
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
6 changes: 3 additions & 3 deletions quantum/action.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ __attribute__((weak)) bool pre_process_record_quantum(keyrecord_t *record) {
* FIXME: Needs documentation.
*/
void action_exec(keyevent_t event) {
if (!IS_NOEVENT(event)) {
if (IS_EVENT(event)) {
ac_dprintf("\n---- action_exec: start -----\n");
ac_dprintf("EVENT: ");
debug_event(event);
Expand All @@ -87,7 +87,7 @@ void action_exec(keyevent_t event) {

#ifdef SWAP_HANDS_ENABLE
// Swap hands handles both keys and encoders, if ENCODER_MAP_ENABLE is defined.
if (!IS_NOEVENT(event)) {
if (IS_EVENT(event)) {
process_hand_swap(&event);
}
#endif
Expand Down Expand Up @@ -125,7 +125,7 @@ void action_exec(keyevent_t event) {
if (IS_NOEVENT(record.event) || pre_process_record_quantum(&record)) {
process_record(&record);
}
if (!IS_NOEVENT(record.event)) {
if (IS_EVENT(record.event)) {
ac_dprintf("processed: ");
debug_record(record);
dprintln();
Expand Down
14 changes: 7 additions & 7 deletions quantum/action_tapping.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# endif
# endif

# define IS_TAPPING() !IS_NOEVENT(tapping_key.event)
# define IS_TAPPING() IS_EVENT(tapping_key.event)
# define IS_TAPPING_PRESSED() (IS_TAPPING() && tapping_key.event.pressed)
# define IS_TAPPING_RELEASED() (IS_TAPPING() && !tapping_key.event.pressed)
# define IS_TAPPING_KEY(k) (IS_TAPPING() && KEYEQ(tapping_key.event.key, (k)))
Expand Down Expand Up @@ -85,7 +85,7 @@ static void debug_waiting_buffer(void);
*/
void action_tapping_process(keyrecord_t record) {
if (process_tapping(&record)) {
if (!IS_NOEVENT(record.event)) {
if (IS_EVENT(record.event)) {
ac_dprintf("processed: ");
debug_record(record);
ac_dprintf("\n");
Expand All @@ -101,7 +101,7 @@ void action_tapping_process(keyrecord_t record) {
}

// process waiting_buffer
if (!IS_NOEVENT(record.event) && waiting_buffer_head != waiting_buffer_tail) {
if (IS_EVENT(record.event) && waiting_buffer_head != waiting_buffer_tail) {
ac_dprintf("---- action_exec: process waiting_buffer -----\n");
}
for (; waiting_buffer_tail != waiting_buffer_head; waiting_buffer_tail = (waiting_buffer_tail + 1) % WAITING_BUFFER_SIZE) {
Expand All @@ -113,7 +113,7 @@ void action_tapping_process(keyrecord_t record) {
break;
}
}
if (!IS_NOEVENT(record.event)) {
if (IS_EVENT(record.event)) {
ac_dprintf("\n");
}
}
Expand Down Expand Up @@ -316,7 +316,7 @@ bool process_tapping(keyrecord_t *keyp) {
debug_tapping_key();
return true;
} else {
if (!IS_NOEVENT(event)) {
if (IS_EVENT(event)) {
ac_dprintf("Tapping: key event while last tap(>0).\n");
}
process_record(keyp);
Expand Down Expand Up @@ -362,7 +362,7 @@ bool process_tapping(keyrecord_t *keyp) {
debug_tapping_key();
return true;
} else {
if (!IS_NOEVENT(event)) {
if (IS_EVENT(event)) {
ac_dprintf("Tapping: key event while last timeout tap(>0).\n");
}
process_record(keyp);
Expand Down Expand Up @@ -402,7 +402,7 @@ bool process_tapping(keyrecord_t *keyp) {
return true;
}
} else {
if (!IS_NOEVENT(event)) ac_dprintf("Tapping: other key just after tap.\n");
if (IS_EVENT(event)) ac_dprintf("Tapping: other key just after tap.\n");
process_record(keyp);
return true;
}
Expand Down
7 changes: 5 additions & 2 deletions quantum/keyboard.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ typedef struct {
static inline bool IS_NOEVENT(keyevent_t event) {
return event.time == 0 || (event.key.row == KEYLOC_TICK && event.key.col == KEYLOC_TICK);
}
static inline bool IS_EVENT(keyevent_t event) {
return !IS_NOEVENT(event);
}
static inline bool IS_KEYEVENT(keyevent_t event) {
return event.key.row < MATRIX_ROWS && event.key.col < MATRIX_COLS;
}
Expand All @@ -63,10 +66,10 @@ static inline bool IS_ENCODEREVENT(keyevent_t event) {
return event.key.row == KEYLOC_ENCODER_CW || event.key.row == KEYLOC_ENCODER_CCW;
}
static inline bool IS_PRESSED(keyevent_t event) {
return !IS_NOEVENT(event) && event.pressed;
return IS_EVENT(event) && event.pressed;
}
static inline bool IS_RELEASED(keyevent_t event) {
return !IS_NOEVENT(event) && !event.pressed;
return IS_EVENT(event) && !event.pressed;
}

/* Common keyevent object factory */
Expand Down

0 comments on commit 8598490

Please sign in to comment.