blob: 10c7e7b11625454a2674ef4fc798ec695db3ef50 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#include "PipeVT.class.h"
PipeVT::PipeVT() {
m_col = 0;
}
void PipeVT::setCursorCol(u32int col) {
while (col > m_col) {
put(" ");
}
}
void PipeVT::put(WChar c, bool updatecsr) {
Kbd::keypress_t kp;
if (c.value == '\t') {
m_col = (m_col + 8) &~(8 - 1);
kp.hascmd = true;
kp.command = KBDC_TAB;
} else if (c.value == '\n' or c.value == '\r') {
m_col = 0;
kp.hascmd = true;
kp.command = KBDC_ENTER;
} else if (c.value == '\b') {
kp.hascmd = true;
kp.command = KBDC_BACKSPACE;
} else {
kp.hascmd = false;
kp.haschar = true;
kp.character = c;
m_col++;
}
m_kbdbuffMutex.waitLock();
m_kbdbuff.push(kp);
m_kbdbuffMutex.unlock();
}
|