]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - battlestar/command6.c
1 /* $NetBSD: command6.c,v 1.7 2010/04/02 19:34:44 christos Exp $ */
4 * Copyright (c) 1983, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #include <sys/cdefs.h>
35 static char sccsid
[] = "@(#)com6.c 8.2 (Berkeley) 4/28/95";
37 __RCSID("$NetBSD: command6.c,v 1.7 2010/04/02 19:34:44 christos Exp $");
42 #include "pathnames.h"
44 static void post(int);
49 if (testbit(location
[position
].objects
, VIPER
) && !notes
[CANTLAUNCH
]) {
51 clearbit(location
[position
].objects
, VIPER
);
52 position
= location
[position
].up
;
56 printf("You climb into the viper and prepare for ");
58 printf("With a touch of your thumb the turbo engines ");
59 printf("ignite, thrusting you back into\nyour seat.\n");
62 puts("Not enough fuel to launch.");
64 puts("Can't launch.");
71 if (notes
[LAUNCHED
] && testbit(location
[position
].objects
, LAND
) &&
72 location
[position
].down
) {
74 position
= location
[position
].down
;
75 setbit(location
[position
].objects
, VIPER
);
78 puts("You are down.");
81 puts("You can't land here.");
88 printf("bye.\nYour rating was %s.\n", rate());
94 diesig(int dummy __unused
)
107 static FILE *score_fp
;
110 open_score_file(void)
112 score_fp
= fopen(_PATH_SCORE
, "a");
113 if (score_fp
== NULL
)
114 warn("open %s for append", _PATH_SCORE
);
115 if (score_fp
!= NULL
&& fileno(score_fp
) < 3)
123 sigset_t isigset
, osigset
;
125 sigemptyset(&isigset
);
126 sigaddset(&isigset
, SIGINT
);
127 sigprocmask(SIG_BLOCK
, &isigset
, &osigset
);
129 if (score_fp
!= NULL
) {
130 fprintf(score_fp
, "%24.24s %8s %c%20s", ctime(&tv
), username
,
133 fprintf(score_fp
, " wizard\n");
136 fprintf(score_fp
, " WIZARD!\n");
138 fprintf(score_fp
, "\n");
140 sigprocmask(SIG_SETMASK
, &osigset
, (sigset_t
*) 0);
148 score
= max(max(pleasure
, power
), ego
);
149 if (score
== pleasure
) {
153 return ("junior voyeur");
157 return ("Marquis De Sade");
158 } else if (score
== power
) {
166 return ("Darth Vader");
168 return ("Sauron the Great");
173 return ("philanthropist");
177 return ("Mr. Roarke");
184 if (testbit(location
[position
].objects
, CAR
)) {
185 printf("You hop in the car and turn the key. There is ");
186 puts("a perceptible grating noise,");
187 puts("and an explosion knocks you unconscious...");
188 clearbit(location
[position
].objects
, CAR
);
189 setbit(location
[position
].objects
, CRASH
);
190 injuries
[5] = injuries
[6] = injuries
[7] = injuries
[8] = 1;
195 puts("There is nothing to drive here.");
202 if (testbit(location
[position
].objects
, HORSE
)) {
203 printf("You climb onto the stallion and kick it in the guts.");
204 puts(" The stupid steed launches");
205 printf("forward through bush and fern. You are thrown and ");
206 puts("the horse gallops off.");
207 clearbit(location
[position
].objects
, HORSE
);
208 while (!(position
= rnd(NUMOFROOMS
+ 1)) || !OUTSIDE
||
209 !beenthere
[position
] || location
[position
].flyhere
)
211 setbit(location
[position
].objects
, HORSE
);
212 if (location
[position
].north
)
213 position
= location
[position
].north
;
214 else if (location
[position
].south
)
215 position
= location
[position
].south
;
216 else if (location
[position
].east
)
217 position
= location
[position
].east
;
219 position
= location
[position
].west
;
222 puts("There is no horse here.");
228 { /* synonyms = {strike, smoke} *//* for
230 if (testbit(inven
, MATCHES
) && matchcount
) {
231 puts("Your match splutters to life.");
235 if (position
== 217) {
236 printf("The whole bungalow explodes with an ");
237 puts("intense blast.");
241 puts("You're out of matches.");
246 { /* synonyms = {open, unlock} */
248 if (wordnumber
<= wordcount
&& wordtype
[wordnumber
] == NOUNS
249 && wordvalue
[wordnumber
] == DOOR
) {
253 if (location
[189].north
== 231)
254 puts("The door is already open.");
256 puts("The door does not budge.");
259 if (location
[30].west
== 25)
260 puts("The door is gone.");
262 puts("The door is locked tight.");
265 puts("That's one immovable door.");
268 puts("The door is already ajar.");
274 puts("That doesn't open.");