Supply missing implementation of nodwarf bit in travel rules.
This commit is contained in:
parent
0aa70d04cf
commit
f1b37ea163
3 changed files with 15 additions and 8 deletions
|
@ -56,6 +56,7 @@
|
||||||
# [with, OBJ] Must be carrying or in room with
|
# [with, OBJ] Must be carrying or in room with
|
||||||
# [not, OBJ N] Property of named OBJ must not be N.
|
# [not, OBJ N] Property of named OBJ must not be N.
|
||||||
# N may be numeric or a state label.
|
# N may be numeric or a state label.
|
||||||
|
# [nodwarves] Dwarves must skip this rule.
|
||||||
# All attributes are optional except the long description and
|
# All attributes are optional except the long description and
|
||||||
# travel. Order of locations is not significant.
|
# travel. Order of locations is not significant.
|
||||||
#
|
#
|
||||||
|
@ -1244,7 +1245,7 @@ locations: !!omap
|
||||||
travel: [
|
travel: [
|
||||||
{verbs: ['EAST'], action: [goto, LOC_LONGEAST]},
|
{verbs: ['EAST'], action: [goto, LOC_LONGEAST]},
|
||||||
{verbs: ['NORTH'], action: [goto, LOC_CROSSOVER]},
|
{verbs: ['NORTH'], action: [goto, LOC_CROSSOVER]},
|
||||||
{verbs: ['SOUTH'], cond: [carry, OBJ_0], action: [goto, LOC_DIFFERENT1]},
|
{verbs: ['SOUTH'], cond: ["nodwarves"], action: [goto, LOC_DIFFERENT1]},
|
||||||
]
|
]
|
||||||
- LOC_CROSSOVER:
|
- LOC_CROSSOVER:
|
||||||
description:
|
description:
|
||||||
|
|
2
main.c
2
main.c
|
@ -389,7 +389,7 @@ static bool dwarfmove(void)
|
||||||
game.newloc == game.dloc[i] ||
|
game.newloc == game.dloc[i] ||
|
||||||
FORCED(game.newloc) ||
|
FORCED(game.newloc) ||
|
||||||
(i == PIRATE && CNDBIT(game.newloc, COND_NOARRR)) ||
|
(i == PIRATE && CNDBIT(game.newloc, COND_NOARRR)) ||
|
||||||
T_NODWARVES(travel[kk]));
|
travel[kk].nodwarves);
|
||||||
if (!avoided) {
|
if (!avoided) {
|
||||||
tk[j++] = game.newloc;
|
tk[j++] = game.newloc;
|
||||||
}
|
}
|
||||||
|
|
|
@ -153,6 +153,7 @@ typedef struct {{
|
||||||
const long motion;
|
const long motion;
|
||||||
const long cond;
|
const long cond;
|
||||||
const long dest;
|
const long dest;
|
||||||
|
const bool nodwarves;
|
||||||
const bool stop;
|
const bool stop;
|
||||||
}} travelop_t;
|
}} travelop_t;
|
||||||
|
|
||||||
|
@ -161,7 +162,6 @@ typedef struct {{
|
||||||
* inherited from FORTRAN, someday. To understand these, read the
|
* inherited from FORTRAN, someday. To understand these, read the
|
||||||
* encoding description for travel.
|
* encoding description for travel.
|
||||||
*/
|
*/
|
||||||
#define T_NODWARVES(entry) (T_CONDITION(entry) == 100)
|
|
||||||
#define T_TERMINATE(entry) ((entry).motion == 1)
|
#define T_TERMINATE(entry) ((entry).motion == 1)
|
||||||
#define L_SPEAK(loc) ((loc) - 500)
|
#define L_SPEAK(loc) ((loc) - 500)
|
||||||
|
|
||||||
|
@ -629,7 +629,9 @@ def buildtravel(locs, objs):
|
||||||
raise ValueError
|
raise ValueError
|
||||||
def cencode(cond, name):
|
def cencode(cond, name):
|
||||||
if cond is None:
|
if cond is None:
|
||||||
return 0;
|
return 0
|
||||||
|
elif cond == ["nodwarves"]:
|
||||||
|
return 100
|
||||||
elif cond[0] == "pct":
|
elif cond[0] == "pct":
|
||||||
return cond[1]
|
return cond[1]
|
||||||
elif cond[0] == "carry":
|
elif cond[0] == "carry":
|
||||||
|
@ -645,7 +647,6 @@ def buildtravel(locs, objs):
|
||||||
sys.stderr.write("dungeon: unknown object name %s in with clause of \n" % (cond[1], name))
|
sys.stderr.write("dungeon: unknown object name %s in with clause of \n" % (cond[1], name))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
elif cond[0] == "not":
|
elif cond[0] == "not":
|
||||||
# FIXME: Allow named as well as numbered states
|
|
||||||
try:
|
try:
|
||||||
obj = objnames.index(cond[1])
|
obj = objnames.index(cond[1])
|
||||||
if type(cond[2]) == int:
|
if type(cond[2]) == int:
|
||||||
|
@ -702,7 +703,7 @@ def buildtravel(locs, objs):
|
||||||
#
|
#
|
||||||
# In order to de-crypticize the runtime code, we're going to break these
|
# In order to de-crypticize the runtime code, we're going to break these
|
||||||
# magic numbers up into a struct.
|
# magic numbers up into a struct.
|
||||||
travel = [[0, 0, 0, False]]
|
travel = [[0, 0, 0, False, False]]
|
||||||
tkey = [0]
|
tkey = [0]
|
||||||
oldloc = 0
|
oldloc = 0
|
||||||
while ltravel:
|
while ltravel:
|
||||||
|
@ -715,7 +716,11 @@ def buildtravel(locs, objs):
|
||||||
elif travel:
|
elif travel:
|
||||||
travel[-1][-1] = not travel[-1][-1]
|
travel[-1][-1] = not travel[-1][-1]
|
||||||
while rule:
|
while rule:
|
||||||
travel.append([rule.pop(0), newloc // 1000, newloc % 1000, False])
|
travel.append([rule.pop(0),
|
||||||
|
newloc // 1000,
|
||||||
|
newloc % 1000,
|
||||||
|
(newloc//1000)==100,
|
||||||
|
False])
|
||||||
travel[-1][-1] = True
|
travel[-1][-1] = True
|
||||||
return (travel, tkey)
|
return (travel, tkey)
|
||||||
|
|
||||||
|
@ -724,12 +729,13 @@ def get_travel(travel):
|
||||||
.motion = {},
|
.motion = {},
|
||||||
.cond = {},
|
.cond = {},
|
||||||
.dest = {},
|
.dest = {},
|
||||||
|
.nodwarves = {},
|
||||||
.stop = {},
|
.stop = {},
|
||||||
}},
|
}},
|
||||||
"""
|
"""
|
||||||
out = ""
|
out = ""
|
||||||
for entry in travel:
|
for entry in travel:
|
||||||
out += template.format(entry[0], entry[1], entry[2], entry[3]).lower()
|
out += template.format(*entry).lower()
|
||||||
out = out[:-1] # trim trailing newline
|
out = out[:-1] # trim trailing newline
|
||||||
return out
|
return out
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue