author | rubidium |
Tue, 22 Aug 2006 14:38:37 +0000 | |
changeset 4344 | 5d0e40cd67b9 |
parent 3959 | e2bbaa8d4978 |
child 4653 | 091f530bae28 |
permissions | -rw-r--r-- |
3959 | 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 |
} |