summaryrefslogtreecommitdiff
path: root/roadveh_cmd.c
diff options
context:
space:
mode:
authordominik <dominik@openttd.org>2004-08-16 13:31:18 +0000
committerdominik <dominik@openttd.org>2004-08-16 13:31:18 +0000
commitf98482d45abe6d86e44a6d79e2b74176dd2fd5db (patch)
tree39e649f7b4889d008b78bf425ca2b02ca15db87a /roadveh_cmd.c
parentb15f790797f67732344ee1003f842dbacdfdcade (diff)
downloadopenttd-f98482d45abe6d86e44a6d79e2b74176dd2fd5db.tar.xz
(svn r64) Fix: Road vehicles don't get stuck any more (Truelight + Celestar
Diffstat (limited to 'roadveh_cmd.c')
-rw-r--r--roadveh_cmd.c21
1 files changed, 15 insertions, 6 deletions
diff --git a/roadveh_cmd.c b/roadveh_cmd.c
index 79d74d983..79022d231 100644
--- a/roadveh_cmd.c
+++ b/roadveh_cmd.c
@@ -734,19 +734,24 @@ typedef struct RoadVehFindData {
void *EnumCheckRoadVehClose(Vehicle *v, RoadVehFindData *rvf)
{
- static const byte _dists[] = {
- 4, 8, 4, 4, 4, 8, 4, 4,
- 4, 4, 4, 8, 4, 4, 4, 8,
+ static const short _dists[] = {
+ -4, -8, -4, -1, 4, 8, 4, 1,
+ -4, -1, 4, 8, 4, 1, -4, -8,
};
+
+ short x_diff = v->x_pos - rvf->x;
+ short y_diff = v->y_pos - rvf->y;
if (rvf->veh == v ||
v->type != VEH_Road ||
v->u.road.state == 254 ||
myabs(v->z_pos - rvf->veh->z_pos) > 6 ||
v->direction != rvf->dir ||
- myabs(rvf->x - v->x_pos) >= _dists[v->direction] ||
- myabs(rvf->y - v->y_pos) >= _dists[v->direction+8])
- return NULL;
+ (_dists[v->direction] < 0 && (x_diff <= _dists[v->direction] || x_diff > 0)) ||
+ (_dists[v->direction] > 0 && (x_diff >= _dists[v->direction] || x_diff < 0)) ||
+ (_dists[v->direction+8] < 0 && (y_diff <= _dists[v->direction+8] || y_diff > 0)) ||
+ (_dists[v->direction+8] > 0 && (y_diff >= _dists[v->direction+8] || y_diff < 0)))
+ return NULL;
return v;
}
@@ -765,6 +770,10 @@ static Vehicle *RoadVehFindCloseTo(Vehicle *v, int x, int y, byte dir)
rvf.veh = v;
u = VehicleFromPos(TILE_FROM_XY(x,y), &rvf, (VehicleFromPosProc*)EnumCheckRoadVehClose);
+ // This code protects a roadvehicle from being blocked for ever
+ // If more then 1480 / 74 days a road vehicle is blocked, it will
+ // drive just through it. The ultimate backup-code of TTD.
+ // It can be disabled.
if (u == NULL) {
v->u.road.unk2 = 0;
return NULL;