| author | rubidium |
| Wed, 16 Aug 2006 12:07:24 +0000 | |
| changeset 4295 | 51b5d00b5f09 |
| parent 3962 | b53bf74fbcef |
| child 4638 | 05955c6cb536 |
| permissions | -rw-r--r-- |
| 3962 | 1 |
/* $Id$ */ |
2 |
||
3 |
#include "vehicle.h" |
|
4 |
||
5 |
||
6 |
static inline bool IsShipInDepot(const Vehicle* v) |
|
7 |
{
|
|
8 |
assert(v->type == VEH_Ship); |
|
9 |
return v->u.ship.state == 0x80; |
|
10 |
} |
|
11 |
||
12 |
static inline bool IsShipInDepotStopped(const Vehicle* v) |
|
13 |
{
|
|
14 |
return IsShipInDepot(v) && v->vehstatus & VS_STOPPED; |
|
15 |
} |