2018-10-21 22:59:43 +03:00
|
|
|
#include "Console.h"
|
|
|
|
#include "VGA.h"
|
2018-10-23 14:02:38 +03:00
|
|
|
#include "IO.h"
|
|
|
|
|
|
|
|
// Bytes output to 0xE9 end up on the Bochs console. It's very handy.
|
|
|
|
#define CONSOLE_OUT_TO_E9
|
2018-10-21 22:59:43 +03:00
|
|
|
|
|
|
|
static Console* s_the;
|
|
|
|
|
|
|
|
Console& Console::the()
|
|
|
|
{
|
|
|
|
return *s_the;
|
|
|
|
}
|
|
|
|
|
|
|
|
Console::Console()
|
|
|
|
{
|
|
|
|
s_the = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
Console::~Console()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t Console::read(byte* buffer, size_t bufferSize)
|
|
|
|
{
|
|
|
|
// FIXME: Implement reading from the console.
|
|
|
|
// Maybe we could use a ring buffer for this device?
|
|
|
|
// A generalized ring buffer would probably be useful.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-10-21 23:11:46 +03:00
|
|
|
void Console::putChar(char ch)
|
|
|
|
{
|
2018-10-23 14:02:38 +03:00
|
|
|
#ifdef CONSOLE_OUT_TO_E9
|
|
|
|
IO::out8(0xe9, ch);
|
|
|
|
#endif
|
2018-10-22 12:15:16 +03:00
|
|
|
switch (ch) {
|
|
|
|
case '\n':
|
|
|
|
m_cursorColumn = 0;
|
2018-10-23 16:47:03 +03:00
|
|
|
if (m_cursorRow == (m_rows - 1)) {
|
2018-10-22 12:15:16 +03:00
|
|
|
vga_scroll_up();
|
|
|
|
} else {
|
|
|
|
++m_cursorRow;
|
|
|
|
}
|
|
|
|
vga_set_cursor(m_cursorRow, m_cursorColumn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
vga_putch_at(m_cursorRow, m_cursorColumn, ch);
|
|
|
|
|
|
|
|
++m_cursorColumn;
|
|
|
|
if (m_cursorColumn >= m_columns) {
|
2018-10-23 16:47:03 +03:00
|
|
|
if (m_cursorRow == (m_rows - 1)) {
|
2018-10-22 12:15:16 +03:00
|
|
|
vga_scroll_up();
|
|
|
|
} else {
|
|
|
|
++m_cursorRow;
|
|
|
|
}
|
|
|
|
m_cursorColumn = 0;
|
|
|
|
}
|
|
|
|
vga_set_cursor(m_cursorRow, m_cursorColumn);
|
2018-10-21 23:11:46 +03:00
|
|
|
}
|
2018-10-21 22:59:43 +03:00
|
|
|
|
|
|
|
ssize_t Console::write(const byte* data, size_t size)
|
|
|
|
{
|
|
|
|
if (!size)
|
|
|
|
return 0;
|
|
|
|
|
2018-10-21 23:11:46 +03:00
|
|
|
for (size_t i = 0; i < size; ++i)
|
|
|
|
putChar(data[i]);
|
2018-10-21 22:59:43 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|