]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - battlestar/command6.c
1 /* $NetBSD: command6.c,v 1.4 2007/12/15 19:44:39 perry 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.4 2007/12/15 19:44:39 perry Exp $");
42 #include "pathnames.h"
47 if (testbit(location
[position
].objects
, VIPER
) && !notes
[CANTLAUNCH
]) {
49 clearbit(location
[position
].objects
, VIPER
);
50 position
= location
[position
].up
;
54 printf("You climb into the viper and prepare for ");
56 printf("With a touch of your thumb the turbo engines ");
57 printf("ignite, thrusting you back into\nyour seat.\n");
60 puts("Not enough fuel to launch.");
62 puts("Can't launch.");
69 if (notes
[LAUNCHED
] && testbit(location
[position
].objects
, LAND
) &&
70 location
[position
].down
) {
72 position
= location
[position
].down
;
73 setbit(location
[position
].objects
, VIPER
);
76 puts("You are down.");
79 puts("You can't land here.");
86 printf("bye.\nYour rating was %s.\n", rate());
92 diesig(int dummy __unused
)
105 static FILE *score_fp
;
108 open_score_file(void)
110 score_fp
= fopen(_PATH_SCORE
, "a");
111 if (score_fp
== NULL
)
112 warn("open %s for append", _PATH_SCORE
);
113 if (score_fp
!= NULL
&& fileno(score_fp
) < 3)
122 sigset_t isigset
, osigset
;
124 sigemptyset(&isigset
);
125 sigaddset(&isigset
, SIGINT
);
126 sigprocmask(SIG_BLOCK
, &isigset
, &osigset
);
130 if (score_fp
!= NULL
) {
131 fprintf(score_fp
, "%s %8s %c%20s", date
, username
,
134 fprintf(score_fp
, " wizard\n");
137 fprintf(score_fp
, " WIZARD!\n");
139 fprintf(score_fp
, "\n");
141 sigprocmask(SIG_SETMASK
, &osigset
, (sigset_t
*) 0);
149 score
= max(max(pleasure
, power
), ego
);
150 if (score
== pleasure
) {
154 return ("junior voyeur");
158 return ("Marquis De Sade");
159 } else if (score
== power
) {
167 return ("Darth Vader");
169 return ("Sauron the Great");
174 return ("philanthropist");
178 return ("Mr. Roarke");
185 if (testbit(location
[position
].objects
, CAR
)) {
186 printf("You hop in the car and turn the key. There is ");
187 puts("a perceptible grating noise,");
188 puts("and an explosion knocks you unconscious...");
189 clearbit(location
[position
].objects
, CAR
);
190 setbit(location
[position
].objects
, CRASH
);
191 injuries
[5] = injuries
[6] = injuries
[7] = injuries
[8] = 1;
196 puts("There is nothing to drive here.");
203 if (testbit(location
[position
].objects
, HORSE
)) {
204 printf("You climb onto the stallion and kick it in the guts.");
205 puts(" The stupid steed launches");
206 printf("forward through bush and fern. You are thrown and ");
207 puts("the horse gallops off.");
208 clearbit(location
[position
].objects
, HORSE
);
209 while (!(position
= rnd(NUMOFROOMS
+ 1)) || !OUTSIDE
||
210 !beenthere
[position
] || location
[position
].flyhere
)
212 setbit(location
[position
].objects
, HORSE
);
213 if (location
[position
].north
)
214 position
= location
[position
].north
;
215 else if (location
[position
].south
)
216 position
= location
[position
].south
;
217 else if (location
[position
].east
)
218 position
= location
[position
].east
;
220 position
= location
[position
].west
;
223 puts("There is no horse here.");
229 { /* synonyms = {strike, smoke} *//* for
231 if (testbit(inven
, MATCHES
) && matchcount
) {
232 puts("Your match splutters to life.");
236 if (position
== 217) {
237 printf("The whole bungalow explodes with an ");
238 puts("intense blast.");
242 puts("You're out of matches.");
247 { /* synonyms = {open, unlock} */
249 if (wordnumber
<= wordcount
&& wordtype
[wordnumber
] == NOUNS
250 && wordvalue
[wordnumber
] == DOOR
) {
254 if (location
[189].north
== 231)
255 puts("The door is already open.");
257 puts("The door does not budge.");
260 if (location
[30].west
== 25)
261 puts("The door is gone.");
263 puts("The door is locked tight.");
266 puts("That's one immovable door.");
269 puts("The door is already ajar.");
275 puts("That doesn't open.");