]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - hack/hack.eat.c
9cd24b22ffabeec4f3a3ddea9adae7aa76e5867d
1 /* $NetBSD: hack.eat.c,v 1.7 2009/06/07 18:30:39 dholland Exp $ */
4 * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
12 * - Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
15 * - Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * - Neither the name of the Stichting Centrum voor Wiskunde en
20 * Informatica, nor the names of its contributors may be used to endorse or
21 * promote products derived from this software without specific prior
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
25 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
26 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
27 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
28 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
30 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
31 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 * Copyright (c) 1982 Jay Fenlason <hack@gnu.org>
39 * All rights reserved.
41 * Redistribution and use in source and binary forms, with or without
42 * modification, are permitted provided that the following conditions
44 * 1. Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * 2. Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in the
48 * documentation and/or other materials provided with the distribution.
49 * 3. The name of the author may not be used to endorse or promote products
50 * derived from this software without specific prior written permission.
52 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
53 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
54 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
55 * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
56 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
57 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
58 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
59 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
60 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
61 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
64 #include <sys/cdefs.h>
66 __RCSID("$NetBSD: hack.eat.c,v 1.7 2009/06/07 18:30:39 dholland Exp $");
71 char POISONOUS
[] = "ADKSVabhks";
73 /* hunger texts used on bottom line (each 8 chars long) */
82 const char *const hu_stat
[] = {
99 #define TTSZ SIZE(tintxts)
104 { "It contains first quality peaches - what a surprise!", 40 },
105 { "It contains salmon - not bad!", 60 },
106 { "It contains apple juice - perhaps not what you hoped for.", 20 },
107 { "It contains some nondescript substance, tasting awfully.", 500 },
108 { "It contains rotten meat. You vomit.", -50 },
109 { "It turns out to be empty.", 0 }
114 int usedtime
, reqtime
;
122 if (!carried(tin
.tin
)) /* perhaps it was stolen? */
123 return (0); /* %% probably we should use tinoid */
124 if (tin
.usedtime
++ >= 50) {
125 pline("You give up your attempt to open the tin.");
128 if (tin
.usedtime
< tin
.reqtime
)
129 return (1); /* still busy */
131 pline("You succeed in opening the tin.");
135 pline(tintxts
[r
].txt
);
136 lesshungry(tintxts
[r
].nut
);
137 if (r
== 1) { /* SALMON */
139 pline("Eating salmon made your fingers very slippery.");
142 pline("It contains spinach - this makes you feel like Popeye!");
145 u
.ustr
+= rnd(((u
.ustr
< 17) ? 19 : 118) - u
.ustr
);
146 if (u
.ustr
> u
.ustrmax
)
165 struct objclass
*ftmp
;
168 /* Is there some food (probably a heavy corpse) here on the ground? */
170 for (otmp
= fobj
; otmp
; otmp
= otmp
->nobj
) {
171 if (otmp
->ox
== u
.ux
&& otmp
->oy
== u
.uy
&&
172 otmp
->olet
== FOOD_SYM
) {
173 pline("There %s %s here; eat %s? [ny] ",
174 (otmp
->quan
== 1) ? "is" : "are",
176 (otmp
->quan
== 1) ? "it" : "one");
177 if (readchar() == 'y') {
179 (void) splitobj(otmp
, 1);
187 otmp
= getobj("%", "eat");
191 if (otmp
->otyp
== TIN
) {
193 switch (uwep
->otyp
) {
208 pline("Using your %s you try to open the tin.",
209 aobjnam(uwep
, (char *) 0));
212 pline("It is not so easy to open this tin.");
214 pline("The tin slips out of your hands.");
215 if (otmp
->quan
> 1) {
218 obj
= splitobj(otmp
, 1);
225 tmp
= 10 + rn2(1 + 500 / ((int) (u
.ulevel
+ u
.ustr
)));
230 occupation
= opentin
;
231 occtxt
= "opening the tin";
234 ftmp
= &objects
[otmp
->otyp
];
235 multi
= -ftmp
->oc_delay
;
236 if (otmp
->otyp
>= CORPSE
&& eatcorpse(otmp
))
238 if (!rn2(7) && otmp
->otyp
!= FORTUNE_COOKIE
) {
239 pline("Blecch! Rotten food!");
241 pline("You feel rather light headed.");
242 Confusion
+= d(2, 4);
243 } else if (!rn2(4) && !Blind
) {
244 pline("Everything suddenly goes dark.");
247 } else if (!rn2(3)) {
249 pline("The world spins and you slap against the floor.");
251 pline("The world spins and goes dark.");
253 nomovemsg
= "You are conscious again.";
255 lesshungry(ftmp
->nutrition
/ 4);
257 if (u
.uhunger
>= 1500) {
258 pline("You choke over your food.");
260 killer
= ftmp
->oc_name
;
263 switch (otmp
->otyp
) {
265 if (u
.uhunger
<= 200)
266 pline("That food really hit the spot!");
267 else if (u
.uhunger
<= 700)
268 pline("That satiated your stomach!");
270 pline("You're having a hard time getting all that food down.");
273 lesshungry(ftmp
->nutrition
);
275 nomovemsg
= "You finished your meal.";
278 pline("Yak - dog food!");
279 more_experienced(1, 0);
285 Sick
= 0; /* David Neves */
286 pline("What a relief!");
289 lesshungry(ftmp
->nutrition
);
292 if (otmp
->otyp
>= CORPSE
)
293 pline("That %s tasted terrible!", ftmp
->oc_name
);
295 pline("That %s was delicious!", ftmp
->oc_name
);
296 lesshungry(ftmp
->nutrition
);
297 if (otmp
->otyp
== DEAD_LIZARD
&& (Confusion
> 2))
301 if (otmp
->otyp
== CARROT
&& !Blind
) {
304 pline("Your vision improves.");
307 if (otmp
->otyp
== FORTUNE_COOKIE
) {
309 pline("This cookie has a scrap of paper inside!");
310 pline("What a pity, that you cannot read it!");
313 } else if (otmp
->otyp
== LUMP_OF_ROYAL_JELLY
) {
314 /* This stuff seems to be VERY healthy! */
317 if (u
.ustr
< u
.ustrmax
)
320 if (u
.uhp
> u
.uhpmax
) {
331 if (multi
< 0 && !nomovemsg
) {
332 static char msgbuf
[BUFSZ
];
333 (void) sprintf(msgbuf
, "You finished eating the %s.",
341 /* called in hack.main.c */
352 * a3: if(Hunger & LEFT_RING) u.uhunger--; if(Hunger &
353 * RIGHT_RING) u.uhunger--; etc.
356 if (moves
% 20 == 0) { /* jimt@asgb */
365 /* called after vomiting and after performing feats of magic */
373 /* called after eating something (and after drinking fruit juice) */
392 int newhs
, h
= u
.uhunger
;
394 newhs
= (h
> 1000) ? SATIATED
:
395 (h
> 150) ? NOT_HUNGRY
:
397 (h
> 0) ? WEAK
: FAINTING
;
399 if (newhs
== FAINTING
) {
400 if (u
.uhs
== FAINTED
)
402 if (u
.uhs
<= WEAK
|| rn2(20 - u
.uhunger
/ 10) >= 19) {
403 if (u
.uhs
!= FAINTED
&& multi
>= 0 /* %% */ ) {
404 pline("You faint from lack of food.");
405 nomul(-10 + (u
.uhunger
/ 10));
406 nomovemsg
= "You regain consciousness.";
410 } else if (u
.uhunger
< -(int) (200 + 25 * u
.ulevel
)) {
414 pline("You die from starvation.");
418 if (newhs
!= u
.uhs
) {
419 if (newhs
>= WEAK
&& u
.uhs
< WEAK
)
420 losestr(1); /* this may kill you -- see below */
421 else if (newhs
< WEAK
&& u
.uhs
>= WEAK
&& u
.ustr
< u
.ustrmax
)
425 pline((!incr
) ? "You only feel hungry now." :
426 (u
.uhunger
< 145) ? "You feel hungry." :
427 "You are beginning to feel hungry.");
430 pline((!incr
) ? "You feel weak now." :
431 (u
.uhunger
< 45) ? "You feel weak." :
432 "You are beginning to feel weak.");
438 pline("You die from hunger and exhaustion.");
439 killer
= "exhaustion";
445 #define CORPSE_I_TO_C(otyp) (char) ((otyp >= DEAD_ACID_BLOB)\
446 ? 'a' + (otyp - DEAD_ACID_BLOB)\
447 : '@' + (otyp - DEAD_HUMAN))
449 poisonous(struct obj
*otmp
)
451 return (strchr(POISONOUS
, CORPSE_I_TO_C(otmp
->otyp
)) != 0);
454 /* returns 1 if some text was printed */
456 eatcorpse(struct obj
*otmp
)
458 char let
= CORPSE_I_TO_C(otmp
->otyp
);
460 if (let
!= 'a' && moves
> otmp
->age
+ 50 + rn2(100)) {
462 pline("Ulch -- that meat was tainted!");
463 pline("You get very sick.");
465 u
.usick_cause
= objects
[otmp
->otyp
].oc_name
;
466 } else if (strchr(POISONOUS
, let
) && rn2(5)) {
468 pline("Ecch -- that must have been poisonous!");
469 if (!Poison_resistance
) {
471 losehp(rnd(15), "poisonous corpse");
473 pline("You don't seem affected by the poison.");
474 } else if (strchr("ELNOPQRUuxz", let
) && rn2(5)) {
476 pline("You feel sick.");
477 losehp(rnd(8), "cadaver");
483 Teleportation
|= INTRINSIC
;
491 /* fall into next case */
493 pline("You cannibal! You will be sorry for this!");
495 /* fall into next case */
497 Aggravate_monster
|= INTRINSIC
;
501 Invis
= 50 + rn2(100);
506 See_invisible
|= INTRINSIC
;
508 /* fall into next case */
513 /* fall into next case */
518 Fire_resistance
|= INTRINSIC
;
521 Telepat
|= INTRINSIC
;
525 Cold_resistance
|= INTRINSIC
;
529 Poison_resistance
|= INTRINSIC
;
532 pline("You turn to stone.");
533 killer
= "dead cockatrice";
538 pline("What a pity - you just destroyed a future piece of art!");
544 pline("You cannot resist the temptation to mimic a treasure chest.");
548 nomovemsg
= "You now again prefer mimicking a human.";