1 /* $NetBSD: hack.wizard.c,v 1.8 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.wizard.c,v 1.8 2009/06/07 18:30:39 dholland Exp $");
69 /* wizard code - inspired by rogue code from Merlyn Leroy (digi-g!brian) */
74 #define WIZSHOT 6 /* one chance in WIZSHOT that wizard will try
76 #define BOLT_LIM 8 /* from this distance D and 1 will try to hit
79 static const char wizapp
[] = "@DNPTUVXcemntx";
81 static void aggravate(void);
82 static void clonewiz(struct monst
*);
85 /* If he has found the Amulet, make the wizard appear after some time */
92 if (!flags
.made_amulet
|| !flags
.no_of_wizards
)
94 /* find wizard, and wake him if necessary */
95 for (mtmp
= fmon
; mtmp
; mtmp
= mtmp
->nmon
)
96 if (mtmp
->data
->mlet
== '1' && mtmp
->msleep
&& !rn2(40))
97 for (otmp
= invent
; otmp
; otmp
= otmp
->nobj
)
98 if (otmp
->olet
== AMULET_SYM
&& !otmp
->spe
) {
100 if (dist(mtmp
->mx
, mtmp
->my
) > 2)
102 "You get the creepy feeling that somebody noticed your taking the Amulet."
109 wiz_hit(struct monst
*mtmp
)
111 /* if we have stolen or found the amulet, we disappear */
112 if (mtmp
->minvent
&& mtmp
->minvent
->olet
== AMULET_SYM
&&
113 mtmp
->minvent
->spe
== 0) {
114 /* vanish -- very primitive */
118 /* if it is lying around someplace, we teleport to it */
119 if (!carrying(AMULET_OF_YENDOR
)) {
122 for (otmp
= fobj
; otmp
; otmp
= otmp
->nobj
)
123 if (otmp
->olet
== AMULET_SYM
&& !otmp
->spe
) {
124 if ((u
.ux
!= otmp
->ox
|| u
.uy
!= otmp
->oy
) &&
125 !m_at(otmp
->ox
, otmp
->oy
)) {
127 /* teleport to it and pick it up */
131 mpickobj(mtmp
, otmp
);
137 return (0); /* we don't know where it is */
140 if (rn2(2)) { /* hit - perhaps steal */
143 * if hit 1/20 chance of stealing amulet & vanish - amulet is
146 if (hitu(mtmp
, d(mtmp
->data
->damn
, mtmp
->data
->damd
))
147 && !rn2(20) && stealamulet(mtmp
)) {
151 inrange(mtmp
); /* try magic */
156 inrange(struct monst
*mtmp
)
160 /* do nothing if cancelled (but make '1' say something) */
161 if (mtmp
->data
->mlet
!= '1' && mtmp
->mcan
)
164 /* spit fire only when both in a room or both in a corridor */
165 if (inroom(u
.ux
, u
.uy
) != inroom(mtmp
->mx
, mtmp
->my
))
167 tx
= u
.ux
- mtmp
->mx
;
168 ty
= u
.uy
- mtmp
->my
;
169 if ((!tx
&& abs(ty
) < BOLT_LIM
) || (!ty
&& abs(tx
) < BOLT_LIM
)
170 || (abs(tx
) == abs(ty
) && abs(tx
) < BOLT_LIM
)) {
171 switch (mtmp
->data
->mlet
) {
173 /* spit fire in the direction of @ (not nec. hitting) */
174 buzz(-1, mtmp
->mx
, mtmp
->my
, sgn(tx
), sgn(ty
));
180 * if you zapped wizard with wand of cancellation, he
181 * has to shake off the effects before he can throw
182 * spells successfully. 1/2 the time they fail
185 if (mtmp
->mcan
|| rn2(2)) {
187 pline("%s makes a gesture, then curses.",
190 pline("You hear mumbled cursing.");
198 if (canseemon(mtmp
)) {
199 if (!rn2(6) && !Invis
) {
200 pline("%s hypnotizes you.", Monnam(mtmp
));
204 pline("%s chants an incantation.",
207 pline("You hear a mumbled incantation.");
208 switch (rn2(Invis
? 5 : 6)) {
211 * create a nasty monster from a deep
215 * (for the moment, 'nasty' is not
218 (void) makemon((struct permonst
*) 0, u
.ux
, u
.uy
);
221 pline("\"Destroy the thief, my pets!\"");
222 aggravate(); /* aggravate all the
224 /* fall into next case */
226 if (flags
.no_of_wizards
== 1 && rnd(5) == 0)
228 * if only 1 wizard, clone
234 if (mtmp
->mspeed
== MSLOW
)
237 mtmp
->mspeed
= MFAST
;
243 /* Only if not Invisible */
244 pline("You hear a clap of thunder!");
246 * shoot a bolt of fire or cold, or a
249 buzz(-rnd(3), mtmp
->mx
, mtmp
->my
, sgn(tx
), sgn(ty
));
264 for (mtmp
= fmon
; mtmp
; mtmp
= mtmp
->nmon
) {
266 if (mtmp
->mfroz
&& !rn2(5))
272 clonewiz(struct monst
*mtmp
)
276 if ((mtmp2
= makemon(PM_WIZARD
, mtmp
->mx
, mtmp
->my
)) != NULL
) {
277 flags
.no_of_wizards
= 2;
279 mtmp2
->mappearance
= wizapp
[rn2(sizeof(wizapp
) - 1)];