OpenTTD Source 20241224-master-gf74b0cf984
vehiclelist_func.h
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
7
10#ifndef VEHICLELIST_FUNC_H
11#define VEHICLELIST_FUNC_H
12
13#include "order_base.h"
14#include "vehicle_base.h"
15
23template <class VehiclePredicate, class OrderPredicate, class VehicleFunc>
24void FindVehiclesWithOrder(VehiclePredicate veh_pred, OrderPredicate ord_pred, VehicleFunc veh_func)
25{
26 for (const OrderList *orderlist : OrderList::Iterate()) {
27
28 /* We assume all vehicles sharing an order list match the condition. */
29 Vehicle *v = orderlist->GetFirstSharedVehicle();
30 if (!veh_pred(v)) continue;
31
32 /* Vehicle is a candidate, search for a matching order. */
33 for (const Order *order = orderlist->GetFirstOrder(); order != nullptr; order = order->next) {
34
35 if (!ord_pred(order)) continue;
36
37 /* An order matches, we can add all shared vehicles to the list. */
38 for (; v != nullptr; v = v->NextShared()) {
39 veh_func(v);
40 }
41 break;
42 }
43 }
44}
45
46#endif /* VEHICLELIST_FUNC_H */
Base class for orders.
Shared order list linking together the linked list of orders and the list of vehicles sharing this or...
Definition order_base.h:259
Order * next
Pointer to next order. If nullptr, end of list.
Definition order_base.h:59
static Pool::IterateWrapper< Titem > Iterate(size_t from=0)
Returns an iterable ensemble of all valid Titem.
Vehicle data structure.
Vehicle * NextShared() const
Get the next vehicle of the shared vehicle chain.
Base class for all vehicles.
void FindVehiclesWithOrder(VehiclePredicate veh_pred, OrderPredicate ord_pred, VehicleFunc veh_func)
Find vehicles matching an order.