author | tron |
Wed, 07 Jun 2006 19:35:21 +0000 | |
changeset 3977 | edb5b94e2094 |
parent 3962 | c8e21d1c5a6c |
child 4638 | 8abe4f10b94b |
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 |
} |