src/ship.h
author bjarni
Tue, 30 Jan 2007 17:19:58 +0000
changeset 6122 33ce525e85ff
parent 6034 89a7d10fa75b
child 6223 92d2073c3d7e
permissions -rw-r--r--
(svn r8460) -Fix (r8455): the build train window put locomotives and wagons in appeantly random order
/* $Id$ */

#ifndef SHIP_H
#define SHIP_H

#include "vehicle.h"

void CcBuildShip(bool success, TileIndex tile, uint32 p1, uint32 p2);
void CcCloneShip(bool success, TileIndex tile, uint32 p1, uint32 p2);
void RecalcShipStuff(Vehicle *v);

static inline bool IsShipInDepot(const Vehicle* v)
{
	assert(v->type == VEH_Ship);
	return v->u.ship.state == 0x80;
}

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

#endif /* SHIP_H */