/* -*- mode: c++ -*- * Kaleidoscope-Escape-OneShot -- Turn ESC into a key that cancels OneShots, if active. * Copyright (C) 2016-2021 Keyboard.io, Inc * * 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, version 3. * * 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 . */ #include "kaleidoscope/plugin/Escape-OneShot.h" // IWYU pragma: associated #include // for PSTR, F, __FlashStrin... #include // for EEPROMSettings #include // for Focus, FocusSerial #include // for uint16_t #include "kaleidoscope/Runtime.h" // for Runtime, Runtime_ #include "kaleidoscope/device/device.h" // for VirtualProps::Storage #include "kaleidoscope/event_handler_result.h" // for EventHandlerResult #include "kaleidoscope/key_defs.h" // for Key namespace kaleidoscope { namespace plugin { uint16_t EscapeOneShotConfig::settings_base_; EventHandlerResult EscapeOneShotConfig::onSetup() { settings_base_ = ::EEPROMSettings.requestSlice(sizeof(EscapeOneShot::settings_)); if (Runtime.storage().isSliceUninitialized( settings_base_, sizeof(EscapeOneShot::settings_))) { // If our slice is uninitialized, set sensible defaults. Runtime.storage().put(settings_base_, EscapeOneShot::settings_); Runtime.storage().commit(); } Runtime.storage().get(settings_base_, EscapeOneShot::settings_); return EventHandlerResult::OK; } EventHandlerResult EscapeOneShotConfig::onNameQuery() { return ::Focus.sendName(F("EscapeOneShot")); } EventHandlerResult EscapeOneShotConfig::onFocusEvent(const char *command) { if (::Focus.handleHelp(command, PSTR("escape_oneshot.cancel_key"))) return EventHandlerResult::OK; if (strcmp_P(command, PSTR("escape_oneshot.cancel_key")) != 0) return EventHandlerResult::OK; if (::Focus.isEOL()) { ::Focus.send(::EscapeOneShot.getCancelKey()); } else { Key k; ::Focus.read(k); ::EscapeOneShot.setCancelKey(k); } Runtime.storage().put(settings_base_, EscapeOneShot::settings_); Runtime.storage().commit(); return EventHandlerResult::EVENT_CONSUMED; } } // namespace plugin } // namespace kaleidoscope kaleidoscope::plugin::EscapeOneShotConfig EscapeOneShotConfig;