]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - battlestar/com5.c
2 * Copyright (c) 1983 Regents of the University of California.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 /*static char sccsid[] = "from: @(#)com5.c 5.3 (Berkeley) 6/1/90";*/
36 static char rcsid
[] = "$Id: com5.c,v 1.2 1993/08/01 18:56:08 mycroft Exp $" ;
43 while ( wordtype
[++ wordnumber
] != NOUNS
&& wordnumber
<= wordcount
);
44 if ( wordtype
[ wordnumber
] == NOUNS
&& testbit ( location
[ position
]. objects
, wordvalue
[ wordnumber
])){
47 switch ( wordvalue
[ wordnumber
]){
51 puts ( "She squirms and avoids your advances." );
54 puts ( "She is coming around; she didn't fight it as much." );
57 puts ( "She's begining to like it." );
60 puts ( "She's gone limp." );
65 puts ( "The lips are warm and her body robust. She pulls you down to the ground." );
68 puts ( "The old man blushes." );
71 puts ( "The dwarf punches you in the kneecap." );
77 else puts ( "I'd prefer not to." );
84 while ( wordtype
[++ wordnumber
] != NOUNS
&& wordnumber
<= wordcount
);
85 if ( wordtype
[ wordnumber
] == NOUNS
&& testbit ( location
[ position
]. objects
, wordvalue
[ wordnumber
])){
86 if ( wordvalue
[ wordnumber
] == NORMGOD
&& ! loved
)
88 puts ( "She cuddles up to you, and her mouth starts to work: \n 'That was my sister's amulet. The lovely goddess, Purl, was she. The Empire \n captured her just after the Darkness came. My other sister, Vert, was killed \n by the Dark Lord himself. He took her amulet and warped its power. \n Your quest was foretold by my father before he died, but to get the Dark Lord's \n amulet you must use cunning and skill. I will leave you my amulet." );
89 puts ( "which you may use as you wish. As for me, I am the last goddess of the \n waters. My father was the Island King, and the rule is rightfully mine.' \n\n She pulls the throne out into a large bed." );
93 if ( card ( injuries
, NUMOFINJURIES
)){
94 puts ( "Her kisses revive you; your wounds are healed. \n " );
95 for ( n
= 0 ; n
< NUMOFINJURIES
; n
++)
100 printf ( "Goddess: \n " );
102 setbit ( location
[ position
]. objects
, MEDALION
);
111 if ( wordvalue
[ wordnumber
] == NATIVE
){
112 puts ( "The girl is easy prey. She peals off her sarong and indulges you." );
121 else puts ( "I't doesn't seem to work." );
130 if (( snooze
- time
) < ( 0.75 * CYCLE
)){
131 time
+= 0.75 * CYCLE
- ( snooze
- time
);
133 for ( n
= 0 ; n
< time
- oldtime
; n
++)
136 snooze
+= 3 * ( time
- oldtime
);
137 if ( notes
[ LAUNCHED
]){
138 fuel
-= ( time
- oldtime
);
139 if ( location
[ position
]. down
){
140 position
= location
[ position
]. down
;
146 if ( OUTSIDE
&& rnd ( 100 ) < 50 ){
147 puts ( "You are awakened abruptly by the sound of someone nearby." );
151 n
= rnd ( NUMOFOBJECTS
);
152 while (! testbit ( inven
, n
))
153 n
= rnd ( NUMOFOBJECTS
);
155 if ( n
!= AMULET
&& n
!= MEDALION
&& n
!= TALISMAN
)
156 setbit ( location
[ position
]. objects
, n
);
157 carrying
-= objwt
[ n
];
158 encumber
-= objcumber
[ n
];
160 puts ( "A fiendish little Elf is stealing your treasures!" );
164 setbit ( location
[ position
]. objects
, DEADWOOD
);
167 setbit ( location
[ position
]. objects
, HALBERD
);
181 if (( time
/ CYCLE
+ 1 ) % 2 && OUTSIDE
)
182 switch (( time
% CYCLE
)/( CYCLE
/ 7 )){
184 puts ( "It is just after sunrise." );
187 puts ( "It is early morning." );
190 puts ( "It is late morning." );
193 puts ( "It is near noon." );
196 puts ( "It is early afternoon." );
199 puts ( "It is late afternoon." );
202 puts ( "It is near sunset." );
206 switch (( time
% CYCLE
)/( CYCLE
/ 7 )){
208 puts ( "It is just after sunset." );
211 puts ( "It is early evening." );
214 puts ( "The evening is getting old." );
217 puts ( "It is near midnight." );
220 puts ( "These are the wee hours of the morning." );
223 puts ( "The night is waning." );
226 puts ( "It is almost morning." );
230 puts ( "I can't tell the time in here." );
235 int obj
= - 1 , result
= - 1 , person
= 0 , firstnumber
, last1
, last2
;
237 firstnumber
= wordnumber
;
238 while ( wordtype
[++ wordnumber
] != OBJECT
&& wordvalue
[ wordnumber
] != AMULET
&& wordvalue
[ wordnumber
] != MEDALION
&& wordvalue
[ wordnumber
] != TALISMAN
&& wordnumber
<= wordcount
);
239 if ( wordnumber
<= wordcount
){
240 obj
= wordvalue
[ wordnumber
];
241 if ( obj
== EVERYTHING
)
242 wordtype
[ wordnumber
] = - 1 ;
245 wordnumber
= firstnumber
;
246 while (( wordtype
[++ wordnumber
] != NOUNS
|| wordvalue
[ wordnumber
] == obj
) && wordnumber
<= wordcount
);
247 if ( wordtype
[ wordnumber
] == NOUNS
){
248 person
= wordvalue
[ wordnumber
];
251 wordnumber
= last1
- 1 ;
252 if ( person
&& testbit ( location
[ position
]. objects
, person
))
253 if ( person
== NORMGOD
&& godready
< 2 && !( obj
== RING
|| obj
== BRACELET
))
254 puts ( "The goddess won't look at you." );
256 result
= drop ( "Given" );
258 puts ( "I don't think that is possible." );
261 if ( result
!= - 1 && ( testbit ( location
[ position
]. objects
, obj
) || obj
== AMULET
|| obj
== MEDALION
|| obj
== TALISMAN
)){
262 clearbit ( location
[ position
]. objects
, obj
);
267 puts ( "She accepts it shyly." );
271 if ( obj
== RING
|| obj
== BRACELET
){
272 puts ( "She takes the charm and puts it on. A little kiss on the cheek is" );
273 puts ( "your reward." );
277 if ( obj
== AMULET
|| obj
== MEDALION
|| obj
== TALISMAN
){
282 puts ( "The powers of the earth are now legitimate. You have destroyed the Darkness" );
283 puts ( "and restored the goddess to her thrown. The entire island celebrates with" );
284 puts ( "dancing and spring feasts. As a measure of her gratitude, the goddess weds you" );
285 puts ( "in the late summer and crowns you Prince Liverwort, Lord of Fungus." );
286 puts ( " \n But, as the year wears on and autumn comes along, you become restless and" );
287 puts ( "yearn for adventure. The goddess, too, realizes that the marriage can't last." );
288 puts ( "She becomes bored and takes several more natives as husbands. One evening," );
289 puts ( "after having been out drinking with the girls, she kicks the throne particulary" );
290 puts ( "hard and wakes you up. (If you want to win this game, you're going to have to \n shoot her!)" );
291 clearbit ( location
[ position
]. objects
, MEDALION
);
298 puts ( "He fingers the coins for a moment and then looks up agape. `Kind you are and" );
299 puts ( "I mean to repay you as best I can.' Grabbing a pencil and cocktail napkin... \n " );
300 printf ( "+-----------------------------------------------------------------------------+ \n " );
301 printf ( "| xxxxxxxx \\ | \n " );
302 printf ( "| xxxxx \\ CLIFFS | \n " );
303 printf ( "| FOREST xxx \\ | \n " );
304 printf ( "| \\\\ x \\ OCEAN | \n " );
305 printf ( "| || x \\ | \n " );
306 printf ( "| || ROAD x \\ | \n " );
307 printf ( "| || x \\ | \n " );
308 printf ( "| SECRET || ......... | \n " );
309 printf ( "| - + - || ........ | \n " );
310 printf ( "| ENTRANCE || ... BEACH | \n " );
311 printf ( "| || ... E | \n " );
312 printf ( "| || ... | | \n " );
313 printf ( "| // ... N <-- + --- S | \n " );
314 printf ( "| PALM GROVE // ... | | \n " );
315 printf ( "| // ... W | \n " );
316 printf ( "+-----------------------------------------------------------------------------+ \n " );
317 puts ( " \n `This map shows a secret entrance to the catacombs." );
318 puts ( "You will know when you arrive because I left an old pair of shoes there.'" );
323 wordnumber
= max ( last1
, last2
);