(diridx): New. Use instead of chkdir() where direction characters

must be valid.  Oopses on bad direction characters.
(pathtoxy, ac_encounter): Bad direction characters used to lead to bad
array subscript and potential disaster.
(pathrange, path): Stop on DIR_STOP as well as on bad direction
characters.  This is just for consistency with other code; DIR_STOP
should occur only last in a path here.
(sail_nav_fleet, nav_ship): No change except for the oops.
This commit is contained in:
Markus Armbruster 2005-09-25 09:49:36 +00:00
parent a88f12017e
commit dfa56cb0ef
6 changed files with 31 additions and 18 deletions

View file

@ -303,14 +303,11 @@ nav_ship(struct shpstr *sp)
stopping = 0;
while (*cp && !stopping && sp->shp_own && mlp->mobil > 0.0) {
dir = chkdir(*cp++, DIR_STOP, DIR_LAST);
dir = diridx(*cp++);
stopping |= shp_nav_one_sector(&ship_list, dir,
sp->shp_own, 0);
}
/* sp->shp_mobil = (int) mobil;
*/
/* Ship not sunk */
if (sp->shp_own)
nav_check_atdest(sp);