| author | Darkvater |
| Sun, 30 Jul 2006 14:57:28 +0000 | |
| changeset 4195 | 600bd419c335 |
| parent 3959 | 48f178431701 |
| child 4653 | 9f72ab9dc4a7 |
| 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 |
} |