]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - hack/hack.fight.c
1 /* $NetBSD: hack.fight.c,v 1.8 2008/01/28 06:55:41 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.fight.c,v 1.8 2008/01/28 06:55:41 dholland Exp $");
72 static boolean far_noise
;
73 static long noisetime
;
75 /* hitmm returns 0 (miss), 1 (hit), or 2 (kill) */
78 struct monst
*magr
, *mdef
;
80 const struct permonst
*pa
= magr
->data
, *pd
= mdef
->data
;
85 if (strchr("Eauy", pa
->mlet
))
88 return (0); /* riv05!a3 */
89 tmp
= pd
->ac
+ pa
->mlevel
;
90 if (mdef
->mconf
|| mdef
->mfroz
|| mdef
->msleep
) {
95 didhit
= (tmp
> rnd(20));
98 vis
= (cansee(magr
->mx
, magr
->my
) && cansee(mdef
->mx
, mdef
->my
));
105 (void) sprintf(buf
, "%s %s", Monnam(magr
),
106 didhit
? "hits" : "misses");
107 pline("%s %s.", buf
, monnam(mdef
));
109 boolean far
= (dist(magr
->mx
, magr
->my
) > 15);
110 if (far
!= far_noise
|| moves
- noisetime
> 10) {
113 pline("You hear some noises%s.",
114 far
? " in the distance" : "");
118 if (magr
->data
->mlet
== 'c' && !magr
->cham
) {
121 pline("%s is turned to stone!", Monnam(mdef
));
122 else if (mdef
->mtame
)
123 pline("You have a peculiarly sad feeling for a moment, then it passes.");
126 } else if ((mdef
->mhp
-= d(pa
->damn
, pa
->damd
)) < 1) {
127 magr
->mhpmax
+= 1 + rn2(pd
->mlevel
+ 1);
128 if (magr
->mtame
&& magr
->mhpmax
> 8 * pa
->mlevel
) {
130 magr
->data
= pa
= &dog
;
132 magr
->data
= pa
= &la_dog
;
135 pline("%s is killed!", Monnam(mdef
));
136 else if (mdef
->mtame
)
137 pline("You have a sad feeling for a moment, then it passes.");
145 /* drop (perhaps) a cadaver and remove monster */
150 const struct permonst
*pd
= mdef
->data
;
151 if (letter(pd
->mlet
) && rn2(3)) {
152 (void) mkobj_at(pd
->mlet
, mdef
->mx
, mdef
->my
);
153 if (cansee(mdef
->mx
, mdef
->my
)) {
155 atl(mdef
->mx
, mdef
->my
, fobj
->olet
);
162 /* drop a rock and remove monster */
167 if (strchr(mlarge
, mdef
->data
->mlet
))
168 mksobj_at(ENORMOUS_ROCK
, mdef
->mx
, mdef
->my
);
170 mksobj_at(ROCK
, mdef
->mx
, mdef
->my
);
171 if (cansee(mdef
->mx
, mdef
->my
)) {
173 atl(mdef
->mx
, mdef
->my
, fobj
->olet
);
184 for (mon
= fmon
; mon
; mon
= mon
->nmon
)
186 if (DIST(mon
->mx
, mon
->my
, mtmp
->mx
, mtmp
->my
) < 3)
188 return (hitmm(mtmp
, mon
));
193 /* u is hit by sth, but not a monster */
195 thitu(tlev
, dam
, name
)
201 if (u
.uac
+ tlev
<= rnd(20)) {
205 pline("You are almost hit by %s!", buf
);
209 pline("You are hit!");
211 pline("You are hit by %s!", buf
);
217 char mlarge
[] = "bCDdegIlmnoPSsTUwY',&";
220 hmon(mon
, obj
, thrown
) /* return TRUE if mon still alive */
226 boolean hittxt
= FALSE
;
229 tmp
= rnd(2); /* attack with bare hands */
230 if (mon
->data
->mlet
== 'c' && !uarmg
) {
231 pline("You hit the cockatrice with your bare hands.");
232 pline("You turn to stone ...");
235 } else if (obj
->olet
== WEAPON_SYM
|| obj
->otyp
== PICK_AXE
) {
236 if (obj
== uwep
&& (obj
->otyp
> SPEAR
|| obj
->otyp
< BOOMERANG
))
239 if (strchr(mlarge
, mon
->data
->mlet
)) {
240 tmp
= rnd(objects
[obj
->otyp
].wldam
);
241 if (obj
->otyp
== TWO_HANDED_SWORD
)
243 else if (obj
->otyp
== FLAIL
)
246 tmp
= rnd(objects
[obj
->otyp
].wsdam
);
249 if (!thrown
&& obj
== uwep
&& obj
->otyp
== BOOMERANG
251 pline("As you hit %s, the boomerang breaks into splinters.",
254 setworn((struct obj
*) 0, obj
->owornmask
);
255 obfree(obj
, (struct obj
*) 0);
260 if (mon
->data
->mlet
== 'O' && obj
!= NULL
&&
261 obj
->otyp
== TWO_HANDED_SWORD
&&
262 !strcmp(ONAME(obj
), "Orcrist"))
266 case HEAVY_IRON_BALL
:
269 case EXPENSIVE_CAMERA
:
270 pline("You succeed in destroying your camera. Congratulations!");
273 setworn((struct obj
*) 0, obj
->owornmask
);
274 obfree(obj
, (struct obj
*) 0);
276 case DEAD_COCKATRICE
:
277 pline("You hit %s with the cockatrice corpse.",
279 if (mon
->data
->mlet
== 'c') {
284 pline("%s is turned to stone!", Monnam(mon
));
287 case CLOVE_OF_GARLIC
: /* no effect against demons */
288 if (strchr(UNDEAD
, mon
->data
->mlet
))
293 /* non-weapons can damage because of their weight */
294 /* (but not too much) */
304 /****** NOTE: perhaps obj is undefined!! (if !thrown && BOOMERANG) */
306 tmp
+= u
.udaminc
+ dbon();
308 if ((tmp
-= u
.uswldtim
) <= 0) {
309 pline("Your arms are no longer able to hit.");
320 if (mon
->mtame
&& (!mon
->mflee
|| mon
->mfleetim
)) {
321 mon
->mflee
= 1; /* Rick Richardson */
322 mon
->mfleetim
+= 10 * rnd(tmp
);
326 /* this assumes that we cannot throw plural things */
328 panic("thrown non-object");
329 hit(xname(obj
) /* or: objects[obj->otyp].oc_name */ ,
332 pline("You hit it.");
334 pline("You hit %s%s", monnam(mon
), exclam(tmp
));
336 if (u
.umconf
&& !thrown
) {
338 pline("Your hands stop glowing blue.");
339 if (!mon
->mfroz
&& !mon
->msleep
)
340 pline("%s appears confused.", Monnam(mon
));
345 return (TRUE
); /* mon still alive */
348 /* try to attack; return FALSE if monster evaded */
349 /* u.dx and u.dy must be set */
355 boolean malive
= TRUE
;
356 const struct permonst
*mdat
;
359 u_wipe_engr(3); /* andrew@orca: prevent unlimited pick-axe
362 if (mdat
->mlet
== 'L' && !mtmp
->mfroz
&& !mtmp
->msleep
&&
363 !mtmp
->mconf
&& mtmp
->mcansee
&& !rn2(7) &&
364 (m_move(mtmp
, 0) == 2 /* he died */ || /* he moved: */
365 mtmp
->mx
!= u
.ux
+ u
.dx
|| mtmp
->my
!= u
.uy
+ u
.dy
))
369 if (!u
.ustuck
&& !mtmp
->mflee
)
371 switch (levl
[u
.ux
+ u
.dx
][u
.uy
+ u
.dy
].scrsym
) {
373 pline("The door actually was a Mimic.");
376 pline("The chest was a Mimic!");
379 pline("Wait! That's a Mimic!");
381 wakeup(mtmp
); /* clears mtmp->mimic */
386 if (mtmp
->mhide
&& mtmp
->mundetected
) {
389 mtmp
->mundetected
= 0;
390 if ((obj
= o_at(mtmp
->mx
, mtmp
->my
)) && !Blind
)
391 pline("Wait! There's a %s hiding under %s!",
392 mdat
->mname
, doname(obj
));
395 tmp
= u
.uluck
+ u
.ulevel
+ mdat
->ac
+ abon();
397 if (uwep
->olet
== WEAPON_SYM
|| uwep
->otyp
== PICK_AXE
)
399 if (uwep
->otyp
== TWO_HANDED_SWORD
)
401 else if (uwep
->otyp
== DAGGER
)
403 else if (uwep
->otyp
== CRYSKNIFE
)
405 else if (uwep
->otyp
== SPEAR
&&
406 strchr("XDne", mdat
->mlet
))
423 /* with a lot of luggage, your agility diminishes */
424 tmp
-= (inv_weight() + 40) / 20;
426 if (tmp
<= rnd(20) && !u
.uswallow
) {
428 pline("You miss it.");
430 pline("You miss %s.", monnam(mtmp
));
432 /* we hit the monster; be careful: it might die! */
434 if ((malive
= hmon(mtmp
, uwep
, 0)) == TRUE
) {
435 /* monster still alive */
436 if (!rn2(25) && mtmp
->mhp
< mtmp
->mhpmax
/ 2) {
439 mtmp
->mfleetim
= rnd(100);
440 if (u
.ustuck
== mtmp
&& !u
.uswallow
)
445 cutworm(mtmp
, u
.ux
+ u
.dx
, u
.uy
+ u
.dy
,
446 uwep
? uwep
->otyp
: 0);
449 if (mdat
->mlet
== 'a') {
451 pline("You are splashed by the blob's acid!");
452 losehp_m(rnd(6), mtmp
);
460 if (malive
&& mdat
->mlet
== 'E' && canseemon(mtmp
)
461 && !mtmp
->mcan
&& rn2(3)) {
463 pline("You are frozen by the floating eye's gaze!");
464 nomul((u
.ulevel
> 6 || rn2(4)) ? rn1(20, -21) : -200);
466 pline("The blinded floating eye cannot defend itself.");
468 if ((int) u
.uluck
> LUCKMIN
)