-
Notifications
You must be signed in to change notification settings - Fork 0
/
screen_buffer.c
127 lines (99 loc) · 2.42 KB
/
screen_buffer.c
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
/* screen_buffer.c - MemTest-86 Version 3.3
*
* Released under version 2 of the Gnu Public License.
* By Jani Averbach, [email protected], 2001
*/
#include "test.h"
#include "screen_buffer.h"
#define SCREEN_X 80
#define SCREEN_Y 25
#define Y_SIZE SCREEN_Y
/*
* X-size should by one of by screen size,
* so that there is room for ending '\0'
*/
#define X_SIZE SCREEN_X+1
static char screen_buf[Y_SIZE][X_SIZE];
#ifdef SCRN_DEBUG
char *padding = "12345678901234567890123456789012345678901234567890123456789012345678901234567890";
#define CHECK_BOUNDS(y,x) do {if (y < 0 || Y_SIZE <= y || x < 0 || X_SIZE <= x) print_error("out of index");}while(0)
#else /* ! SCRN_DEBUG */
#define CHECK_BOUNDS(y,x)
#endif /* SCRN_DEBUG */
char
get_scrn_buf(const int y,
const int x)
{
CHECK_BOUNDS(y,x);
return screen_buf[y][x];
}
void
set_scrn_buf(const int y,
const int x,
const char val)
{
CHECK_BOUNDS(y,x);
screen_buf[y][x] = val;
}
void clear_screen_buf()
{
int y, x;
for (y=0; y < SCREEN_Y; ++y){
for (x=0; x < SCREEN_X; ++x){
CHECK_BOUNDS(y,x);
screen_buf[y][x] = ' ';
}
CHECK_BOUNDS(y,SCREEN_X);
screen_buf[y][SCREEN_X] = '\0';
}
}
void tty_print_region(const int pi_top,
const int pi_left,
const int pi_bottom,
const int pi_right)
{
int y;
char tmp;
for (y=pi_top; y < pi_bottom; ++y){
CHECK_BOUNDS(y, pi_right);
tmp = screen_buf[y][pi_right];
screen_buf[y][pi_right] = '\0';
CHECK_BOUNDS(y, pi_left);
ttyprint(y, pi_left, &(screen_buf[y][pi_left]));
screen_buf[y][pi_right] = tmp;
}
}
void tty_print_line(
int y, int x, const char *text)
{
for(; *text && (x < SCREEN_X); x++, text++) {
if (*text != screen_buf[y][x]) {
break;
}
}
/* If there is nothing to do return */
if (*text == '\0') {
return;
}
ttyprint(y, x, text);
for(; *text && (x < SCREEN_X); x++, text++) {
screen_buf[y][x] = *text;
}
}
void tty_print_screen(void)
{
#ifdef SCRN_DEBUG
int i;
for (i=0; i < SCREEN_Y; ++i)
ttyprint(i,0, padding);
#endif /* SCRN_DEBUG */
tty_print_region(0, 0, SCREEN_Y, SCREEN_X);
}
void print_error(char *pstr)
{
#ifdef SCRN_DEBUG
ttyprint(0,0, padding);
#endif /* SCRN_DEBUG */
ttyprint(0,35, pstr);
while(1);
}