aboutsummaryrefslogtreecommitdiffstats
path: root/keyboard.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-09-30 11:08:46 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-09-30 11:08:46 -0400
commit19d9a04e36e7fb96eebe89e24311408460c29a70 (patch)
tree4d5f5ba595d5a5e2b59ce7b102c06b77c7be7721 /keyboard.cpp
parent85c8fd05f1a0c0224882c4fafa60003d3ef56cf3 (diff)
reorganize files
Diffstat (limited to 'keyboard.cpp')
-rw-r--r--keyboard.cpp64
1 files changed, 0 insertions, 64 deletions
diff --git a/keyboard.cpp b/keyboard.cpp
deleted file mode 100644
index 48dad02..0000000
--- a/keyboard.cpp
+++ /dev/null
@@ -1,64 +0,0 @@
-#include "circularbuffer.hpp"
-#include "idt.hpp"
-#include "keyboard.hpp"
-#include "portio.hpp"
-#include "vgaterminal.hpp"
-
-#include <array>
-#include <cstdint>
-
-extern TextOutput& term;
-
-static CircularBuffer<char> keyboardBuffer;
-static Port<0x60> keyboardPort;
-
-static const std::array<char, 0x59> ScanCodeSet1 {{
- 0, K_ESCAPE,
- '1', '2', '3', '4', '5', '6', '7', '8', '9', '0',
- '-', '=', '\b', '\t',
- 'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I', 'O', 'P', '[', ']', '\n', K_CONTROL_L,
- 'A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', 'L', ';', '\'', '`', K_SHIFT_L, '\\',
- 'Z', 'X', 'C', 'V', 'B', 'N', 'M', ',', '.', '/',
- K_SHIFT_R, '*', K_ALT_L, ' ', K_CAPS,
- K_F1, K_F2, K_F3, K_F4, K_F5, K_F6, K_F7, K_F8, K_F9, K_F10,
- K_NUM, K_SCROLL, '7', '8', '9', '-', '4', '5', '6', '+', '1', '2', '3', '0', '.',
- 0, 0, 0, // non-existant
- K_F11, K_F12
-}};
-
-static inline bool isReleased(auto ch) {
- return ch & 0x80;
-}
-
-static inline auto keycode(auto ch) {
- return ch & 0x7F;
-}
-
-void keyboard_initialize()
-{
- keyboardBuffer = CircularBuffer<char>(128);
-
- idt_register_callback(33, [](auto&) {
- const std::uint8_t kc = keyboardPort;
-
- if (!isReleased(kc)) {
- const auto ch = ScanCodeSet1[keycode(kc)];
- //if (ch > 0)
- // term.write(ch);
-
- keyboardBuffer.push_back(ch);
- }
- });
-}
-
-std::optional<char> keyboard_read()
-{
- if (keyboardBuffer.empty()) {
- return {};
- } else {
- const auto ch = keyboardBuffer.front();
- keyboardBuffer.pop_front();
- return ch;
- }
-}
-