-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathts.h
132 lines (105 loc) · 4.28 KB
/
ts.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
VGATEST
Use at your own risk.
Copyright (C) 2019 Marco Bortolin
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _TEXTSCREEN_H_
#define _TEXTSCREEN_H_
#include "common.h"
#define DEFAULT_FG_COL c_lgray
#define DEFAULT_BG_COL c_blue
class TextScreen
{
private:
int m_curRow;
int m_curCol;
int m_prevCol;
int m_curFgColor;
int m_curBgColor;
bool m_moved;
int m_cols; // the number of text columns
int m_rows; // the number of text rows
int m_width; // the width in pixels
int m_height; // the height in pixels
int m_scanlines; // the number of scanlines
int m_boxw;
int m_boxh;
int16_t m_crtc_addr;
int16_t m_isr1_addr;
char *m_textPage;
char *m_activeOffset;
uint8_t m_overscanColor;
uint8_t m_error;
char *m_modeName; // printable name of the current mode
void setMode(int bios, int cols, int rows, int boxw, int boxh);
void setMode_b40x25_9x16_01h();
void setMode_b80x25_9x16_03h();
void setMode_b80x25_9x16_07h();
void setMode_640x480(int boxh);
int32_t getPageOffset(uint8_t page);
void (TextScreen::*m_resetModeFn)();
public:
TextScreen();
~TextScreen();
inline int16_t error() const { return m_error; }
inline int cols() const { return m_cols; }
inline int rows() const { return m_rows; }
inline int width() const { return m_width; }
inline int height() const { return m_height; }
inline int scanlines() const { return m_scanlines; }
inline int boxw() const { return m_boxw; }
inline int boxh() const { return m_boxh; }
inline const char * modeName() const { return m_modeName; }
inline char *activeOffset() const { return m_activeOffset; }
inline int32_t pageSize() const { return m_cols*m_rows*2; }
inline uint8_t pageCount() const { return 1; }
void setMode(int16_t newMode);
void resetMode();
void setActivePage(uint8_t page);
void setVisiblePage(uint8_t page);
void setSplitScreen(uint16_t scanline);
void setStartAddress(uint16_t address);
void setPanning(uint8_t hPan, uint8_t vPan);
uint8_t getHPanning();
uint8_t getVPanning();
void setOverscanColor(uint8_t palidx) {
m_overscanColor = palidx;
}
int setRow(int row);
int setCol(int col);
void setPos(int row, int col);
inline int getRow() const { return m_curRow; }
inline int getCol() const { return m_curCol; }
void getPos(int &row, int &col);
void setColor(uint8_t fg);
void setColor(uint8_t fg, uint8_t bg);
void erasePage();
void erasePage(uint8_t fg, uint8_t bg);
void moveCursor();
void moveCursor(int row, int col);
void moveCursor(int row, int col, uint8_t fg, uint8_t bg);
void write(char ch);
void write(const char *text);
void write(const char *text, uint8_t fg);
void write(const char *text, uint8_t fg, uint8_t bg);
void write(int row, int col, const char *text, uint8_t fg, uint8_t bg);
inline TextScreen& operator()(char ch) { write(ch); return *this; }
inline TextScreen& operator()(int row, int col) { setPos(row,col); return *this; }
inline TextScreen& operator()(const char *text) { write(text); return *this; }
inline TextScreen& operator()(const char *text, uint8_t fg) { write(text,fg); return *this; }
inline TextScreen& operator()(const char *text, uint8_t fg, uint8_t bg) { write(text,fg,bg); return *this; }
TextScreen& drawBox(int16_t row, int16_t col, int16_t width, int16_t height);
TextScreen& drawBox(int16_t row, int16_t col, int16_t width, int16_t height, uint8_t fg);
TextScreen& drawBox(int16_t row, int16_t col, int16_t width, int16_t height, uint8_t fg, uint8_t bg);
};
#endif