mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 16:04:59 +00:00
077c7d767f
I had forgotten that mappers are not exposed.
37 lines
959 B
C++
37 lines
959 B
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 KeyboardMachine;
|
|
|
|
MappedMachine::MappedMachine(const std::set<Inputs::Keyboard::Key> &essential_modifiers) : keyboard_(essential_modifiers) {
|
|
keyboard_.set_delegate(this);
|
|
}
|
|
|
|
void MappedMachine::keyboard_did_change_key(Inputs::Keyboard *keyboard, Inputs::Keyboard::Key key, bool is_pressed) {
|
|
uint16_t mapped_key = get_keyboard_mapper()->mapped_key_for_key(key);
|
|
if(mapped_key != KeyNotMapped) set_key_state(mapped_key, is_pressed);
|
|
}
|
|
|
|
void MappedMachine::reset_all_keys(Inputs::Keyboard *keyboard) {
|
|
// TODO: unify naming.
|
|
clear_all_keys();
|
|
}
|
|
|
|
Inputs::Keyboard &MappedMachine::get_keyboard() {
|
|
return keyboard_;
|
|
}
|
|
|
|
void Machine::type_string(const std::string &) {
|
|
}
|
|
|
|
MappedMachine::KeyboardMapper *MappedMachine::get_keyboard_mapper() {
|
|
return nullptr;
|
|
}
|