Translations update
[openttd/fttd.git] / src / vehiclelist.h
blobc9e4d19832a57b15d9ab438725f2dc2294efb38f
1 /* $Id$ */
3 /*
4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
8 */
10 /** @file vehiclelist.h Functions and type for generating vehicle lists. */
12 #ifndef VEHICLELIST_H
13 #define VEHICLELIST_H
15 #include "core/smallvec_type.hpp"
16 #include "map/coord.h"
17 #include "vehicle_type.h"
18 #include "company_type.h"
20 /** Vehicle List type flags */
21 enum VehicleListType {
22 VL_STANDARD,
23 VL_SHARED_ORDERS,
24 VL_STATION_LIST,
25 VL_DEPOT_LIST,
26 VL_GROUP_LIST,
27 VLT_END
30 /** The information about a vehicle list. */
31 struct VehicleListIdentifier {
32 VehicleListType type; ///< The type of vehicle list.
33 VehicleType vtype; ///< The vehicle type associated with this list.
34 CompanyID company; ///< The company associated with this list.
35 uint32 index; ///< A vehicle list type specific index.
37 uint32 Pack();
38 bool Unpack(uint32 data);
40 /**
41 * Create a simple vehicle list.
42 * @param type List type.
43 * @param vtype Vehicle type associated with this list.
44 * @param company Company associated with this list.
45 * @param index Optional type specific index.
47 VehicleListIdentifier(VehicleListType type, VehicleType vtype, CompanyID company, uint index = 0) :
48 type(type), vtype(vtype), company(company), index(index) {}
50 VehicleListIdentifier(uint32 data);
52 /** Simple empty constructor. In this case you must set everything! */
53 VehicleListIdentifier() {}
56 /** A list of vehicles. */
57 typedef SmallVector<const Vehicle *, 32> VehicleList;
59 bool GenerateVehicleSortList(VehicleList *list, const VehicleListIdentifier &identifier);
60 void BuildDepotVehicleList(VehicleType type, TileIndex tile, VehicleList *engine_list, VehicleList *wagon_list, bool individual_wagons = false);
62 #endif /* VEHICLELIST_H */