2017-04-24 16:38:22 +00:00
|
|
|
#pragma once
|
|
|
|
#include <tty.hpp>
|
2017-04-29 20:04:29 +00:00
|
|
|
/**
|
|
|
|
* TTY for a CGA terminal. Limitations: 80x25, no RGB
|
|
|
|
*/
|
2017-04-26 10:27:27 +00:00
|
|
|
class CGATerm : public TTY {
|
2017-04-24 16:38:22 +00:00
|
|
|
protected:
|
2017-04-26 10:27:27 +00:00
|
|
|
virtual auto plotChar(int x, int y, int c) -> void;
|
|
|
|
|
2017-04-24 16:38:22 +00:00
|
|
|
public:
|
2017-04-26 10:27:27 +00:00
|
|
|
CGATerm();
|
|
|
|
virtual ~CGATerm();
|
|
|
|
virtual auto rgbSupport() -> bool;
|
2017-04-24 16:38:22 +00:00
|
|
|
};
|