1 /* $NetBSD: hack.engrave.c,v 1.8 2009/06/07 20:30:49 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.engrave.c,v 1.8 2009/06/07 20:30:49 dholland 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)
87 static struct engr
*head_engr
;
89 static void del_engr(struct engr
*);
92 engr_at(xchar x
, xchar y
)
94 struct engr
*ep
= head_engr
;
96 if (x
== ep
->engr_x
&& y
== ep
->engr_y
)
100 return ((struct engr
*) 0);
104 sengr_at(const char *s
, xchar x
, xchar y
)
106 struct engr
*ep
= engr_at(x
, y
);
109 if (ep
&& ep
->engr_time
<= moves
) {
112 if(!strcmp(s,t)) return(1);
116 if (!strncmp(s
, t
, n
))
127 if (!u
.uswallow
&& !Levitation
)
128 wipe_engr_at(u
.ux
, u
.uy
, cnt
);
132 wipe_engr_at(xchar x
, xchar y
, xchar cnt
)
134 struct engr
*ep
= engr_at(x
, y
);
138 if ((ep
->engr_type
!= DUST
) || Levitation
) {
139 cnt
= rn2(1 + 50 / (cnt
+ 1)) ? 0 : 1;
141 lth
= strlen(ep
->engr_txt
);
142 if (lth
&& cnt
> 0) {
145 if ((ch
= ep
->engr_txt
[pos
]) == ' ')
147 ep
->engr_txt
[pos
] = (ch
!= '?') ? '?' : ' ';
150 while (lth
&& ep
->engr_txt
[lth
- 1] == ' ')
151 ep
->engr_txt
[--lth
] = 0;
152 while (ep
->engr_txt
[0] == ' ')
154 if (!ep
->engr_txt
[0])
160 read_engr_at(int x
, int y
)
162 struct engr
*ep
= engr_at(x
, y
);
163 if (ep
&& ep
->engr_txt
[0]) {
164 switch (ep
->engr_type
) {
166 pline("Something is written here in the dust.");
169 pline("Something is engraved here on the floor.");
172 pline("Some text has been burned here in the floor.");
175 impossible("Something is written in a very strange way.");
177 pline("You read: \"%s\".", ep
->engr_txt
);
182 make_engr_at(int x
, int y
, const char *s
)
186 if ((ep
= engr_at(x
, y
)) != NULL
)
189 alloc((unsigned) (sizeof(struct engr
) + strlen(s
) + 1));
190 ep
->nxt_engr
= head_engr
;
194 ep
->engr_txt
= (char *) (ep
+ 1);
195 (void) strcpy(ep
->engr_txt
, s
);
197 ep
->engr_type
= DUST
;
198 ep
->engr_lth
= strlen(s
) + 1;
206 struct engr
*ep
, *oep
= engr_at(u
.ux
, u
.uy
);
209 int spct
; /* number of leading spaces */
214 pline("You're joking. Hahaha!"); /* riv05!a3 */
217 /* one may write with finger, weapon or wand */
218 otmp
= getobj("#-)/", "write with");
222 if (otmp
== &zeroobj
)
224 if (otmp
&& otmp
->otyp
== WAN_FIRE
&& otmp
->spe
) {
228 /* first wield otmp */
230 if (uwep
&& uwep
->cursed
) {
231 /* Andreas Bormann */
232 pline("Since your weapon is welded to your hand,");
233 pline("you use the %s.", aobjnam(uwep
, (char *) 0));
237 pline("You are now empty-handed.");
238 else if (otmp
->cursed
)
239 pline("The %s %s to your hand!",
240 aobjnam(otmp
, "weld"),
241 (otmp
->quan
== 1) ? "itself" : "themselves");
243 pline("You now wield %s.", doname(otmp
));
249 else if (otmp
->otyp
== DAGGER
|| otmp
->otyp
== TWO_HANDED_SWORD
||
250 otmp
->otyp
== CRYSKNIFE
||
251 otmp
->otyp
== LONG_SWORD
|| otmp
->otyp
== AXE
) {
253 if ((int) otmp
->spe
<= -3) {
255 pline("Your %s too dull for engraving.",
256 aobjnam(otmp
, "are"));
257 if (oep
&& oep
->engr_type
!= DUST
)
263 if (Levitation
&& type
!= BURN
) { /* riv05!a3 */
264 pline("You can't reach the floor!");
267 if (oep
&& oep
->engr_type
== DUST
) {
268 pline("You wipe out the message that was written here.");
272 if (type
== DUST
&& oep
) {
273 pline("You cannot wipe out the message that is %s in the rock.",
274 (oep
->engr_type
== BURN
) ? "burned" : "engraved");
277 pline("What do you want to %s on the floor here? ",
278 (type
== ENGRAVE
) ? "engrave" : (type
== BURN
) ? "burn" : "write");
286 if (!len
|| *buf
== '\033') {
296 nomovemsg
= "You finished writing.";
299 case ENGRAVE
: /* here otmp != 0 */
301 int len2
= (otmp
->spe
+ 3) * 2 + 1;
303 pline("Your %s dull.", aobjnam(otmp
, "get"));
308 nomovemsg
= "You cannot engrave more.";
310 otmp
->spe
-= len
/ 2;
311 nomovemsg
= "You finished engraving.";
318 len
+= strlen(oep
->engr_txt
) + spct
;
319 ep
= (struct engr
*) alloc((unsigned) (sizeof(struct engr
) + len
+ 1));
320 ep
->nxt_engr
= head_engr
;
324 sp
= (char *) (ep
+ 1); /* (char *)ep + sizeof(struct engr) */
327 (void) strcpy(sp
, oep
->engr_txt
);
328 (void) strcat(sp
, buf
);
331 (void) strcpy(sp
, buf
);
332 ep
->engr_lth
= len
+ 1;
333 ep
->engr_type
= type
;
334 ep
->engr_time
= moves
- multi
;
336 /* kludge to protect pline against excessively long texts */
337 if (len
> BUFSZ
- 20)
344 save_engravings(int fd
)
346 struct engr
*ep
= head_engr
;
348 if (!ep
->engr_lth
|| !ep
->engr_txt
[0]) {
352 bwrite(fd
, &(ep
->engr_lth
), sizeof(ep
->engr_lth
));
353 bwrite(fd
, ep
, sizeof(struct engr
) + ep
->engr_lth
);
356 bwrite(fd
, nul
, sizeof(unsigned));
361 rest_engravings(int fd
)
367 mread(fd
, (char *) <h
, sizeof(unsigned));
370 ep
= (struct engr
*) alloc(sizeof(struct engr
) + lth
);
371 mread(fd
, (char *) ep
, sizeof(struct engr
) + lth
);
372 ep
->nxt_engr
= head_engr
;
373 ep
->engr_txt
= (char *) (ep
+ 1); /* Andreas Bormann */
379 del_engr(struct engr
*ep
)
383 head_engr
= ep
->nxt_engr
;
385 for (ept
= head_engr
; ept
; ept
= ept
->nxt_engr
) {
386 if (ept
->nxt_engr
== ep
) {
387 ept
->nxt_engr
= ep
->nxt_engr
;
391 impossible("Error in del_engr?");