
Output text (form different data type sources) on screen in text mode. More...
#include <device/textstream.h>
Public Member Functions | |
TextStream (unsigned from_col, unsigned to_col, unsigned from_row, unsigned to_row, bool use_cursor=false) | |
Constructor of a text window. More... | |
TextStream (void) | |
Default constructor. More... | |
void | flush () override |
Output the buffer contents of the base class Stringbuffer. More... | |
![]() | |
![]() | |
![]() |
Static Public Member Functions | |
static void | arrange (TextStream &kout, TextStream dout[8]) |
Automatic arrangement of the output windows (depending on the cores) More... | |
![]() |
Additional Inherited Members | |
![]() | |
CGA color palette. More... | |
![]() | |
![]() | |
![]() | |
![]() | |
![]() | |
![]() | |
![]() |
Output text (form different data type sources) on screen in text mode.
Allows the output of different data types as strings on the TextMode screen of a PC. To achieve this, TextStream is derived from both OutputStream and TextWindow and only implements the method TextStream::flush(). Further formatting or special effects are implemented in TextWindow.
|
inline |
Constructor of a text window.
Creates a virtual, rectangular text window on the screen. The coordinates to construct the window are absolute positions in the TextMode screen.
from_col | Text Window starts in column from_col , the first (leftmost) possible column is 0 |
to_col | Text Window extends to the right to column to_col (exclusive). This column has to be strictly greater than from_col , the maximum allowed value is TextMode::COLUMNS (rightmost) |
from_row | Text Window starts in row from_row , the first possible (uppermost) row is 0 |
to_row | Text Window extends down to row to_row (exclusive). This row has to be strictly greater than from_row , the maximum allowed value is TextMode::ROWS (bottom-most) |
use_cursor | Specifies whether the hardware cursor (true ) or a software cursor/variable (false ) should be used to store the current position |
|
inline |
Default constructor.
Since each core in MPStuBS has its own debug window, but the number of available cores might be different on each system, the arrangement can be done automatically.
However, there is one problem: The number of CPUs is only known after evaluating the ACPI MADT table (which is done in APIC::init(), called during kernel_init()), but global constructors like ‘kout’ are executed earlier.
Therefore this constructor assigns each window 2 separate lines for the output, the actual window split is later done by calling TextStream::arrange() in main().
|
static |
Automatic arrangement of the output windows (depending on the cores)
After the system information has been read out, the number of available cores can be queried with Core::count(). This information helps to automatically arrange the windows without wasting screen area by pre-saving it for non-existent cores.
kout | Pointer to the object for the main output window |
dout | Pointer to an array with with debug windows for each core |
|
overridevirtual |
Output the buffer contents of the base class Stringbuffer.
The method is automatically called when the buffer is full, but can also be called explicitly to force output of the current buffer.
Implements OutputStream.