2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2004-09-06 18:15:13 +00:00
|
|
|
#ifndef VEHICLE_GUI_H
|
|
|
|
#define VEHICLE_GUI_H
|
|
|
|
|
2005-09-27 18:51:04 +00:00
|
|
|
#include "station.h"
|
2005-05-02 23:59:11 +00:00
|
|
|
#include "vehicle.h"
|
|
|
|
|
2004-12-10 18:16:08 +00:00
|
|
|
struct vehiclelist_d;
|
|
|
|
|
2005-09-18 20:56:44 +00:00
|
|
|
void DrawVehicleProfitButton(const Vehicle *v, int x, int y);
|
2005-05-14 12:36:16 +00:00
|
|
|
CargoID DrawVehicleRefitWindow(const Vehicle *v, int sel);
|
2005-01-22 20:23:18 +00:00
|
|
|
void InitializeVehiclesGuiList(void);
|
2004-09-06 18:15:13 +00:00
|
|
|
|
|
|
|
/* sorter stuff */
|
2004-12-10 18:16:08 +00:00
|
|
|
void RebuildVehicleLists(void);
|
|
|
|
void ResortVehicleLists(void);
|
|
|
|
|
2005-09-27 18:51:04 +00:00
|
|
|
void BuildVehicleList(struct vehiclelist_d* vl, int type, PlayerID, StationID);
|
2004-12-10 18:16:08 +00:00
|
|
|
void SortVehicleList(struct vehiclelist_d *vl);
|
|
|
|
|
2004-09-06 18:15:13 +00:00
|
|
|
#define PERIODIC_RESORT_DAYS 10
|
2004-09-06 21:20:01 +00:00
|
|
|
#define SORT_BY_UNSORTED 0
|
2004-11-25 06:05:47 +00:00
|
|
|
extern const StringID _vehicle_sort_listing[];
|
2004-09-06 18:15:13 +00:00
|
|
|
|
2005-01-31 11:03:23 +00:00
|
|
|
typedef struct Listing {
|
|
|
|
bool order; // Ascending/descending?
|
|
|
|
byte criteria; // Sorting criteria
|
|
|
|
} Listing;
|
|
|
|
|
|
|
|
typedef struct Sorting {
|
|
|
|
Listing aircraft;
|
|
|
|
Listing roadveh;
|
|
|
|
Listing ship;
|
|
|
|
Listing train;
|
|
|
|
} Sorting;
|
|
|
|
|
2005-07-21 22:15:02 +00:00
|
|
|
extern Sorting _sorting;
|
2005-01-31 11:03:23 +00:00
|
|
|
|
2004-09-06 18:15:13 +00:00
|
|
|
enum {
|
2005-10-22 06:39:32 +00:00
|
|
|
PLY_WND_PRC__OFFSET_TOP_WIDGET = 26,
|
|
|
|
PLY_WND_PRC__SIZE_OF_ROW_SMALL = 26,
|
|
|
|
PLY_WND_PRC__SIZE_OF_ROW_BIG = 36,
|
2004-09-06 18:15:13 +00:00
|
|
|
};
|
|
|
|
|
2005-01-02 17:23:04 +00:00
|
|
|
void ShowReplaceVehicleWindow(byte vehicletype);
|
|
|
|
|
2005-06-05 23:01:10 +00:00
|
|
|
void DrawTrainEnginePurchaseInfo(int x, int y, EngineID engine_number);
|
|
|
|
void DrawTrainWagonPurchaseInfo(int x, int y, EngineID engine_number);
|
|
|
|
void DrawRoadVehPurchaseInfo(int x, int y, EngineID engine_number);
|
|
|
|
void DrawAircraftPurchaseInfo(int x, int y, EngineID engine_number);
|
|
|
|
void DrawShipPurchaseInfo(int x, int y, EngineID engine_number);
|
2005-01-02 17:23:04 +00:00
|
|
|
|
2005-10-24 19:40:48 +00:00
|
|
|
void ChangeVehicleViewWindow(const Vehicle *from_v, const Vehicle *to_v);
|
|
|
|
|
2006-04-23 22:33:10 +00:00
|
|
|
int ShowAdditionalText(int x, int y, int w, EngineID engine_number);
|
2005-10-24 19:40:48 +00:00
|
|
|
|
2004-09-06 18:15:13 +00:00
|
|
|
#endif /* VEHICLE_GUI_H */
|