-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathvideo.c
294 lines (273 loc) · 6.87 KB
/
video.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
/* --------------------- video.c -------------------- */
#include "dflat.h"
BOOL ClipString;
static BOOL snowy;
static unsigned video_address;
static unsigned short near vpeek(unsigned short far *vp);
static void near vpoke(unsigned short far *vp, unsigned short c);
void movefromscreen(void *bf, int offset, int len);
void movetoscreen(void *bf, int offset, int len);
/* -- read a rectangle of video memory into a save buffer -- */
void getvideo(RECT rc, void far *bf)
{
int ht = RectBottom(rc)-RectTop(rc)+1;
int bytes_row = (RectRight(rc)-RectLeft(rc)+1) * 2;
unsigned vadr = vad(RectLeft(rc), RectTop(rc));
hide_mousecursor();
while (ht--) {
movefromscreen(bf, vadr, bytes_row);
vadr += SCREENWIDTH*2;
bf = (char far *)bf + bytes_row;
}
show_mousecursor();
}
/* -- write a rectangle of video memory from a save buffer -- */
void storevideo(RECT rc, void far *bf)
{
int ht = RectBottom(rc)-RectTop(rc)+1;
int bytes_row = (RectRight(rc)-RectLeft(rc)+1) * 2;
unsigned vadr = vad(RectLeft(rc), RectTop(rc));
hide_mousecursor();
while (ht--) {
movetoscreen(bf, vadr, bytes_row);
vadr += SCREENWIDTH*2;
bf = (char far *)bf + bytes_row;
}
show_mousecursor();
}
/* -------- read a character of video memory ------- */
unsigned int GetVideoChar(int x, int y)
{
int c;
hide_mousecursor();
if (snowy)
c = vpeek(MK_FP(video_address, vad(x,y)));
else
c = peek(video_address, vad(x,y));
show_mousecursor();
return c;
}
/* -------- write a character of video memory ------- */
void PutVideoChar(int x, int y, int c)
{
if (x < SCREENWIDTH && y < SCREENHEIGHT) {
hide_mousecursor();
if (snowy)
vpoke(MK_FP(video_address, vad(x,y)), c);
else
poke(video_address, vad(x,y), c);
show_mousecursor();
}
}
BOOL CharInView(WINDOW wnd, int x, int y)
{
WINDOW nwnd = NextWindow(wnd);
WINDOW pwnd;
RECT rc;
int x1 = GetLeft(wnd)+x;
int y1 = GetTop(wnd)+y;
if (!TestAttribute(wnd, VISIBLE))
return FALSE;
if (!TestAttribute(wnd, NOCLIP)) {
WINDOW wnd1 = GetParent(wnd);
while (wnd1 != NULL) {
/* --- clip character to parent's borders -- */
if (!TestAttribute(wnd1, VISIBLE))
return FALSE;
if (!InsideRect(x1, y1, ClientRect(wnd1)))
return FALSE;
wnd1 = GetParent(wnd1);
}
}
while (nwnd != NULL) {
if (!isHidden(nwnd) /* && !isAncestor(wnd, nwnd) */ ) {
rc = WindowRect(nwnd);
if (TestAttribute(nwnd, SHADOW)) {
RectBottom(rc)++;
RectRight(rc)++;
}
if (!TestAttribute(nwnd, NOCLIP)) {
pwnd = nwnd;
while (GetParent(pwnd)) {
pwnd = GetParent(pwnd);
rc = subRectangle(rc, ClientRect(pwnd));
}
}
if (InsideRect(x1,y1,rc))
return FALSE;
}
nwnd = NextWindow(nwnd);
}
return (x1 < SCREENWIDTH && y1 < SCREENHEIGHT);
}
/* -------- write a character to a window ------- */
void wputch(WINDOW wnd, int c, int x, int y)
{
if (CharInView(wnd, x, y)) {
int ch = (c & 255) | (clr(foreground, background) << 8);
int xc = GetLeft(wnd)+x;
int yc = GetTop(wnd)+y;
hide_mousecursor();
if (snowy)
vpoke(MK_FP(video_address, vad(xc, yc)), ch);
else
poke(video_address, vad(xc, yc), ch);
show_mousecursor();
}
}
/* ------- write a string to a window ---------- */
void wputs(WINDOW wnd, void *s, int x, int y)
{
int x1 = GetLeft(wnd)+x;
int x2 = x1;
int y1 = GetTop(wnd)+y;
if (x1 < SCREENWIDTH && y1 < SCREENHEIGHT && isVisible(wnd)) {
short ln[200];
short *cp1 = ln;
unsigned char *str = s;
int fg = foreground;
int bg = background;
int len;
int off = 0;
while (*str) {
if (*str == CHANGECOLOR) {
str++;
foreground = (*str++) & 0x7f;
background = (*str++) & 0x7f;
continue;
}
if (*str == RESETCOLOR) {
foreground = fg & 0x7f;
background = bg & 0x7f;
str++;
continue;
}
if (*str == ('\t' | 0x80) || *str == ('\f' | 0x80))
*cp1 = ' ' | (clr(foreground, background) << 8);
else
*cp1 = (*str & 255) | (clr(foreground, background) << 8);
if (ClipString)
if (!CharInView(wnd, x, y))
*cp1 = peek(video_address, vad(x2,y1));
cp1++;
str++;
x++;
x2++;
}
foreground = fg;
background = bg;
len = (int)(cp1-ln);
if (x1+len > SCREENWIDTH)
len = SCREENWIDTH-x1;
if (!ClipString && !TestAttribute(wnd, NOCLIP)) {
/* -- clip the line to within ancestor windows -- */
RECT rc = WindowRect(wnd);
WINDOW nwnd = GetParent(wnd);
while (len > 0 && nwnd != NULL) {
if (!isVisible(nwnd)) {
len = 0;
break;
}
rc = subRectangle(rc, ClientRect(nwnd));
nwnd = GetParent(nwnd);
}
while (len > 0 && !InsideRect(x1+off,y1,rc)) {
off++;
--len;
}
if (len > 0) {
x2 = x1+len-1;
while (len && !InsideRect(x2,y1,rc)) {
--x2;
--len;
}
}
}
if (len > 0) {
hide_mousecursor();
movetoscreen(ln+off, vad(x1+off,y1), len*2);
show_mousecursor();
}
}
}
/* --------- get the current video mode -------- */
void get_videomode(void)
{
videomode();
/* ---- Monochrome Display Adaptor or text mode ---- */
snowy = FALSE;
if (ismono())
video_address = 0xb000;
else {
/* ------ Text mode -------- */
video_address = 0xb800 + video_page;
if (!isEGA() && !isVGA())
/* -------- CGA --------- */
snowy = cfg.snowy;
}
}
/* --------- scroll the window. d: 1 = up, 0 = dn ---------- */
void scroll_window(WINDOW wnd, RECT rc, int d)
{
if (RectTop(rc) != RectBottom(rc)) {
union REGS regs;
regs.h.cl = RectLeft(rc);
regs.h.ch = RectTop(rc);
regs.h.dl = RectRight(rc);
regs.h.dh = RectBottom(rc);
regs.h.bh = clr(WndForeground(wnd),WndBackground(wnd));
regs.h.ah = 7 - d;
regs.h.al = 1;
hide_mousecursor();
int86(VIDEO, ®s, ®s);
show_mousecursor();
}
}
static void near waitforretrace(void)
{
#ifdef __SMALLER_C__
#else
#ifndef WATCOM
asm mov dx,3dah
loop1:
asm mov cx,6
loop2:
asm in al,dx
asm test al,8
asm jnz loop2
asm test al,1
asm jz loop2
asm cli
loop3:
asm in al,dx
asm test al,1
asm loopnz loop3
asm sti
asm jz loop1
#endif
#endif
}
void movetoscreen(void *bf, int offset, int len)
{
if (snowy)
waitforretrace();
movedata(FP_SEG(bf), FP_OFF(bf), video_address, offset, len);
}
void movefromscreen(void *bf, int offset, int len)
{
if (snowy)
waitforretrace();
movedata(video_address, offset, FP_SEG(bf), FP_OFF(bf), len);
}
static unsigned short near vpeek(unsigned short far *vp)
{
unsigned short c;
waitforretrace();
c = *vp;
return c;
}
static void near vpoke(unsigned short far *vp, unsigned short c)
{
waitforretrace();
*vp = c;
}