2024-02-18 11:17:15 +01:00
|
|
|
// Copyright 2022-2023 Nick Brassel (@tzarc)
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-10-26 22:19:23 +02:00
|
|
|
|
2024-02-18 11:17:15 +01:00
|
|
|
#include <string.h>
|
2023-07-16 15:42:56 +02:00
|
|
|
#include "action.h"
|
2024-02-18 11:17:15 +01:00
|
|
|
#include "encoder.h"
|
2023-07-16 15:42:56 +02:00
|
|
|
#include "wait.h"
|
|
|
|
|
2022-03-09 09:29:00 +01:00
|
|
|
#ifndef ENCODER_MAP_KEY_DELAY
|
2022-08-29 06:53:08 +02:00
|
|
|
# define ENCODER_MAP_KEY_DELAY TAP_CODE_DELAY
|
2022-03-09 09:29:00 +01:00
|
|
|
#endif
|
|
|
|
|
2024-02-18 11:17:15 +01:00
|
|
|
__attribute__((weak)) bool should_process_encoder(void) {
|
|
|
|
return is_keyboard_master();
|
|
|
|
}
|
2018-10-26 22:19:23 +02:00
|
|
|
|
2024-02-18 11:17:15 +01:00
|
|
|
static encoder_events_t encoder_events;
|
|
|
|
|
|
|
|
void encoder_init(void) {
|
|
|
|
memset(&encoder_events, 0, sizeof(encoder_events));
|
|
|
|
encoder_driver_init();
|
|
|
|
}
|
2018-10-26 22:19:23 +02:00
|
|
|
|
2024-02-18 11:17:15 +01:00
|
|
|
static bool encoder_handle_queue(void) {
|
|
|
|
bool changed = false;
|
|
|
|
while (encoder_events.tail != encoder_events.head) {
|
|
|
|
encoder_event_t event = encoder_events.queue[encoder_events.tail];
|
|
|
|
encoder_events.tail = (encoder_events.tail + 1) % MAX_QUEUED_ENCODER_EVENTS;
|
2022-03-08 06:58:05 +01:00
|
|
|
|
2024-02-18 11:17:15 +01:00
|
|
|
#ifdef ENCODER_MAP_ENABLE
|
2022-03-08 06:58:05 +01:00
|
|
|
|
2024-02-18 11:17:15 +01:00
|
|
|
// The delays below cater for Windows and its wonderful requirements.
|
|
|
|
action_exec(event.clockwise ? MAKE_ENCODER_CW_EVENT(event.index, true) : MAKE_ENCODER_CCW_EVENT(event.index, true));
|
|
|
|
# if ENCODER_MAP_KEY_DELAY > 0
|
|
|
|
wait_ms(ENCODER_MAP_KEY_DELAY);
|
|
|
|
# endif // ENCODER_MAP_KEY_DELAY > 0
|
2018-10-26 22:19:23 +02:00
|
|
|
|
2024-02-18 11:17:15 +01:00
|
|
|
action_exec(event.clockwise ? MAKE_ENCODER_CW_EVENT(event.index, false) : MAKE_ENCODER_CCW_EVENT(event.index, false));
|
|
|
|
# if ENCODER_MAP_KEY_DELAY > 0
|
|
|
|
wait_ms(ENCODER_MAP_KEY_DELAY);
|
|
|
|
# endif // ENCODER_MAP_KEY_DELAY > 0
|
|
|
|
|
|
|
|
#else // ENCODER_MAP_ENABLE
|
|
|
|
|
|
|
|
encoder_update_kb(event.index, event.clockwise ? true : false);
|
|
|
|
|
|
|
|
#endif // ENCODER_MAP_ENABLE
|
|
|
|
|
|
|
|
changed = true;
|
|
|
|
}
|
|
|
|
return changed;
|
|
|
|
}
|
2018-10-26 22:19:23 +02:00
|
|
|
|
2024-02-18 11:17:15 +01:00
|
|
|
bool encoder_task(void) {
|
|
|
|
bool changed = false;
|
2019-04-04 01:01:17 +02:00
|
|
|
|
2021-11-27 04:40:09 +01:00
|
|
|
#ifdef SPLIT_KEYBOARD
|
2024-02-18 11:17:15 +01:00
|
|
|
// Attempt to process existing encoder events in case split handling has already enqueued events
|
|
|
|
if (should_process_encoder()) {
|
|
|
|
changed |= encoder_handle_queue();
|
|
|
|
}
|
|
|
|
#endif // SPLIT_KEYBOARD
|
|
|
|
|
|
|
|
// Let the encoder driver produce events
|
|
|
|
encoder_driver_task();
|
|
|
|
|
|
|
|
// Process any events that were enqueued
|
|
|
|
if (should_process_encoder()) {
|
|
|
|
changed |= encoder_handle_queue();
|
|
|
|
}
|
|
|
|
|
|
|
|
return changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool encoder_queue_event(uint8_t index, bool clockwise) {
|
|
|
|
// Drop out if we're full
|
|
|
|
if ((encoder_events.head + 1) % MAX_QUEUED_ENCODER_EVENTS == encoder_events.tail) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append the event
|
|
|
|
encoder_event_t new_event = {.index = index, .clockwise = clockwise ? 1 : 0};
|
|
|
|
encoder_events.queue[encoder_events.head] = new_event;
|
|
|
|
|
|
|
|
// Increment the head index
|
|
|
|
encoder_events.head = (encoder_events.head + 1) % MAX_QUEUED_ENCODER_EVENTS;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void encoder_retrieve_events(encoder_events_t *events) {
|
|
|
|
memcpy(events, &encoder_events, sizeof(encoder_events));
|
|
|
|
}
|
2018-10-26 22:19:23 +02:00
|
|
|
|
2024-02-18 11:17:15 +01:00
|
|
|
#ifdef SPLIT_KEYBOARD
|
|
|
|
void encoder_set_tail_index(uint8_t tail_index) {
|
|
|
|
encoder_events.tail = tail_index;
|
|
|
|
}
|
2022-03-08 06:58:05 +01:00
|
|
|
|
2024-02-18 11:17:15 +01:00
|
|
|
void encoder_handle_slave_events(encoder_events_t *events) {
|
|
|
|
while (events->tail != events->head) {
|
|
|
|
encoder_event_t event = events->queue[events->tail];
|
|
|
|
events->tail = (events->tail + 1) % MAX_QUEUED_ENCODER_EVENTS;
|
|
|
|
encoder_queue_event(event.index, event.clockwise ? true : false);
|
|
|
|
}
|
2022-02-21 17:04:41 +01:00
|
|
|
}
|
2024-02-18 11:17:15 +01:00
|
|
|
#endif // SPLIT_KEYBOARD
|
2022-02-21 15:13:06 +01:00
|
|
|
|
2022-02-12 19:29:31 +01:00
|
|
|
__attribute__((weak)) bool encoder_update_user(uint8_t index, bool clockwise) {
|
|
|
|
return true;
|
|
|
|
}
|
2018-10-26 22:19:23 +02:00
|
|
|
|
2022-02-12 19:29:31 +01:00
|
|
|
__attribute__((weak)) bool encoder_update_kb(uint8_t index, bool clockwise) {
|
2023-04-03 18:18:17 +02:00
|
|
|
bool res = encoder_update_user(index, clockwise);
|
|
|
|
#if !defined(ENCODER_TESTS)
|
|
|
|
if (res) {
|
|
|
|
if (clockwise) {
|
|
|
|
# if defined(EXTRAKEY_ENABLE)
|
|
|
|
tap_code_delay(KC_VOLU, 10);
|
|
|
|
# elif defined(MOUSEKEY_ENABLE)
|
|
|
|
tap_code_delay(KC_MS_WH_UP, 10);
|
|
|
|
# else
|
|
|
|
tap_code_delay(KC_PGDN, 10);
|
|
|
|
# endif
|
|
|
|
} else {
|
|
|
|
# if defined(EXTRAKEY_ENABLE)
|
|
|
|
tap_code_delay(KC_VOLD, 10);
|
|
|
|
# elif defined(MOUSEKEY_ENABLE)
|
|
|
|
tap_code_delay(KC_MS_WH_DOWN, 10);
|
|
|
|
# else
|
|
|
|
tap_code_delay(KC_PGUP, 10);
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // ENCODER_TESTS
|
|
|
|
return res;
|
2022-02-12 19:29:31 +01:00
|
|
|
}
|