summaryrefslogtreecommitdiff
path: root/Source/Kernel/VTManager/VT.ns.cpp
blob: ee7299db3d6fcf781dfaa652a1883fa6ffc9c447 (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
#include "VT.ns.h"
#include <Vector.class.h>
#include <DeviceManager/Disp.ns.h>

namespace VT {

Vector<SimpleVT*> mappedVTs;

void map(SimpleVT* vt) {
	unmap(vt);	//Bad things might happen
	mappedVTs.push(vt);
}

void unmap(SimpleVT* vt) {
	for (u32int i = 0; i < mappedVTs.size(); i++) {
		if (mappedVTs[i] == vt) {
			mappedVTs[i] = mappedVTs.back();
			mappedVTs.pop();
			redrawScreen();
			return;
		}
	}
}

void redrawScreen() {
	Disp::clear();
	for (u32int i = 0; i < mappedVTs.size(); i++) {
		mappedVTs[i]->redraw();
	}
}

}