summaryrefslogtreecommitdiff
path: root/Source/Kernel/VTManager/PipeVT.class.cpp
blob: f4a5ca9457c47a19d3a2f2756274d872150e47f5 (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
36
37
38
#include "PipeVT.class.h"
#include <TaskManager/Task.ns.h>

PipeVT::PipeVT() {
	m_col = 0;
}

void PipeVT::setCursorCol(u32int col) {
	while (col > m_col) {
		put(" ");
	}
}

void PipeVT::put(WChar c, bool updatecsr) {
	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++;
	}
	while (m_kbdbuffEnd == m_kbdbuffStart - 1 or (m_kbdbuffEnd == KBDBUFFSIZE - 1 and m_kbdbuffStart == 0)) 
		Task::currThread()->sleep(10);
	m_kbdbuff[m_kbdbuffEnd] = kp;
	m_kbdbuffEnd++;
	if (m_kbdbuffEnd == KBDBUFFSIZE) m_kbdbuffEnd = 0;
}