]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - hack/hack.engrave.c
1 /* $NetBSD: hack.engrave.c,v 1.14 2011/08/07 06:03:45 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.14 2011/08/07 06:03:45 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
);
110 if (ep
&& ep
->engr_time
<= moves
) {
113 if(!strcmp(s,t)) return(1);
117 if (!strncmp(s
, t
, n
))
128 if (!u
.uswallow
&& !Levitation
)
129 wipe_engr_at(u
.ux
, u
.uy
, cnt
);
133 wipe_engr_at(xchar x
, xchar y
, xchar cnt
)
135 struct engr
*ep
= engr_at(x
, y
);
141 if ((ep
->engr_type
!= DUST
) || Levitation
) {
142 cnt
= rn2(1 + 50 / (cnt
+ 1)) ? 0 : 1;
144 lth
= strlen(ep
->engr_txt
);
145 if (lth
&& cnt
> 0) {
148 if ((ch
= ep
->engr_txt
[pos
]) == ' ')
150 ep
->engr_txt
[pos
] = (ch
!= '?') ? '?' : ' ';
153 while (lth
&& ep
->engr_txt
[lth
- 1] == ' ')
154 ep
->engr_txt
[--lth
] = 0;
155 while (ep
->engr_txt
[0] == ' ')
157 if (!ep
->engr_txt
[0])
163 read_engr_at(int x
, int y
)
165 struct engr
*ep
= engr_at(x
, y
);
166 if (ep
&& ep
->engr_txt
[0]) {
167 switch (ep
->engr_type
) {
169 pline("Something is written here in the dust.");
172 pline("Something is engraved here on the floor.");
175 pline("Some text has been burned here in the floor.");
178 impossible("Something is written in a very strange way.");
180 pline("You read: \"%s\".", ep
->engr_txt
);
185 make_engr_at(int x
, int y
, const char *s
)
189 if ((ep
= engr_at(x
, y
)) != NULL
)
191 ep
= alloc(sizeof(*ep
) + strlen(s
) + 1);
193 ep
->nxt_engr
= head_engr
;
197 ep
->engr_txt
= (char *) (ep
+ 1);
198 (void) strcpy(ep
->engr_txt
, s
);
200 ep
->engr_type
= DUST
;
201 ep
->engr_lth
= strlen(s
) + 1;
209 struct engr
*ep
, *oep
= engr_at(u
.ux
, u
.uy
);
212 int spct
; /* number of leading spaces */
217 pline("You're joking. Hahaha!"); /* riv05!a3 */
220 /* one may write with finger, weapon or wand */
221 otmp
= getobj("#-)/", "write with");
225 if (otmp
== &zeroobj
)
227 if (otmp
&& otmp
->otyp
== WAN_FIRE
&& otmp
->spe
) {
231 /* first wield otmp */
233 if (uwep
&& uwep
->cursed
) {
234 /* Andreas Bormann */
235 pline("Since your weapon is welded to your hand,");
236 pline("you use the %s.", aobjnam(uwep
, NULL
));
240 pline("You are now empty-handed.");
241 else if (otmp
->cursed
)
242 pline("The %s %s to your hand!",
243 aobjnam(otmp
, "weld"),
244 (otmp
->quan
== 1) ? "itself" : "themselves");
246 pline("You now wield %s.", doname(otmp
));
252 else if (otmp
->otyp
== DAGGER
|| otmp
->otyp
== TWO_HANDED_SWORD
||
253 otmp
->otyp
== CRYSKNIFE
||
254 otmp
->otyp
== LONG_SWORD
|| otmp
->otyp
== AXE
) {
256 if ((int) otmp
->spe
<= -3) {
258 pline("Your %s too dull for engraving.",
259 aobjnam(otmp
, "are"));
260 if (oep
&& oep
->engr_type
!= DUST
)
266 if (Levitation
&& type
!= BURN
) { /* riv05!a3 */
267 pline("You can't reach the floor!");
270 if (oep
&& oep
->engr_type
== DUST
) {
271 pline("You wipe out the message that was written here.");
275 if (type
== DUST
&& oep
) {
276 pline("You cannot wipe out the message that is %s in the rock.",
277 (oep
->engr_type
== BURN
) ? "burned" : "engraved");
280 pline("What do you want to %s on the floor here? ",
281 (type
== ENGRAVE
) ? "engrave" : (type
== BURN
) ? "burn" : "write");
289 if (!len
|| *buf
== '\033') {
299 nomovemsg
= "You finished writing.";
302 case ENGRAVE
: /* here otmp != 0 */
304 int len2
= (otmp
->spe
+ 3) * 2 + 1;
306 pline("Your %s dull.", aobjnam(otmp
, "get"));
311 nomovemsg
= "You cannot engrave more.";
313 otmp
->spe
-= len
/ 2;
314 nomovemsg
= "You finished engraving.";
321 len
+= strlen(oep
->engr_txt
) + spct
;
322 ep
= alloc(sizeof(*ep
) + len
+ 1);
323 ep
->nxt_engr
= head_engr
;
327 sp
= (char *) (ep
+ 1); /* (char *)ep + sizeof(struct engr) */
330 (void) strcpy(sp
, oep
->engr_txt
);
331 (void) strcat(sp
, buf
);
334 (void) strcpy(sp
, buf
);
335 ep
->engr_lth
= len
+ 1;
336 ep
->engr_type
= type
;
337 ep
->engr_time
= moves
- multi
;
339 /* kludge to protect pline against excessively long texts */
340 if (len
> BUFSZ
- 20)
347 save_engravings(int fd
)
349 struct engr
*ep
= head_engr
;
351 if (!ep
->engr_lth
|| !ep
->engr_txt
[0]) {
355 bwrite(fd
, &(ep
->engr_lth
), sizeof(ep
->engr_lth
));
356 bwrite(fd
, ep
, sizeof(struct engr
) + ep
->engr_lth
);
359 bwrite(fd
, nul
, sizeof(unsigned));
364 rest_engravings(int fd
)
370 mread(fd
, <h
, sizeof(unsigned));
373 ep
= alloc(sizeof(*ep
) + lth
);
374 mread(fd
, ep
, sizeof(*ep
) + lth
);
375 ep
->nxt_engr
= head_engr
;
376 ep
->engr_txt
= (char *) (ep
+ 1); /* Andreas Bormann */
382 del_engr(struct engr
*ep
)
386 head_engr
= ep
->nxt_engr
;
388 for (ept
= head_engr
; ept
; ept
= ept
->nxt_engr
) {
389 if (ept
->nxt_engr
== ep
) {
390 ept
->nxt_engr
= ep
->nxt_engr
;
394 impossible("Error in del_engr?");