summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_vehiclelist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ai/api/ai_vehiclelist.cpp')
-rw-r--r--src/ai/api/ai_vehiclelist.cpp54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/ai/api/ai_vehiclelist.cpp b/src/ai/api/ai_vehiclelist.cpp
index 937128ae8..5e1fb6b07 100644
--- a/src/ai/api/ai_vehiclelist.cpp
+++ b/src/ai/api/ai_vehiclelist.cpp
@@ -11,9 +11,12 @@
#include "ai_vehiclelist.hpp"
#include "ai_group.hpp"
+#include "ai_map.hpp"
#include "ai_station.hpp"
#include "ai_vehicle.hpp"
#include "../../company_func.h"
+#include "../../depot_base.h"
+#include "../../depot_map.h"
#include "../../vehicle_base.h"
AIVehicleList::AIVehicleList()
@@ -43,6 +46,57 @@ AIVehicleList_Station::AIVehicleList_Station(StationID station_id)
}
}
+AIVehicleList_Depot::AIVehicleList_Depot(TileIndex tile)
+{
+ if (!AIMap::IsValidTile(tile)) return;
+
+ DestinationID dest;
+ VehicleType type;
+
+ switch (GetTileType(tile)) {
+ case MP_STATION: // Aircraft
+ if (!IsAirport(tile)) return;
+ type = VEH_AIRCRAFT;
+ dest = GetStationIndex(tile);
+ break;
+
+ case MP_RAILWAY:
+ if (!IsRailDepot(tile)) return;
+ type = VEH_TRAIN;
+ dest = Depot::GetByTile(tile)->index;
+ break;
+
+ case MP_ROAD:
+ if (!IsRoadDepot(tile)) return;
+ type = VEH_ROAD;
+ dest = Depot::GetByTile(tile)->index;
+ break;
+
+ case MP_WATER:
+ if (!IsShipDepot(tile)) return;
+ type = VEH_SHIP;
+ dest = Depot::GetByTile(min(tile, GetOtherShipDepotTile(tile)))->index;
+ break;
+
+ default: // No depot
+ return;
+ }
+
+ const Vehicle *v;
+ FOR_ALL_VEHICLES(v) {
+ if (v->owner == _current_company && v->IsPrimaryVehicle() && v->type == type) {
+ const Order *order;
+
+ FOR_VEHICLE_ORDERS(v, order) {
+ if (order->IsType(OT_GOTO_DEPOT) && order->GetDestination() == dest) {
+ this->AddItem(v->index);
+ break;
+ }
+ }
+ }
+ }
+}
+
AIVehicleList_SharedOrders::AIVehicleList_SharedOrders(VehicleID vehicle_id)
{
if (!AIVehicle::IsValidVehicle(vehicle_id)) return;