ship.h
branch0.4
changeset 10074 cae7dc5c5dfe
child 4638 8abe4f10b94b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ship.h	Sat Aug 12 12:22:38 2006 +0000
@@ -0,0 +1,15 @@
+/* $Id$ */
+
+#include "vehicle.h"
+
+
+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;
+}