-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpcvga.c
228 lines (177 loc) · 4.24 KB
/
pcvga.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
/* Sarien - A Sierra AGI resource interpreter engine
* Copyright (C) 1999-2001 Stuart George and Claudio Matsuoka
*
* $Id: pcvga.c,v 1.5 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>
#ifdef _MSC_VER
#define __TURBOC__ 1
#endif
#ifdef __WATCOMC__
#include <i86.h>
#endif
#include "sarien.h"
#include "graphics.h"
#ifdef __TURBOC__
#define __outp(a, b) outportb(a, b)
#endif
#ifdef __WATCOMC__
#define __outp(a, b) outp(a, b)
#endif
#ifdef _MSC_VER
#define __outp(a, b) outp(a, b)
#endif
#ifdef __WATCOMC__
void DebugBreak(void);
#pragma aux DebugBreak = "int 3" parm[];
#endif
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_pcvga = {
pc_init_vidmode,
pc_deinit_vidmode,
pc_put_block,
pc_put_pixels,
pc_timer,
pc_keypress,
pc_get_key
};
static void pc_timer ()
{
static UINT32 cticks = 0;
while (cticks == clock_ticks);
cticks = clock_ticks;
}
int init_machine (int argc, char **argv)
{
gfx = &gfx_pcvga;
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, GFX_HEIGHT);
prev_08 = _dos_getvect (0x08);
_dos_setvect (0x08, tick_increment);
memset (&r, 0x0, sizeof(union REGS));
#ifdef __WATCOMC__
r.w.ax = 0x13;
int386 (0x10, &r, &r);
#endif
#ifdef __TURBOC__
r.x.ax = 0x13;
int86 (0x10, &r, &r);
#endif
__outp (0x3c8, 0);
for (i = 0; i < 32 * 3; i++)
__outp (0x3c9, palette[i]);
return err_OK;
}
static int pc_deinit_vidmode ()
{
union REGS r;
memset (&r, 0x0, sizeof(union REGS));
#ifdef __WATCOMC__
r.w.ax = 0x03;
int386 (0x10, &r, &r);
#endif
#ifdef __TURBOC__
r.x.ax = 0x03;
int86 (0x10, &r, &r);
#endif
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 h, w, p;
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;
h = y2 - y1 + 1;
w = x2 - x1 + 1;
p = GFX_WIDTH * y1 + x1;
while (h--) {
#ifdef __WATCOMC__
/* Watcom uses linear 0xa0000 address */
memcpy ((UINT8 *)0xa0000 + p, screen_buffer + p, w);
#else
/* Turbo C wants 0xa0000000 in seg:ofs format */
_fmemcpy ((UINT8 far *)0xa0000000 + p, screen_buffer + p, w);
#endif
p += 320;
}
}
static void pc_put_pixels(int x, int y, int w, UINT8 *p)
{
UINT8 *s;
for (s = &screen_buffer[y * 320 + x]; w--; *s++ = *p++);
}
static int pc_keypress ()
{
return !!kbhit();
}
static int pc_get_key ()
{
union REGS r;
UINT16 key;
memset (&r, 0, sizeof(union REGS));
#ifdef __WATCOMC__
int386 (0x16, &r, &r);
#endif
#ifdef __TURBOC__
int86 (0x16, &r, &r);
#endif
key = r.h.al == 0 ? (r.h.ah << 8) : r.h.al;
return key;
}
/* WATCOM HATES timer routines... */
/* lucky we call no other routines inside our timer */
/* coz SS!=DS and watcom wants SS==DS but it aint inside a timer! */
#ifdef _MSC_VER
void interrupt far tick_increment(void)
#else
void __interrupt __far tick_increment (void)
#endif
{
clock_ticks++;
#ifdef _MSC_VER
_chain_intr(prev_08);
#else
(*prev_08)();
#endif
}