157 lines
5.0 KiB
C
157 lines
5.0 KiB
C
/* Copyright 2020 Christopher Courtney <drashna@live.com> (@drashna)
|
|
*
|
|
* 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 "tractyl_manuform.h"
|
|
#include "transactions.h"
|
|
#include <string.h>
|
|
#include "drivers/sensors/pmw3360.h"
|
|
|
|
#ifndef TRACKBALL_DPI_OPTIONS
|
|
# define TRACKBALL_DPI_OPTIONS \
|
|
{ 1200, 1600, 2400 }
|
|
# ifndef TRACKBALL_DPI_DEFAULT
|
|
# define TRACKBALL_DPI_DEFAULT 1
|
|
# endif
|
|
#endif
|
|
#ifndef TRACKBALL_DPI_DEFAULT
|
|
# define TRACKBALL_DPI_DEFAULT 0
|
|
#endif
|
|
|
|
keyboard_config_t keyboard_config;
|
|
uint16_t dpi_array[] = TRACKBALL_DPI_OPTIONS;
|
|
#define DPI_OPTION_SIZE (sizeof(dpi_array) / sizeof(uint16_t))
|
|
|
|
|
|
|
|
bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
|
|
if (!process_record_user(keycode, record)) {
|
|
return false;
|
|
}
|
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
|
if (keycode == DPI_CONFIG && record->event.pressed) {
|
|
if ((get_mods() | get_oneshot_mods()) & MOD_MASK_SHIFT) {
|
|
keyboard_config.dpi_config = (keyboard_config.dpi_config - 1) % DPI_OPTION_SIZE;
|
|
} else {
|
|
keyboard_config.dpi_config = (keyboard_config.dpi_config + 1) % DPI_OPTION_SIZE;
|
|
}
|
|
eeconfig_update_kb(keyboard_config.raw);
|
|
trackball_set_cpi(dpi_array[keyboard_config.dpi_config]);
|
|
}
|
|
#endif
|
|
|
|
/* If Mousekeys is disabled, then use handle the mouse button
|
|
* keycodes. This makes things simpler, and allows usage of
|
|
* the keycodes in a consistent manner. But only do this if
|
|
* Mousekeys is not enable, so it's not handled twice.
|
|
*/
|
|
#ifndef MOUSEKEY_ENABLE
|
|
if (IS_MOUSEKEY_BUTTON(keycode)) {
|
|
report_mouse_t currentReport = pointing_device_get_report();
|
|
currentReport.buttons = pointing_device_handle_buttons(currentReport.buttons, record->event.pressed, keycode - KC_MS_BTN1);
|
|
pointing_device_set_report(currentReport);
|
|
pointing_device_send();
|
|
}
|
|
#endif
|
|
|
|
return true;
|
|
}
|
|
__attribute__((weak)) void keyboard_pre_init_sync(void) {}
|
|
void keyboard_pre_init_kb(void) {
|
|
// debug_enable = true;
|
|
// debug_matrix = true;
|
|
// debug_mouse = true;
|
|
// debug_encoder = true;
|
|
|
|
// This is the debug LED.
|
|
#if defined(DEBUG_LED_PIN)
|
|
setPinOutput(DEBUG_LED_PIN);
|
|
writePin(DEBUG_LED_PIN, !debug_enable);
|
|
#endif
|
|
|
|
keyboard_pre_init_sync();
|
|
keyboard_pre_init_user();
|
|
}
|
|
|
|
__attribute__((weak)) void keyboard_post_init_sync(void) {}
|
|
void keyboard_post_init_kb(void) {
|
|
keyboard_post_init_sync();
|
|
keyboard_post_init_user();
|
|
}
|
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
|
void pointing_device_init_kb(void) {
|
|
trackball_set_cpi(dpi_array[keyboard_config.dpi_config]);
|
|
pointing_device_init_user();
|
|
}
|
|
|
|
report_mouse_t pointing_device_task_kb(report_mouse_t mouse_report) {
|
|
if (is_keyboard_left()) {
|
|
if (is_keyboard_master()) {
|
|
transaction_rpc_recv(RPC_ID_POINTER_STATE_SYNC, sizeof(sync_mouse_report), &sync_mouse_report);
|
|
mouse_report.x = sync_mouse_report.x;
|
|
mouse_report.y = sync_mouse_report.y;
|
|
pointing_device_task_user(mouse_report);
|
|
}
|
|
} else {
|
|
if (is_keyboard_master()) {
|
|
pointing_device_task_user(mouse_report);
|
|
} else {
|
|
sync_mouse_report.x = mouse_report.x;
|
|
sync_mouse_report.y = mouse_report.y;
|
|
}
|
|
}
|
|
return mouse_report;
|
|
}
|
|
#endif
|
|
|
|
void eeconfig_init_kb(void) {
|
|
keyboard_config.dpi_config = TRACKBALL_DPI_DEFAULT;
|
|
#ifdef POINTING_DEVICE_ENABLE
|
|
trackball_set_cpi(dpi_array[keyboard_config.dpi_config]);
|
|
#endif
|
|
eeconfig_update_kb(keyboard_config.raw);
|
|
eeconfig_init_user();
|
|
}
|
|
|
|
__attribute__((weak)) void matrix_init_sub_kb(void) {}
|
|
void matrix_init_kb(void) {
|
|
// is safe to just read DPI setting since matrix init
|
|
// comes before pointing device init.
|
|
keyboard_config.raw = eeconfig_read_kb();
|
|
if (keyboard_config.dpi_config > DPI_OPTION_SIZE) {
|
|
eeconfig_init_kb();
|
|
}
|
|
matrix_init_sub_kb();
|
|
matrix_init_user();
|
|
}
|
|
|
|
__attribute__((weak)) void matrix_scan_sub_kb(void) {}
|
|
void matrix_scan_kb(void) {
|
|
matrix_scan_sub_kb();
|
|
matrix_scan_user();
|
|
}
|
|
|
|
__attribute__((weak)) void housekeeping_task_sync(void) {}
|
|
void housekeeping_task_kb(void) {
|
|
housekeeping_task_sync();
|
|
// no need for user function, is called already
|
|
}
|
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
|
void matrix_power_up(void) { pointing_device_task(); }
|
|
#endif
|