Retro68/Console/retro/Console.h

149 lines
3.4 KiB
C
Raw Normal View History

/*
2020-01-12 21:09:04 +00:00
Copyright 2012-2020 Wolfgang Thaller, Davide Bucci
This file is part of Retro68.
Retro68 is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Retro68 is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.
You should have received a copy of the GNU General Public License
along with Retro68. If not, see <http://www.gnu.org/licenses/>.
*/
2015-10-15 22:52:50 +00:00
#ifndef RETRO68_CONSOLE_H_
#define RETRO68_CONSOLE_H_
2012-03-29 08:31:05 +00:00
#include <Quickdraw.h>
#include <vector>
2012-03-30 08:01:55 +00:00
#include <string>
2012-03-29 08:31:05 +00:00
2019-01-08 23:12:47 +00:00
namespace retro
2012-03-29 08:31:05 +00:00
{
2020-01-12 21:09:04 +00:00
class Attributes
{
public:
bool isBold(void) const;
bool isUnderline(void) const;
bool isItalic(void) const;
2020-01-12 21:09:04 +00:00
void setBold(const bool v);
void setUnderline(const bool v);
void setItalic(const bool v);
2020-01-12 21:09:04 +00:00
Attributes(void);
void reset(void);
private:
2020-01-12 21:09:04 +00:00
bool cBold;
bool cUnderline;
bool cItalic;
};
2020-01-12 21:09:04 +00:00
class AttributedChar
{
public:
char c;
Attributes attrs;
AttributedChar(char cc, Attributes aa) {c=cc; attrs=aa;}
};
enum class State
{
noSequence,
waitingForSequenceStart,
waitingForControlSequence,
waitingForM,
waitingForOSCStart,
waitingForSemicolon,
inWindowName
};
2020-01-12 21:09:04 +00:00
class Console
{
public:
Console();
Console(GrafPtr port, Rect r);
~Console();
2019-01-08 23:12:47 +00:00
void Reshape(Rect newBounds);
2019-01-08 23:12:47 +00:00
void Draw(Rect r);
void Draw() { Draw(bounds); }
void putch(char c);
2012-03-29 08:31:05 +00:00
void write(const char *s, int n);
std::string ReadLine();
2012-03-29 08:31:05 +00:00
static Console *currentInstance;
short GetRows() const { return rows; }
short GetCols() const { return cols; }
virtual void setWindowName(std::string newName) {};
void Idle();
2019-01-08 23:12:47 +00:00
bool IsEOF() const { return eof; }
private:
State sequenceState;
std::string windowName;
GrafPtr consolePort = nullptr;
Rect bounds;
2020-01-12 21:09:04 +00:00
Attributes currentAttr;
2012-03-29 08:31:05 +00:00
2020-01-12 21:09:04 +00:00
std::vector<AttributedChar> chars, onscreen;
2012-03-29 08:31:05 +00:00
short cellSizeX;
short cellSizeY;
2014-09-14 22:43:30 +00:00
short rows = 0, cols = 0;
2014-09-14 22:43:30 +00:00
short cursorX, cursorY;
Rect dirtyRect = {};
long blinkTicks = 0;
bool cursorDrawn = false;
bool cursorVisible = true;
2019-01-08 23:12:47 +00:00
bool eof = false;
void PutCharNoUpdate(char c);
void Update();
2020-01-12 21:09:04 +00:00
short CalcStartX(short x, short y);
Rect CellRect(short x, short y);
void DrawCell(short x, short y, bool erase = true);
void DrawCells(short x1, short x2, short y, bool erase = true);
void ScrollUp(short n = 1);
bool ProcessEscSequence(char c);
2020-01-12 21:09:04 +00:00
void SetAttributes(Attributes aa);
void InvalidateCursor();
virtual char WaitNextChar();
protected:
void Init(GrafPtr port, Rect r);
};
}
2015-10-15 22:52:50 +00:00
#endif /* RETRO68_CONSOLE_H_ */