roadveh.h
changeset 3959 48f178431701
child 4653 9f72ab9dc4a7
equal deleted inserted replaced
3958:228b5729d164 3959:48f178431701
       
     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 }