Undid unspeaking of wave, fixed test again.
Changed property math to helper function.
This commit is contained in:
parent
eeda78a210
commit
993194bd4d
3 changed files with 39 additions and 21 deletions
72
actions.c
72
actions.c
|
@ -1086,45 +1086,51 @@ static int wake(token_t verb, token_t obj)
|
|||
}
|
||||
}
|
||||
|
||||
static int wave(token_t verb, token_t obj)
|
||||
/* Wave. No effect unless waving rod at fissure or at bird. */
|
||||
static token_t birdspeak(void)
|
||||
{
|
||||
if ((!TOTING(obj)) && (obj != ROD || !TOTING(ROD2))) {
|
||||
rspeak(ARENT_CARRYING);
|
||||
return GO_CLEAROBJ;
|
||||
}
|
||||
if (obj != ROD ||
|
||||
!TOTING(obj) ||
|
||||
(!HERE(BIRD) && (game.closng || !AT(FISSURE)))) {
|
||||
rspeak(actions[verb].message);
|
||||
return GO_CLEAROBJ;
|
||||
}
|
||||
if (game.prop[BIRD] == BIRD_UNCAGED && game.loc == game.place[STEPS] && game.prop[JADE] < 0) {
|
||||
drop(JADE, game.loc);
|
||||
game.prop[JADE] = 0;
|
||||
--game.tally;
|
||||
rspeak(NECKLACE_FLY);
|
||||
return GO_CLEAROBJ;
|
||||
} else {
|
||||
if (game.closed) {
|
||||
rspeak(actions[verb].message);
|
||||
return GO_DWARFWAKE;
|
||||
}
|
||||
if (game.closng || !AT(FISSURE)) {
|
||||
rspeak(actions[verb].message);
|
||||
return GO_CLEAROBJ;
|
||||
}
|
||||
if (HERE(BIRD)) {
|
||||
switch (game.prop[BIRD]) {
|
||||
case BIRD_UNCAGED:
|
||||
case BIRD_FOREST_UNCAGED:
|
||||
rspeak(FREE_FLY);
|
||||
break;
|
||||
return FREE_FLY;
|
||||
case BIRD_CAGED:
|
||||
rspeak(CAGE_FLY);
|
||||
break;
|
||||
return CAGE_FLY;
|
||||
}
|
||||
}
|
||||
|
||||
static int wave(token_t verb, token_t obj)
|
||||
/* Wave. No effect unless waving rod at fissure or at bird. */
|
||||
{
|
||||
int spk = actions[verb].message;
|
||||
if ((!TOTING(obj)) && (obj != ROD || !TOTING(ROD2)))
|
||||
spk = ARENT_CARRYING;
|
||||
if (obj != ROD ||
|
||||
!TOTING(obj) ||
|
||||
(!HERE(BIRD) && (game.closng || !AT(FISSURE)))) {
|
||||
rspeak(spk);
|
||||
return GO_CLEAROBJ;
|
||||
}
|
||||
|
||||
if (HERE(BIRD))
|
||||
spk = birdspeak();
|
||||
if (spk == FREE_FLY && game.loc == game.place[STEPS] && game.prop[JADE] < 0) {
|
||||
drop(JADE, game.loc);
|
||||
game.prop[JADE] = 0;
|
||||
--game.tally;
|
||||
spk = NECKLACE_FLY;
|
||||
rspeak(spk);
|
||||
return GO_CLEAROBJ;
|
||||
} else {
|
||||
if (game.closed) {
|
||||
rspeak(spk);
|
||||
return GO_DWARFWAKE;
|
||||
}
|
||||
if (game.closng || !AT(FISSURE)) {
|
||||
rspeak(spk);
|
||||
return GO_CLEAROBJ;
|
||||
}
|
||||
if (HERE(BIRD))
|
||||
rspeak(spk);
|
||||
|
||||
/* FIXME: Arithemetic on property values */
|
||||
game.prop[FISSURE] = 1 - game.prop[FISSURE];
|
||||
pspeak(FISSURE, look, 2 - game.prop[FISSURE], true);
|
||||
|
@ -1132,6 +1138,8 @@ static int wave(token_t verb, token_t obj)
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
int action(struct command_t *command)
|
||||
/* Analyse a verb. Remember what it was, go back for object if second word
|
||||
* unless verb is "say", which snarfs arbitrary second word.
|
||||
|
|
|
@ -179,12 +179,20 @@ OK
|
|||
|
||||
OK
|
||||
|
||||
> get rod
|
||||
|
||||
OK
|
||||
|
||||
> wave rod
|
||||
|
||||
The bird flies agitatedly about the cage.
|
||||
|
||||
> attack bird
|
||||
|
||||
The little bird is now dead. Its body disappears.
|
||||
|
||||
|
||||
You scored 30 out of a possible 430, using 30 turns.
|
||||
You scored 30 out of a possible 430, using 32 turns.
|
||||
|
||||
You are obviously a rank amateur. Better luck next time.
|
||||
|
||||
|
|
|
@ -33,4 +33,6 @@ y
|
|||
y
|
||||
drop rod
|
||||
take bird
|
||||
get rod
|
||||
wave rod
|
||||
attack bird
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue