-
Notifications
You must be signed in to change notification settings - Fork 1
/
pccga.c
221 lines (169 loc) · 4.38 KB
/
pccga.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
/* Sarien - A Sierra AGI resource interpreter engine
* Copyright (C) 1999-2001 Stuart George and Claudio Matsuoka
*
* $Id: pccga.c,v 1.9 2002/11/16 01:20:21 cmatsuoka Exp $
*
* 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; see docs/COPYING for further details.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dos.h>
#include "sarien.h"
#include "graphics.h"
#define __outp(a, b) outportb(a, b)
extern struct gfx_driver *gfx;
extern struct sarien_options opt;
UINT8 *exec_name;
static UINT8 *screen_buffer;
#ifdef _MSC_VER
static void (interrupt far * prev_08)(void);
void interrupt far tick_increment(void);
#else
void (__interrupt __far *prev_08) (void);
void __interrupt __far tick_increment (void);
#endif
static int pc_init_vidmode (void);
static int pc_deinit_vidmode (void);
static void pc_put_block (int, int, int, int);
static void pc_put_pixels (int, int, int, UINT8 *);
static void pc_timer (void);
static int pc_get_key (void);
static int pc_keypress (void);
#define TICK_SECONDS 18
static struct gfx_driver gfx_pccga = {
pc_init_vidmode,
pc_deinit_vidmode,
pc_put_block,
pc_put_pixels,
pc_timer,
pc_keypress,
pc_get_key
};
static UINT8 cga_map[16] = {
0x00, /* 0 - black */
0x01, /* 1 - blue */
0x01, /* 2 - green */
0x01, /* 3 - cyan */
0x02, /* 4 - red */
0x02, /* 5 - magenta */
0x02, /* 6 - brown */
0x03, /* 7 - gray */
0x00, /* 8 - dark gray */
0x01, /* 9 - light blue */
0x01, /* 10 - light green */
0x01, /* 11 - light cyan */
0x02, /* 12 - light red */
0x02, /* 13 - light magenta */
0x02, /* 14 - yellow */
0x03 /* 15 - white */
};
static void pc_timer ()
{
static UINT32 cticks = 0;
while (cticks == clock_ticks);
cticks = clock_ticks;
}
int init_machine (int argc, char **argv)
{
gfx = &gfx_pccga;
return err_OK;
}
int deinit_machine ()
{
return err_OK;
}
static int pc_init_vidmode ()
{
union REGS r;
int i;
clock_count = 0;
clock_ticks = 0;
screen_buffer = calloc (GFX_WIDTH / 4, GFX_HEIGHT);
prev_08 = _dos_getvect (0x08);
_dos_setvect (0x08, tick_increment);
opt.cgaemu = TRUE;
memset (&r, 0x0, sizeof(union REGS));
r.x.ax = 0x4;
int86 (0x10, &r, &r);
return err_OK;
}
static int pc_deinit_vidmode ()
{
union REGS r;
memset (&r, 0x0, sizeof(union REGS));
r.x.ax = 0x03;
int86 (0x10, &r, &r);
free (screen_buffer);
_dos_setvect (0x08, prev_08);
return err_OK;
}
/* blit a block onto the screen */
static void pc_put_block (int x1, int y1, int x2, int y2)
{
unsigned int i, h, w, p, p2;
UINT8 far *fbuffer;
UINT8 *sbuffer;
if (x1 >= GFX_WIDTH) x1 = GFX_WIDTH - 1;
if (y1 >= GFX_HEIGHT) y1 = GFX_HEIGHT - 1;
if (x2 >= GFX_WIDTH) x2 = GFX_WIDTH - 1;
if (y2 >= GFX_HEIGHT) y2 = GFX_HEIGHT - 1;
y1 &= ~1; /* Always start at an even line */
h = y2 - y1 + 1;
w = (x2 - x1 + 1) / 4 + 1;
p = 40 * y1 + x1 / 4; /* Note: (GFX_WIDTH / 4) * (y1 / 2) */
p2 = p + 40 * y1;
/* Write to the interlaced CGA framebuffer */
fbuffer = (UINT8 far *)0xb8000000 + p;
sbuffer = screen_buffer + p2;
for (i = 0; i < h; i += 2) {
_fmemcpy (fbuffer, sbuffer, w);
fbuffer += 80;
sbuffer += 160;
}
fbuffer = (UINT8 far *)0xb8002000 + p;
sbuffer = screen_buffer + p2 + 80;
for (i = 1; i < h; i += 2) {
_fmemcpy (fbuffer, sbuffer, w);
fbuffer += 80;
sbuffer += 160;
}
}
static void pc_put_pixels(int x, int y, int w, UINT8 *p)
{
UINT8 *s, mask, val, shift, c;
for (s = &screen_buffer[80 * y + x / 4]; w; w--, x++, p++) {
shift = (x & 3) * 2;
/* Sorry, no transparent colors */
c = *p > 15 ? 0 : cga_map[*p];
mask = 0xc0 >> shift;
val = (c & 0x03) << (6 - shift);
*s = (*s & ~mask) | val;
if ((x % 4) == 3)
s++;
}
}
static int pc_keypress ()
{
return !!kbhit();
}
static int pc_get_key ()
{
union REGS r;
UINT16 key;
memset (&r, 0, sizeof(union REGS));
int86 (0x16, &r, &r);
key = r.h.al ? r.h.al : r.h.ah << 8;
return key;
}
#ifdef _MSC_VER
void interrupt far tick_increment(void)
#else
void __interrupt __far tick_increment (void)
#endif
{
clock_ticks++;
_chain_intr(prev_08);
}