mirror of
https://github.com/TomHarte/CLK.git
synced 2024-10-31 18:04:37 +00:00
39 lines
1.0 KiB
C++
39 lines
1.0 KiB
C++
//
|
|
// KeyboardMachine.cpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 10/10/2017.
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#include "KeyboardMachine.hpp"
|
|
|
|
using namespace MachineTypes;
|
|
|
|
MachineTypes::MappedKeyboardMachine::MappedKeyboardMachine(const std::set<Inputs::Keyboard::Key> &essential_modifiers) : keyboard_(essential_modifiers) {
|
|
keyboard_.set_delegate(this);
|
|
}
|
|
|
|
bool MappedKeyboardMachine::keyboard_did_change_key(Inputs::Keyboard *, Inputs::Keyboard::Key key, bool is_pressed) {
|
|
const uint16_t mapped_key = get_keyboard_mapper()->mapped_key_for_key(key);
|
|
if(mapped_key == KeyNotMapped) return false;
|
|
set_key_state(mapped_key, is_pressed);
|
|
return true;
|
|
}
|
|
|
|
void MappedKeyboardMachine::reset_all_keys(Inputs::Keyboard *) {
|
|
// TODO: unify naming.
|
|
clear_all_keys();
|
|
}
|
|
|
|
Inputs::Keyboard &MappedKeyboardMachine::get_keyboard() {
|
|
return keyboard_;
|
|
}
|
|
|
|
void KeyboardMachine::type_string(const std::string &) {
|
|
}
|
|
|
|
MappedKeyboardMachine::KeyboardMapper *MappedKeyboardMachine::get_keyboard_mapper() {
|
|
return nullptr;
|
|
}
|