1

add semaphore to cgastream

This commit is contained in:
2022-07-17 01:27:13 +02:00
parent 982843ad84
commit b158f98639

View File

@ -17,6 +17,7 @@
#include "devices/CGA.h"
#include "lib/OutStream.h"
#include "lib/Semaphore.h"
// NOTE: I added these classes to allow for easier stream-like color changing
class fgc {
@ -51,18 +52,23 @@ class CGA_Stream : public OutStream, public CGA {
private:
CGA_Stream(CGA_Stream& copy) = delete; // Verhindere Kopieren
Semaphore sem;
public:
CGA::color color_fg;
CGA::color color_bg;
bool blink;
CGA_Stream() : color_fg(CGA::LIGHT_GREY), color_bg(CGA::BLACK), blink(false) {
CGA_Stream() : sem(1), color_fg(CGA::LIGHT_GREY), color_bg(CGA::BLACK), blink(false) {
flush();
}
// Methode zur Ausgabe des Pufferinhalts der Basisklasse StringBuffer.
void flush() override;
void lock() { sem.p(); }
void unlock() { sem.v(); }
// Change stream color
template<typename T>
// requires std::derived_from<T, CGA_Stream>