src/roadveh.h
author bjarni
Tue, 30 Jan 2007 17:19:58 +0000
changeset 6122 33ce525e85ff
parent 6037 7409c8f581e1
child 6298 c30fe89622df
permissions -rw-r--r--
(svn r8460) -Fix (r8455): the build train window put locomotives and wagons in appeantly random order
/* $Id$ */

#ifndef ROADVEH_H
#define ROADVEH_H

#include "vehicle.h"


static inline bool IsRoadVehInDepot(const Vehicle* v)
{
	assert(v->type == VEH_Road);
	return v->u.road.state == 254;
}

static inline bool IsRoadVehInDepotStopped(const Vehicle* v)
{
	return IsRoadVehInDepot(v) && v->vehstatus & VS_STOPPED;
}

void CcBuildRoadVeh(bool success, TileIndex tile, uint32 p1, uint32 p2);
void CcCloneRoadVeh(bool success, TileIndex tile, uint32 p1, uint32 p2);

#endif /* ROADVEH_H */