summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_waypointlist.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2009-02-19 07:40:08 +0000
committeryexo <yexo@openttd.org>2009-02-19 07:40:08 +0000
commitc0e7ddeb9ee8892103a1314dac25e0d7250e6af4 (patch)
treefa0d25f1d5a2c7fdfd64122bd10dc5ee7291d2fe /src/ai/api/ai_waypointlist.cpp
parentc2d9c85c0fbb26b5db2ef20b7ac610e63de2b46b (diff)
downloadopenttd-c0e7ddeb9ee8892103a1314dac25e0d7250e6af4.tar.xz
(svn r15519) -Add [NoAI]: support for waypoints by adding AIRail::Build/Remove RailWaypoint, AIWaypoint and AIWaypointList.
Diffstat (limited to 'src/ai/api/ai_waypointlist.cpp')
-rw-r--r--src/ai/api/ai_waypointlist.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/ai/api/ai_waypointlist.cpp b/src/ai/api/ai_waypointlist.cpp
new file mode 100644
index 000000000..2b25157a4
--- /dev/null
+++ b/src/ai/api/ai_waypointlist.cpp
@@ -0,0 +1,29 @@
+/* $Id$ */
+
+/** @file ai_waypointlist.cpp Implementation of AIWaypointList and friends. */
+
+#include "ai_waypointlist.hpp"
+#include "ai_vehicle.hpp"
+#include "ai_waypoint.hpp"
+#include "../../company_func.h"
+#include "../../vehicle_base.h"
+#include "../../waypoint.h"
+
+AIWaypointList::AIWaypointList()
+{
+ const Waypoint *wp;
+ FOR_ALL_WAYPOINTS(wp) {
+ if (wp->owner == _current_company) this->AddItem(wp->index);
+ }
+}
+
+AIWaypointList_Vehicle::AIWaypointList_Vehicle(VehicleID vehicle_id)
+{
+ if (!AIVehicle::IsValidVehicle(vehicle_id)) return;
+
+ const Vehicle *v = ::GetVehicle(vehicle_id);
+
+ for (const Order *o = v->GetFirstOrder(); o != NULL; o = o->next) {
+ if (o->IsType(OT_GOTO_WAYPOINT)) this->AddItem(o->GetDestination());
+ }
+}