2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file vehicle_gui.h Functions related to the vehicle's GUIs. */
|
2007-04-04 04:08:47 +00:00
|
|
|
|
2004-09-06 18:15:13 +00:00
|
|
|
#ifndef VEHICLE_GUI_H
|
|
|
|
#define VEHICLE_GUI_H
|
|
|
|
|
2008-05-17 13:01:30 +00:00
|
|
|
#include "window_type.h"
|
2007-12-27 13:35:39 +00:00
|
|
|
#include "vehicle_type.h"
|
2008-03-28 16:36:32 +00:00
|
|
|
#include "order_type.h"
|
2008-03-28 16:33:28 +00:00
|
|
|
#include "station_type.h"
|
2008-03-28 18:00:38 +00:00
|
|
|
#include "engine_type.h"
|
2009-07-22 10:18:19 +00:00
|
|
|
#include "tile_type.h"
|
2005-05-02 23:59:11 +00:00
|
|
|
|
2008-09-24 16:40:06 +00:00
|
|
|
void ShowVehicleRefitWindow(const Vehicle *v, VehicleOrderID order, Window *parent);
|
2004-09-06 18:15:13 +00:00
|
|
|
|
2008-01-18 13:02:47 +00:00
|
|
|
/** Constants of vehicle view widget indices */
|
|
|
|
enum VehicleViewWindowWidgets {
|
|
|
|
VVW_WIDGET_CAPTION,
|
2009-10-24 13:58:18 +00:00
|
|
|
VVW_WIDGET_VIEWPORT, ///< Viewport widget.
|
2008-01-18 13:02:47 +00:00
|
|
|
VVW_WIDGET_START_STOP_VEH,
|
|
|
|
VVW_WIDGET_CENTER_MAIN_VIEH,
|
|
|
|
VVW_WIDGET_GOTO_DEPOT,
|
|
|
|
VVW_WIDGET_REFIT_VEH,
|
|
|
|
VVW_WIDGET_SHOW_ORDERS,
|
|
|
|
VVW_WIDGET_SHOW_DETAILS,
|
|
|
|
VVW_WIDGET_CLONE_VEH,
|
2009-10-24 13:49:04 +00:00
|
|
|
VVW_WIDGET_SELECT_DEPOT_CLONE, ///< Selection widget between 'goto depot', and 'clone vehicle' buttons.
|
|
|
|
VVW_WIDGET_SELECT_REFIT_TURN, ///< Selection widget between 'refit' and 'turn around' buttons.
|
2008-01-18 13:02:47 +00:00
|
|
|
VVW_WIDGET_TURN_AROUND,
|
|
|
|
VVW_WIDGET_FORCE_PROCEED,
|
|
|
|
};
|
|
|
|
|
2009-05-31 14:04:19 +00:00
|
|
|
/** The tabs in the train details window */
|
|
|
|
enum TrainDetailsWindowTabs {
|
|
|
|
TDW_TAB_CARGO = 0, ///< Tab with cargo carried by the vehicles
|
|
|
|
TDW_TAB_INFO, ///< Tab with name and value of the vehicles
|
|
|
|
TDW_TAB_CAPACITY, ///< Tab with cargo capacity of the vehicles
|
|
|
|
TDW_TAB_TOTALS, ///< Tab with sum of total cargo transported
|
|
|
|
};
|
|
|
|
|
2008-01-18 13:02:47 +00:00
|
|
|
/** Vehicle List Window type flags */
|
2006-08-29 21:36:39 +00:00
|
|
|
enum {
|
2006-09-04 15:16:58 +00:00
|
|
|
VLW_STANDARD = 0 << 8,
|
2006-08-29 21:36:39 +00:00
|
|
|
VLW_SHARED_ORDERS = 1 << 8,
|
|
|
|
VLW_STATION_LIST = 2 << 8,
|
2006-09-30 13:39:34 +00:00
|
|
|
VLW_DEPOT_LIST = 3 << 8,
|
2007-05-19 09:40:18 +00:00
|
|
|
VLW_GROUP_LIST = 4 << 8,
|
2008-08-21 01:42:21 +00:00
|
|
|
VLW_WAYPOINT_LIST = 5 << 8,
|
2006-09-04 15:16:58 +00:00
|
|
|
VLW_MASK = 0x700,
|
2006-08-29 21:36:39 +00:00
|
|
|
};
|
|
|
|
|
2006-09-01 10:24:15 +00:00
|
|
|
static inline bool ValidVLWFlags(uint16 flags)
|
|
|
|
{
|
2007-05-19 09:40:18 +00:00
|
|
|
return (flags == VLW_STANDARD || flags == VLW_SHARED_ORDERS || flags == VLW_STATION_LIST || flags == VLW_DEPOT_LIST || flags == VLW_GROUP_LIST);
|
2006-09-01 10:24:15 +00:00
|
|
|
}
|
|
|
|
|
2009-03-22 11:06:25 +00:00
|
|
|
int DrawVehiclePurchaseInfo(int left, int right, int y, EngineID engine_number);
|
2005-01-02 17:23:04 +00:00
|
|
|
|
2009-11-16 22:25:01 +00:00
|
|
|
void DrawTrainImage(const Train *v, int left, int right, int y, VehicleID selection, int skip);
|
|
|
|
void DrawRoadVehImage(const Vehicle *v, int left, int right, int y, VehicleID selection);
|
|
|
|
void DrawShipImage(const Vehicle *v, int left, int right, int y, VehicleID selection);
|
|
|
|
void DrawAircraftImage(const Vehicle *v, int left, int right, int y, VehicleID selection);
|
2006-08-29 17:41:13 +00:00
|
|
|
|
2007-05-18 17:31:41 +00:00
|
|
|
void ShowBuildVehicleWindow(TileIndex tile, VehicleType type);
|
2006-08-29 17:41:13 +00:00
|
|
|
|
2009-03-22 11:06:25 +00:00
|
|
|
uint ShowRefitOptionsList(int left, int right, int y, EngineID engine);
|
2009-02-14 18:42:03 +00:00
|
|
|
StringID GetCargoSubtypeText(const Vehicle *v);
|
2005-10-24 19:40:48 +00:00
|
|
|
|
2007-01-21 00:01:47 +00:00
|
|
|
void ShowVehicleListWindow(const Vehicle *v);
|
2009-07-21 16:30:01 +00:00
|
|
|
void ShowVehicleListWindow(CompanyID company, VehicleType vehicle_type, const Waypoint *wp);
|
2008-09-30 20:39:50 +00:00
|
|
|
void ShowVehicleListWindow(CompanyID company, VehicleType vehicle_type);
|
|
|
|
void ShowVehicleListWindow(CompanyID company, VehicleType vehicle_type, StationID station);
|
|
|
|
void ShowVehicleListWindow(CompanyID company, VehicleType vehicle_type, TileIndex depot_tile);
|
2006-09-28 23:05:03 +00:00
|
|
|
|
2009-11-16 20:58:38 +00:00
|
|
|
/**
|
|
|
|
* Get the height of a single vehicle in the GUIs.
|
|
|
|
* @param type the vehicle type to look at
|
|
|
|
* @return the height
|
|
|
|
*/
|
|
|
|
static inline uint GetVehicleHeight(VehicleType type)
|
2006-10-10 10:04:09 +00:00
|
|
|
{
|
2007-03-08 16:27:54 +00:00
|
|
|
return (type == VEH_TRAIN || type == VEH_ROAD) ? 14 : 24;
|
2006-10-10 10:04:09 +00:00
|
|
|
}
|
|
|
|
|
2008-04-24 09:55:20 +00:00
|
|
|
/** Get WindowClass for vehicle list of given vehicle type
|
|
|
|
* @param vt vehicle type to check
|
|
|
|
* @return corresponding window class
|
2008-09-30 20:39:50 +00:00
|
|
|
* @note works only for company buildable vehicle types
|
2008-04-24 09:55:20 +00:00
|
|
|
*/
|
|
|
|
static inline WindowClass GetWindowClassForVehicleType(VehicleType vt)
|
|
|
|
{
|
|
|
|
switch (vt) {
|
|
|
|
default: NOT_REACHED();
|
|
|
|
case VEH_TRAIN: return WC_TRAINS_LIST;
|
|
|
|
case VEH_ROAD: return WC_ROADVEH_LIST;
|
|
|
|
case VEH_SHIP: return WC_SHIPS_LIST;
|
|
|
|
case VEH_AIRCRAFT: return WC_AIRCRAFT_LIST;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-29 20:50:58 +00:00
|
|
|
/* Unified window procedure */
|
|
|
|
void ShowVehicleViewWindow(const Vehicle *v);
|
|
|
|
|
2008-05-11 14:23:45 +00:00
|
|
|
Vehicle *CheckClickOnVehicle(const struct ViewPort *vp, int x, int y);
|
|
|
|
|
2004-09-06 18:15:13 +00:00
|
|
|
#endif /* VEHICLE_GUI_H */
|