Files
nethack/src/timeout.c
PatR 16562b2892 displacer beast as food
Make eating a displacer beast corpse or a tin of displacer beast
meat confer temporary Displacement lasting 6d6 turns.
2020-05-04 09:50:11 -07:00

2462 lines
76 KiB
C

/* NetHack 3.6 timeout.c $NHDT-Date: 1582925432 2020/02/28 21:30:32 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.112 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Robert Patrick Rankin, 2018. */
/* NetHack may be freely redistributed. See license for details. */
#include "hack.h"
static void NDECL(stoned_dialogue);
static void NDECL(vomiting_dialogue);
static void NDECL(choke_dialogue);
static void NDECL(levitation_dialogue);
static void NDECL(slime_dialogue);
static void FDECL(slimed_to_death, (struct kinfo *));
static void NDECL(phaze_dialogue);
static void FDECL(done_timeout, (int, int));
static void NDECL(slip_or_trip);
static void FDECL(see_lamp_flicker, (struct obj *, const char *));
static void FDECL(lantern_message, (struct obj *));
static void FDECL(cleanup_burn, (ANY_P *, long));
/* used by wizard mode #timeout and #wizintrinsic; order by 'interest'
for timeout countdown, where most won't occur in normal play */
const struct propname {
int prop_num;
const char *prop_name;
} propertynames[] = {
{ INVULNERABLE, "invulnerable" },
{ STONED, "petrifying" },
{ SLIMED, "becoming slime" },
{ STRANGLED, "strangling" },
{ SICK, "fatally sick" },
{ STUNNED, "stunned" },
{ CONFUSION, "confused" },
{ HALLUC, "hallucinating" },
{ BLINDED, "blinded" },
{ DEAF, "deafness" },
{ VOMITING, "vomiting" },
{ GLIB, "slippery fingers" },
{ WOUNDED_LEGS, "wounded legs" },
{ SLEEPY, "sleepy" },
{ TELEPORT, "teleporting" },
{ POLYMORPH, "polymorphing" },
{ LEVITATION, "levitating" },
{ FAST, "very fast" }, /* timed 'FAST' is very fast */
{ CLAIRVOYANT, "clairvoyant" },
{ DETECT_MONSTERS, "monster detection" },
{ SEE_INVIS, "see invisible" },
{ INVIS, "invisible" },
/* properties beyond here don't have timed values during normal play,
so there's not much point in trying to order them sensibly;
they're either on or off based on equipment, role, actions, &c */
{ FIRE_RES, "fire resistance" },
{ COLD_RES, "cold resistance" },
{ SLEEP_RES, "sleep resistance" },
{ DISINT_RES, "disintegration resistance" },
{ SHOCK_RES, "shock resistance" },
{ POISON_RES, "poison resistance" },
{ ACID_RES, "acid resistance" },
{ STONE_RES, "stoning resistance" },
{ DRAIN_RES, "drain resistance" },
{ SICK_RES, "sickness resistance" },
{ ANTIMAGIC, "magic resistance" },
{ HALLUC_RES, "hallucination resistance" },
{ FUMBLING, "fumbling" },
{ HUNGER, "voracious hunger" },
{ TELEPAT, "telepathic" },
{ WARNING, "warning" },
{ WARN_OF_MON, "warn: monster type or class" },
{ WARN_UNDEAD, "warn: undead" },
{ SEARCHING, "searching" },
{ INFRAVISION, "infravision" },
{ ADORNED, "adorned (+/- Cha)" },
{ DISPLACED, "displaced" },
{ STEALTH, "stealthy" },
{ AGGRAVATE_MONSTER, "monster aggravation" },
{ CONFLICT, "conflict" },
{ JUMPING, "jumping" },
{ TELEPORT_CONTROL, "teleport control" },
{ FLYING, "flying" },
{ WWALKING, "water walking" },
{ SWIMMING, "swimming" },
{ MAGICAL_BREATHING, "magical breathing" },
{ PASSES_WALLS, "pass thru walls" },
{ SLOW_DIGESTION, "slow digestion" },
{ HALF_SPDAM, "half spell damage" },
{ HALF_PHDAM, "half physical damage" },
{ REGENERATION, "HP regeneration" },
{ ENERGY_REGENERATION, "energy regeneration" },
{ PROTECTION, "extra protection" },
{ PROT_FROM_SHAPE_CHANGERS, "protection from shape changers" },
{ POLYMORPH_CONTROL, "polymorph control" },
{ UNCHANGING, "unchanging" },
{ REFLECTING, "reflecting" },
{ FREE_ACTION, "free action" },
{ FIXED_ABIL, "fixed abilities" },
{ LIFESAVED, "life will be saved" },
{ 0, 0 },
};
/* He is being petrified - dialogue by inmet!tower */
static NEARDATA const char *const stoned_texts[] = {
"You are slowing down.", /* 5 */
"Your limbs are stiffening.", /* 4 */
"Your limbs have turned to stone.", /* 3 */
"You have turned to stone.", /* 2 */
"You are a statue." /* 1 */
};
static void
stoned_dialogue()
{
register long i = (Stoned & TIMEOUT);
if (i > 0L && i <= SIZE(stoned_texts)) {
char buf[BUFSZ];
Strcpy(buf, stoned_texts[SIZE(stoned_texts) - i]);
if (nolimbs(g.youmonst.data) && strstri(buf, "limbs"))
(void) strsubst(buf, "limbs", "extremities");
pline1(buf);
}
switch ((int) i) {
case 5: /* slowing down */
HFast = 0L;
if (g.multi > 0)
nomul(0);
break;
case 4: /* limbs stiffening */
/* just one move left to save oneself so quit fiddling around;
don't stop attempt to eat tin--might be lizard or acidic */
if (!Popeye(STONED))
stop_occupation();
if (g.multi > 0)
nomul(0);
break;
case 3: /* limbs turned to stone */
stop_occupation();
nomul(-3); /* can't move anymore */
g.multi_reason = "getting stoned";
g.nomovemsg = You_can_move_again; /* not unconscious */
/* "your limbs have turned to stone" so terminate wounded legs */
if (Wounded_legs && !u.usteed)
heal_legs(2);
break;
case 2: /* turned to stone */
if ((HDeaf & TIMEOUT) > 0L && (HDeaf & TIMEOUT) < 5L)
set_itimeout(&HDeaf, 5L); /* avoid Hear_again at tail end */
/* if also vomiting or turning into slime, stop those (no messages) */
if (Vomiting)
make_vomiting(0L, FALSE);
if (Slimed)
make_slimed(0L, (char *) 0);
break;
default:
break;
}
exercise(A_DEX, FALSE);
}
/* hero is getting sicker and sicker prior to vomiting */
static NEARDATA const char *const vomiting_texts[] = {
"are feeling mildly nauseated.", /* 14 */
"feel slightly confused.", /* 11 */
"can't seem to think straight.", /* 8 */
"feel incredibly sick.", /* 5 */
"are about to vomit." /* 2 */
};
static void
vomiting_dialogue()
{
const char *txt = 0;
char buf[BUFSZ];
long v = (Vomiting & TIMEOUT);
/* note: nhtimeout() hasn't decremented timed properties for the
current turn yet, so we use Vomiting-1 here */
switch ((int) (v - 1L)) {
case 14:
txt = vomiting_texts[0];
break;
case 11:
txt = vomiting_texts[1];
if (strstri(txt, " confused") && Confusion)
txt = strsubst(strcpy(buf, txt), " confused", " more confused");
break;
case 6:
make_stunned((HStun & TIMEOUT) + (long) d(2, 4), FALSE);
if (!Popeye(VOMITING))
stop_occupation();
/*FALLTHRU*/
case 9:
make_confused((HConfusion & TIMEOUT) + (long) d(2, 4), FALSE);
if (g.multi > 0)
nomul(0);
break;
case 8:
txt = vomiting_texts[2];
if (strstri(txt, " think") && Stunned)
txt = strsubst(strcpy(buf, txt), "can't seem to ", "can't ");
break;
case 5:
txt = vomiting_texts[3];
break;
case 2:
txt = vomiting_texts[4];
if (cantvomit(g.youmonst.data))
txt = "gag uncontrollably.";
else if (Hallucination)
/* "hurl" is short for "hurl chunks" which is slang for
relatively violent vomiting... */
txt = "are about to hurl!";
break;
case 0:
stop_occupation();
if (!cantvomit(g.youmonst.data)) {
morehungry(20);
/* case 2 used to be "You suddenly vomit!" but it wasn't sudden
since you've just been through the earlier messages of the
countdown, and it was still possible to move around between
that message and "You can move again." (from vomit()'s
nomul(-2)) with no intervening message; give one here to
have more specific point at which hero became unable to move
[vomit() issues its own message for the cantvomit() case
and for the FAINTING-or-worse case where stomach is empty] */
if (u.uhs < FAINTING)
You("%s!", !Hallucination ? "vomit" : "hurl chunks");
}
vomit();
break;
default:
break;
}
if (txt)
You1(txt);
exercise(A_CON, FALSE);
}
static NEARDATA const char *const choke_texts[] = {
"You find it hard to breathe.",
"You're gasping for air.",
"You can no longer breathe.",
"You're turning %s.",
"You suffocate."
};
static NEARDATA const char *const choke_texts2[] = {
"Your %s is becoming constricted.",
"Your blood is having trouble reaching your brain.",
"The pressure on your %s increases.",
"Your consciousness is fading.",
"You suffocate."
};
static void
choke_dialogue()
{
register long i = (Strangled & TIMEOUT);
if (i > 0 && i <= SIZE(choke_texts)) {
if (Breathless || !rn2(50))
pline(choke_texts2[SIZE(choke_texts2) - i], body_part(NECK));
else {
const char *str = choke_texts[SIZE(choke_texts) - i];
if (index(str, '%'))
pline(str, hcolor(NH_BLUE));
else
pline1(str);
}
}
exercise(A_STR, FALSE);
}
static NEARDATA const char *const levi_texts[] = {
"You float slightly lower.",
"You wobble unsteadily %s the %s."
};
static void
levitation_dialogue()
{
/* -1 because the last message comes via float_down() */
long i = (((HLevitation & TIMEOUT) - 1L) / 2L);
if (ELevitation)
return;
if (!ACCESSIBLE(levl[u.ux][u.uy].typ)
&& !is_pool_or_lava(u.ux,u.uy))
return;
if (((HLevitation & TIMEOUT) % 2L) && i > 0L && i <= SIZE(levi_texts)) {
const char *s = levi_texts[SIZE(levi_texts) - i];
if (index(s, '%')) {
boolean danger = (is_pool_or_lava(u.ux, u.uy)
&& !Is_waterlevel(&u.uz));
pline(s, danger ? "over" : "in",
danger ? surface(u.ux, u.uy) : "air");
} else
pline1(s);
}
}
static NEARDATA const char *const slime_texts[] = {
"You are turning a little %s.", /* 5 */
"Your limbs are getting oozy.", /* 4 */
"Your skin begins to peel away.", /* 3 */
"You are turning into %s.", /* 2 */
"You have become %s." /* 1 */
};
static void
slime_dialogue()
{
register long i = (Slimed & TIMEOUT) / 2L;
if (i == 1L) {
/* display as green slime during "You have become green slime."
but don't worry about not being able to see self; if already
mimicking something else at the time, implicitly be revealed */
g.youmonst.m_ap_type = M_AP_MONSTER;
g.youmonst.mappearance = PM_GREEN_SLIME;
}
if (((Slimed & TIMEOUT) % 2L) && i >= 0L && i < SIZE(slime_texts)) {
char buf[BUFSZ];
Strcpy(buf, slime_texts[SIZE(slime_texts) - i - 1L]);
if (nolimbs(g.youmonst.data) && strstri(buf, "limbs"))
(void) strsubst(buf, "limbs", "extremities");
if (index(buf, '%')) {
if (i == 4L) { /* "you are turning green" */
if (!Blind) /* [what if you're already green?] */
pline(buf, hcolor(NH_GREEN));
} else
pline(buf,
an(Hallucination ? rndmonnam(NULL) : "green slime"));
} else
pline1(buf);
}
switch (i) {
case 3L: /* limbs becoming oozy */
HFast = 0L; /* lose intrinsic speed */
if (!Popeye(SLIMED))
stop_occupation();
if (g.multi > 0)
nomul(0);
break;
case 2L: /* skin begins to peel */
if ((HDeaf & TIMEOUT) > 0L && (HDeaf & TIMEOUT) < 5L)
set_itimeout(&HDeaf, 5L); /* avoid Hear_again at tail end */
break;
case 1L: /* turning into slime */
/* if also turning to stone, stop doing that (no message) */
if (Stoned)
make_stoned(0L, (char *) 0, KILLED_BY_AN, (char *) 0);
break;
}
exercise(A_DEX, FALSE);
}
void
burn_away_slime()
{
if (Slimed) {
make_slimed(0L, "The slime that covers you is burned away!");
}
}
/* countdown timer for turning into green slime has run out; kill our hero */
static void
slimed_to_death(kptr)
struct kinfo *kptr;
{
uchar save_mvflags;
/* redundant: polymon() cures sliming when polying into green slime */
if (Upolyd && g.youmonst.data == &mons[PM_GREEN_SLIME]) {
dealloc_killer(kptr);
return;
}
/* more sure killer reason is set up */
if (kptr && kptr->name[0]) {
g.killer.format = kptr->format;
Strcpy(g.killer.name, kptr->name);
} else {
g.killer.format = NO_KILLER_PREFIX;
Strcpy(g.killer.name, "turned into green slime");
}
dealloc_killer(kptr);
/*
* Polymorph into a green slime, which might destroy some worn armor
* (potentially affecting bones) and dismount from steed.
* Can't be Unchanging; wouldn't have turned into slime if we were.
* Despite lack of Unchanging, neither done() nor savelife() calls
* rehumanize() if hero dies while polymorphed.
* polymon() undoes the slime countdown's mimick-green-slime hack
* but does not perform polyself()'s light source bookkeeping.
* No longer need to manually increment uconduct.polyselfs to reflect
* [formerly implicit] change of form; polymon() takes care of that.
* Temporarily ungenocide if necessary.
*/
if (emits_light(g.youmonst.data))
del_light_source(LS_MONSTER, monst_to_any(&g.youmonst));
save_mvflags = g.mvitals[PM_GREEN_SLIME].mvflags;
g.mvitals[PM_GREEN_SLIME].mvflags = save_mvflags & ~G_GENOD;
/* become a green slime; also resets youmonst.m_ap_type+.mappearance */
(void) polymon(PM_GREEN_SLIME);
g.mvitals[PM_GREEN_SLIME].mvflags = save_mvflags;
done_timeout(TURNED_SLIME, SLIMED);
/* life-saved; even so, hero still has turned into green slime;
player may have genocided green slimes after being infected */
if ((g.mvitals[PM_GREEN_SLIME].mvflags & G_GENOD) != 0) {
char slimebuf[BUFSZ];
g.killer.format = KILLED_BY;
Strcpy(g.killer.name, "slimicide");
/* vary the message depending upon whether life-save was due to
amulet or due to declining to die in explore or wizard mode */
Strcpy(slimebuf, "green slime has been genocided...");
if (iflags.last_msg == PLNMSG_OK_DONT_DIE)
/* follows "OK, so you don't die." and arg is second sentence */
pline("Yes, you do. %s", upstart(slimebuf));
else
/* follows "The medallion crumbles to dust." */
pline("Unfortunately, %s", slimebuf);
/* die again; no possibility of amulet this time */
done(GENOCIDED); /* [should it be done_timeout(GENOCIDED, SLIMED)?] */
/* could be life-saved again (only in explore or wizard mode)
but green slimes are gone; just stay in current form */
}
return;
}
/* Intrinsic Passes_walls is temporary when your god is trying to fix
all troubles and then TROUBLE_STUCK_IN_WALL calls safe_teleds() but
it can't find anywhere to place you. If that happens you get a small
value for (HPasses_walls & TIMEOUT) to move somewhere yourself.
Message given is "you feel much slimmer" as a joke hint that you can
move between things which are closely packed--like the substance of
solid rock! */
static NEARDATA const char *const phaze_texts[] = {
"You start to feel bloated.",
"You are feeling rather flabby.",
};
static void
phaze_dialogue()
{
long i = ((HPasses_walls & TIMEOUT) / 2L);
if (EPasses_walls || (HPasses_walls & ~TIMEOUT))
return;
if (((HPasses_walls & TIMEOUT) % 2L) && i > 0L && i <= SIZE(phaze_texts))
pline1(phaze_texts[SIZE(phaze_texts) - i]);
}
/* when a status timeout is fatal, keep the status line indicator shown
during end of game rundown (and potential dumplog);
timeout has already counted down to 0 by the time we get here */
static void
done_timeout(how, which)
int how, which;
{
long *intrinsic_p = &u.uprops[which].intrinsic;
*intrinsic_p |= I_SPECIAL; /* affects final disclosure */
done(how);
/* life-saved */
*intrinsic_p &= ~I_SPECIAL;
g.context.botl = TRUE;
}
void
nh_timeout()
{
register struct prop *upp;
struct kinfo *kptr;
boolean was_flying;
int sleeptime;
int m_idx;
int baseluck = (flags.moonphase == FULL_MOON) ? 1 : 0;
if (flags.friday13)
baseluck -= 1;
if (u.uluck != baseluck
&& g.moves % ((u.uhave.amulet || u.ugangr) ? 300 : 600) == 0) {
/* Cursed luckstones stop bad luck from timing out; blessed luckstones
* stop good luck from timing out; normal luckstones stop both;
* neither is stopped if you don't have a luckstone.
* Luck is based at 0 usually, +1 if a full moon and -1 on Friday 13th
*/
register int time_luck = stone_luck(FALSE);
boolean nostone = !carrying(LUCKSTONE) && !stone_luck(TRUE);
if (u.uluck > baseluck && (nostone || time_luck < 0))
u.uluck--;
else if (u.uluck < baseluck && (nostone || time_luck > 0))
u.uluck++;
}
if (u.uinvulnerable)
return; /* things past this point could kill you */
if (Stoned)
stoned_dialogue();
if (Slimed)
slime_dialogue();
if (Vomiting)
vomiting_dialogue();
if (Strangled)
choke_dialogue();
if (HLevitation & TIMEOUT)
levitation_dialogue();
if (HPasses_walls & TIMEOUT)
phaze_dialogue();
if (u.mtimedone && !--u.mtimedone) {
if (Unchanging)
u.mtimedone = rnd(100 * g.youmonst.data->mlevel + 1);
else if (is_were(g.youmonst.data))
you_unwere(FALSE); /* if polycontrl, asks whether to rehumanize */
else
rehumanize();
}
if (u.ucreamed)
u.ucreamed--;
/* Dissipate spell-based protection. */
if (u.usptime) {
if (--u.usptime == 0 && u.uspellprot) {
u.usptime = u.uspmtime;
u.uspellprot--;
find_ac();
if (!Blind)
Norep("The %s haze around you %s.", hcolor(NH_GOLDEN),
u.uspellprot ? "becomes less dense" : "disappears");
}
}
if (u.ugallop) {
if (--u.ugallop == 0L && u.usteed)
pline("%s stops galloping.", Monnam(u.usteed));
}
was_flying = Flying;
for (upp = u.uprops; upp < u.uprops + SIZE(u.uprops); upp++)
if ((upp->intrinsic & TIMEOUT) && !(--upp->intrinsic & TIMEOUT)) {
kptr = find_delayed_killer((int) (upp - u.uprops));
switch (upp - u.uprops) {
case STONED:
if (kptr && kptr->name[0]) {
g.killer.format = kptr->format;
Strcpy(g.killer.name, kptr->name);
} else {
g.killer.format = NO_KILLER_PREFIX;
Strcpy(g.killer.name, "killed by petrification");
}
dealloc_killer(kptr);
/* (unlike sliming, you aren't changing form here) */
done_timeout(STONING, STONED);
break;
case SLIMED:
slimed_to_death(kptr); /* done_timeout(TURNED_SLIME,SLIMED) */
break;
case VOMITING:
make_vomiting(0L, TRUE);
break;
case SICK:
/* You might be able to bounce back from food poisoning, but not
* other forms of illness. */
if ((u.usick_type & SICK_NONVOMITABLE) == 0
&& rn2(100) < ACURR(A_CON)) {
You("have recovered from your illness.");
make_sick(0, NULL, FALSE, SICK_ALL);
exercise(A_CON, FALSE);
adjattrib(A_CON, -1, 1);
break;
}
You("die from your illness.");
if (kptr && kptr->name[0]) {
g.killer.format = kptr->format;
Strcpy(g.killer.name, kptr->name);
} else {
g.killer.format = KILLED_BY_AN;
g.killer.name[0] = 0; /* take the default */
}
dealloc_killer(kptr);
if ((m_idx = name_to_mon(g.killer.name)) >= LOW_PM) {
if (type_is_pname(&mons[m_idx])) {
g.killer.format = KILLED_BY;
} else if (mons[m_idx].geno & G_UNIQ) {
Strcpy(g.killer.name, the(g.killer.name));
g.killer.format = KILLED_BY;
}
}
done_timeout(POISONING, SICK);
u.usick_type = 0;
break;
case FAST:
if (!Very_fast)
You_feel("yourself slow down%s.",
Fast ? " a bit" : "");
break;
case CONFUSION:
/* So make_confused works properly */
set_itimeout(&HConfusion, 1L);
make_confused(0L, TRUE);
if (!Confusion)
stop_occupation();
break;
case STUNNED:
set_itimeout(&HStun, 1L);
make_stunned(0L, TRUE);
if (!Stunned)
stop_occupation();
break;
case BLINDED:
set_itimeout(&Blinded, 1L);
make_blinded(0L, TRUE);
if (!Blind)
stop_occupation();
break;
case DEAF:
set_itimeout(&HDeaf, 1L);
make_deaf(0L, TRUE);
g.context.botl = TRUE;
if (!Deaf)
stop_occupation();
break;
case INVIS:
newsym(u.ux, u.uy);
if (!Invis && !BInvis && !Blind) {
You(!See_invisible
? "are no longer invisible."
: "can no longer see through yourself.");
stop_occupation();
}
break;
case SEE_INVIS:
set_mimic_blocking(); /* do special mimic handling */
see_monsters(); /* make invis mons appear */
newsym(u.ux, u.uy); /* make self appear */
stop_occupation();
break;
case WOUNDED_LEGS:
heal_legs(0);
stop_occupation();
break;
case HALLUC:
set_itimeout(&HHallucination, 1L);
(void) make_hallucinated(0L, TRUE, 0L);
if (!Hallucination)
stop_occupation();
break;
case SLEEPY:
if (unconscious() || Sleep_resistance) {
incr_itimeout(&HSleepy, rnd(100));
} else if (Sleepy) {
You("fall asleep.");
sleeptime = rnd(20);
fall_asleep(-sleeptime, TRUE);
incr_itimeout(&HSleepy, sleeptime + rnd(100));
}
break;
case LEVITATION:
(void) float_down(I_SPECIAL | TIMEOUT, 0L);
break;
case FLYING:
/* timed Flying is via #wizintrinsic only */
if (was_flying && !Flying) {
g.context.botl = 1;
You("land.");
spoteffects(TRUE);
}
break;
case DISPLACED:
if (!Displaced) /* give a message */
toggle_displacement((struct obj *) 0, 0L, FALSE);
break;
case WARN_OF_MON:
/* timed Warn_of_mon is via #wizintrinsic only */
if (!Warn_of_mon) {
g.context.warntype.speciesidx = NON_PM;
if (g.context.warntype.species) {
You("are no longer warned about %s.",
makeplural(g.context.warntype.species->mname));
g.context.warntype.species = (struct permonst *) 0;
}
}
break;
case PASSES_WALLS:
if (!Passes_walls) {
if (stuck_in_wall())
You_feel("hemmed in again.");
else
pline("You're back to your %s self again.",
!Upolyd ? "normal" : "unusual");
}
break;
case STRANGLED:
g.killer.format = KILLED_BY;
Strcpy(g.killer.name,
(u.uburied) ? "suffocation" : "strangulation");
done_timeout(DIED, STRANGLED);
/* must be declining to die in explore|wizard mode;
treat like being cured of strangulation by prayer */
if (uamul && uamul->otyp == AMULET_OF_STRANGULATION) {
Your("amulet vanishes!");
useup(uamul);
}
break;
case FUMBLING:
/* call this only when a move took place. */
/* otherwise handle fumbling msgs locally. */
if (u.umoved && !(Levitation || Flying)) {
slip_or_trip();
nomul(-2);
g.multi_reason = "fumbling";
g.nomovemsg = "";
/* The more you are carrying the more likely you
* are to make noise when you fumble. Adjustments
* to this number must be thoroughly play tested.
*/
if ((inv_weight() > -500)) {
You("make a lot of noise!");
wake_nearby();
}
}
/* from outside means slippery ice; don't reset
counter if that's the only fumble reason */
HFumbling &= ~FROMOUTSIDE;
if (Fumbling)
incr_itimeout(&HFumbling, rnd(20));
if (iflags.defer_decor) {
/* 'mention_decor' was deferred for message sequencing
reasons; catch up now */
deferred_decor(FALSE);
}
break;
case DETECT_MONSTERS:
see_monsters();
break;
case GLIB:
make_glib(0); /* might update persistent inventory */
break;
}
}
run_timers();
}
void
fall_asleep(how_long, wakeup_msg)
int how_long;
boolean wakeup_msg;
{
stop_occupation();
nomul(how_long);
g.multi_reason = "sleeping";
/* generally don't notice sounds while sleeping */
if (wakeup_msg && g.multi == how_long) {
/* caller can follow with a direct call to Hear_again() if
there's a need to override this when wakeup_msg is true */
incr_itimeout(&HDeaf, how_long);
g.context.botl = TRUE;
g.afternmv = Hear_again; /* this won't give any messages */
}
/* early wakeup from combat won't be possible until next monster turn */
u.usleep = g.monstermoves;
g.nomovemsg = wakeup_msg ? "You wake up." : You_can_move_again;
}
/* Attach an egg hatch timeout to the given egg.
* when = Time to hatch, usually only passed if re-creating an
* existing hatch timer. Pass 0L for random hatch time.
*/
void
attach_egg_hatch_timeout(egg, when)
struct obj *egg;
long when;
{
int i;
/* stop previous timer, if any */
(void) stop_timer(HATCH_EGG, obj_to_any(egg));
/*
* Decide if and when to hatch the egg. The old hatch_it() code tried
* once a turn from age 151 to 200 (inclusive), hatching if it rolled
* a number x, 1<=x<=age, where x>150. This yields a chance of
* hatching > 99.9993%. Mimic that here.
*/
if (!when) {
for (i = (MAX_EGG_HATCH_TIME - 50) + 1; i <= MAX_EGG_HATCH_TIME; i++)
if (rnd(i) > 150) {
/* egg will hatch */
when = (long) i;
break;
}
}
if (when) {
(void) start_timer(when, TIMER_OBJECT, HATCH_EGG, obj_to_any(egg));
}
}
/* prevent an egg from ever hatching */
void
kill_egg(egg)
struct obj *egg;
{
/* stop previous timer, if any */
(void) stop_timer(HATCH_EGG, obj_to_any(egg));
}
/* timer callback routine: hatch the given egg */
void
hatch_egg(arg, timeout)
anything *arg;
long timeout;
{
struct obj *egg;
struct monst *mon, *mon2;
coord cc;
xchar x, y;
boolean yours, silent, knows_egg = FALSE;
boolean cansee_hatchspot = FALSE;
int i, mnum, hatchcount = 0;
egg = arg->a_obj;
/* sterilized while waiting */
if (egg->corpsenm == NON_PM)
return;
mon = mon2 = (struct monst *) 0;
mnum = big_to_little(egg->corpsenm);
/* The identity of one's father is learned, not innate */
yours = (egg->spe || (!flags.female && carried(egg) && !rn2(2)));
silent = (timeout != g.monstermoves); /* hatched while away */
/* only can hatch when in INVENT, FLOOR, MINVENT */
if (get_obj_location(egg, &x, &y, 0)) {
hatchcount = rnd((int) egg->quan);
cansee_hatchspot = cansee(x, y) && !silent;
if (!(mons[mnum].geno & G_UNIQ)
&& !(g.mvitals[mnum].mvflags & (G_GENOD | G_EXTINCT))) {
for (i = hatchcount; i > 0; i--) {
if (!enexto(&cc, x, y, &mons[mnum])
|| !(mon = makemon(&mons[mnum], cc.x, cc.y, NO_MINVENT)))
break;
/* tame if your own egg hatches while you're on the
same dungeon level, or any dragon egg which hatches
while it's in your inventory */
if ((yours && !silent)
|| (carried(egg) && mon->data->mlet == S_DRAGON)) {
if (tamedog(mon, (struct obj *) 0)) {
if (carried(egg) && mon->data->mlet != S_DRAGON)
mon->mtame = 20;
}
}
if (g.mvitals[mnum].mvflags & G_EXTINCT)
break; /* just made last one */
mon2 = mon; /* in case makemon() fails on 2nd egg */
}
if (!mon)
mon = mon2;
hatchcount -= i;
egg->quan -= (long) hatchcount;
}
#if 0
/*
* We could possibly hatch while migrating, but the code isn't
* set up for it...
*/
} else if (obj->where == OBJ_MIGRATING) {
/*
* We can do several things. The first ones that come to
* mind are:
* + Create the hatched monster then place it on the migrating
* mons list. This is tough because all makemon() is made
* to place the monster as well. Makemon() also doesn't lend
* itself well to splitting off a "not yet placed" subroutine.
* + Mark the egg as hatched, then place the monster when we
* place the migrating objects.
* + Or just kill any egg which gets sent to another level.
* Falling is the usual reason such transportation occurs.
*/
cansee_hatchspot = FALSE;
mon = ???;
#endif
}
if (mon) {
char monnambuf[BUFSZ], carriedby[BUFSZ];
boolean siblings = (hatchcount > 1), redraw = FALSE;
if (cansee_hatchspot) {
/* [bug? m_monnam() yields accurate monster type
regardless of hallucination] */
Sprintf(monnambuf, "%s%s", siblings ? "some " : "",
siblings ? makeplural(m_monnam(mon)) : an(m_monnam(mon)));
/* we don't learn the egg type here because learning
an egg type requires either seeing the egg hatch
or being familiar with the egg already,
as well as being able to see the resulting
monster, checked below
*/
}
switch (egg->where) {
case OBJ_INVENT:
knows_egg = TRUE; /* true even if you are blind */
if (!cansee_hatchspot)
You_feel("%s %s from your pack!", something,
locomotion(mon->data, "drop"));
else
You_see("%s %s out of your pack!", monnambuf,
locomotion(mon->data, "drop"));
if (yours) {
pline("%s cries sound like \"%s%s\"",
siblings ? "Their" : "Its",
flags.female ? "mommy" : "daddy", egg->spe ? "." : "?");
} else if (mon->data->mlet == S_DRAGON && !Deaf) {
verbalize("Gleep!"); /* Mything eggs :-) */
}
break;
case OBJ_FLOOR:
if (cansee_hatchspot) {
knows_egg = TRUE;
You_see("%s hatch.", monnambuf);
redraw = TRUE; /* update egg's map location */
}
break;
case OBJ_MINVENT:
if (cansee_hatchspot) {
/* egg carrying monster might be invisible */
mon2 = egg->ocarry;
if (canseemon(mon2)
&& (!mon2->wormno || cansee(mon2->mx, mon2->my))) {
Sprintf(carriedby, "%s pack",
s_suffix(a_monnam(mon2)));
knows_egg = TRUE;
} else if (is_pool(mon->mx, mon->my)) {
Strcpy(carriedby, "empty water");
} else {
Strcpy(carriedby, "thin air");
}
You_see("%s %s out of %s!", monnambuf,
locomotion(mon->data, "drop"), carriedby);
}
break;
#if 0
case OBJ_MIGRATING:
break;
#endif
default:
impossible("egg hatched where? (%d)", (int) egg->where);
break;
}
if (cansee_hatchspot && knows_egg)
learn_egg_type(mnum);
if (egg->quan > 0) {
/* still some eggs left */
/* Instead of ordinary egg timeout use a short one */
attach_egg_hatch_timeout(egg, (long) rnd(12));
} else if (carried(egg)) {
useup(egg);
} else {
/* free egg here because we use it above */
obj_extract_self(egg);
obfree(egg, (struct obj *) 0);
}
if (redraw)
newsym(x, y);
}
}
/* Learn to recognize eggs of the given type. */
void
learn_egg_type(mnum)
int mnum;
{
/* baby monsters hatch from grown-up eggs */
mnum = little_to_big(mnum);
g.mvitals[mnum].mvflags |= MV_KNOWS_EGG;
/* we might have just learned about other eggs being carried */
update_inventory();
}
/* Attach a fig_transform timeout to the given figurine. */
void
attach_fig_transform_timeout(figurine)
struct obj *figurine;
{
int i;
/* stop previous timer, if any */
(void) stop_timer(FIG_TRANSFORM, obj_to_any(figurine));
/*
* Decide when to transform the figurine.
*/
i = rnd(9000) + 200;
/* figurine will transform */
(void) start_timer((long) i, TIMER_OBJECT, FIG_TRANSFORM,
obj_to_any(figurine));
}
/* give a fumble message */
static void
slip_or_trip()
{
struct obj *otmp = vobj_at(u.ux, u.uy), *otmp2;
const char *what;
char buf[BUFSZ];
boolean on_foot = TRUE;
if (u.usteed)
on_foot = FALSE;
if (otmp && on_foot && !u.uinwater && is_pool(u.ux, u.uy))
otmp = 0;
if (otmp && on_foot) { /* trip over something in particular */
/*
If there is only one item, it will have just been named
during the move, so refer to by via pronoun; otherwise,
if the top item has been or can be seen, refer to it by
name; if not, look for rocks to trip over; trip over
anonymous "something" if there aren't any rocks.
*/
what = (iflags.last_msg == PLNMSG_ONE_ITEM_HERE)
? ((otmp->quan == 1L) ? "it"
: Hallucination ? "they" : "them")
: (otmp->dknown || !Blind)
? doname(otmp)
: ((otmp2 = sobj_at(ROCK, u.ux, u.uy)) == 0
? something
: (otmp2->quan == 1L ? "a rock" : "some rocks"));
if (Hallucination) {
what = strcpy(buf, what);
buf[0] = highc(buf[0]);
pline("Egads! %s bite%s your %s!", what,
(!otmp || otmp->quan == 1L) ? "s" : "", body_part(FOOT));
} else {
You("trip over %s.", what);
}
if (!uarmf && otmp->otyp == CORPSE
&& touch_petrifies(&mons[otmp->corpsenm]) && !Stone_resistance) {
Sprintf(g.killer.name, "tripping over %s corpse",
an(mons[otmp->corpsenm].mname));
instapetrify(g.killer.name);
}
} else if (rn2(3) && is_ice(u.ux, u.uy)) {
pline("%s %s%s on the ice.",
u.usteed ? upstart(x_monnam(u.usteed,
(has_mname(u.usteed)) ? ARTICLE_NONE
: ARTICLE_THE,
(char *) 0, SUPPRESS_SADDLE, FALSE))
: "You",
rn2(2) ? "slip" : "slide", on_foot ? "" : "s");
} else {
if (on_foot) {
switch (rn2(4)) {
case 1:
You("trip over your own %s.",
Hallucination ? "elbow" : makeplural(body_part(FOOT)));
break;
case 2:
You("slip %s.",
Hallucination ? "on a banana peel" : "and nearly fall");
break;
case 3:
You("flounder.");
break;
default:
You("stumble.");
break;
}
} else {
switch (rn2(4)) {
case 1:
Your("%s slip out of the stirrups.",
makeplural(body_part(FOOT)));
break;
case 2:
You("let go of the reins.");
break;
case 3:
You("bang into the saddle-horn.");
break;
default:
You("slide to one side of the saddle.");
break;
}
dismount_steed(DISMOUNT_FELL);
}
}
}
/* Print a lamp flicker message with tailer. */
static void
see_lamp_flicker(obj, tailer)
struct obj *obj;
const char *tailer;
{
switch (obj->where) {
case OBJ_INVENT:
case OBJ_MINVENT:
pline("%s flickers%s.", Yname2(obj), tailer);
break;
case OBJ_FLOOR:
You_see("%s flicker%s.", an(xname(obj)), tailer);
break;
}
}
/* Print a dimming message for brass lanterns. */
static void
lantern_message(obj)
struct obj *obj;
{
/* from adventure */
switch (obj->where) {
case OBJ_INVENT:
Your("lantern is getting dim.");
if (Hallucination)
pline("Batteries have not been invented yet.");
break;
case OBJ_FLOOR:
You_see("a lantern getting dim.");
break;
case OBJ_MINVENT:
pline("%s lantern is getting dim.", s_suffix(Monnam(obj->ocarry)));
break;
}
}
/*
* Timeout callback for for objects that are burning. E.g. lamps, candles.
* See begin_burn() for meanings of obj->age and obj->spe.
*/
void
burn_object(arg, timeout)
anything *arg;
long timeout;
{
struct obj *obj = arg->a_obj;
boolean canseeit, many, menorah, need_newsym, need_invupdate;
xchar x, y;
char whose[BUFSZ];
menorah = obj->otyp == CANDELABRUM_OF_INVOCATION;
many = menorah ? obj->spe > 1 : obj->quan > 1L;
/* timeout while away */
if (timeout != g.monstermoves) {
long how_long = g.monstermoves - timeout;
if (how_long >= obj->age) {
obj->age = 0;
end_burn(obj, FALSE);
if (menorah) {
obj->spe = 0; /* no more candles */
obj->owt = weight(obj);
} else if (Is_candle(obj) || obj->otyp == POT_OIL) {
/* get rid of candles and burning oil potions;
we know this object isn't carried by hero,
nor is it migrating */
obj_extract_self(obj);
obfree(obj, (struct obj *) 0);
obj = (struct obj *) 0;
}
} else {
obj->age -= how_long;
begin_burn(obj, TRUE);
}
return;
}
/* only interested in INVENT, FLOOR, and MINVENT */
if (get_obj_location(obj, &x, &y, 0)) {
canseeit = !Blind && cansee(x, y);
/* set `whose[]' to be "Your " or "Fred's " or "The goblin's " */
(void) Shk_Your(whose, obj);
} else {
canseeit = FALSE;
}
need_newsym = need_invupdate = FALSE;
/* obj->age is the age remaining at this point. */
switch (obj->otyp) {
case POT_OIL:
/* this should only be called when we run out */
if (canseeit) {
switch (obj->where) {
case OBJ_INVENT:
need_invupdate = TRUE;
/*FALLTHRU*/
case OBJ_MINVENT:
pline("%spotion of oil has burnt away.", whose);
break;
case OBJ_FLOOR:
You_see("a burning potion of oil go out.");
need_newsym = TRUE;
break;
}
}
end_burn(obj, FALSE); /* turn off light source */
if (carried(obj)) {
useupall(obj);
} else {
/* clear migrating obj's destination code before obfree
to avoid false complaint of deleting worn item */
if (obj->where == OBJ_MIGRATING)
obj->owornmask = 0L;
obj_extract_self(obj);
obfree(obj, (struct obj *) 0);
}
obj = (struct obj *) 0;
break;
case BRASS_LANTERN:
case OIL_LAMP:
switch ((int) obj->age) {
case 150:
case 100:
case 50:
if (canseeit) {
if (obj->otyp == BRASS_LANTERN)
lantern_message(obj);
else
see_lamp_flicker(obj,
obj->age == 50L ? " considerably" : "");
}
break;
case 25:
if (canseeit) {
if (obj->otyp == BRASS_LANTERN)
lantern_message(obj);
else {
switch (obj->where) {
case OBJ_INVENT:
case OBJ_MINVENT:
pline("%s seems about to go out.", Yname2(obj));
break;
case OBJ_FLOOR:
You_see("%s about to go out.", an(xname(obj)));
break;
}
}
}
break;
case 0:
/* even if blind you'll know if holding it */
if (canseeit || obj->where == OBJ_INVENT) {
switch (obj->where) {
case OBJ_INVENT:
need_invupdate = TRUE;
/*FALLTHRU*/
case OBJ_MINVENT:
if (obj->otyp == BRASS_LANTERN)
pline("%slantern has run out of power.", whose);
else
pline("%s has gone out.", Yname2(obj));
break;
case OBJ_FLOOR:
if (obj->otyp == BRASS_LANTERN)
You_see("a lantern run out of power.");
else
You_see("%s go out.", an(xname(obj)));
break;
}
}
end_burn(obj, FALSE);
break;
default:
/*
* Someone added fuel to the lamp while it was
* lit. Just fall through and let begin burn
* handle the new age.
*/
break;
}
if (obj->age)
begin_burn(obj, TRUE);
break;
case CANDELABRUM_OF_INVOCATION:
case TALLOW_CANDLE:
case WAX_CANDLE:
switch (obj->age) {
case 75:
if (canseeit)
switch (obj->where) {
case OBJ_INVENT:
case OBJ_MINVENT:
pline("%s%scandle%s getting short.", whose,
menorah ? "candelabrum's " : "",
many ? "s are" : " is");
break;
case OBJ_FLOOR:
You_see("%scandle%s getting short.",
menorah ? "a candelabrum's " : many ? "some "
: "a ",
many ? "s" : "");
break;
}
break;
case 15:
if (canseeit)
switch (obj->where) {
case OBJ_INVENT:
case OBJ_MINVENT:
pline("%s%scandle%s flame%s flicker%s low!", whose,
menorah ? "candelabrum's " : "", many ? "s'" : "'s",
many ? "s" : "", many ? "" : "s");
break;
case OBJ_FLOOR:
You_see("%scandle%s flame%s flicker low!",
menorah ? "a candelabrum's " : many ? "some "
: "a ",
many ? "s'" : "'s", many ? "s" : "");
break;
}
break;
case 0:
/* we know even if blind and in our inventory */
if (canseeit || obj->where == OBJ_INVENT) {
if (menorah) {
switch (obj->where) {
case OBJ_INVENT:
need_invupdate = TRUE;
/*FALLTHRU*/
case OBJ_MINVENT:
pline("%scandelabrum's flame%s.", whose,
many ? "s die" : " dies");
break;
case OBJ_FLOOR:
You_see("a candelabrum's flame%s die.",
many ? "s" : "");
break;
}
} else {
switch (obj->where) {
case OBJ_INVENT:
/* no need_invupdate for update_inventory() necessary;
useupall() -> freeinv() handles it */
/*FALLTHRU*/
case OBJ_MINVENT:
pline("%s %s consumed!", Yname2(obj),
many ? "are" : "is");
break;
case OBJ_FLOOR:
/*
You see some wax candles consumed!
You see a wax candle consumed!
*/
You_see("%s%s consumed!", many ? "some " : "",
many ? xname(obj) : an(xname(obj)));
need_newsym = TRUE;
break;
}
/* post message */
pline(Hallucination
? (many ? "They shriek!" : "It shrieks!")
: Blind ? "" : (many ? "Their flames die."
: "Its flame dies."));
}
}
end_burn(obj, FALSE);
if (menorah) {
obj->spe = 0;
obj->owt = weight(obj);
} else {
if (carried(obj)) {
useupall(obj);
} else {
/* clear migrating obj's destination code
so obfree won't think this item is worn */
if (obj->where == OBJ_MIGRATING)
obj->owornmask = 0L;
obj_extract_self(obj);
obfree(obj, (struct obj *) 0);
}
obj = (struct obj *) 0;
}
break; /* case [age ==] 0 */
default:
/*
* Someone added fuel (candles) to the menorah while
* it was lit. Just fall through and let begin burn
* handle the new age.
*/
break;
}
if (obj && obj->age)
begin_burn(obj, TRUE);
break; /* case [otyp ==] candelabrum|tallow_candle|wax_candle */
default:
impossible("burn_object: unexpected obj %s", xname(obj));
break;
}
if (need_newsym)
newsym(x, y);
if (need_invupdate)
update_inventory();
}
/*
* Start a burn timeout on the given object. If not "already lit" then
* create a light source for the vision system. There had better not
* be a burn already running on the object.
*
* Magic lamps stay lit as long as there's a genie inside, so don't start
* a timer.
*
* Burn rules:
* potions of oil, lamps & candles:
* age = # of turns of fuel left
* spe = <unused>
* magic lamps:
* age = <unused>
* spe = 0 not lightable, 1 lightable forever
* candelabrum:
* age = # of turns of fuel left
* spe = # of candles
*
* Once the burn begins, the age will be set to the amount of fuel
* remaining _once_the_burn_finishes_. If the burn is terminated
* early then fuel is added back.
*
* This use of age differs from the use of age for corpses and eggs.
* For the latter items, age is when the object was created, so we
* know when it becomes "bad".
*
* This is a "silent" routine - it should not print anything out.
*/
void
begin_burn(obj, already_lit)
struct obj *obj;
boolean already_lit;
{
int radius = 3;
long turns = 0;
boolean do_timer = TRUE;
if (obj->age == 0 && obj->otyp != MAGIC_LAMP && !artifact_light(obj))
return;
switch (obj->otyp) {
case MAGIC_LAMP:
obj->lamplit = 1;
do_timer = FALSE;
break;
case POT_OIL:
turns = obj->age;
if (obj->odiluted)
turns = (3L * turns + 2L) / 4L;
radius = 1; /* very dim light */
break;
case BRASS_LANTERN:
case OIL_LAMP:
/* magic times are 150, 100, 50, 25, and 0 */
if (obj->age > 150L)
turns = obj->age - 150L;
else if (obj->age > 100L)
turns = obj->age - 100L;
else if (obj->age > 50L)
turns = obj->age - 50L;
else if (obj->age > 25L)
turns = obj->age - 25L;
else
turns = obj->age;
break;
case CANDELABRUM_OF_INVOCATION:
case TALLOW_CANDLE:
case WAX_CANDLE:
/* magic times are 75, 15, and 0 */
if (obj->age > 75L)
turns = obj->age - 75L;
else if (obj->age > 15L)
turns = obj->age - 15L;
else
turns = obj->age;
radius = candle_light_range(obj);
break;
default:
/* [ALI] Support artifact light sources */
if (artifact_light(obj)) {
obj->lamplit = 1;
do_timer = FALSE;
radius = arti_light_radius(obj);
} else {
impossible("begin burn: unexpected %s", xname(obj));
turns = obj->age;
}
break;
}
if (do_timer) {
if (start_timer(turns, TIMER_OBJECT, BURN_OBJECT, obj_to_any(obj))) {
obj->lamplit = 1;
obj->age -= turns;
if (carried(obj) && !already_lit)
update_inventory();
} else {
obj->lamplit = 0;
}
} else {
if (carried(obj) && !already_lit)
update_inventory();
}
if (obj->lamplit && !already_lit) {
xchar x, y;
if (get_obj_location(obj, &x, &y, CONTAINED_TOO | BURIED_TOO))
new_light_source(x, y, radius, LS_OBJECT, obj_to_any(obj));
else
impossible("begin_burn: can't get obj position");
}
}
/*
* Stop a burn timeout on the given object if timer attached. Darken
* light source.
*/
void
end_burn(obj, timer_attached)
struct obj *obj;
boolean timer_attached;
{
if (!obj->lamplit) {
impossible("end_burn: obj %s not lit", xname(obj));
return;
}
if (obj->otyp == MAGIC_LAMP || artifact_light(obj))
timer_attached = FALSE;
if (!timer_attached) {
/* [DS] Cleanup explicitly, since timer cleanup won't happen */
del_light_source(LS_OBJECT, obj_to_any(obj));
obj->lamplit = 0;
if (obj->where == OBJ_INVENT)
update_inventory();
} else if (!stop_timer(BURN_OBJECT, obj_to_any(obj)))
impossible("end_burn: obj %s not timed!", xname(obj));
}
/*
* Cleanup a burning object if timer stopped.
*/
static void
cleanup_burn(arg, expire_time)
anything *arg;
long expire_time;
{
struct obj *obj = arg->a_obj;
if (!obj->lamplit) {
impossible("cleanup_burn: obj %s not lit", xname(obj));
return;
}
del_light_source(LS_OBJECT, obj_to_any(obj));
/* restore unused time */
obj->age += expire_time - g.monstermoves;
obj->lamplit = 0;
if (obj->where == OBJ_INVENT)
update_inventory();
}
void
do_storms()
{
int nstrike;
register int x, y;
int dirx, diry;
int count;
/* no lightning if not the air level or too often, even then */
if (!Is_airlevel(&u.uz) || rn2(8))
return;
/* the number of strikes is 8-log2(nstrike) */
for (nstrike = rnd(64); nstrike <= 64; nstrike *= 2) {
count = 0;
do {
x = rnd(COLNO - 1);
y = rn2(ROWNO);
} while (++count < 100 && levl[x][y].typ != CLOUD);
if (count < 100) {
dirx = rn2(3) - 1;
diry = rn2(3) - 1;
if (dirx != 0 || diry != 0)
buzz(-15, /* "monster" LIGHTNING spell */
8, x, y, dirx, diry);
}
}
if (levl[u.ux][u.uy].typ == CLOUD) {
/* Inside a cloud during a thunder storm is deafening. */
/* Even if already deaf, we sense the thunder's vibrations. */
pline("Kaboom!!! Boom!! Boom!!");
incr_itimeout(&HDeaf, rn1(20, 30));
g.context.botl = TRUE;
if (!u.uinvulnerable) {
stop_occupation();
nomul(-3);
g.multi_reason = "hiding from thunderstorm";
g.nomovemsg = 0;
}
} else
You_hear("a rumbling noise.");
}
/* -------------------------------------------------------------------------
*/
/*
* Generic Timeout Functions.
*
* Interface:
*
* General:
* boolean start_timer(long timeout,short kind,short func_index,
* anything *arg)
* Start a timer of kind 'kind' that will expire at time
* g.monstermoves+'timeout'. Call the function at 'func_index'
* in the timeout table using argument 'arg'. Return TRUE if
* a timer was started. This places the timer on a list ordered
* "sooner" to "later". If an object, increment the object's
* timer count.
*
* long stop_timer(short func_index, anything *arg)
* Stop a timer specified by the (func_index, arg) pair. This
* assumes that such a pair is unique. Return the time the
* timer would have gone off. If no timer is found, return 0.
* If an object, decrement the object's timer count.
*
* long peek_timer(short func_index, anything *arg)
* Return time specified timer will go off (0 if no such timer).
*
* void run_timers(void)
* Call timers that have timed out.
*
* Save/Restore:
* void save_timers(NHFILE *, int range)
* Save all timers of range 'range'. Range is either global
* or local. Global timers follow game play, local timers
* are saved with a level. Object and monster timers are
* saved using their respective id's instead of pointers.
*
* void restore_timers(NHFILE *, int range, long adjust)
* Restore timers of range 'range'. If from a ghost pile,
* adjust the timeout by 'adjust'. The object and monster
* ids are not restored until later.
*
* void relink_timers(boolean ghostly)
* Relink all object and monster timers that had been saved
* using their object's or monster's id number.
*
* Object Specific:
* void obj_move_timers(struct obj *src, struct obj *dest)
* Reassign all timers from src to dest.
*
* void obj_split_timers(struct obj *src, struct obj *dest)
* Duplicate all timers assigned to src and attach them to dest.
*
* void obj_stop_timers(struct obj *obj)
* Stop all timers attached to obj.
*
* boolean obj_has_timer(struct obj *object, short timer_type)
* Check whether object has a timer of type timer_type.
*/
static const char *FDECL(kind_name, (SHORT_P));
static void FDECL(print_queue, (winid, timer_element *));
static void FDECL(insert_timer, (timer_element *));
static timer_element *FDECL(remove_timer,
(timer_element **, SHORT_P, ANY_P *));
static void FDECL(write_timer, (NHFILE *, timer_element *));
static boolean FDECL(mon_is_local, (struct monst *));
static boolean FDECL(timer_is_local, (timer_element *));
static int FDECL(maybe_write_timer, (NHFILE *, int, BOOLEAN_P));
/* If defined, then include names when printing out the timer queue */
#define VERBOSE_TIMER
typedef struct {
timeout_proc f, cleanup;
#ifdef VERBOSE_TIMER
const char *name;
#define TTAB(a, b, c) \
{ \
a, b, c \
}
#else
#define TTAB(a, b, c) \
{ \
a, b \
}
#endif
} ttable;
/* table of timeout functions */
static const ttable timeout_funcs[NUM_TIME_FUNCS] = {
TTAB(rot_organic, (timeout_proc) 0, "rot_organic"),
TTAB(rot_corpse, (timeout_proc) 0, "rot_corpse"),
TTAB(revive_mon, (timeout_proc) 0, "revive_mon"),
TTAB(burn_object, cleanup_burn, "burn_object"),
TTAB(hatch_egg, (timeout_proc) 0, "hatch_egg"),
TTAB(fig_transform, (timeout_proc) 0, "fig_transform"),
TTAB(melt_ice_away, (timeout_proc) 0, "melt_ice_away")
};
#undef TTAB
static const char *
kind_name(kind)
short kind;
{
switch (kind) {
case TIMER_LEVEL:
return "level";
case TIMER_GLOBAL:
return "global";
case TIMER_OBJECT:
return "object";
case TIMER_MONSTER:
return "monster";
}
return "unknown";
}
static void
print_queue(win, base)
winid win;
timer_element *base;
{
timer_element *curr;
char buf[BUFSZ];
if (!base) {
putstr(win, 0, " <empty>");
} else {
putstr(win, 0, "timeout id kind call");
for (curr = base; curr; curr = curr->next) {
#ifdef VERBOSE_TIMER
Sprintf(buf, " %4ld %4ld %-6s %s(%s)", curr->timeout,
curr->tid, kind_name(curr->kind),
timeout_funcs[curr->func_index].name,
fmt_ptr((genericptr_t) curr->arg.a_void));
#else
Sprintf(buf, " %4ld %4ld %-6s #%d(%s)", curr->timeout,
curr->tid, kind_name(curr->kind), curr->func_index,
fmt_ptr((genericptr_t) curr->arg.a_void));
#endif
putstr(win, 0, buf);
}
}
}
int
wiz_timeout_queue()
{
winid win;
char buf[BUFSZ];
const char *propname;
long intrinsic;
int i, p, count, longestlen, ln, specindx = 0;
win = create_nhwindow(NHW_MENU); /* corner text window */
if (win == WIN_ERR)
return 0;
Sprintf(buf, "Current time = %ld.", g.monstermoves);
putstr(win, 0, buf);
putstr(win, 0, "");
putstr(win, 0, "Active timeout queue:");
putstr(win, 0, "");
print_queue(win, g.timer_base);
/* Timed properies:
* check every one; the majority can't obtain temporary timeouts in
* normal play but those can be forced via the #wizintrinsic command.
*/
count = longestlen = 0;
for (i = 0; (propname = propertynames[i].prop_name) != 0; ++i) {
p = propertynames[i].prop_num;
intrinsic = u.uprops[p].intrinsic;
if (intrinsic & TIMEOUT) {
++count;
if ((ln = (int) strlen(propname)) > longestlen)
longestlen = ln;
}
if (specindx == 0 && p == FIRE_RES)
specindx = i;
}
putstr(win, 0, "");
if (!count) {
putstr(win, 0, "No timed properties.");
} else {
putstr(win, 0, "Timed properties:");
putstr(win, 0, "");
for (i = 0; (propname = propertynames[i].prop_name) != 0; ++i) {
p = propertynames[i].prop_num;
intrinsic = u.uprops[p].intrinsic;
if (intrinsic & TIMEOUT) {
if (specindx > 0 && i >= specindx) {
putstr(win, 0, " -- settable via #wizinstrinc only --");
specindx = 0;
}
/* timeout value can be up to 16777215 (0x00ffffff) but
width of 4 digits should result in values lining up
almost all the time (if/when they don't, it won't
look nice but the information will still be accurate) */
Sprintf(buf, " %*s %4ld", -longestlen, propname,
(intrinsic & TIMEOUT));
putstr(win, 0, buf);
}
}
}
display_nhwindow(win, FALSE);
destroy_nhwindow(win);
return 0;
}
void
timer_sanity_check()
{
timer_element *curr;
/* this should be much more complete */
for (curr = g.timer_base; curr; curr = curr->next)
if (curr->kind == TIMER_OBJECT) {
struct obj *obj = curr->arg.a_obj;
if (obj->timed == 0) {
impossible("timer sanity: untimed obj %s, timer %ld",
fmt_ptr((genericptr_t) obj), curr->tid);
}
}
}
/*
* Pick off timeout elements from the global queue and call their functions.
* Do this until their time is less than or equal to the move count.
*/
void
run_timers()
{
timer_element *curr;
/*
* Always use the first element. Elements may be added or deleted at
* any time. The list is ordered, we are done when the first element
* is in the future.
*/
while (g.timer_base && g.timer_base->timeout <= g.monstermoves) {
curr = g.timer_base;
g.timer_base = curr->next;
if (curr->kind == TIMER_OBJECT)
(curr->arg.a_obj)->timed--;
(*timeout_funcs[curr->func_index].f)(&curr->arg, curr->timeout);
free((genericptr_t) curr);
}
}
/*
* Start a timer. Return TRUE if successful.
*/
boolean
start_timer(when, kind, func_index, arg)
long when;
short kind;
short func_index;
anything *arg;
{
timer_element *gnu, *dup;
if (kind < 0 || kind >= NUM_TIMER_KINDS
|| func_index < 0 || func_index >= NUM_TIME_FUNCS)
panic("start_timer (%s: %d)", kind_name(kind), (int) func_index);
/* fail if <arg> already has a <func_index> timer running */
for (dup = g.timer_base; dup; dup = dup->next)
if (dup->kind == kind
&& dup->func_index == func_index
&& dup->arg.a_void == arg->a_void)
break;
if (dup) {
char idbuf[QBUFSZ];
#ifdef VERBOSE_TIMER
Sprintf(idbuf, "%s timer", timeout_funcs[func_index].name);
#else
Sprintf(idbuf, "%s timer (%d)", kind_name(kind), (int) func_index);
#endif
impossible("Attempted to start duplicate %s, aborted.", idbuf);
return FALSE;
}
gnu = (timer_element *) alloc(sizeof *gnu);
(void) memset((genericptr_t) gnu, 0, sizeof *gnu);
gnu->next = 0;
gnu->tid = g.timer_id++;
gnu->timeout = g.monstermoves + when;
gnu->kind = kind;
gnu->needs_fixup = 0;
gnu->func_index = func_index;
gnu->arg = *arg;
insert_timer(gnu);
if (kind == TIMER_OBJECT) /* increment object's timed count */
(arg->a_obj)->timed++;
return TRUE;
}
/*
* Remove the timer from the current list and free it up. Return the time
* remaining until it would have gone off, 0 if not found.
*/
long
stop_timer(func_index, arg)
short func_index;
anything *arg;
{
timer_element *doomed;
long timeout;
doomed = remove_timer(&g.timer_base, func_index, arg);
if (doomed) {
timeout = doomed->timeout;
if (doomed->kind == TIMER_OBJECT)
(arg->a_obj)->timed--;
if (timeout_funcs[doomed->func_index].cleanup)
(*timeout_funcs[doomed->func_index].cleanup)(arg, timeout);
free((genericptr_t) doomed);
return (timeout - g.monstermoves);
}
return 0L;
}
/*
* Find the timeout of specified timer; return 0 if none.
*/
long
peek_timer(type, arg)
short type;
anything *arg;
{
timer_element *curr;
for (curr = g.timer_base; curr; curr = curr->next) {
if (curr->func_index == type && curr->arg.a_void == arg->a_void)
return curr->timeout;
}
return 0L;
}
/*
* Move all object timers from src to dest, leaving src untimed.
*/
void
obj_move_timers(src, dest)
struct obj *src, *dest;
{
int count;
timer_element *curr;
for (count = 0, curr = g.timer_base; curr; curr = curr->next)
if (curr->kind == TIMER_OBJECT && curr->arg.a_obj == src) {
curr->arg.a_obj = dest;
dest->timed++;
count++;
}
if (count != src->timed)
panic("obj_move_timers");
src->timed = 0;
}
/*
* Find all object timers and duplicate them for the new object "dest".
*/
void
obj_split_timers(src, dest)
struct obj *src, *dest;
{
timer_element *curr, *next_timer = 0;
for (curr = g.timer_base; curr; curr = next_timer) {
next_timer = curr->next; /* things may be inserted */
if (curr->kind == TIMER_OBJECT && curr->arg.a_obj == src) {
(void) start_timer(curr->timeout - g.monstermoves, TIMER_OBJECT,
curr->func_index, obj_to_any(dest));
}
}
}
/*
* Stop all timers attached to this object. We can get away with this because
* all object pointers are unique.
*/
void
obj_stop_timers(obj)
struct obj *obj;
{
timer_element *curr, *prev, *next_timer = 0;
for (prev = 0, curr = g.timer_base; curr; curr = next_timer) {
next_timer = curr->next;
if (curr->kind == TIMER_OBJECT && curr->arg.a_obj == obj) {
if (prev)
prev->next = curr->next;
else
g.timer_base = curr->next;
if (timeout_funcs[curr->func_index].cleanup)
(*timeout_funcs[curr->func_index].cleanup)(&curr->arg,
curr->timeout);
free((genericptr_t) curr);
} else {
prev = curr;
}
}
obj->timed = 0;
}
/*
* Check whether object has a timer of type timer_type.
*/
boolean
obj_has_timer(object, timer_type)
struct obj *object;
short timer_type;
{
long timeout = peek_timer(timer_type, obj_to_any(object));
return (boolean) (timeout != 0L);
}
/*
* Stop all timers of index func_index at this spot.
*
*/
void
spot_stop_timers(x, y, func_index)
xchar x, y;
short func_index;
{
timer_element *curr, *prev, *next_timer = 0;
long where = (((long) x << 16) | ((long) y));
for (prev = 0, curr = g.timer_base; curr; curr = next_timer) {
next_timer = curr->next;
if (curr->kind == TIMER_LEVEL && curr->func_index == func_index
&& curr->arg.a_long == where) {
if (prev)
prev->next = curr->next;
else
g.timer_base = curr->next;
if (timeout_funcs[curr->func_index].cleanup)
(*timeout_funcs[curr->func_index].cleanup)(&curr->arg,
curr->timeout);
free((genericptr_t) curr);
} else {
prev = curr;
}
}
}
/*
* When is the spot timer of type func_index going to expire?
* Returns 0L if no such timer.
*/
long
spot_time_expires(x, y, func_index)
xchar x, y;
short func_index;
{
timer_element *curr;
long where = (((long) x << 16) | ((long) y));
for (curr = g.timer_base; curr; curr = curr->next) {
if (curr->kind == TIMER_LEVEL && curr->func_index == func_index
&& curr->arg.a_long == where)
return curr->timeout;
}
return 0L;
}
long
spot_time_left(x, y, func_index)
xchar x, y;
short func_index;
{
long expires = spot_time_expires(x, y, func_index);
return (expires > 0L) ? expires - g.monstermoves : 0L;
}
/* Insert timer into the global queue */
static void
insert_timer(gnu)
timer_element *gnu;
{
timer_element *curr, *prev;
for (prev = 0, curr = g.timer_base; curr; prev = curr, curr = curr->next)
if (curr->timeout >= gnu->timeout)
break;
gnu->next = curr;
if (prev)
prev->next = gnu;
else
g.timer_base = gnu;
}
static timer_element *
remove_timer(base, func_index, arg)
timer_element **base;
short func_index;
anything *arg;
{
timer_element *prev, *curr;
for (prev = 0, curr = *base; curr; prev = curr, curr = curr->next)
if (curr->func_index == func_index && curr->arg.a_void == arg->a_void)
break;
if (curr) {
if (prev)
prev->next = curr->next;
else
*base = curr->next;
}
return curr;
}
static void
write_timer(nhfp, timer)
NHFILE *nhfp;
timer_element *timer;
{
anything arg_save;
arg_save = cg.zeroany;
switch (timer->kind) {
case TIMER_GLOBAL:
case TIMER_LEVEL:
/* assume no pointers in arg */
if (nhfp->structlevel)
bwrite(nhfp->fd, (genericptr_t) timer, sizeof(timer_element));
break;
case TIMER_OBJECT:
if (timer->needs_fixup) {
if (nhfp->structlevel)
bwrite(nhfp->fd, (genericptr_t)timer, sizeof(timer_element));
} else {
/* replace object pointer with id */
arg_save.a_obj = timer->arg.a_obj;
timer->arg = cg.zeroany;
timer->arg.a_uint = (arg_save.a_obj)->o_id;
timer->needs_fixup = 1;
if (nhfp->structlevel)
bwrite(nhfp->fd, (genericptr_t)timer, sizeof(timer_element));
timer->arg.a_obj = arg_save.a_obj;
timer->needs_fixup = 0;
}
break;
case TIMER_MONSTER:
if (timer->needs_fixup) {
if (nhfp->structlevel)
bwrite(nhfp->fd, (genericptr_t)timer, sizeof(timer_element));
} else {
/* replace monster pointer with id */
arg_save.a_monst = timer->arg.a_monst;
timer->arg = cg.zeroany;
timer->arg.a_uint = (arg_save.a_monst)->m_id;
timer->needs_fixup = 1;
if (nhfp->structlevel)
bwrite(nhfp->fd, (genericptr_t)timer, sizeof(timer_element));
timer->arg.a_monst = arg_save.a_monst;
timer->needs_fixup = 0;
}
break;
default:
panic("write_timer");
break;
}
}
/*
* Return TRUE if the object will stay on the level when the level is
* saved.
*/
boolean
obj_is_local(obj)
struct obj *obj;
{
switch (obj->where) {
case OBJ_INVENT:
case OBJ_MIGRATING:
return FALSE;
case OBJ_FLOOR:
case OBJ_BURIED:
return TRUE;
case OBJ_CONTAINED:
return obj_is_local(obj->ocontainer);
case OBJ_MINVENT:
return mon_is_local(obj->ocarry);
}
panic("obj_is_local");
return FALSE;
}
/*
* Return TRUE if the given monster will stay on the level when the
* level is saved.
*/
static boolean
mon_is_local(mon)
struct monst *mon;
{
struct monst *curr;
for (curr = g.migrating_mons; curr; curr = curr->nmon)
if (curr == mon)
return FALSE;
/* `g.mydogs' is used during level changes, never saved and restored */
for (curr = g.mydogs; curr; curr = curr->nmon)
if (curr == mon)
return FALSE;
return TRUE;
}
/*
* Return TRUE if the timer is attached to something that will stay on the
* level when the level is saved.
*/
static boolean
timer_is_local(timer)
timer_element *timer;
{
switch (timer->kind) {
case TIMER_LEVEL:
return TRUE;
case TIMER_GLOBAL:
return FALSE;
case TIMER_OBJECT:
return obj_is_local(timer->arg.a_obj);
case TIMER_MONSTER:
return mon_is_local(timer->arg.a_monst);
}
panic("timer_is_local");
return FALSE;
}
/*
* Part of the save routine. Count up the number of timers that would
* be written. If write_it is true, actually write the timer.
*/
static int
maybe_write_timer(nhfp, range, write_it)
NHFILE *nhfp;
int range;
boolean write_it;
{
int count = 0;
timer_element *curr;
for (curr = g.timer_base; curr; curr = curr->next) {
if (range == RANGE_GLOBAL) {
/* global timers */
if (!timer_is_local(curr)) {
count++;
if (write_it) write_timer(nhfp, curr);
}
} else {
/* local timers */
if (timer_is_local(curr)) {
count++;
if (write_it) write_timer(nhfp, curr);
}
}
}
return count;
}
/*
* Save part of the timer list. The parameter 'range' specifies either
* global or level timers to save. The timer ID is saved with the global
* timers.
*
* Global range:
* + timeouts that follow the hero (global)
* + timeouts that follow obj & monst that are migrating
*
* Level range:
* + timeouts that are level specific (e.g. storms)
* + timeouts that stay with the level (obj & monst)
*/
void
save_timers(nhfp, range)
NHFILE *nhfp;
int range;
{
timer_element *curr, *prev, *next_timer = 0;
int count;
if (perform_bwrite(nhfp)) {
if (range == RANGE_GLOBAL) {
if (nhfp->structlevel)
bwrite(nhfp->fd, (genericptr_t) &g.timer_id, sizeof(g.timer_id));
}
count = maybe_write_timer(nhfp, range, FALSE);
if (nhfp->structlevel)
bwrite(nhfp->fd, (genericptr_t) &count, sizeof count);
(void) maybe_write_timer(nhfp, range, TRUE);
}
if (release_data(nhfp)) {
for (prev = 0, curr = g.timer_base; curr; curr = next_timer) {
next_timer = curr->next; /* in case curr is removed */
if (!(!!(range == RANGE_LEVEL) ^ !!timer_is_local(curr))) {
if (prev)
prev->next = curr->next;
else
g.timer_base = curr->next;
free((genericptr_t) curr);
/* prev stays the same */
} else {
prev = curr;
}
}
}
}
/*
* Pull in the structures from disk, but don't recalculate the object and
* monster pointers.
*/
void
restore_timers(nhfp, range, adjust)
NHFILE *nhfp;
int range;
long adjust; /* how much to adjust timeout */
{
int count = 0;
timer_element *curr;
boolean ghostly = (nhfp->ftype == NHF_BONESFILE); /* from a ghost level */
if (range == RANGE_GLOBAL) {
if (nhfp->structlevel)
mread(nhfp->fd, (genericptr_t) &g.timer_id, sizeof g.timer_id);
}
/* restore elements */
if (nhfp->structlevel)
mread(nhfp->fd, (genericptr_t) &count, sizeof count);
while (count-- > 0) {
curr = (timer_element *) alloc(sizeof(timer_element));
if (nhfp->structlevel)
mread(nhfp->fd, (genericptr_t) curr, sizeof(timer_element));
if (ghostly)
curr->timeout += adjust;
insert_timer(curr);
}
}
/* to support '#stats' wizard-mode command */
void
timer_stats(hdrfmt, hdrbuf, count, size)
const char *hdrfmt;
char *hdrbuf;
long *count, *size;
{
timer_element *te;
Sprintf(hdrbuf, hdrfmt, (long) sizeof (timer_element));
*count = *size = 0L;
for (te = g.timer_base; te; te = te->next) {
++*count;
*size += (long) sizeof *te;
}
}
/* reset all timers that are marked for reseting */
void
relink_timers(ghostly)
boolean ghostly;
{
timer_element *curr;
unsigned nid;
for (curr = g.timer_base; curr; curr = curr->next) {
if (curr->needs_fixup) {
if (curr->kind == TIMER_OBJECT) {
if (ghostly) {
if (!lookup_id_mapping(curr->arg.a_uint, &nid))
panic("relink_timers 1");
} else
nid = curr->arg.a_uint;
curr->arg.a_obj = find_oid(nid);
if (!curr->arg.a_obj)
panic("cant find o_id %d", nid);
curr->needs_fixup = 0;
} else if (curr->kind == TIMER_MONSTER) {
panic("relink_timers: no monster timer implemented");
} else
panic("relink_timers 2");
}
}
}
/*timeout.c*/