author | tron |
Thu, 15 Jun 2006 14:45:03 +0000 | |
branch | 0.4 |
changeset 10035 | 23985f53225c |
parent 10034 | 76c349a8330a |
child 4653 | 091f530bae28 |
permissions | -rw-r--r-- |
10034 | 1 |
/* $Id$ */ |
2 |
||
3 |
#include "vehicle.h" |
|
4 |
||
5 |
||
6 |
static inline bool IsRoadVehInDepot(const Vehicle* v) |
|
7 |
{ |
|
8 |
assert(v->type == VEH_Road); |
|
9 |
return v->u.road.state == 254; |
|
10 |
} |
|
11 |
||
12 |
static inline bool IsRoadVehInDepotStopped(const Vehicle* v) |
|
13 |
{ |
|
14 |
return IsRoadVehInDepot(v) && v->vehstatus & VS_STOPPED; |
|
15 |
} |