Compare commits
4 Commits
main
...
charshift/
Author | SHA1 | Date |
---|---|---|
Gergely Nagy | 0cc060e4a4 | 3 years ago |
Gergely Nagy | ee36ed6929 | 3 years ago |
Gergely Nagy | 7d6ce8bf45 | 3 years ago |
Gergely Nagy | f916c2c0d4 | 3 years ago |
@ -0,0 +1,107 @@
|
||||
/* -*- mode: c++ -*-
|
||||
* Kaleidoscope-CharShift -- Independently assign shifted and unshifted symbols
|
||||
* Copyright (C) 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 <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "kaleidoscope/plugin/CharShift.h"
|
||||
|
||||
#include <Kaleidoscope-Ranges.h>
|
||||
#include <Kaleidoscope-FocusSerial.h>
|
||||
#include <Kaleidoscope-EEPROM-Settings.h>
|
||||
|
||||
#include "kaleidoscope/KeyAddr.h"
|
||||
#include "kaleidoscope/key_defs.h"
|
||||
#include "kaleidoscope/KeyEvent.h"
|
||||
#include "kaleidoscope/keyswitch_state.h"
|
||||
#include "kaleidoscope/progmem_helpers.h"
|
||||
#include "kaleidoscope/Runtime.h"
|
||||
|
||||
namespace kaleidoscope {
|
||||
namespace plugin {
|
||||
namespace charshift {
|
||||
|
||||
// =============================================================================
|
||||
// Storage class variables
|
||||
|
||||
uint8_t Storage::num_keypairs_;
|
||||
|
||||
CharShift::KeyPair const * ProgmemStorage::keypairs_{nullptr};
|
||||
|
||||
uint16_t EEPROMStorage::storage_base_;
|
||||
|
||||
|
||||
// =============================================================================
|
||||
// Progmem Storage
|
||||
|
||||
CharShift::KeyPair ProgmemStorage::readKeyPair(uint8_t n) {
|
||||
return cloneFromProgmem(keypairs_[n]);
|
||||
}
|
||||
|
||||
|
||||
// =============================================================================
|
||||
// EEPROM Storage
|
||||
EventHandlerResult EEPROMStorage::onFocusEvent(const char *command) {
|
||||
if (::Focus.handleHelp(command, PSTR("charshift.map")))
|
||||
return EventHandlerResult::OK;
|
||||
|
||||
if (strcmp_P(command, PSTR("charshift.map")) != 0)
|
||||
return EventHandlerResult::OK;
|
||||
|
||||
if (::Focus.isEOL()) {
|
||||
// We dump key by key, rather than pairs, because the end result is the
|
||||
// same, and dumping one by one is less code.
|
||||
for (uint16_t i = 0; i < num_keypairs_ * 2; i += 2) {
|
||||
Key k;
|
||||
|
||||
Runtime.storage().get(storage_base_ + i, k);
|
||||
::Focus.send(k);
|
||||
}
|
||||
} else {
|
||||
uint16_t pos = 0;
|
||||
|
||||
// We read one key at a time, rather than a keypair, to better handle
|
||||
// partials and failure, and to make the code simpler.
|
||||
while (!::Focus.isEOL()) {
|
||||
Key k;
|
||||
|
||||
::Focus.read(k);
|
||||
Runtime.storage().put(storage_base_ + pos, k);
|
||||
pos += 2;
|
||||
}
|
||||
Runtime.storage().commit();
|
||||
}
|
||||
|
||||
return EventHandlerResult::EVENT_CONSUMED;
|
||||
}
|
||||
|
||||
void EEPROMStorage::setup(uint8_t num_keypairs) {
|
||||
num_keypairs_ = num_keypairs;
|
||||
|
||||
storage_base_ = ::EEPROMSettings.requestSlice(num_keypairs * 4);
|
||||
}
|
||||
|
||||
CharShift::KeyPair EEPROMStorage::readKeyPair(uint8_t n) {
|
||||
uint16_t pos = storage_base_ + n * 4; // 4: Size of a keypair.
|
||||
uint16_t raw_lower = Runtime.storage().read(pos);
|
||||
uint16_t raw_upper = Runtime.storage().read(pos + 2);
|
||||
|
||||
return CharShift::KeyPair(Key(raw_lower), Key(raw_upper));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
} // namespace plugin
|
||||
} // namespace kaleidoscope
|
Loading…
Reference in new issue