mirror of https://github.com/nealey/rogue
197 lines
3.3 KiB
C
197 lines
3.3 KiB
C
#include <curses.h>
|
|
#include "netprot.h"
|
|
|
|
/*
|
|
* Routines dealing specifically with rings
|
|
*
|
|
* @(#)netmap.c 4.19 (Berkeley) 05/29/83
|
|
*/
|
|
|
|
/*
|
|
* ring_on:
|
|
* Put a ring on a hand
|
|
*/
|
|
void
|
|
ring_on(void)
|
|
{
|
|
THING *obj;
|
|
int ring;
|
|
|
|
obj = get_item("put on", RING);
|
|
/*
|
|
* Make certain that it is somethings that we want to wear
|
|
*/
|
|
if (obj == NULL)
|
|
return;
|
|
if (obj->o_type != RING)
|
|
{
|
|
if (!Terse)
|
|
msg("it would be difficult to wrap that around a finger");
|
|
else
|
|
msg("not a ring");
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* find out which hand to put it on
|
|
*/
|
|
if (is_current(obj))
|
|
return;
|
|
|
|
if (Cur_ring[LEFT] == NULL && Cur_ring[RIGHT] == NULL)
|
|
{
|
|
if ((ring = gethand()) < 0)
|
|
return;
|
|
}
|
|
else if (Cur_ring[LEFT] == NULL)
|
|
ring = LEFT;
|
|
else if (Cur_ring[RIGHT] == NULL)
|
|
ring = RIGHT;
|
|
else
|
|
{
|
|
if (!Terse)
|
|
msg("you already have a ring on each hand");
|
|
else
|
|
msg("wearing two");
|
|
return;
|
|
}
|
|
Cur_ring[ring] = obj;
|
|
|
|
/*
|
|
* Calculate the effect it has on the poor guy.
|
|
*/
|
|
switch (obj->o_which)
|
|
{
|
|
case R_ADDSTR:
|
|
chg_str(obj->o_arm);
|
|
break;
|
|
case R_SEEINVIS:
|
|
invis_on();
|
|
break;
|
|
case R_AGGR:
|
|
aggravate();
|
|
break;
|
|
}
|
|
|
|
if (!Terse)
|
|
addmsg("you are now wearing ");
|
|
msg("%s (%c)", inv_name(obj, TRUE), obj->o_packch);
|
|
}
|
|
|
|
/*
|
|
* ring_off:
|
|
* Take off a ring
|
|
*/
|
|
void
|
|
ring_off(void)
|
|
{
|
|
int ring;
|
|
THING *obj;
|
|
|
|
if (Cur_ring[LEFT] == NULL && Cur_ring[RIGHT] == NULL)
|
|
{
|
|
if (Terse)
|
|
msg("no rings");
|
|
else
|
|
msg("you aren't wearing any rings");
|
|
return;
|
|
}
|
|
else if (Cur_ring[LEFT] == NULL)
|
|
ring = RIGHT;
|
|
else if (Cur_ring[RIGHT] == NULL)
|
|
ring = LEFT;
|
|
else
|
|
if ((ring = gethand()) < 0)
|
|
return;
|
|
Mpos = 0;
|
|
obj = Cur_ring[ring];
|
|
if (obj == NULL)
|
|
{
|
|
msg("not wearing such a ring");
|
|
return;
|
|
}
|
|
if (dropcheck(obj))
|
|
msg("was wearing %s (%c)", inv_name(obj, TRUE), obj->o_packch);
|
|
}
|
|
|
|
/*
|
|
* gethand:
|
|
* Which hand is the hero interested in?
|
|
*/
|
|
int
|
|
gethand(void)
|
|
{
|
|
int c;
|
|
|
|
for (;;)
|
|
{
|
|
if (Terse)
|
|
msg("left or right ring? ");
|
|
else
|
|
msg("left hand or right hand? ");
|
|
if ((c = readchar()) == ESCAPE)
|
|
return -1;
|
|
Mpos = 0;
|
|
if (c == 'l' || c == 'L')
|
|
return LEFT;
|
|
else if (c == 'r' || c == 'R')
|
|
return RIGHT;
|
|
if (Terse)
|
|
msg("L or R");
|
|
else
|
|
msg("please type L or R");
|
|
}
|
|
}
|
|
|
|
/*
|
|
* ring_eat:
|
|
* How much food does this ring use up?
|
|
*/
|
|
int
|
|
ring_eat(int hand)
|
|
{
|
|
THING *ring;
|
|
int eat;
|
|
static int uses[] = {
|
|
1, /* R_PROTECT */ 1, /* R_ADDSTR */
|
|
1, /* R_SUSTSTR */ -3, /* R_SEARCH */
|
|
-5, /* R_SEEINVIS */ 0, /* R_NOP */
|
|
0, /* R_AGGR */ -3, /* R_ADDHIT */
|
|
-3, /* R_ADDDAM */ 2, /* R_REGEN */
|
|
-2, /* R_DIGEST */ 0, /* R_TELEPORT */
|
|
1, /* R_STEALTH */ 1 /* R_SUSTARM */
|
|
};
|
|
|
|
if ((ring = Cur_ring[hand]) == NULL)
|
|
return 0;
|
|
if ((eat = uses[ring->o_which]) < 0)
|
|
eat = (rnd(-eat) == 0);
|
|
if (ring->o_which == R_DIGEST)
|
|
eat = -eat;
|
|
return eat;
|
|
}
|
|
|
|
/*
|
|
* ring_num:
|
|
* Print ring bonuses
|
|
*/
|
|
char *
|
|
ring_num(THING *obj)
|
|
{
|
|
static char buf[10];
|
|
|
|
if (!(obj->o_flags & ISKNOW))
|
|
return "";
|
|
switch (obj->o_which)
|
|
{
|
|
when R_PROTECT:
|
|
case R_ADDSTR:
|
|
case R_ADDDAM:
|
|
case R_ADDHIT:
|
|
sprintf(buf, " [%s]", num(obj->o_arm, 0, RING));
|
|
otherwise:
|
|
return "";
|
|
}
|
|
return buf;
|
|
}
|