Retro68/Console/Console.h

89 lines
1.9 KiB
C
Raw Normal View History

/*
Copyright 2012 Wolfgang Thaller.
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.
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
namespace Retro
2012-03-29 08:31:05 +00:00
{
class Console
{
public:
Console(GrafPtr port, Rect r);
~Console();
2015-10-15 22:52:50 +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; }
2015-10-15 22:52:50 +00:00
void Idle();
private:
GrafPtr consolePort;
Rect bounds;
2012-03-29 08:31:05 +00:00
std::vector<char> chars, onscreen;
2012-03-29 08:31:05 +00:00
short cellSizeX;
short cellSizeY;
2014-09-14 22:43:30 +00:00
short rows, cols;
2014-09-14 22:43:30 +00:00
short cursorX, cursorY;
Rect dirtyRect;
2015-10-12 21:44:07 +00:00
long blinkTicks;
bool cursorDrawn;
bool cursorVisible;
void PutCharNoUpdate(char c);
void Update();
2012-03-29 08:31:05 +00:00
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);
2015-10-12 21:44:07 +00:00
void InvalidateCursor();
2015-10-15 22:52:50 +00:00
virtual char WaitNextChar() = 0;
protected:
Console();
void Init(GrafPtr port, Rect r);
void Reshape(Rect newBounds);
};
}
2015-10-15 22:52:50 +00:00
#endif /* RETRO68_CONSOLE_H_ */