-
Notifications
You must be signed in to change notification settings - Fork 97
/
SETUP.C
215 lines (192 loc) · 3.33 KB
/
SETUP.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
//
// SETUP PROGRAM
// (C) 1994 id Software, inc.
// by John Romero
// October 1-?
//
#include <stdio.h>
#include <dos.h>
#include <conio.h>
#include <mem.h>
#include <stdlib.h>
#include "main.h" // #includes setup.h
//
// Fatal error
//
char errorstring[80];
void Error(char *string)
{
textbackground(0);
textcolor(7);
clrscr();
printf("%s\n",string);
exit(1);
}
void DrawRadios(radiogroup_t *rg)
{
int i;
int value;
radio_t *r;
char far *screen;
byte color;
value = *(rg->master);
color = (rg->bgcolor << 4)+rg->fgcolor;
r = rg->radios;
for (i = 0; i < rg->amount; i++)
{
screen = MK_FP(0xb800,(r->y*160)+(r->x*2));
*(screen+1) = color;
if (value == r->value)
*screen = 7;
else
*screen = ' ';
r++;
}
}
//
// Save screens
//
static int layer = 0; // which screen layer we're at
char far screens[MAXLAYERS][4000];
void SaveScreen(void)
{
movedata(0xb800,0,FP_SEG(&screens[layer]),FP_OFF(&screens[layer]),4000);
layer++;
if (layer > MAXLAYERS)
{
sprintf(errorstring,"More than %d layers!",layer);
Error(errorstring);
}
}
//
// Restore screens
//
void RestoreScreen(void)
{
layer--;
if (layer < 0)
Error("Restored one layer too many!");
movedata(FP_SEG(&screens[layer]),FP_OFF(&screens[layer]),0xb800,0,4000);
}
//
// Draw the dim 3-D edge of a window
//
void DrawDimEdge(pup_t far *pup)
{
char far *screen;
int i;
if ((pup->x + pup->width + 1 > 79) ||
(pup->y + pup->height > 24))
return;
for (i = pup->y + 1; i < pup->y + pup->height + 1; i++)
{
screen = MK_FP(0xb800,i*160 + (pup->x + pup->width)*2);
*(screen+1) = 8;
*(screen+3) = 8;
}
screen = MK_FP(0xb800,(pup->y + pup->height)*160 + (pup->x+2)*2);
for (i = 0; i < pup->width; i++)
{
*(screen+1) = 8;
screen += 2;
}
}
//
// Draw LaughingDog .PUP files!
//
void DrawPup(pup_t far *pup)
{
int width;
int w;
int height;
int x;
int y;
char far *data;
byte code;
char far *screen;
char c;
char a;
short times;
int i;
int string;
w = width = pup->width;
height = pup->height;
x = pup->x;
y = pup->y;
DrawDimEdge(pup);
data = (char far *)(pup + 1);
screen = MK_FP(0xb800,y*160 + x*2);
string = normal;
while(1)
{
code = *data++;
switch(code)
{
case 0: // String of chars w/same attribute
if (string == stringdraw)
{
string = normal;
break;
}
string = stringdraw;
c = *data++; // char
a = *data++; // attribute
*screen++ = c;
*screen++ = a;
if (!--w)
{
if (!--height)
return; // finished!
w = width;
y++;
screen = MK_FP(0xb800,y*160 + x*2);
}
break;
case 0xff: // Repeated byte
c = *data++;
a = *data++;
times = (*data * 256) + *(data+1);
data+=2;
for (i = 0;i < times; i++)
{
*screen++ = c;
*screen++ = a;
if (!--w)
{
if (!--height)
return; // finished!
w = width;
y++;
screen = MK_FP(0xb800,y*160 + x*2);
}
}
break;
default: // char/attibute combo
if (string != stringdraw)
a = *data++;
c = code;
*screen++ = c;
*screen++ = a;
if (!--w)
{
if (!--height)
return; // finished!
w = width;
y++;
screen = MK_FP(0xb800,y*160 + x*2);
}
break;
}
}
}
char **myargv;
int myargc;
void main(int argc, char *argv[])
{
myargv = argv;
myargc = argc;
#ifdef DEBUG
ShowAllPups();
#endif
StartUp();
}