]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - hack/hack.engrave.c
1 /* $NetBSD: hack.engrave.c,v 1.6 2003/04/02 18:36:36 jsm 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.engrave.c,v 1.6 2003/04/02 18:36:36 jsm Exp $");
74 struct engr
*nxt_engr
;
77 unsigned engr_lth
; /* for save & restore; not length of
79 long engr_time
; /* moment engraving was (will be)
91 struct engr
*ep
= head_engr
;
93 if (x
== ep
->engr_x
&& y
== ep
->engr_y
)
97 return ((struct engr
*) 0);
105 struct engr
*ep
= engr_at(x
, y
);
108 if (ep
&& ep
->engr_time
<= moves
) {
111 if(!strcmp(s,t)) return(1);
115 if (!strncmp(s
, t
, n
))
127 if (!u
.uswallow
&& !Levitation
)
128 wipe_engr_at(u
.ux
, u
.uy
, cnt
);
132 wipe_engr_at(x
, y
, cnt
)
135 struct engr
*ep
= engr_at(x
, y
);
139 if ((ep
->engr_type
!= DUST
) || Levitation
) {
140 cnt
= rn2(1 + 50 / (cnt
+ 1)) ? 0 : 1;
142 lth
= strlen(ep
->engr_txt
);
143 if (lth
&& cnt
> 0) {
146 if ((ch
= ep
->engr_txt
[pos
]) == ' ')
148 ep
->engr_txt
[pos
] = (ch
!= '?') ? '?' : ' ';
151 while (lth
&& ep
->engr_txt
[lth
- 1] == ' ')
152 ep
->engr_txt
[--lth
] = 0;
153 while (ep
->engr_txt
[0] == ' ')
155 if (!ep
->engr_txt
[0])
164 struct engr
*ep
= engr_at(x
, y
);
165 if (ep
&& ep
->engr_txt
[0]) {
166 switch (ep
->engr_type
) {
168 pline("Something is written here in the dust.");
171 pline("Something is engraved here on the floor.");
174 pline("Some text has been burned here in the floor.");
177 impossible("Something is written in a very strange way.");
179 pline("You read: \"%s\".", ep
->engr_txt
);
184 make_engr_at(x
, y
, s
)
190 if ((ep
= engr_at(x
, y
)) != NULL
)
193 alloc((unsigned) (sizeof(struct engr
) + strlen(s
) + 1));
194 ep
->nxt_engr
= head_engr
;
198 ep
->engr_txt
= (char *) (ep
+ 1);
199 (void) strcpy(ep
->engr_txt
, s
);
201 ep
->engr_type
= DUST
;
202 ep
->engr_lth
= strlen(s
) + 1;
210 struct engr
*ep
, *oep
= engr_at(u
.ux
, u
.uy
);
213 int spct
; /* number of leading spaces */
218 pline("You're joking. Hahaha!"); /* riv05!a3 */
221 /* one may write with finger, weapon or wand */
222 otmp
= getobj("#-)/", "write with");
226 if (otmp
== &zeroobj
)
228 if (otmp
&& otmp
->otyp
== WAN_FIRE
&& otmp
->spe
) {
232 /* first wield otmp */
234 if (uwep
&& uwep
->cursed
) {
235 /* Andreas Bormann */
236 pline("Since your weapon is welded to your hand,");
237 pline("you use the %s.", aobjnam(uwep
, (char *) 0));
241 pline("You are now empty-handed.");
242 else if (otmp
->cursed
)
243 pline("The %s %s to your hand!",
244 aobjnam(otmp
, "weld"),
245 (otmp
->quan
== 1) ? "itself" : "themselves");
247 pline("You now wield %s.", doname(otmp
));
253 else if (otmp
->otyp
== DAGGER
|| otmp
->otyp
== TWO_HANDED_SWORD
||
254 otmp
->otyp
== CRYSKNIFE
||
255 otmp
->otyp
== LONG_SWORD
|| otmp
->otyp
== AXE
) {
257 if ((int) otmp
->spe
<= -3) {
259 pline("Your %s too dull for engraving.",
260 aobjnam(otmp
, "are"));
261 if (oep
&& oep
->engr_type
!= DUST
)
267 if (Levitation
&& type
!= BURN
) { /* riv05!a3 */
268 pline("You can't reach the floor!");
271 if (oep
&& oep
->engr_type
== DUST
) {
272 pline("You wipe out the message that was written here.");
276 if (type
== DUST
&& oep
) {
277 pline("You cannot wipe out the message that is %s in the rock.",
278 (oep
->engr_type
== BURN
) ? "burned" : "engraved");
281 pline("What do you want to %s on the floor here? ",
282 (type
== ENGRAVE
) ? "engrave" : (type
== BURN
) ? "burn" : "write");
290 if (!len
|| *buf
== '\033') {
300 nomovemsg
= "You finished writing.";
303 case ENGRAVE
: /* here otmp != 0 */
305 int len2
= (otmp
->spe
+ 3) * 2 + 1;
307 pline("Your %s dull.", aobjnam(otmp
, "get"));
312 nomovemsg
= "You cannot engrave more.";
314 otmp
->spe
-= len
/ 2;
315 nomovemsg
= "You finished engraving.";
322 len
+= strlen(oep
->engr_txt
) + spct
;
323 ep
= (struct engr
*) alloc((unsigned) (sizeof(struct engr
) + len
+ 1));
324 ep
->nxt_engr
= head_engr
;
328 sp
= (char *) (ep
+ 1); /* (char *)ep + sizeof(struct engr) */
331 (void) strcpy(sp
, oep
->engr_txt
);
332 (void) strcat(sp
, buf
);
335 (void) strcpy(sp
, buf
);
336 ep
->engr_lth
= len
+ 1;
337 ep
->engr_type
= type
;
338 ep
->engr_time
= moves
- multi
;
340 /* kludge to protect pline against excessively long texts */
341 if (len
> BUFSZ
- 20)
351 struct engr
*ep
= head_engr
;
353 if (!ep
->engr_lth
|| !ep
->engr_txt
[0]) {
357 bwrite(fd
, (char *) &(ep
->engr_lth
), sizeof(ep
->engr_lth
));
358 bwrite(fd
, (char *) ep
, sizeof(struct engr
) + ep
->engr_lth
);
361 bwrite(fd
, (char *) nul
, sizeof(unsigned));
373 mread(fd
, (char *) <h
, sizeof(unsigned));
376 ep
= (struct engr
*) alloc(sizeof(struct engr
) + lth
);
377 mread(fd
, (char *) ep
, sizeof(struct engr
) + lth
);
378 ep
->nxt_engr
= head_engr
;
379 ep
->engr_txt
= (char *) (ep
+ 1); /* Andreas Bormann */
390 head_engr
= ep
->nxt_engr
;
392 for (ept
= head_engr
; ept
; ept
= ept
->nxt_engr
) {
393 if (ept
->nxt_engr
== ep
) {
394 ept
->nxt_engr
= ep
->nxt_engr
;
398 impossible("Error in del_engr?");