From a bug report. The first report complained about levitation
allowing you to move through water on the Plane of Water, something that's
come up in the newsgroup lots of times (mostly about how levitation is
the best way to get around, only occasionally wondering why it works:
water walking doesn't work there because there's no surface, so where are
you levitating such that you're kept dry?) The second report complained
about being told you were floating up if you put on a ring of levitation
while stuck inside a wall (perhaps after being stranded when polymorph
into xorn form ended).
This implements intrinsic blocking for levitation and also for
flying. Being inside solid rock (or closed door) anywhere and being in
water on the Plane of Water are the things that do it for levitation;
those two and levitating are what do it for flying. Entering such
terrain turns off ability to float/fly, and leaving there turns it back
on; starting levitation blocks flight, ending it unblocks (levitation
has always overridden flying's ability to reach the floor). Being able
to phase through rock doesn't prevent levitation and flight from being
blocked while in rock; you aren't floating or flying in that situation.
This commit is contained in:
@@ -392,6 +392,8 @@ if hero was blind, killing the vault guard while in his temporary corridor
|
|||||||
would leave hero encased in solid rock without informing player
|
would leave hero encased in solid rock without informing player
|
||||||
if hero dragged iron ball into temporary corridor and then killed vault guard,
|
if hero dragged iron ball into temporary corridor and then killed vault guard,
|
||||||
the portion of corridor currently in existence would become permanent
|
the portion of corridor currently in existence would become permanent
|
||||||
|
on Plane of Water, restrict levitation and flying to air bubbles;
|
||||||
|
elsewhere, restrict them such that they don't work inside solid rock
|
||||||
|
|
||||||
|
|
||||||
Platform- and/or Interface-Specific Fixes
|
Platform- and/or Interface-Specific Fixes
|
||||||
|
|||||||
@@ -217,7 +217,8 @@
|
|||||||
|
|
||||||
#define HLevitation u.uprops[LEVITATION].intrinsic
|
#define HLevitation u.uprops[LEVITATION].intrinsic
|
||||||
#define ELevitation u.uprops[LEVITATION].extrinsic
|
#define ELevitation u.uprops[LEVITATION].extrinsic
|
||||||
#define Levitation (HLevitation || ELevitation)
|
#define BLevitation u.uprops[LEVITATION].blocked
|
||||||
|
#define Levitation ((HLevitation || ELevitation) && !BLevitation)
|
||||||
/* Can't touch surface, can't go under water; overrides all others */
|
/* Can't touch surface, can't go under water; overrides all others */
|
||||||
#define Lev_at_will (((HLevitation & I_SPECIAL) != 0L || \
|
#define Lev_at_will (((HLevitation & I_SPECIAL) != 0L || \
|
||||||
(ELevitation & W_ARTI) != 0L) && \
|
(ELevitation & W_ARTI) != 0L) && \
|
||||||
@@ -226,11 +227,13 @@
|
|||||||
|
|
||||||
#define HFlying u.uprops[FLYING].intrinsic
|
#define HFlying u.uprops[FLYING].intrinsic
|
||||||
#define EFlying u.uprops[FLYING].extrinsic
|
#define EFlying u.uprops[FLYING].extrinsic
|
||||||
|
#define BFlying u.uprops[FLYING].blocked
|
||||||
#ifdef STEED
|
#ifdef STEED
|
||||||
# define Flying (HFlying || EFlying || \
|
# define Flying ((HFlying || EFlying || \
|
||||||
(u.usteed && is_flyer(u.usteed->data)))
|
(u.usteed && is_flyer(u.usteed->data))) && \
|
||||||
|
!BFlying)
|
||||||
#else
|
#else
|
||||||
# define Flying (HFlying || EFlying)
|
# define Flying ((HFlying || EFlying) && !BFlying)
|
||||||
#endif
|
#endif
|
||||||
/* May touch surface; does not override any others */
|
/* May touch surface; does not override any others */
|
||||||
|
|
||||||
|
|||||||
37
src/cmd.c
37
src/cmd.c
@@ -1415,12 +1415,8 @@ int final;
|
|||||||
you_are("levitating, at will", "");
|
you_are("levitating, at will", "");
|
||||||
else
|
else
|
||||||
enl_msg(youtoo, are, were, "levitating", from_what(LEVITATION));
|
enl_msg(youtoo, are, were, "levitating", from_what(LEVITATION));
|
||||||
}
|
} else if (Flying) { /* can only fly when not levitating */
|
||||||
if (Flying) {
|
enl_msg(youtoo, are, were, "flying", from_what(FLYING));
|
||||||
if (Levitation)
|
|
||||||
you_can("also fly", from_what(FLYING));
|
|
||||||
else
|
|
||||||
enl_msg(youtoo, are, were, "flying", from_what(FLYING));
|
|
||||||
}
|
}
|
||||||
if (Underwater) {
|
if (Underwater) {
|
||||||
you_are("underwater", "");
|
you_are("underwater", "");
|
||||||
@@ -1621,6 +1617,8 @@ attributes_enlightenment(mode, final)
|
|||||||
int mode;
|
int mode;
|
||||||
int final;
|
int final;
|
||||||
{
|
{
|
||||||
|
static NEARDATA const char
|
||||||
|
if_surroundings_permitted[] = " if surroundings permitted";
|
||||||
int ltmp, armpro;
|
int ltmp, armpro;
|
||||||
char buf[BUFSZ];
|
char buf[BUFSZ];
|
||||||
|
|
||||||
@@ -1762,6 +1760,33 @@ int final;
|
|||||||
if (Teleportation) you_can("teleport",from_what(TELEPORT));
|
if (Teleportation) you_can("teleport",from_what(TELEPORT));
|
||||||
if (Teleport_control)
|
if (Teleport_control)
|
||||||
you_have("teleport control",from_what(TELEPORT_CONTROL));
|
you_have("teleport control",from_what(TELEPORT_CONTROL));
|
||||||
|
/* actively levitating handled earlier as a status condition */
|
||||||
|
if (BLevitation) { /* levitation is blocked */
|
||||||
|
long save_BLev = BLevitation;
|
||||||
|
|
||||||
|
BLevitation = 0L;
|
||||||
|
if (Levitation)
|
||||||
|
enl_msg(You_, "would levitate", "would have levitated",
|
||||||
|
if_surroundings_permitted, "");
|
||||||
|
BLevitation = save_BLev;
|
||||||
|
}
|
||||||
|
/* actively flying handled earlier as a status condition */
|
||||||
|
if (BFlying) { /* flight is blocked */
|
||||||
|
long save_BFly = BFlying;
|
||||||
|
|
||||||
|
BFlying = 0L;
|
||||||
|
if (Flying) {
|
||||||
|
Sprintf(buf, "%s%s%s",
|
||||||
|
(save_BFly & I_SPECIAL) ?
|
||||||
|
" if you weren't levitating" : "",
|
||||||
|
((save_BFly & (FROMOUTSIDE|I_SPECIAL)) ==
|
||||||
|
(FROMOUTSIDE|I_SPECIAL)) ? " and" : "",
|
||||||
|
(save_BFly & FROMOUTSIDE) ?
|
||||||
|
if_surroundings_permitted : (const char *)"");
|
||||||
|
enl_msg(You_, "would fly", "would have flown", buf, "");
|
||||||
|
}
|
||||||
|
BFlying = save_BFly;
|
||||||
|
}
|
||||||
/* actively walking on water handled earlier as a status condition */
|
/* actively walking on water handled earlier as a status condition */
|
||||||
if (Wwalking && !walking_on_water())
|
if (Wwalking && !walking_on_water())
|
||||||
you_can("walk on water",from_what(WWALKING));
|
you_can("walk on water",from_what(WWALKING));
|
||||||
|
|||||||
@@ -190,7 +190,7 @@ Boots_on(VOID_ARGS)
|
|||||||
incr_itimeout(&HFumbling, rnd(20));
|
incr_itimeout(&HFumbling, rnd(20));
|
||||||
break;
|
break;
|
||||||
case LEVITATION_BOOTS:
|
case LEVITATION_BOOTS:
|
||||||
if (!oldprop && !HLevitation) {
|
if (!oldprop && !HLevitation && !BLevitation) {
|
||||||
makeknown(uarmf->otyp);
|
makeknown(uarmf->otyp);
|
||||||
float_up();
|
float_up();
|
||||||
spoteffects(FALSE);
|
spoteffects(FALSE);
|
||||||
@@ -241,7 +241,8 @@ Boots_off(VOID_ARGS)
|
|||||||
HFumbling = EFumbling = 0;
|
HFumbling = EFumbling = 0;
|
||||||
break;
|
break;
|
||||||
case LEVITATION_BOOTS:
|
case LEVITATION_BOOTS:
|
||||||
if (!oldprop && !HLevitation && !context.takeoff.cancelled_don) {
|
if (!oldprop && !HLevitation && !BLevitation &&
|
||||||
|
!context.takeoff.cancelled_don) {
|
||||||
(void) float_down(0L, 0L);
|
(void) float_down(0L, 0L);
|
||||||
makeknown(otyp);
|
makeknown(otyp);
|
||||||
}
|
}
|
||||||
@@ -875,7 +876,7 @@ register struct obj *obj;
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case RIN_LEVITATION:
|
case RIN_LEVITATION:
|
||||||
if (!oldprop && !HLevitation) {
|
if (!oldprop && !HLevitation && !BLevitation) {
|
||||||
float_up();
|
float_up();
|
||||||
learnring(obj, TRUE);
|
learnring(obj, TRUE);
|
||||||
spoteffects(FALSE); /* for sinks */
|
spoteffects(FALSE); /* for sinks */
|
||||||
@@ -987,8 +988,10 @@ boolean gone;
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case RIN_LEVITATION:
|
case RIN_LEVITATION:
|
||||||
(void) float_down(0L, 0L);
|
if (!BLevitation) {
|
||||||
if (!Levitation) learnring(obj, TRUE);
|
(void) float_down(0L, 0L);
|
||||||
|
if (!Levitation) learnring(obj, TRUE);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case RIN_GAIN_STRENGTH:
|
case RIN_GAIN_STRENGTH:
|
||||||
which = A_STR;
|
which = A_STR;
|
||||||
|
|||||||
39
src/hack.c
39
src/hack.c
@@ -14,6 +14,7 @@ STATIC_DCL void NDECL(dosinkfall);
|
|||||||
#endif
|
#endif
|
||||||
STATIC_DCL boolean FDECL(findtravelpath, (BOOLEAN_P));
|
STATIC_DCL boolean FDECL(findtravelpath, (BOOLEAN_P));
|
||||||
STATIC_DCL boolean FDECL(trapmove, (int,int,struct trap *));
|
STATIC_DCL boolean FDECL(trapmove, (int,int,struct trap *));
|
||||||
|
STATIC_DCL void NDECL(switch_terrain);
|
||||||
STATIC_DCL struct monst *FDECL(monstinroom, (struct permonst *,int));
|
STATIC_DCL struct monst *FDECL(monstinroom, (struct permonst *,int));
|
||||||
STATIC_DCL boolean FDECL(doorless_door, (int,int));
|
STATIC_DCL boolean FDECL(doorless_door, (int,int));
|
||||||
STATIC_DCL void FDECL(move_update, (BOOLEAN_P));
|
STATIC_DCL void FDECL(move_update, (BOOLEAN_P));
|
||||||
@@ -1640,6 +1641,40 @@ invocation_message()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* moving onto different terrain;
|
||||||
|
might be going into solid rock, inhibiting levitation or flight,
|
||||||
|
or coming back out of such, reinstating levitation/flying */
|
||||||
|
STATIC_OVL void
|
||||||
|
switch_terrain()
|
||||||
|
{
|
||||||
|
struct rm *lev = &levl[u.ux][u.uy];
|
||||||
|
boolean blocklev = (IS_ROCK(lev->typ) || closed_door(u.ux, u.uy) ||
|
||||||
|
(Is_waterlevel(&u.uz) && lev->typ == WATER));
|
||||||
|
|
||||||
|
if (blocklev) {
|
||||||
|
/* called from spoteffects(), skip float_down() */
|
||||||
|
if (Levitation) You_cant("levitate in here.");
|
||||||
|
BLevitation |= FROMOUTSIDE;
|
||||||
|
} else if (BLevitation) {
|
||||||
|
BLevitation &= ~FROMOUTSIDE;
|
||||||
|
if (Levitation) float_up();
|
||||||
|
}
|
||||||
|
/* the same terrain that blocks levitation also blocks flight */
|
||||||
|
if (blocklev) {
|
||||||
|
if (Flying) You_cant("fly in here.");
|
||||||
|
BFlying |= FROMOUTSIDE;
|
||||||
|
} else if (BFlying) {
|
||||||
|
BFlying &= ~FROMOUTSIDE;
|
||||||
|
/* in case BFlying got set due to levitation which then went away
|
||||||
|
while blocked; there'd be no float_down() with reset of BFlying */
|
||||||
|
if (!HLevitation && !ELevitation) BFlying &= ~I_SPECIAL;
|
||||||
|
/* [minor bug: we don't know whether this is beginning flight or
|
||||||
|
resuming it; that could be tracked so that this message could
|
||||||
|
be adjusted to "resume flying", but isn't worth the effort...] */
|
||||||
|
if (Flying) You("start flying.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* extracted from spoteffects; called by spoteffects to check for entering or
|
/* extracted from spoteffects; called by spoteffects to check for entering or
|
||||||
leaving a pool of water/lava, and by moveloop to check for staying on one */
|
leaving a pool of water/lava, and by moveloop to check for staying on one */
|
||||||
boolean
|
boolean
|
||||||
@@ -1741,6 +1776,10 @@ boolean pick;
|
|||||||
spotterrain = levl[u.ux][u.uy].typ;
|
spotterrain = levl[u.ux][u.uy].typ;
|
||||||
spotloc.x = u.ux, spotloc.y = u.uy;
|
spotloc.x = u.ux, spotloc.y = u.uy;
|
||||||
|
|
||||||
|
/* moving onto different terrain might cause Levitation to toggle */
|
||||||
|
if (spotterrain != levl[u.ux0][u.uy0].typ || !on_level(&u.uz, &u.uz0))
|
||||||
|
switch_terrain();
|
||||||
|
|
||||||
if (pooleffects(TRUE)) goto spotdone;
|
if (pooleffects(TRUE)) goto spotdone;
|
||||||
|
|
||||||
check_special_room(FALSE);
|
check_special_room(FALSE);
|
||||||
|
|||||||
@@ -88,6 +88,11 @@ set_uasmon()
|
|||||||
PROPSET(PASSES_WALLS, passes_walls(mdat));
|
PROPSET(PASSES_WALLS, passes_walls(mdat));
|
||||||
PROPSET(REGENERATION, regenerates(mdat));
|
PROPSET(REGENERATION, regenerates(mdat));
|
||||||
PROPSET(REFLECTING, (mdat == &mons[PM_SILVER_DRAGON]));
|
PROPSET(REFLECTING, (mdat == &mons[PM_SILVER_DRAGON]));
|
||||||
|
/* levitation overrides flight */
|
||||||
|
if (HLevitation || ELevitation)
|
||||||
|
BFlying |= I_SPECIAL;
|
||||||
|
else
|
||||||
|
BFlying &= ~I_SPECIAL;
|
||||||
|
|
||||||
#undef PROPSET
|
#undef PROPSET
|
||||||
|
|
||||||
|
|||||||
47
src/potion.c
47
src/potion.c
@@ -904,33 +904,36 @@ peffects(otmp)
|
|||||||
case POT_LEVITATION:
|
case POT_LEVITATION:
|
||||||
case SPE_LEVITATION:
|
case SPE_LEVITATION:
|
||||||
if (otmp->cursed) HLevitation &= ~I_SPECIAL;
|
if (otmp->cursed) HLevitation &= ~I_SPECIAL;
|
||||||
if(!Levitation) {
|
if (!Levitation && !BLevitation) {
|
||||||
/* kludge to ensure proper operation of float_up() */
|
/* kludge to ensure proper operation of float_up() */
|
||||||
set_itimeout(&HLevitation, 1L);
|
set_itimeout(&HLevitation, 1L);
|
||||||
float_up();
|
float_up();
|
||||||
/* reverse kludge */
|
/* reverse kludge */
|
||||||
set_itimeout(&HLevitation, 0L);
|
set_itimeout(&HLevitation, 0L);
|
||||||
if (otmp->cursed && !Is_waterlevel(&u.uz)) {
|
if (otmp->cursed) {
|
||||||
if((u.ux != xupstair || u.uy != yupstair)
|
if ((u.ux == xupstair && u.uy == yupstair) ||
|
||||||
&& (u.ux != sstairs.sx || u.uy != sstairs.sy || !sstairs.up)
|
(sstairs.up && u.ux == sstairs.sx &&
|
||||||
&& (!xupladder || u.ux != xupladder || u.uy != yupladder)
|
u.uy == sstairs.sy) ||
|
||||||
) {
|
(xupladder && u.ux == xupladder &&
|
||||||
int dmg = uarmh ? 1 : rnd(10);
|
u.uy == yupladder)) {
|
||||||
You("hit your %s on the %s.",
|
(void) doup();
|
||||||
body_part(HEAD),
|
} else if (has_ceiling(&u.uz)) {
|
||||||
ceiling(u.ux,u.uy));
|
int dmg = uarmh ? 1 : rnd(10);
|
||||||
losehp(Maybe_Half_Phys(dmg),
|
|
||||||
"colliding with the ceiling",
|
You("hit your %s on the %s.",
|
||||||
KILLED_BY);
|
body_part(HEAD), ceiling(u.ux,u.uy));
|
||||||
} else (void) doup();
|
losehp(Maybe_Half_Phys(dmg),
|
||||||
|
"colliding with the ceiling", KILLED_BY);
|
||||||
}
|
}
|
||||||
|
} /*cursed*/
|
||||||
} else
|
} else
|
||||||
nothing++;
|
nothing++;
|
||||||
if (otmp->blessed) {
|
if (otmp->blessed) {
|
||||||
incr_itimeout(&HLevitation, rn1(50,250));
|
incr_itimeout(&HLevitation, rn1(50,250));
|
||||||
HLevitation |= I_SPECIAL;
|
HLevitation |= I_SPECIAL;
|
||||||
} else incr_itimeout(&HLevitation, rn1(140,10));
|
} else
|
||||||
spoteffects(FALSE); /* for sinks */
|
incr_itimeout(&HLevitation, rn1(140,10));
|
||||||
|
if (Levitation) spoteffects(FALSE); /* for sinks */
|
||||||
break;
|
break;
|
||||||
case POT_GAIN_ENERGY: /* M. Stephenson */
|
case POT_GAIN_ENERGY: /* M. Stephenson */
|
||||||
{ register int num;
|
{ register int num;
|
||||||
|
|||||||
12
src/trap.c
12
src/trap.c
@@ -2609,8 +2609,10 @@ float_up()
|
|||||||
body_part(LEG));
|
body_part(LEG));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#if 0
|
||||||
else if(Is_waterlevel(&u.uz))
|
else if(Is_waterlevel(&u.uz))
|
||||||
pline("It feels as though you've lost some weight.");
|
pline("It feels as though you've lost some weight.");
|
||||||
|
#endif
|
||||||
else if(u.uinwater)
|
else if(u.uinwater)
|
||||||
spoteffects(TRUE);
|
spoteffects(TRUE);
|
||||||
else if(u.uswallow)
|
else if(u.uswallow)
|
||||||
@@ -2637,6 +2639,8 @@ float_up()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
if (Flying) You("are no longer able to control your flight.");
|
||||||
|
BFlying |= I_SPECIAL;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2667,6 +2671,14 @@ long hmask, emask; /* might cancel timeout */
|
|||||||
ELevitation &= ~emask;
|
ELevitation &= ~emask;
|
||||||
if(Levitation) return(0); /* maybe another ring/potion/boots */
|
if(Levitation) return(0); /* maybe another ring/potion/boots */
|
||||||
nomul(0); /* stop running or resting */
|
nomul(0); /* stop running or resting */
|
||||||
|
if (BFlying) {
|
||||||
|
/* controlled flight no longer overridden by levitation */
|
||||||
|
BFlying &= ~I_SPECIAL;
|
||||||
|
if (Flying) {
|
||||||
|
You("have stopped levitating and are now flying.");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
if(u.uswallow) {
|
if(u.uswallow) {
|
||||||
You("float down, but you are still %s.",
|
You("float down, but you are still %s.",
|
||||||
is_animal(u.ustuck->data) ? "swallowed" : "engulfed");
|
is_animal(u.ustuck->data) ? "swallowed" : "engulfed");
|
||||||
|
|||||||
Reference in New Issue
Block a user