Home | History | Annotate | Line # | Download | only in hack
hack.invent.c revision 1.12
      1  1.12  dholland /*	$NetBSD: hack.invent.c,v 1.12 2009/06/07 20:13:18 dholland Exp $	*/
      2   1.5  christos 
      3   1.3   mycroft /*
      4   1.8       jsm  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
      5   1.8       jsm  * Amsterdam
      6   1.8       jsm  * All rights reserved.
      7   1.8       jsm  *
      8   1.8       jsm  * Redistribution and use in source and binary forms, with or without
      9   1.8       jsm  * modification, are permitted provided that the following conditions are
     10   1.8       jsm  * met:
     11   1.8       jsm  *
     12   1.8       jsm  * - Redistributions of source code must retain the above copyright notice,
     13   1.8       jsm  * this list of conditions and the following disclaimer.
     14   1.8       jsm  *
     15   1.8       jsm  * - Redistributions in binary form must reproduce the above copyright
     16   1.8       jsm  * notice, this list of conditions and the following disclaimer in the
     17   1.8       jsm  * documentation and/or other materials provided with the distribution.
     18   1.8       jsm  *
     19   1.8       jsm  * - Neither the name of the Stichting Centrum voor Wiskunde en
     20   1.8       jsm  * Informatica, nor the names of its contributors may be used to endorse or
     21   1.8       jsm  * promote products derived from this software without specific prior
     22   1.8       jsm  * written permission.
     23   1.8       jsm  *
     24   1.8       jsm  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
     25   1.8       jsm  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     26   1.8       jsm  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
     27   1.8       jsm  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
     28   1.8       jsm  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     29   1.8       jsm  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     30   1.8       jsm  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
     31   1.8       jsm  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
     32   1.8       jsm  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
     33   1.8       jsm  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
     34   1.8       jsm  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     35   1.8       jsm  */
     36   1.8       jsm 
     37   1.8       jsm /*
     38   1.8       jsm  * Copyright (c) 1982 Jay Fenlason <hack (at) gnu.org>
     39   1.8       jsm  * All rights reserved.
     40   1.8       jsm  *
     41   1.8       jsm  * Redistribution and use in source and binary forms, with or without
     42   1.8       jsm  * modification, are permitted provided that the following conditions
     43   1.8       jsm  * are met:
     44   1.8       jsm  * 1. Redistributions of source code must retain the above copyright
     45   1.8       jsm  *    notice, this list of conditions and the following disclaimer.
     46   1.8       jsm  * 2. Redistributions in binary form must reproduce the above copyright
     47   1.8       jsm  *    notice, this list of conditions and the following disclaimer in the
     48   1.8       jsm  *    documentation and/or other materials provided with the distribution.
     49   1.8       jsm  * 3. The name of the author may not be used to endorse or promote products
     50   1.8       jsm  *    derived from this software without specific prior written permission.
     51   1.8       jsm  *
     52   1.8       jsm  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
     53   1.8       jsm  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
     54   1.8       jsm  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
     55   1.8       jsm  * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     56   1.8       jsm  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     57   1.8       jsm  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     58   1.8       jsm  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     59   1.8       jsm  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     60   1.8       jsm  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     61   1.8       jsm  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     62   1.3   mycroft  */
     63   1.3   mycroft 
     64   1.5  christos #include <sys/cdefs.h>
     65   1.3   mycroft #ifndef lint
     66  1.12  dholland __RCSID("$NetBSD: hack.invent.c,v 1.12 2009/06/07 20:13:18 dholland Exp $");
     67   1.5  christos #endif				/* not lint */
     68   1.1       cgd 
     69   1.5  christos #include <stdlib.h>
     70   1.5  christos #include "hack.h"
     71   1.5  christos #include "extern.h"
     72   1.1       cgd 
     73   1.1       cgd #ifndef NOWORM
     74   1.1       cgd #include	"def.wseg.h"
     75   1.5  christos #endif	/* NOWORM */
     76   1.1       cgd 
     77   1.1       cgd #define	NOINVSYM	'#'
     78   1.1       cgd 
     79   1.5  christos static int      lastinvnr = 51;	/* 0 ... 51 */
     80   1.5  christos 
     81   1.9       jsm static void assigninvlet(struct obj *);
     82   1.9       jsm static char *xprname(struct obj *, char);
     83   1.5  christos 
     84   1.5  christos static void
     85  1.11  dholland assigninvlet(struct obj *otmp)
     86   1.1       cgd {
     87   1.5  christos 	boolean         inuse[52];
     88   1.5  christos 	int             i;
     89   1.5  christos 	struct obj     *obj;
     90   1.5  christos 
     91   1.5  christos 	for (i = 0; i < 52; i++)
     92   1.5  christos 		inuse[i] = FALSE;
     93   1.5  christos 	for (obj = invent; obj; obj = obj->nobj)
     94   1.5  christos 		if (obj != otmp) {
     95   1.5  christos 			i = obj->invlet;
     96   1.5  christos 			if ('a' <= i && i <= 'z')
     97   1.5  christos 				inuse[i - 'a'] = TRUE;
     98   1.5  christos 			else if ('A' <= i && i <= 'Z')
     99   1.5  christos 				inuse[i - 'A' + 26] = TRUE;
    100   1.5  christos 			if (i == otmp->invlet)
    101   1.5  christos 				otmp->invlet = 0;
    102   1.5  christos 		}
    103   1.5  christos 	if ((i = otmp->invlet) &&
    104   1.1       cgd 	    (('a' <= i && i <= 'z') || ('A' <= i && i <= 'Z')))
    105   1.1       cgd 		return;
    106   1.5  christos 	for (i = lastinvnr + 1; i != lastinvnr; i++) {
    107   1.5  christos 		if (i == 52) {
    108   1.5  christos 			i = -1;
    109   1.5  christos 			continue;
    110   1.5  christos 		}
    111   1.5  christos 		if (!inuse[i])
    112   1.5  christos 			break;
    113   1.1       cgd 	}
    114   1.1       cgd 	otmp->invlet = (inuse[i] ? NOINVSYM :
    115   1.5  christos 			(i < 26) ? ('a' + i) : ('A' + i - 26));
    116   1.1       cgd 	lastinvnr = i;
    117   1.1       cgd }
    118   1.1       cgd 
    119   1.5  christos struct obj     *
    120  1.11  dholland addinv(struct obj *obj)
    121   1.1       cgd {
    122   1.5  christos 	struct obj     *otmp;
    123   1.1       cgd 
    124   1.1       cgd 	/* merge or attach to end of chain */
    125   1.5  christos 	if (!invent) {
    126   1.1       cgd 		invent = obj;
    127   1.1       cgd 		otmp = 0;
    128   1.1       cgd 	} else
    129   1.5  christos 		for (otmp = invent; /* otmp */ ; otmp = otmp->nobj) {
    130   1.5  christos 			if (merged(otmp, obj, 0))
    131   1.5  christos 				return (otmp);
    132   1.5  christos 			if (!otmp->nobj) {
    133   1.5  christos 				otmp->nobj = obj;
    134   1.5  christos 				break;
    135   1.5  christos 			}
    136   1.1       cgd 		}
    137   1.1       cgd 	obj->nobj = 0;
    138   1.1       cgd 
    139   1.5  christos 	if (flags.invlet_constant) {
    140   1.1       cgd 		assigninvlet(obj);
    141   1.1       cgd 		/*
    142   1.1       cgd 		 * The ordering of the chain is nowhere significant
    143   1.1       cgd 		 * so in case you prefer some other order than the
    144   1.1       cgd 		 * historical one, change the code below.
    145   1.1       cgd 		 */
    146   1.5  christos 		if (otmp) {	/* find proper place in chain */
    147   1.1       cgd 			otmp->nobj = 0;
    148   1.5  christos 			if ((invent->invlet ^ 040) > (obj->invlet ^ 040)) {
    149   1.1       cgd 				obj->nobj = invent;
    150   1.1       cgd 				invent = obj;
    151   1.1       cgd 			} else
    152   1.5  christos 				for (otmp = invent;; otmp = otmp->nobj) {
    153   1.5  christos 					if (!otmp->nobj ||
    154   1.5  christos 					    (otmp->nobj->invlet ^ 040) > (obj->invlet ^ 040)) {
    155   1.5  christos 						obj->nobj = otmp->nobj;
    156   1.5  christos 						otmp->nobj = obj;
    157   1.5  christos 						break;
    158   1.5  christos 					}
    159   1.5  christos 				}
    160   1.1       cgd 		}
    161   1.1       cgd 	}
    162   1.5  christos 	return (obj);
    163   1.1       cgd }
    164   1.1       cgd 
    165   1.5  christos void
    166  1.11  dholland useup(struct obj *obj)
    167   1.1       cgd {
    168   1.5  christos 	if (obj->quan > 1) {
    169   1.1       cgd 		obj->quan--;
    170   1.1       cgd 		obj->owt = weight(obj);
    171   1.1       cgd 	} else {
    172   1.1       cgd 		setnotworn(obj);
    173   1.1       cgd 		freeinv(obj);
    174   1.1       cgd 		obfree(obj, (struct obj *) 0);
    175   1.1       cgd 	}
    176   1.1       cgd }
    177   1.1       cgd 
    178   1.5  christos void
    179  1.11  dholland freeinv(struct obj *obj)
    180   1.1       cgd {
    181   1.5  christos 	struct obj     *otmp;
    182   1.1       cgd 
    183   1.5  christos 	if (obj == invent)
    184   1.1       cgd 		invent = invent->nobj;
    185   1.1       cgd 	else {
    186   1.5  christos 		for (otmp = invent; otmp->nobj != obj; otmp = otmp->nobj)
    187   1.5  christos 			if (!otmp->nobj)
    188   1.5  christos 				panic("freeinv");
    189   1.1       cgd 		otmp->nobj = obj->nobj;
    190   1.1       cgd 	}
    191   1.1       cgd }
    192   1.1       cgd 
    193   1.1       cgd /* destroy object in fobj chain (if unpaid, it remains on the bill) */
    194   1.5  christos void
    195  1.11  dholland delobj(struct obj *obj)
    196   1.5  christos {
    197   1.1       cgd 	freeobj(obj);
    198   1.1       cgd 	unpobj(obj);
    199   1.1       cgd 	obfree(obj, (struct obj *) 0);
    200   1.1       cgd }
    201   1.1       cgd 
    202   1.1       cgd /* unlink obj from chain starting with fobj */
    203   1.5  christos void
    204  1.11  dholland freeobj(struct obj *obj)
    205   1.5  christos {
    206   1.5  christos 	struct obj     *otmp;
    207   1.1       cgd 
    208   1.5  christos 	if (obj == fobj)
    209   1.5  christos 		fobj = fobj->nobj;
    210   1.1       cgd 	else {
    211  1.10   jnemeth 		otmp = fobj;
    212  1.10   jnemeth 		while (otmp->nobj != obj) {
    213  1.10   jnemeth 			if (otmp->nobj == NULL)
    214   1.5  christos 				panic("error in freeobj");
    215  1.10   jnemeth 			otmp = otmp->nobj;
    216  1.10   jnemeth 		}
    217   1.1       cgd 		otmp->nobj = obj->nobj;
    218   1.1       cgd 	}
    219   1.1       cgd }
    220   1.1       cgd 
    221   1.1       cgd /* Note: freegold throws away its argument! */
    222   1.5  christos void
    223  1.11  dholland freegold(struct gold *gold)
    224   1.5  christos {
    225   1.5  christos 	struct gold    *gtmp;
    226   1.1       cgd 
    227   1.5  christos 	if (gold == fgold)
    228   1.5  christos 		fgold = gold->ngold;
    229   1.1       cgd 	else {
    230  1.10   jnemeth 		gtmp = fgold;
    231  1.10   jnemeth 		while (gtmp->ngold != gold) {
    232  1.10   jnemeth 			if (gtmp->ngold == NULL)
    233   1.5  christos 				panic("error in freegold");
    234  1.10   jnemeth 			gtmp = gtmp->ngold;
    235  1.10   jnemeth 		}
    236   1.1       cgd 		gtmp->ngold = gold->ngold;
    237   1.1       cgd 	}
    238   1.1       cgd 	free((char *) gold);
    239   1.1       cgd }
    240   1.1       cgd 
    241   1.5  christos void
    242  1.11  dholland deltrap(struct trap *trap)
    243   1.1       cgd {
    244   1.5  christos 	struct trap    *ttmp;
    245   1.1       cgd 
    246   1.5  christos 	if (trap == ftrap)
    247   1.1       cgd 		ftrap = ftrap->ntrap;
    248   1.1       cgd 	else {
    249   1.5  christos 		for (ttmp = ftrap; ttmp->ntrap != trap; ttmp = ttmp->ntrap);
    250   1.1       cgd 		ttmp->ntrap = trap->ntrap;
    251   1.1       cgd 	}
    252   1.1       cgd 	free((char *) trap);
    253   1.1       cgd }
    254   1.1       cgd 
    255   1.5  christos struct wseg    *m_atseg;
    256   1.1       cgd 
    257   1.5  christos struct monst   *
    258  1.11  dholland m_at(int x, int y)
    259   1.1       cgd {
    260   1.5  christos 	struct monst   *mtmp;
    261   1.1       cgd #ifndef NOWORM
    262   1.5  christos 	struct wseg    *wtmp;
    263   1.5  christos #endif	/* NOWORM */
    264   1.1       cgd 
    265   1.1       cgd 	m_atseg = 0;
    266   1.5  christos 	for (mtmp = fmon; mtmp; mtmp = mtmp->nmon) {
    267   1.5  christos 		if (mtmp->mx == x && mtmp->my == y)
    268   1.5  christos 			return (mtmp);
    269   1.1       cgd #ifndef NOWORM
    270   1.5  christos 		if (mtmp->wormno) {
    271   1.5  christos 			for (wtmp = wsegs[mtmp->wormno]; wtmp; wtmp = wtmp->nseg)
    272   1.5  christos 				if (wtmp->wx == x && wtmp->wy == y) {
    273   1.5  christos 					m_atseg = wtmp;
    274   1.5  christos 					return (mtmp);
    275   1.5  christos 				}
    276   1.1       cgd 		}
    277   1.5  christos #endif	/* NOWORM */
    278   1.1       cgd 	}
    279   1.5  christos 	return (0);
    280   1.1       cgd }
    281   1.1       cgd 
    282   1.5  christos struct obj     *
    283  1.11  dholland o_at(int x, int y)
    284   1.1       cgd {
    285   1.5  christos 	struct obj     *otmp;
    286   1.1       cgd 
    287   1.5  christos 	for (otmp = fobj; otmp; otmp = otmp->nobj)
    288   1.5  christos 		if (otmp->ox == x && otmp->oy == y)
    289   1.5  christos 			return (otmp);
    290   1.5  christos 	return (0);
    291   1.1       cgd }
    292   1.1       cgd 
    293   1.5  christos struct obj     *
    294  1.11  dholland sobj_at(int n, int x, int y)
    295   1.1       cgd {
    296   1.5  christos 	struct obj     *otmp;
    297   1.1       cgd 
    298   1.5  christos 	for (otmp = fobj; otmp; otmp = otmp->nobj)
    299   1.5  christos 		if (otmp->ox == x && otmp->oy == y && otmp->otyp == n)
    300   1.5  christos 			return (otmp);
    301   1.5  christos 	return (0);
    302   1.1       cgd }
    303   1.1       cgd 
    304   1.5  christos int
    305  1.11  dholland carried(struct obj *obj)
    306   1.5  christos {
    307   1.5  christos 	struct obj     *otmp;
    308   1.5  christos 	for (otmp = invent; otmp; otmp = otmp->nobj)
    309   1.5  christos 		if (otmp == obj)
    310   1.5  christos 			return (1);
    311   1.5  christos 	return (0);
    312   1.1       cgd }
    313   1.1       cgd 
    314   1.5  christos int
    315  1.11  dholland carrying(int type)
    316   1.1       cgd {
    317   1.5  christos 	struct obj     *otmp;
    318   1.1       cgd 
    319   1.5  christos 	for (otmp = invent; otmp; otmp = otmp->nobj)
    320   1.5  christos 		if (otmp->otyp == type)
    321   1.5  christos 			return (TRUE);
    322   1.5  christos 	return (FALSE);
    323   1.1       cgd }
    324   1.1       cgd 
    325   1.5  christos struct obj     *
    326  1.11  dholland o_on(unsigned int id, struct obj *objchn)
    327   1.5  christos {
    328   1.5  christos 	while (objchn) {
    329   1.5  christos 		if (objchn->o_id == id)
    330   1.5  christos 			return (objchn);
    331   1.1       cgd 		objchn = objchn->nobj;
    332   1.1       cgd 	}
    333   1.5  christos 	return ((struct obj *) 0);
    334   1.1       cgd }
    335   1.1       cgd 
    336   1.5  christos struct trap    *
    337  1.11  dholland t_at(int x, int y)
    338   1.1       cgd {
    339   1.5  christos 	struct trap    *trap = ftrap;
    340   1.5  christos 	while (trap) {
    341   1.5  christos 		if (trap->tx == x && trap->ty == y)
    342   1.5  christos 			return (trap);
    343   1.1       cgd 		trap = trap->ntrap;
    344   1.1       cgd 	}
    345   1.5  christos 	return (0);
    346   1.1       cgd }
    347   1.1       cgd 
    348   1.5  christos struct gold    *
    349  1.11  dholland g_at(int x, int y)
    350   1.1       cgd {
    351   1.5  christos 	struct gold    *gold = fgold;
    352   1.5  christos 	while (gold) {
    353   1.5  christos 		if (gold->gx == x && gold->gy == y)
    354   1.5  christos 			return (gold);
    355   1.1       cgd 		gold = gold->ngold;
    356   1.1       cgd 	}
    357   1.5  christos 	return (0);
    358   1.1       cgd }
    359   1.1       cgd 
    360   1.1       cgd /* make dummy object structure containing gold - for temporary use only */
    361   1.5  christos struct obj     *
    362  1.11  dholland mkgoldobj(long q)
    363   1.1       cgd {
    364   1.5  christos 	struct obj     *otmp;
    365   1.1       cgd 
    366   1.1       cgd 	otmp = newobj(0);
    367   1.1       cgd 	/* should set o_id etc. but otmp will be freed soon */
    368   1.1       cgd 	otmp->olet = '$';
    369   1.1       cgd 	u.ugold -= q;
    370   1.1       cgd 	OGOLD(otmp) = q;
    371   1.1       cgd 	flags.botl = 1;
    372   1.5  christos 	return (otmp);
    373   1.1       cgd }
    374   1.1       cgd 
    375   1.1       cgd /*
    376   1.1       cgd  * getobj returns:
    377   1.1       cgd  *	struct obj *xxx:	object to do something with.
    378   1.1       cgd  *	(struct obj *) 0	error return: no object.
    379   1.1       cgd  *	&zeroobj		explicitly no object (as in w-).
    380   1.1       cgd  */
    381   1.5  christos struct obj     *
    382  1.11  dholland getobj(const char *let, const char *word)
    383   1.5  christos {
    384   1.5  christos 	struct obj     *otmp;
    385   1.5  christos 	char            ilet, ilet1, ilet2;
    386   1.5  christos 	char            buf[BUFSZ];
    387   1.5  christos 	char            lets[BUFSZ];
    388   1.5  christos 	int             foo = 0, foo2;
    389   1.5  christos 	char           *bp = buf;
    390   1.5  christos 	xchar           allowcnt = 0;	/* 0, 1 or 2 */
    391   1.5  christos 	boolean         allowgold = FALSE;
    392   1.5  christos 	boolean         allowall = FALSE;
    393   1.5  christos 	boolean         allownone = FALSE;
    394   1.5  christos 	xchar           foox = 0;
    395   1.5  christos 	long            cnt;
    396   1.5  christos 
    397   1.5  christos 	if (*let == '0')
    398   1.5  christos 		let++, allowcnt = 1;
    399   1.5  christos 	if (*let == '$')
    400   1.5  christos 		let++, allowgold = TRUE;
    401   1.5  christos 	if (*let == '#')
    402   1.5  christos 		let++, allowall = TRUE;
    403   1.5  christos 	if (*let == '-')
    404   1.5  christos 		let++, allownone = TRUE;
    405   1.5  christos 	if (allownone)
    406   1.5  christos 		*bp++ = '-';
    407   1.5  christos 	if (allowgold)
    408   1.5  christos 		*bp++ = '$';
    409   1.5  christos 	if (bp > buf && bp[-1] == '-')
    410   1.5  christos 		*bp++ = ' ';
    411   1.1       cgd 
    412   1.1       cgd 	ilet = 'a';
    413   1.5  christos 	for (otmp = invent; otmp; otmp = otmp->nobj) {
    414   1.5  christos 		if (!*let || strchr(let, otmp->olet)) {
    415   1.5  christos 			bp[foo++] = flags.invlet_constant ? otmp->invlet : ilet;
    416   1.5  christos 
    417   1.5  christos 			/* ugly check: remove inappropriate things */
    418   1.5  christos 			if ((!strcmp(word, "take off") &&
    419   1.5  christos 			     !(otmp->owornmask & (W_ARMOR - W_ARM2)))
    420   1.5  christos 			    || (!strcmp(word, "wear") &&
    421   1.5  christos 				(otmp->owornmask & (W_ARMOR | W_RING)))
    422   1.5  christos 			    || (!strcmp(word, "wield") &&
    423   1.5  christos 				(otmp->owornmask & W_WEP))) {
    424   1.5  christos 				foo--;
    425   1.5  christos 				foox++;
    426   1.5  christos 			}
    427   1.1       cgd 		}
    428   1.5  christos 		if (ilet == 'z')
    429   1.5  christos 			ilet = 'A';
    430   1.5  christos 		else
    431   1.5  christos 			ilet++;
    432   1.1       cgd 	}
    433   1.1       cgd 	bp[foo] = 0;
    434   1.5  christos 	if (foo == 0 && bp > buf && bp[-1] == ' ')
    435   1.5  christos 		*--bp = 0;
    436   1.5  christos 	(void) strcpy(lets, bp);/* necessary since we destroy buf */
    437   1.5  christos 	if (foo > 5) {		/* compactify string */
    438   1.1       cgd 		foo = foo2 = 1;
    439   1.1       cgd 		ilet2 = bp[0];
    440   1.1       cgd 		ilet1 = bp[1];
    441   1.5  christos 		while ((ilet = bp[++foo2] = bp[++foo]) != '\0') {
    442   1.5  christos 			if (ilet == ilet1 + 1) {
    443   1.5  christos 				if (ilet1 == ilet2 + 1)
    444   1.1       cgd 					bp[foo2 - 1] = ilet1 = '-';
    445   1.5  christos 				else if (ilet2 == '-') {
    446   1.1       cgd 					bp[--foo2] = ++ilet1;
    447   1.1       cgd 					continue;
    448   1.1       cgd 				}
    449   1.1       cgd 			}
    450   1.1       cgd 			ilet2 = ilet1;
    451   1.1       cgd 			ilet1 = ilet;
    452   1.1       cgd 		}
    453   1.1       cgd 	}
    454   1.5  christos 	if (!foo && !allowall && !allowgold && !allownone) {
    455   1.1       cgd 		pline("You don't have anything %sto %s.",
    456   1.5  christos 		      foox ? "else " : "", word);
    457   1.5  christos 		return (0);
    458   1.1       cgd 	}
    459   1.5  christos 	for (;;) {
    460   1.5  christos 		if (!buf[0])
    461   1.1       cgd 			pline("What do you want to %s [*]? ", word);
    462   1.1       cgd 		else
    463   1.1       cgd 			pline("What do you want to %s [%s or ?*]? ",
    464   1.5  christos 			      word, buf);
    465   1.1       cgd 
    466   1.1       cgd 		cnt = 0;
    467   1.1       cgd 		ilet = readchar();
    468   1.5  christos 		while (digit(ilet) && allowcnt) {
    469   1.1       cgd 			if (cnt < 100000000)
    470   1.5  christos 				cnt = 10 * cnt + (ilet - '0');
    471   1.1       cgd 			else
    472   1.5  christos 				cnt = 999999999;
    473   1.1       cgd 			allowcnt = 2;	/* signal presence of cnt */
    474   1.1       cgd 			ilet = readchar();
    475   1.1       cgd 		}
    476   1.5  christos 		if (digit(ilet)) {
    477   1.1       cgd 			pline("No count allowed with this command.");
    478   1.1       cgd 			continue;
    479   1.1       cgd 		}
    480   1.5  christos 		if (strchr(quitchars, ilet))
    481   1.5  christos 			return ((struct obj *) 0);
    482   1.5  christos 		if (ilet == '-') {
    483   1.5  christos 			return (allownone ? &zeroobj : (struct obj *) 0);
    484   1.1       cgd 		}
    485   1.5  christos 		if (ilet == '$') {
    486   1.5  christos 			if (!allowgold) {
    487   1.1       cgd 				pline("You cannot %s gold.", word);
    488   1.1       cgd 				continue;
    489   1.1       cgd 			}
    490   1.5  christos 			if (!(allowcnt == 2 && cnt < u.ugold))
    491   1.1       cgd 				cnt = u.ugold;
    492   1.5  christos 			return (mkgoldobj(cnt));
    493   1.1       cgd 		}
    494   1.5  christos 		if (ilet == '?') {
    495   1.1       cgd 			doinv(lets);
    496   1.5  christos 			if (!(ilet = morc))
    497   1.5  christos 				continue;
    498   1.1       cgd 			/* he typed a letter (not a space) to more() */
    499   1.5  christos 		} else if (ilet == '*') {
    500   1.1       cgd 			doinv((char *) 0);
    501   1.5  christos 			if (!(ilet = morc))
    502   1.5  christos 				continue;
    503   1.1       cgd 			/* ... */
    504   1.1       cgd 		}
    505   1.5  christos 		if (flags.invlet_constant) {
    506   1.5  christos 			for (otmp = invent; otmp; otmp = otmp->nobj)
    507   1.5  christos 				if (otmp->invlet == ilet)
    508   1.5  christos 					break;
    509   1.1       cgd 		} else {
    510   1.5  christos 			if (ilet >= 'A' && ilet <= 'Z')
    511   1.5  christos 				ilet += 'z' - 'A' + 1;
    512   1.1       cgd 			ilet -= 'a';
    513   1.5  christos 			for (otmp = invent; otmp && ilet;
    514   1.5  christos 			     ilet--, otmp = otmp->nobj);
    515   1.1       cgd 		}
    516   1.5  christos 		if (!otmp) {
    517   1.1       cgd 			pline("You don't have that object.");
    518   1.1       cgd 			continue;
    519   1.1       cgd 		}
    520   1.5  christos 		if (cnt < 0 || otmp->quan < cnt) {
    521   1.1       cgd 			pline("You don't have that many! [You have %u]"
    522   1.5  christos 			      ,otmp->quan);
    523   1.1       cgd 			continue;
    524   1.1       cgd 		}
    525   1.1       cgd 		break;
    526   1.1       cgd 	}
    527   1.5  christos 	if (!allowall && let && !strchr(let, otmp->olet)) {
    528   1.5  christos 		pline("That is a silly thing to %s.", word);
    529   1.5  christos 		return (0);
    530   1.5  christos 	}
    531   1.5  christos 	if (allowcnt == 2) {	/* cnt given */
    532   1.5  christos 		if (cnt == 0)
    533   1.5  christos 			return (0);
    534   1.5  christos 		if (cnt != otmp->quan) {
    535   1.5  christos 			struct obj     *obj;
    536   1.1       cgd 			obj = splitobj(otmp, (int) cnt);
    537   1.5  christos 			if (otmp == uwep)
    538   1.5  christos 				setuwep(obj);
    539   1.1       cgd 		}
    540   1.1       cgd 	}
    541   1.5  christos 	return (otmp);
    542   1.1       cgd }
    543   1.1       cgd 
    544   1.5  christos int
    545  1.11  dholland ckunpaid(struct obj *otmp)
    546   1.5  christos {
    547   1.5  christos 	return (otmp->unpaid);
    548   1.1       cgd }
    549   1.1       cgd 
    550   1.1       cgd /* interactive version of getobj - used for Drop and Identify */
    551   1.1       cgd /* return the number of times fn was called successfully */
    552   1.5  christos int
    553  1.11  dholland ggetobj(const char *word, int (*fn)(struct obj *), int max)
    554   1.5  christos {
    555   1.5  christos 	char            buf[BUFSZ];
    556   1.5  christos 	char           *ip;
    557   1.5  christos 	char            sym;
    558   1.5  christos 	int             oletct = 0, iletct = 0;
    559   1.5  christos 	boolean         allflag = FALSE;
    560   1.5  christos 	char            olets[20], ilets[20];
    561   1.9       jsm 	int           (*ckfn)(struct obj *) =
    562   1.9       jsm 	    (int (*)(struct obj *)) 0;
    563   1.5  christos 	xchar           allowgold = (u.ugold && !strcmp(word, "drop")) ? 1 : 0;	/* BAH */
    564   1.5  christos 	if (!invent && !allowgold) {
    565   1.1       cgd 		pline("You have nothing to %s.", word);
    566   1.5  christos 		return (0);
    567   1.1       cgd 	} else {
    568   1.5  christos 		struct obj     *otmp = invent;
    569   1.5  christos 		int             uflg = 0;
    570   1.1       cgd 
    571   1.5  christos 		if (allowgold)
    572   1.5  christos 			ilets[iletct++] = '$';
    573   1.1       cgd 		ilets[iletct] = 0;
    574   1.5  christos 		while (otmp) {
    575   1.5  christos 			if (!strchr(ilets, otmp->olet)) {
    576   1.1       cgd 				ilets[iletct++] = otmp->olet;
    577   1.1       cgd 				ilets[iletct] = 0;
    578   1.1       cgd 			}
    579   1.5  christos 			if (otmp->unpaid)
    580   1.5  christos 				uflg = 1;
    581   1.1       cgd 			otmp = otmp->nobj;
    582   1.1       cgd 		}
    583   1.1       cgd 		ilets[iletct++] = ' ';
    584   1.5  christos 		if (uflg)
    585   1.5  christos 			ilets[iletct++] = 'u';
    586   1.5  christos 		if (invent)
    587   1.5  christos 			ilets[iletct++] = 'a';
    588   1.1       cgd 		ilets[iletct] = 0;
    589   1.1       cgd 	}
    590   1.1       cgd 	pline("What kinds of thing do you want to %s? [%s] ",
    591   1.5  christos 	      word, ilets);
    592   1.1       cgd 	getlin(buf);
    593   1.5  christos 	if (buf[0] == '\033') {
    594   1.1       cgd 		clrlin();
    595   1.5  christos 		return (0);
    596   1.1       cgd 	}
    597   1.1       cgd 	ip = buf;
    598   1.1       cgd 	olets[0] = 0;
    599   1.5  christos 	while ((sym = *ip++) != '\0') {
    600   1.5  christos 		if (sym == ' ')
    601   1.5  christos 			continue;
    602   1.5  christos 		if (sym == '$') {
    603   1.5  christos 			if (allowgold == 1)
    604   1.5  christos 				(*fn) (mkgoldobj(u.ugold));
    605   1.5  christos 			else if (!u.ugold)
    606   1.1       cgd 				pline("You have no gold.");
    607   1.1       cgd 			allowgold = 2;
    608   1.5  christos 		} else if (sym == 'a' || sym == 'A')
    609   1.5  christos 			allflag = TRUE;
    610   1.5  christos 		else if (sym == 'u' || sym == 'U')
    611   1.5  christos 			ckfn = ckunpaid;
    612   1.5  christos 		else if (strchr("!%?[()=*/\"0", sym)) {
    613   1.5  christos 			if (!strchr(olets, sym)) {
    614   1.1       cgd 				olets[oletct++] = sym;
    615   1.1       cgd 				olets[oletct] = 0;
    616   1.1       cgd 			}
    617   1.5  christos 		} else
    618   1.5  christos 			pline("You don't have any %c's.", sym);
    619   1.1       cgd 	}
    620   1.5  christos 	if (allowgold == 2 && !oletct)
    621   1.5  christos 		return (1);	/* he dropped gold (or at least tried to) */
    622   1.1       cgd 	else
    623   1.5  christos 		return (askchain(invent, olets, allflag, fn, ckfn, max));
    624   1.1       cgd }
    625   1.1       cgd 
    626   1.1       cgd /*
    627   1.1       cgd  * Walk through the chain starting at objchn and ask for all objects
    628   1.1       cgd  * with olet in olets (if nonNULL) and satisfying ckfn (if nonNULL)
    629   1.1       cgd  * whether the action in question (i.e., fn) has to be performed.
    630   1.1       cgd  * If allflag then no questions are asked. Max gives the max nr of
    631   1.1       cgd  * objects to be treated. Return the number of objects treated.
    632   1.1       cgd  */
    633   1.5  christos int
    634  1.11  dholland askchain(struct obj *objchn, char *olets, int allflag,
    635  1.11  dholland 	int (*fn)(struct obj *),
    636  1.11  dholland 	int (*ckfn)(struct obj *),
    637  1.11  dholland 	int max)
    638   1.5  christos {
    639   1.5  christos 	struct obj     *otmp, *otmp2;
    640   1.5  christos 	char            sym, ilet;
    641   1.5  christos 	int             cnt = 0;
    642   1.5  christos 	ilet = 'a' - 1;
    643   1.5  christos 	for (otmp = objchn; otmp; otmp = otmp2) {
    644   1.5  christos 		if (ilet == 'z')
    645   1.5  christos 			ilet = 'A';
    646   1.5  christos 		else
    647   1.5  christos 			ilet++;
    648   1.1       cgd 		otmp2 = otmp->nobj;
    649   1.5  christos 		if (olets && *olets && !strchr(olets, otmp->olet))
    650   1.5  christos 			continue;
    651   1.5  christos 		if (ckfn && !(*ckfn) (otmp))
    652   1.5  christos 			continue;
    653   1.5  christos 		if (!allflag) {
    654   1.1       cgd 			pline(xprname(otmp, ilet));
    655   1.1       cgd 			addtopl(" [nyaq]? ");
    656   1.1       cgd 			sym = readchar();
    657   1.5  christos 		} else
    658   1.5  christos 			sym = 'y';
    659   1.1       cgd 
    660   1.5  christos 		switch (sym) {
    661   1.1       cgd 		case 'a':
    662   1.1       cgd 			allflag = 1;
    663   1.1       cgd 		case 'y':
    664   1.5  christos 			cnt += (*fn) (otmp);
    665   1.5  christos 			if (--max == 0)
    666   1.5  christos 				goto ret;
    667   1.1       cgd 		case 'n':
    668   1.1       cgd 		default:
    669   1.1       cgd 			break;
    670   1.1       cgd 		case 'q':
    671   1.1       cgd 			goto ret;
    672   1.1       cgd 		}
    673   1.1       cgd 	}
    674   1.1       cgd 	pline(cnt ? "That was all." : "No applicable objects.");
    675   1.1       cgd ret:
    676   1.5  christos 	return (cnt);
    677   1.1       cgd }
    678   1.1       cgd 
    679  1.11  dholland /* should of course only be called for things in invent */
    680   1.5  christos char
    681  1.11  dholland obj_to_let(struct obj *obj)
    682   1.1       cgd {
    683   1.5  christos 	struct obj     *otmp;
    684   1.5  christos 	char            ilet;
    685   1.1       cgd 
    686   1.5  christos 	if (flags.invlet_constant)
    687   1.5  christos 		return (obj->invlet);
    688   1.1       cgd 	ilet = 'a';
    689   1.5  christos 	for (otmp = invent; otmp && otmp != obj; otmp = otmp->nobj)
    690   1.5  christos 		if (++ilet > 'z')
    691   1.5  christos 			ilet = 'A';
    692   1.5  christos 	return (otmp ? ilet : NOINVSYM);
    693   1.1       cgd }
    694   1.1       cgd 
    695   1.5  christos void
    696  1.11  dholland prinv(struct obj *obj)
    697   1.1       cgd {
    698   1.1       cgd 	pline(xprname(obj, obj_to_let(obj)));
    699   1.1       cgd }
    700   1.1       cgd 
    701   1.5  christos static char    *
    702  1.11  dholland xprname(struct obj *obj, char let)
    703   1.1       cgd {
    704   1.5  christos 	static char     li[BUFSZ];
    705   1.1       cgd 
    706  1.12  dholland 	(void) snprintf(li, sizeof(li), "%c - %s.",
    707   1.5  christos 		       flags.invlet_constant ? obj->invlet : let,
    708   1.5  christos 		       doname(obj));
    709   1.5  christos 	return (li);
    710   1.1       cgd }
    711   1.1       cgd 
    712   1.5  christos int
    713  1.11  dholland ddoinv(void)
    714   1.1       cgd {
    715   1.1       cgd 	doinv((char *) 0);
    716   1.5  christos 	return (0);
    717   1.1       cgd }
    718   1.1       cgd 
    719   1.1       cgd /* called with 0 or "": all objects in inventory */
    720   1.1       cgd /* otherwise: all objects with (serial) letter in lets */
    721   1.5  christos void
    722  1.11  dholland doinv(char *lets)
    723   1.1       cgd {
    724   1.5  christos 	struct obj     *otmp;
    725   1.5  christos 	char            ilet;
    726   1.5  christos 	int             ct = 0;
    727   1.5  christos 	char            any[BUFSZ];
    728   1.1       cgd 
    729   1.1       cgd 	morc = 0;		/* just to be sure */
    730   1.1       cgd 
    731   1.5  christos 	if (!invent) {
    732   1.1       cgd 		pline("Not carrying anything.");
    733   1.1       cgd 		return;
    734   1.1       cgd 	}
    735   1.1       cgd 	cornline(0, (char *) 0);
    736   1.1       cgd 	ilet = 'a';
    737   1.5  christos 	for (otmp = invent; otmp; otmp = otmp->nobj) {
    738   1.5  christos 		if (flags.invlet_constant)
    739   1.5  christos 			ilet = otmp->invlet;
    740   1.5  christos 		if (!lets || !*lets || strchr(lets, ilet)) {
    741   1.5  christos 			cornline(1, xprname(otmp, ilet));
    742   1.5  christos 			any[ct++] = ilet;
    743   1.5  christos 		}
    744   1.5  christos 		if (!flags.invlet_constant)
    745   1.5  christos 			if (++ilet > 'z')
    746   1.5  christos 				ilet = 'A';
    747   1.1       cgd 	}
    748   1.1       cgd 	any[ct] = 0;
    749   1.1       cgd 	cornline(2, any);
    750   1.1       cgd }
    751   1.1       cgd 
    752   1.5  christos int
    753  1.11  dholland dotypeinv(void)
    754   1.5  christos {				/* free after Robert Viduya */
    755   1.5  christos 	/* Changed to one type only, so he doesnt have to type cr */
    756   1.5  christos 	char            c, ilet;
    757   1.5  christos 	char            stuff[BUFSZ];
    758   1.5  christos 	int             stct;
    759   1.5  christos 	struct obj     *otmp;
    760   1.5  christos 	boolean         billx = inshop() && doinvbill(0);
    761   1.5  christos 	boolean         unpd = FALSE;
    762   1.1       cgd 
    763   1.1       cgd 	if (!invent && !u.ugold && !billx) {
    764   1.5  christos 		pline("You aren't carrying anything.");
    765   1.5  christos 		return (0);
    766   1.1       cgd 	}
    767   1.1       cgd 	stct = 0;
    768   1.5  christos 	if (u.ugold)
    769   1.5  christos 		stuff[stct++] = '$';
    770   1.1       cgd 	stuff[stct] = 0;
    771   1.5  christos 	for (otmp = invent; otmp; otmp = otmp->nobj) {
    772   1.5  christos 		if (!strchr(stuff, otmp->olet)) {
    773   1.5  christos 			stuff[stct++] = otmp->olet;
    774   1.5  christos 			stuff[stct] = 0;
    775   1.5  christos 		}
    776   1.5  christos 		if (otmp->unpaid)
    777   1.5  christos 			unpd = TRUE;
    778   1.5  christos 	}
    779   1.5  christos 	if (unpd)
    780   1.5  christos 		stuff[stct++] = 'u';
    781   1.5  christos 	if (billx)
    782   1.5  christos 		stuff[stct++] = 'x';
    783   1.1       cgd 	stuff[stct] = 0;
    784   1.1       cgd 
    785   1.5  christos 	if (stct > 1) {
    786   1.5  christos 		pline("What type of object [%s] do you want an inventory of? ",
    787   1.5  christos 		      stuff);
    788   1.5  christos 		c = readchar();
    789   1.5  christos 		if (strchr(quitchars, c))
    790   1.5  christos 			return (0);
    791   1.1       cgd 	} else
    792   1.5  christos 		c = stuff[0];
    793   1.1       cgd 
    794   1.5  christos 	if (c == '$')
    795   1.5  christos 		return (doprgold());
    796   1.1       cgd 
    797   1.5  christos 	if (c == 'x' || c == 'X') {
    798   1.5  christos 		if (billx)
    799   1.5  christos 			(void) doinvbill(1);
    800   1.5  christos 		else
    801   1.5  christos 			pline("No used-up objects on the shopping bill.");
    802   1.5  christos 		return (0);
    803   1.1       cgd 	}
    804   1.5  christos 	if ((c == 'u' || c == 'U') && !unpd) {
    805   1.1       cgd 		pline("You are not carrying any unpaid objects.");
    806   1.5  christos 		return (0);
    807   1.1       cgd 	}
    808   1.1       cgd 	stct = 0;
    809   1.1       cgd 	ilet = 'a';
    810   1.5  christos 	for (otmp = invent; otmp; otmp = otmp->nobj) {
    811   1.5  christos 		if (flags.invlet_constant)
    812   1.5  christos 			ilet = otmp->invlet;
    813   1.5  christos 		if (c == otmp->olet || (c == 'u' && otmp->unpaid))
    814   1.5  christos 			stuff[stct++] = ilet;
    815   1.5  christos 		if (!flags.invlet_constant)
    816   1.5  christos 			if (++ilet > 'z')
    817   1.5  christos 				ilet = 'A';
    818   1.1       cgd 	}
    819   1.1       cgd 	stuff[stct] = '\0';
    820   1.5  christos 	if (stct == 0)
    821   1.1       cgd 		pline("You have no such objects.");
    822   1.1       cgd 	else
    823   1.5  christos 		doinv(stuff);
    824   1.1       cgd 
    825   1.5  christos 	return (0);
    826   1.1       cgd }
    827   1.1       cgd 
    828   1.1       cgd /* look at what is here */
    829   1.5  christos int
    830  1.11  dholland dolook(void)
    831   1.5  christos {
    832   1.6      fair 	struct obj     *otmp = NULL, *otmp0 = NULL;
    833   1.6      fair 	struct gold    *gold = NULL;
    834   1.7       jsm 	const char     *verb = Blind ? "feel" : "see";
    835   1.5  christos 	int             ct = 0;
    836   1.5  christos 
    837   1.5  christos 	if (!u.uswallow) {
    838   1.5  christos 		if (Blind) {
    839   1.5  christos 			pline("You try to feel what is lying here on the floor.");
    840   1.5  christos 			if (Levitation) {	/* ab@unido */
    841   1.5  christos 				pline("You cannot reach the floor!");
    842   1.5  christos 				return (1);
    843   1.5  christos 			}
    844   1.5  christos 		}
    845   1.5  christos 		otmp0 = o_at(u.ux, u.uy);
    846   1.5  christos 		gold = g_at(u.ux, u.uy);
    847   1.5  christos 	}
    848   1.5  christos 	if (u.uswallow || (!otmp0 && !gold)) {
    849   1.5  christos 		pline("You %s no objects here.", verb);
    850   1.5  christos 		return (!!Blind);
    851   1.5  christos 	}
    852   1.5  christos 	cornline(0, "Things that are here:");
    853   1.5  christos 	for (otmp = otmp0; otmp; otmp = otmp->nobj) {
    854   1.5  christos 		if (otmp->ox == u.ux && otmp->oy == u.uy) {
    855   1.5  christos 			ct++;
    856   1.5  christos 			cornline(1, doname(otmp));
    857   1.5  christos 			if (Blind && otmp->otyp == DEAD_COCKATRICE && !uarmg) {
    858   1.5  christos 				pline("Touching the dead cockatrice is a fatal mistake ...");
    859   1.5  christos 				pline("You die ...");
    860   1.5  christos 				killer = "dead cockatrice";
    861   1.5  christos 				done("died");
    862   1.5  christos 			}
    863   1.5  christos 		}
    864   1.5  christos 	}
    865   1.5  christos 
    866   1.5  christos 	if (gold) {
    867   1.5  christos 		char            gbuf[30];
    868   1.1       cgd 
    869  1.12  dholland 		(void) snprintf(gbuf, sizeof(gbuf), "%ld gold piece%s",
    870   1.5  christos 			       gold->amount, plur(gold->amount));
    871   1.5  christos 		if (!ct++)
    872   1.5  christos 			pline("You %s here %s.", verb, gbuf);
    873   1.5  christos 		else
    874   1.5  christos 			cornline(1, gbuf);
    875   1.5  christos 	}
    876   1.5  christos 	if (ct == 1 && !gold) {
    877   1.5  christos 		pline("You %s here %s.", verb, doname(otmp0));
    878   1.5  christos 		cornline(3, (char *) 0);
    879   1.5  christos 	}
    880   1.5  christos 	if (ct > 1)
    881   1.5  christos 		cornline(2, (char *) 0);
    882   1.5  christos 	return (!!Blind);
    883   1.5  christos }
    884   1.5  christos 
    885   1.5  christos void
    886  1.11  dholland stackobj(struct obj *obj)
    887   1.5  christos {
    888   1.5  christos 	struct obj     *otmp = fobj;
    889   1.5  christos 	for (otmp = fobj; otmp; otmp = otmp->nobj)
    890   1.5  christos 		if (otmp != obj)
    891   1.5  christos 			if (otmp->ox == obj->ox && otmp->oy == obj->oy &&
    892   1.5  christos 			    merged(obj, otmp, 1))
    893   1.5  christos 				return;
    894   1.1       cgd }
    895   1.1       cgd 
    896   1.1       cgd /* merge obj with otmp and delete obj if types agree */
    897   1.5  christos int
    898  1.11  dholland merged(struct obj *otmp, struct obj *obj, int lose)
    899   1.5  christos {
    900   1.5  christos 	if (obj->otyp == otmp->otyp &&
    901   1.5  christos 	    obj->unpaid == otmp->unpaid &&
    902   1.5  christos 	    obj->spe == otmp->spe &&
    903   1.5  christos 	    obj->dknown == otmp->dknown &&
    904   1.5  christos 	    obj->cursed == otmp->cursed &&
    905   1.5  christos 	    (strchr("%*?!", obj->olet) ||
    906   1.5  christos 	     (obj->known == otmp->known &&
    907   1.5  christos 	      (obj->olet == WEAPON_SYM && obj->otyp < BOOMERANG)))) {
    908   1.1       cgd 		otmp->quan += obj->quan;
    909   1.1       cgd 		otmp->owt += obj->owt;
    910   1.5  christos 		if (lose)
    911   1.5  christos 			freeobj(obj);
    912   1.5  christos 		obfree(obj, otmp);	/* free(obj), bill->otmp */
    913   1.5  christos 		return (1);
    914   1.5  christos 	} else
    915   1.5  christos 		return (0);
    916   1.1       cgd }
    917   1.1       cgd 
    918   1.5  christos static long goldcounted;
    919   1.1       cgd /*
    920   1.1       cgd  * Gold is no longer displayed; in fact, when you have a lot of money,
    921   1.1       cgd  * it may take a while before you have counted it all.
    922   1.1       cgd  * [Bug: d$ and pickup still tell you how much it was.]
    923   1.1       cgd  */
    924   1.5  christos int
    925  1.11  dholland countgold(void)
    926   1.5  christos {
    927   1.5  christos 	if ((goldcounted += 100 * (u.ulevel + 1)) >= u.ugold) {
    928   1.5  christos 		long            eps = 0;
    929   1.5  christos 		if (!rn2(2))
    930   1.5  christos 			eps = rnd((int) (u.ugold / 100 + 1));
    931   1.1       cgd 		pline("You probably have about %ld gold pieces.",
    932   1.5  christos 		      u.ugold + eps);
    933   1.5  christos 		return (0);	/* done */
    934   1.1       cgd 	}
    935   1.5  christos 	return (1);		/* continue */
    936   1.1       cgd }
    937   1.1       cgd 
    938   1.5  christos int
    939  1.11  dholland doprgold(void)
    940   1.5  christos {
    941   1.5  christos 	if (!u.ugold)
    942   1.1       cgd 		pline("You do not carry any gold.");
    943   1.5  christos 	else if (u.ugold <= 500)
    944   1.1       cgd 		pline("You are carrying %ld gold pieces.", u.ugold);
    945   1.1       cgd 	else {
    946   1.1       cgd 		pline("You sit down in order to count your gold pieces.");
    947   1.1       cgd 		goldcounted = 500;
    948   1.1       cgd 		occupation = countgold;
    949   1.1       cgd 		occtxt = "counting your gold";
    950   1.1       cgd 	}
    951   1.5  christos 	return (1);
    952   1.1       cgd }
    953   1.1       cgd 
    954   1.1       cgd /* --- end of gold counting section --- */
    955   1.5  christos int
    956  1.11  dholland doprwep(void)
    957   1.5  christos {
    958   1.5  christos 	if (!uwep)
    959   1.5  christos 		pline("You are empty handed.");
    960   1.5  christos 	else
    961   1.5  christos 		prinv(uwep);
    962   1.5  christos 	return (0);
    963   1.1       cgd }
    964   1.1       cgd 
    965   1.5  christos int
    966  1.11  dholland doprarm(void)
    967   1.5  christos {
    968   1.5  christos 	if (!uarm && !uarmg && !uarms && !uarmh)
    969   1.1       cgd 		pline("You are not wearing any armor.");
    970   1.1       cgd 	else {
    971   1.5  christos 		char            lets[6];
    972   1.5  christos 		int             ct = 0;
    973   1.1       cgd 
    974   1.5  christos 		if (uarm)
    975   1.5  christos 			lets[ct++] = obj_to_let(uarm);
    976   1.5  christos 		if (uarm2)
    977   1.5  christos 			lets[ct++] = obj_to_let(uarm2);
    978   1.5  christos 		if (uarmh)
    979   1.5  christos 			lets[ct++] = obj_to_let(uarmh);
    980   1.5  christos 		if (uarms)
    981   1.5  christos 			lets[ct++] = obj_to_let(uarms);
    982   1.5  christos 		if (uarmg)
    983   1.5  christos 			lets[ct++] = obj_to_let(uarmg);
    984   1.1       cgd 		lets[ct] = 0;
    985   1.1       cgd 		doinv(lets);
    986   1.1       cgd 	}
    987   1.5  christos 	return (0);
    988   1.1       cgd }
    989   1.1       cgd 
    990   1.5  christos int
    991  1.11  dholland doprring(void)
    992   1.5  christos {
    993   1.5  christos 	if (!uleft && !uright)
    994   1.1       cgd 		pline("You are not wearing any rings.");
    995   1.1       cgd 	else {
    996   1.5  christos 		char            lets[3];
    997   1.5  christos 		int             ct = 0;
    998   1.1       cgd 
    999   1.5  christos 		if (uleft)
   1000   1.5  christos 			lets[ct++] = obj_to_let(uleft);
   1001   1.5  christos 		if (uright)
   1002   1.5  christos 			lets[ct++] = obj_to_let(uright);
   1003   1.1       cgd 		lets[ct] = 0;
   1004   1.1       cgd 		doinv(lets);
   1005   1.1       cgd 	}
   1006   1.5  christos 	return (0);
   1007   1.1       cgd }
   1008   1.1       cgd 
   1009   1.5  christos int
   1010  1.11  dholland digit(int c)
   1011   1.5  christos {
   1012   1.5  christos 	return (c >= '0' && c <= '9');
   1013   1.1       cgd }
   1014