sortix-mirror/sortix/kbapiadapter.h
Jonas 'Sortie' Termansen ead0e1523f Refactored the kernel keyboard API, but kept system calls compatible.
Caps lock now works as caps lock, not as shift lock.

This new design will allow implementing a working tty, such that stdin is
the only way to access the keyboard, instead of the current hacky way of
using a special system call to read from the keyboard.

Added a new system header file <sys/keycodes.h> defining the constants for
every key on the keyboard. This will be used in future APIs.

The main change is to split the keyboard driver into a class that reads
from the keyboard, while another class handles the translation into
printable characters (if possible). This allows a terminal driver based
on logical key presses and printable characters, instead of a terminal
driver based only on unicode-ish codes.
2012-01-22 15:53:50 +01:00

64 lines
1.8 KiB
C++

/******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2012.
This file is part of Sortix.
Sortix 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 3 of the License, or (at your option) any later
version.
Sortix 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 Sortix. If not, see <http://www.gnu.org/licenses/>.
kbapidapter.h
This class is a hack connecting the Keyboard and Keyboard layout classes
with the older and really bad Keyboard API. This class is intended to be
replaced by a real terminal driver working over /dev/tty descriptors.
******************************************************************************/
#ifndef SORTIX_KBAPIADAPTER_H
#define SORTIX_KBAPIADAPTER_H
#include "keyboard.h"
namespace Sortix
{
class KBAPIAdapter : public KeyboardOwner
{
public:
KBAPIAdapter(Keyboard* keyboard, KeyboardLayout* kblayout);
virtual ~KBAPIAdapter();
virtual void OnKeystroke(Keyboard* keyboard, void* user);
public:
uint32_t DequeueKeystroke();
private:
void ProcessKeystroke(int kbkey);
bool QueueKeystroke(uint32_t keystroke);
static uint32_t ToMaxsiCode(int abskbkey);
private:
Keyboard* keyboard;
KeyboardLayout* kblayout;
bool control;
static const size_t QUEUELENGTH = 1024UL;
size_t queuelength;
size_t queueused;
size_t queueoffset;
uint32_t queue[QUEUELENGTH];
};
}
#endif