2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2005-06-02 19:30:21 +00:00
|
|
|
#include "openttd.h"
|
2006-06-05 12:43:41 +00:00
|
|
|
#include "aircraft.h"
|
2005-02-05 15:58:59 +00:00
|
|
|
#include "debug.h"
|
2005-07-22 07:02:20 +00:00
|
|
|
#include "functions.h"
|
2006-03-24 08:55:08 +00:00
|
|
|
#include "station_map.h"
|
2005-06-06 22:44:11 +00:00
|
|
|
#include "table/sprites.h"
|
2004-11-25 10:47:30 +00:00
|
|
|
#include "table/strings.h"
|
2004-12-15 22:18:54 +00:00
|
|
|
#include "map.h"
|
2005-01-29 12:19:05 +00:00
|
|
|
#include "tile.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "window.h"
|
|
|
|
#include "gui.h"
|
|
|
|
#include "vehicle.h"
|
|
|
|
#include "gfx.h"
|
|
|
|
#include "station.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "engine.h"
|
|
|
|
#include "viewport.h"
|
|
|
|
#include "player.h"
|
2005-02-06 10:18:47 +00:00
|
|
|
#include "depot.h"
|
2006-07-19 19:20:04 +00:00
|
|
|
#include "airport.h"
|
2005-07-21 22:15:02 +00:00
|
|
|
#include "vehicle_gui.h"
|
2006-02-03 12:55:21 +00:00
|
|
|
#include "newgrf_engine.h"
|
2006-08-14 14:21:15 +00:00
|
|
|
#include "date.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-06-05 23:01:10 +00:00
|
|
|
/**
|
|
|
|
* Draw the purchase info details of an aircraft at a given location.
|
|
|
|
* @param x,y location where to draw the info
|
|
|
|
* @param engine_number the engine of which to draw the info of
|
|
|
|
*/
|
|
|
|
void DrawAircraftPurchaseInfo(int x, int y, EngineID engine_number)
|
2005-01-02 17:23:04 +00:00
|
|
|
{
|
|
|
|
const AircraftVehicleInfo *avi = AircraftVehInfo(engine_number);
|
2006-07-26 03:33:12 +00:00
|
|
|
const Engine *e = GetEngine(engine_number);
|
2006-06-09 06:34:28 +00:00
|
|
|
CargoID cargo;
|
2005-01-02 17:23:04 +00:00
|
|
|
YearMonthDay ymd;
|
2006-08-15 16:49:48 +00:00
|
|
|
ConvertDateToYMD(e->intro_date, &ymd);
|
2005-01-03 19:45:18 +00:00
|
|
|
|
2005-06-05 23:01:10 +00:00
|
|
|
/* Purchase cost - Max speed */
|
2005-01-02 17:23:04 +00:00
|
|
|
SetDParam(0, avi->base_cost * (_price.aircraft_base>>3)>>5);
|
2006-04-08 12:04:23 +00:00
|
|
|
SetDParam(1, avi->max_speed * 128 / 10);
|
2005-06-05 23:01:10 +00:00
|
|
|
DrawString(x, y, STR_PURCHASE_INFO_COST_SPEED, 0);
|
|
|
|
y += 10;
|
|
|
|
|
|
|
|
/* Cargo capacity */
|
2006-06-09 06:34:28 +00:00
|
|
|
cargo = FindFirstRefittableCargo(engine_number);
|
|
|
|
if (cargo == CT_INVALID || cargo == CT_PASSENGERS) {
|
|
|
|
SetDParam(0, avi->passenger_capacity);
|
|
|
|
SetDParam(1, avi->mail_capacity);
|
|
|
|
DrawString(x, y, STR_PURCHASE_INFO_AIRCRAFT_CAPACITY, 0);
|
|
|
|
} else {
|
|
|
|
/* Note, if the default capacity is selected by the refit capacity
|
|
|
|
* callback, then the capacity shown is likely to be incorrect. */
|
|
|
|
SetDParam(0, _cargoc.names_long[cargo]);
|
|
|
|
SetDParam(1, AircraftDefaultCargoCapacity(cargo, engine_number));
|
|
|
|
SetDParam(2, STR_9842_REFITTABLE);
|
|
|
|
DrawString(x, y, STR_PURCHASE_INFO_CAPACITY, 0);
|
|
|
|
}
|
2005-06-05 23:01:10 +00:00
|
|
|
y += 10;
|
|
|
|
|
|
|
|
/* Running cost */
|
|
|
|
SetDParam(0, avi->running_cost * _price.aircraft_running >> 8);
|
|
|
|
DrawString(x, y, STR_PURCHASE_INFO_RUNNINGCOST, 0);
|
|
|
|
y += 10;
|
|
|
|
|
|
|
|
/* Design date - Life length */
|
2006-08-16 11:39:55 +00:00
|
|
|
SetDParam(0, ymd.year);
|
2005-06-05 23:01:10 +00:00
|
|
|
SetDParam(1, e->lifelength);
|
|
|
|
DrawString(x, y, STR_PURCHASE_INFO_DESIGNED_LIFE, 0);
|
|
|
|
y += 10;
|
|
|
|
|
|
|
|
/* Reliability */
|
|
|
|
SetDParam(0, e->reliability * 100 >> 16);
|
|
|
|
DrawString(x, y, STR_PURCHASE_INFO_RELIABILITY, 0);
|
|
|
|
y += 10;
|
2006-08-09 21:02:06 +00:00
|
|
|
|
|
|
|
/* Additional text from NewGRF */
|
|
|
|
// XXX 227 will become a calculated width...
|
|
|
|
y += ShowAdditionalText(x, y, 227, engine_number);
|
2005-01-02 17:23:04 +00:00
|
|
|
}
|
|
|
|
|
2006-08-29 17:41:13 +00:00
|
|
|
void DrawAircraftImage(const Vehicle *v, int x, int y, VehicleID selection)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-02-20 21:49:31 +00:00
|
|
|
PalSpriteID pal = (v->vehstatus & VS_CRASHED) ? PALETTE_CRASH : GetVehiclePalette(v);
|
2006-03-08 06:55:33 +00:00
|
|
|
DrawSprite(GetAircraftImage(v, DIR_W) | pal, x + 25, y + 10);
|
2006-06-22 21:15:27 +00:00
|
|
|
if (v->subtype == 0) {
|
|
|
|
SpriteID rotor_sprite = GetCustomRotorSprite(v, true);
|
|
|
|
if (rotor_sprite == 0) rotor_sprite = SPR_ROTOR_STOPPED;
|
|
|
|
DrawSprite(rotor_sprite, x + 25, y + 5);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
if (v->index == selection) {
|
2005-11-14 19:48:04 +00:00
|
|
|
DrawFrameRect(x - 1, y - 1, x + 58, y + 21, 0xF, FR_BORDERONLY);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
void CcBuildAircraft(bool success, TileIndex tile, uint32 p1, uint32 p2)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
if (success) {
|
2006-07-26 03:33:12 +00:00
|
|
|
const Vehicle *v = GetVehicle(_new_vehicle_id);
|
2005-11-13 13:43:55 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (v->tile == _backup_orders_tile) {
|
|
|
|
_backup_orders_tile = 0;
|
|
|
|
RestoreVehicleOrders(v, _backup_orders_data);
|
|
|
|
}
|
|
|
|
ShowAircraftViewWindow(v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-21 16:18:58 +00:00
|
|
|
void CcCloneAircraft(bool success, TileIndex tile, uint32 p1, uint32 p2)
|
2005-07-31 13:08:08 +00:00
|
|
|
{
|
2006-06-04 09:28:33 +00:00
|
|
|
if (success) ShowAircraftViewWindow(GetVehicle(_new_vehicle_id));
|
2005-07-31 13:08:08 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
static void NewAircraftWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
switch (e->event) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT: {
|
2006-07-22 14:43:53 +00:00
|
|
|
TileIndex tile = w->window_number;
|
2006-07-22 16:44:55 +00:00
|
|
|
byte acc_planes;
|
2006-07-22 14:43:53 +00:00
|
|
|
|
2006-07-22 16:44:55 +00:00
|
|
|
if (tile == 0) {
|
|
|
|
SETBIT(w->disabled_state, 5);
|
|
|
|
acc_planes = ALL;
|
|
|
|
} else {
|
|
|
|
acc_planes = GetAirport(GetStationByTile(tile)->airport_type)->acc_planes;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
int count = 0;
|
2006-07-22 14:43:53 +00:00
|
|
|
EngineID eid;
|
|
|
|
|
|
|
|
for (eid = AIRCRAFT_ENGINES_INDEX; eid < AIRCRAFT_ENGINES_INDEX + NUM_AIRCRAFT_ENGINES; eid++) {
|
2006-07-26 03:33:12 +00:00
|
|
|
const AircraftVehicleInfo *avi;
|
2006-07-22 14:43:53 +00:00
|
|
|
|
|
|
|
if (!HASBIT(GetEngine(eid)->player_avail, _local_player)) continue;
|
|
|
|
|
|
|
|
avi = AircraftVehInfo(eid);
|
2006-07-22 16:44:55 +00:00
|
|
|
if ((avi->subtype & AIR_CTOL ? HELICOPTERS_ONLY : AIRCRAFT_ONLY) == acc_planes) continue;
|
2006-07-22 14:43:53 +00:00
|
|
|
|
|
|
|
count++;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
SetVScrollCount(w, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
{
|
|
|
|
int x = 2;
|
|
|
|
int y = 15;
|
|
|
|
int sel = WP(w,buildtrain_d).sel_index;
|
|
|
|
int pos = w->vscroll.pos;
|
2005-10-07 07:35:15 +00:00
|
|
|
EngineID selected_id = INVALID_ENGINE;
|
2006-07-22 14:43:53 +00:00
|
|
|
EngineID eid;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-07-22 14:43:53 +00:00
|
|
|
for (eid = AIRCRAFT_ENGINES_INDEX; eid < AIRCRAFT_ENGINES_INDEX + NUM_AIRCRAFT_ENGINES; eid++) {
|
2006-07-26 03:33:12 +00:00
|
|
|
const AircraftVehicleInfo *avi;
|
2006-07-22 14:43:53 +00:00
|
|
|
|
|
|
|
if (!HASBIT(GetEngine(eid)->player_avail, _local_player)) continue;
|
|
|
|
|
|
|
|
avi = AircraftVehInfo(eid);
|
2006-07-22 16:44:55 +00:00
|
|
|
if ((avi->subtype & AIR_CTOL ? HELICOPTERS_ONLY : AIRCRAFT_ONLY) == acc_planes) continue;
|
2006-07-22 14:43:53 +00:00
|
|
|
|
|
|
|
if (sel == 0) selected_id = eid;
|
|
|
|
|
|
|
|
if (IS_INT_INSIDE(--pos, -w->vscroll.cap, 0)) {
|
|
|
|
DrawString(x + 62, y + 7, GetCustomEngineName(eid), sel == 0 ? 0xC : 0x10);
|
|
|
|
DrawAircraftEngine(x + 29, y + 10, eid, GetEnginePalette(eid, _local_player));
|
|
|
|
y += 24;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-07-22 14:43:53 +00:00
|
|
|
|
|
|
|
sel--;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
WP(w,buildtrain_d).sel_engine = selected_id;
|
|
|
|
|
2005-10-07 07:35:15 +00:00
|
|
|
if (selected_id != INVALID_ENGINE) {
|
2005-06-05 23:01:10 +00:00
|
|
|
DrawAircraftPurchaseInfo(2, w->widget[4].top + 1, selected_id);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_CLICK:
|
2006-09-23 02:39:24 +00:00
|
|
|
switch (e->we.click.widget) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case 2: { /* listbox */
|
2006-09-23 02:39:24 +00:00
|
|
|
uint i = (e->we.click.pt.y - 14) / 24;
|
2005-01-03 19:45:18 +00:00
|
|
|
if (i < w->vscroll.cap) {
|
2004-08-09 17:04:08 +00:00
|
|
|
WP(w,buildtrain_d).sel_index = i + w->vscroll.pos;
|
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case 5: { /* build */
|
2005-10-07 07:35:15 +00:00
|
|
|
EngineID sel_eng = WP(w,buildtrain_d).sel_engine;
|
|
|
|
if (sel_eng != INVALID_ENGINE)
|
2004-08-09 17:04:08 +00:00
|
|
|
DoCommandP(w->window_number, sel_eng, 0, CcBuildAircraft, CMD_BUILD_AIRCRAFT | CMD_MSG(STR_A008_CAN_T_BUILD_AIRCRAFT));
|
|
|
|
} break;
|
|
|
|
|
2006-08-28 18:53:03 +00:00
|
|
|
case 6: { /* rename */
|
2005-10-07 07:35:15 +00:00
|
|
|
EngineID sel_eng = WP(w,buildtrain_d).sel_engine;
|
|
|
|
if (sel_eng != INVALID_ENGINE) {
|
2005-01-10 14:24:40 +00:00
|
|
|
WP(w,buildtrain_d).rename_engine = sel_eng;
|
|
|
|
ShowQueryString(GetCustomEngineName(sel_eng),
|
2006-08-19 09:31:22 +00:00
|
|
|
STR_A039_RENAME_AIRCRAFT_TYPE, 31, 160, w->window_class, w->window_number, CS_ALPHANUMERAL);
|
2005-01-10 14:24:40 +00:00
|
|
|
}
|
|
|
|
} break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WE_ON_EDIT_TEXT: {
|
2006-09-23 02:39:24 +00:00
|
|
|
if (e->we.edittext.str[0] != '\0') {
|
|
|
|
_cmd_text = e->we.edittext.str;
|
2005-05-15 18:50:55 +00:00
|
|
|
DoCommandP(0, WP(w, buildtrain_d).rename_engine, 0, NULL,
|
|
|
|
CMD_RENAME_ENGINE | CMD_MSG(STR_A03A_CAN_T_RENAME_AIRCRAFT_TYPE));
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
} break;
|
2005-01-03 19:45:18 +00:00
|
|
|
|
|
|
|
case WE_RESIZE:
|
2006-09-23 02:39:24 +00:00
|
|
|
w->vscroll.cap += e->we.sizing.diff.y / 24;
|
2006-09-04 15:44:28 +00:00
|
|
|
w->widget[2].data = (w->vscroll.cap << 8) + 1;
|
2005-01-03 19:45:18 +00:00
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _new_aircraft_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW },
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 239, 0, 13, STR_A005_NEW_AIRCRAFT, STR_018C_WINDOW_TITLE_DRAG_THIS },
|
|
|
|
{ WWT_MATRIX, RESIZE_BOTTOM, 14, 0, 227, 14, 109, 0x401, STR_A025_AIRCRAFT_SELECTION_LIST },
|
|
|
|
{ WWT_SCROLLBAR, RESIZE_BOTTOM, 14, 228, 239, 14, 109, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST },
|
|
|
|
{ WWT_IMGBTN, RESIZE_TB, 14, 0, 239, 110, 181, 0x0, STR_NULL },
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_TB, 14, 0, 114, 182, 193, STR_A006_BUILD_AIRCRAFT, STR_A026_BUILD_THE_HIGHLIGHTED_AIRCRAFT },
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_TB, 14, 115, 227, 182, 193, STR_A037_RENAME, STR_A038_RENAME_AIRCRAFT_TYPE },
|
|
|
|
{ WWT_RESIZEBOX, RESIZE_TB, 14, 228, 239, 182, 193, 0x0, STR_RESIZE_BUTTON },
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _new_aircraft_desc = {
|
2006-08-09 21:02:06 +00:00
|
|
|
-1, -1, 240, 194,
|
2004-08-09 17:04:08 +00:00
|
|
|
WC_BUILD_VEHICLE,0,
|
2005-01-03 19:45:18 +00:00
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
2004-08-09 17:04:08 +00:00
|
|
|
_new_aircraft_widgets,
|
|
|
|
NewAircraftWndProc
|
|
|
|
};
|
|
|
|
|
2006-08-29 17:41:13 +00:00
|
|
|
void ShowBuildAircraftWindow(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Window *w;
|
|
|
|
|
|
|
|
DeleteWindowById(WC_BUILD_VEHICLE, tile);
|
|
|
|
|
|
|
|
w = AllocateWindowDesc(&_new_aircraft_desc);
|
|
|
|
w->window_number = tile;
|
|
|
|
w->vscroll.cap = 4;
|
2006-09-04 15:44:28 +00:00
|
|
|
w->widget[2].data = (w->vscroll.cap << 8) + 1;
|
2005-01-03 19:45:18 +00:00
|
|
|
|
|
|
|
w->resize.step_height = 24;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (tile != 0) {
|
2005-06-04 11:56:32 +00:00
|
|
|
w->caption_color = GetTileOwner(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
|
|
|
w->caption_color = _local_player;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void AircraftDetailsWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2005-05-11 16:17:03 +00:00
|
|
|
switch (e->event) {
|
|
|
|
case WE_PAINT: {
|
|
|
|
const Vehicle *v = GetVehicle(w->window_number);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
w->disabled_state = v->owner == _local_player ? 0 : (1 << 2);
|
2004-09-04 13:06:09 +00:00
|
|
|
if (!_patches.servint_aircraft) // disable service-scroller when interval is set to disabled
|
|
|
|
w->disabled_state |= (1 << 5) | (1 << 6);
|
|
|
|
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, v->string_id);
|
|
|
|
SetDParam(1, v->unitnumber);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
/* Draw running cost */
|
|
|
|
{
|
|
|
|
int year = v->age / 366;
|
|
|
|
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(1, year);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-07-31 22:28:49 +00:00
|
|
|
SetDParam(0, (v->age + 365 < v->max_age) ? STR_AGE : STR_AGE_RED);
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(2, v->max_age / 366);
|
2004-12-03 21:57:05 +00:00
|
|
|
SetDParam(3, _price.aircraft_running * AircraftVehInfo(v->engine_type)->running_cost >> 8);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawString(2, 15, STR_A00D_AGE_RUNNING_COST_YR, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw max speed */
|
|
|
|
{
|
2006-04-08 12:04:23 +00:00
|
|
|
SetDParam(0, v->max_speed * 128 / 10);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawString(2, 25, STR_A00E_MAX_SPEED, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw profit */
|
|
|
|
{
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, v->profit_this_year);
|
|
|
|
SetDParam(1, v->profit_last_year);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawString(2, 35, STR_A00F_PROFIT_THIS_YEAR_LAST_YEAR, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw breakdown & reliability */
|
|
|
|
{
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, v->reliability * 100 >> 16);
|
|
|
|
SetDParam(1, v->breakdowns_since_last_service);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawString(2, 45, STR_A010_RELIABILITY_BREAKDOWNS, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw service interval text */
|
|
|
|
{
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, v->service_interval);
|
|
|
|
SetDParam(1, v->date_of_last_service);
|
2004-09-04 13:06:09 +00:00
|
|
|
DrawString(13, 103, _patches.servint_ispercent?STR_SERVICING_INTERVAL_PERCENT:STR_883C_SERVICING_INTERVAL_DAYS, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DrawAircraftImage(v, 3, 57, INVALID_VEHICLE);
|
|
|
|
|
|
|
|
{
|
2005-05-11 16:17:03 +00:00
|
|
|
const Vehicle *u;
|
2004-08-09 17:04:08 +00:00
|
|
|
int y = 57;
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (v->subtype <= 2) {
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, GetCustomEngineName(v->engine_type));
|
2006-08-20 19:05:28 +00:00
|
|
|
SetDParam(1, v->build_year);
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(2, v->value);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawString(60, y, STR_A011_BUILT_VALUE, 0);
|
|
|
|
y += 10;
|
|
|
|
|
2005-07-16 20:58:04 +00:00
|
|
|
SetDParam(0, _cargoc.names_long[v->cargo_type]);
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(1, v->cargo_cap);
|
2004-08-09 17:04:08 +00:00
|
|
|
u = v->next;
|
2005-07-16 20:58:04 +00:00
|
|
|
SetDParam(2, _cargoc.names_long[u->cargo_type]);
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(3, u->cargo_cap);
|
2005-08-01 13:01:14 +00:00
|
|
|
DrawString(60, y, (u->cargo_cap != 0) ? STR_A019_CAPACITY : STR_A01A_CAPACITY, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
y += 14;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (v->cargo_count != 0) {
|
|
|
|
|
|
|
|
/* Cargo names (fix pluralness) */
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, v->cargo_type);
|
|
|
|
SetDParam(1, v->cargo_count);
|
|
|
|
SetDParam(2, v->cargo_source);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawString(60, y, STR_8813_FROM, 0);
|
|
|
|
|
|
|
|
y += 10;
|
|
|
|
}
|
|
|
|
} while ( (v=v->next) != NULL);
|
|
|
|
}
|
2005-05-11 16:17:03 +00:00
|
|
|
} break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-05-11 16:17:03 +00:00
|
|
|
case WE_CLICK: {
|
|
|
|
int mod;
|
|
|
|
const Vehicle *v;
|
2006-09-23 02:39:24 +00:00
|
|
|
switch (e->we.click.widget) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case 2: /* rename */
|
2005-05-11 16:17:03 +00:00
|
|
|
v = GetVehicle(w->window_number);
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, v->unitnumber);
|
2006-08-19 09:31:22 +00:00
|
|
|
ShowQueryString(v->string_id, STR_A030_NAME_AIRCRAFT, 31, 150, w->window_class, w->window_number, CS_ALPHANUMERAL);
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
case 5: /* increase int */
|
2004-09-04 13:06:09 +00:00
|
|
|
mod = _ctrl_pressed? 5 : 10;
|
2005-05-11 16:17:03 +00:00
|
|
|
goto do_change_service_int;
|
2004-08-09 17:04:08 +00:00
|
|
|
case 6: /* decrease int */
|
2004-09-04 13:06:09 +00:00
|
|
|
mod = _ctrl_pressed?- 5 : -10;
|
2005-05-11 16:17:03 +00:00
|
|
|
do_change_service_int:
|
|
|
|
v = GetVehicle(w->window_number);
|
2004-09-04 13:06:09 +00:00
|
|
|
|
2005-05-11 16:17:03 +00:00
|
|
|
mod = GetServiceIntervalClamped(mod + v->service_interval);
|
|
|
|
if (mod == v->service_interval) return;
|
2004-09-04 13:06:09 +00:00
|
|
|
|
2006-01-05 21:35:54 +00:00
|
|
|
DoCommandP(v->tile, v->index, mod, NULL, CMD_CHANGE_SERVICE_INT | CMD_MSG(STR_018A_CAN_T_CHANGE_SERVICING));
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-05-11 16:17:03 +00:00
|
|
|
} break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-10-22 06:39:32 +00:00
|
|
|
case WE_ON_EDIT_TEXT:
|
2006-09-23 02:39:24 +00:00
|
|
|
if (e->we.edittext.str[0] != '\0') {
|
|
|
|
_cmd_text = e->we.edittext.str;
|
2005-05-15 18:50:55 +00:00
|
|
|
DoCommandP(0, w->window_number, 0, NULL,
|
|
|
|
CMD_NAME_VEHICLE | CMD_MSG(STR_A031_CAN_T_NAME_AIRCRAFT));
|
|
|
|
}
|
2005-10-22 06:39:32 +00:00
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const Widget _aircraft_details_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW },
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 349, 0, 13, STR_A00C_DETAILS, STR_018C_WINDOW_TITLE_DRAG_THIS },
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 350, 389, 0, 13, STR_01AA_NAME, STR_A032_NAME_AIRCRAFT },
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 0, 389, 14, 55, 0x0, STR_NULL },
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 0, 389, 56, 101, 0x0, STR_NULL },
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 0, 10, 102, 107, STR_0188, STR_884D_INCREASE_SERVICING_INTERVAL },
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 0, 10, 108, 113, STR_0189, STR_884E_DECREASE_SERVICING_INTERVAL },
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 11, 389, 102, 113, 0x0, STR_NULL },
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _aircraft_details_desc = {
|
2006-08-22 14:38:37 +00:00
|
|
|
-1, -1, 390, 114,
|
|
|
|
WC_VEHICLE_DETAILS, WC_VEHICLE_VIEW,
|
2004-08-09 17:04:08 +00:00
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_aircraft_details_widgets,
|
|
|
|
AircraftDetailsWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-07-26 03:33:12 +00:00
|
|
|
static void ShowAircraftDetailsWindow(const Vehicle *v)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Window *w;
|
|
|
|
VehicleID veh = v->index;
|
|
|
|
|
|
|
|
DeleteWindowById(WC_VEHICLE_ORDERS, veh);
|
|
|
|
DeleteWindowById(WC_VEHICLE_DETAILS, veh);
|
|
|
|
|
|
|
|
_alloc_wnd_parent_num = veh;
|
|
|
|
w = AllocateWindowDesc(&_aircraft_details_desc);
|
|
|
|
w->window_number = veh;
|
|
|
|
w->caption_color = v->owner;
|
|
|
|
// w->vscroll.cap = 6;
|
|
|
|
// w->traindetails_d.tab = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const Widget _aircraft_view_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW },
|
|
|
|
{ WWT_CAPTION, RESIZE_RIGHT, 14, 11, 237, 0, 13, STR_A00A, STR_018C_WINDOW_TITLE_DRAG_THIS },
|
|
|
|
{ WWT_STICKYBOX, RESIZE_LR, 14, 238, 249, 0, 13, 0x0, STR_STICKY_BUTTON },
|
|
|
|
{ WWT_IMGBTN, RESIZE_RB, 14, 0, 231, 14, 103, 0x0, STR_NULL },
|
|
|
|
{ WWT_6, RESIZE_RB, 14, 2, 229, 16, 101, 0x0, STR_NULL },
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_RTB, 14, 0, 237, 104, 115, 0x0, STR_A027_CURRENT_AIRCRAFT_ACTION },
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 14, 31, 0x2AB, STR_A029_CENTER_MAIN_VIEW_ON_AIRCRAFT },
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 32, 49, 0x2AF, STR_A02A_SEND_AIRCRAFT_TO_HANGAR },
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 50, 67, 0x2B4, STR_A03B_REFIT_AIRCRAFT_TO_CARRY },
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 68, 85, 0x2B2, STR_A028_SHOW_AIRCRAFT_S_ORDERS },
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 86, 103, 0x2B3, STR_A02B_SHOW_AIRCRAFT_DETAILS },
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 32, 49, SPR_CLONE_AIRCRAFT, STR_CLONE_AIRCRAFT_INFO },
|
|
|
|
{ WWT_PANEL, RESIZE_LRB, 14, 232, 249, 104, 103, 0x0, STR_NULL },
|
|
|
|
{ WWT_RESIZEBOX, RESIZE_LRTB, 14, 238, 249, 104, 115, 0x0, STR_NULL },
|
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
2005-07-31 13:08:08 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
static void AircraftViewWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT: {
|
2006-07-26 03:33:12 +00:00
|
|
|
const Vehicle *v = GetVehicle(w->window_number);
|
2005-11-14 19:48:04 +00:00
|
|
|
uint32 disabled = 1 << 8;
|
2004-08-09 17:04:08 +00:00
|
|
|
StringID str;
|
|
|
|
|
2006-06-05 12:43:41 +00:00
|
|
|
if (IsAircraftInHangarStopped(v)) disabled = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (v->owner != _local_player) disabled |= 1 << 8 | 1 << 7;
|
2004-08-09 17:04:08 +00:00
|
|
|
w->disabled_state = disabled;
|
|
|
|
|
|
|
|
/* draw widgets & caption */
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, v->string_id);
|
|
|
|
SetDParam(1, v->unitnumber);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
if (v->vehstatus & VS_CRASHED) {
|
|
|
|
str = STR_8863_CRASHED;
|
|
|
|
} else if (v->vehstatus & VS_STOPPED) {
|
|
|
|
str = STR_8861_STOPPED;
|
|
|
|
} else {
|
2004-12-05 12:43:04 +00:00
|
|
|
switch (v->current_order.type) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case OT_GOTO_STATION: {
|
2006-09-03 08:25:27 +00:00
|
|
|
SetDParam(0, v->current_order.dest);
|
2006-04-08 12:04:23 +00:00
|
|
|
SetDParam(1, v->cur_speed * 128 / 10);
|
2004-08-09 17:04:08 +00:00
|
|
|
str = STR_HEADING_FOR_STATION + _patches.vehicle_speed;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case OT_GOTO_DEPOT: {
|
2006-08-26 16:34:03 +00:00
|
|
|
/* Aircrafts always go to a station, even if you say depot */
|
2006-09-03 08:25:27 +00:00
|
|
|
SetDParam(0, v->current_order.dest);
|
2006-04-08 12:04:23 +00:00
|
|
|
SetDParam(1, v->cur_speed * 128 / 10);
|
2006-09-22 23:13:12 +00:00
|
|
|
if (HASBIT(v->current_order.flags, OFB_HALT_IN_DEPOT) && !HASBIT(v->current_order.flags, OFB_PART_OF_ORDERS)) {
|
2006-08-27 09:28:52 +00:00
|
|
|
str = STR_HEADING_FOR_HANGAR + _patches.vehicle_speed;
|
|
|
|
} else {
|
|
|
|
str = STR_HEADING_FOR_HANGAR_SERVICE + _patches.vehicle_speed;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case OT_LOADING:
|
|
|
|
str = STR_882F_LOADING_UNLOADING;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (v->num_orders == 0) {
|
|
|
|
str = STR_NO_ORDERS + _patches.vehicle_speed;
|
2006-04-08 12:04:23 +00:00
|
|
|
SetDParam(0, v->cur_speed * 128 / 10);
|
2005-11-14 19:48:04 +00:00
|
|
|
} else {
|
2004-08-09 17:04:08 +00:00
|
|
|
str = STR_EMPTY;
|
2005-11-14 19:48:04 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-17 17:15:33 +00:00
|
|
|
/* draw the flag plus orders */
|
2005-10-15 11:06:54 +00:00
|
|
|
DrawSprite(v->vehstatus & VS_STOPPED ? SPR_FLAG_VEH_STOPPED : SPR_FLAG_VEH_RUNNING, 2, w->widget[5].top + 1);
|
2005-07-17 19:23:18 +00:00
|
|
|
DrawStringCenteredTruncated(w->widget[5].left + 8, w->widget[5].right, w->widget[5].top + 1, str, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawWindowViewport(w);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_CLICK: {
|
2006-07-26 03:33:12 +00:00
|
|
|
const Vehicle *v = GetVehicle(w->window_number);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-09-23 02:39:24 +00:00
|
|
|
switch (e->we.click.widget) {
|
2004-12-21 23:27:58 +00:00
|
|
|
case 5: /* start stop */
|
2004-08-09 17:04:08 +00:00
|
|
|
DoCommandP(v->tile, v->index, 0, NULL, CMD_START_STOP_AIRCRAFT | CMD_MSG(STR_A016_CAN_T_STOP_START_AIRCRAFT));
|
|
|
|
break;
|
2004-12-21 23:27:58 +00:00
|
|
|
case 6: /* center main view */
|
2004-08-09 17:04:08 +00:00
|
|
|
ScrollMainWindowTo(v->x_pos, v->y_pos);
|
|
|
|
break;
|
2004-12-21 23:27:58 +00:00
|
|
|
case 7: /* goto hangar */
|
2006-09-01 10:24:15 +00:00
|
|
|
DoCommandP(v->tile, v->index, _ctrl_pressed ? DEPOT_SERVICE : 0, NULL, CMD_SEND_AIRCRAFT_TO_HANGAR | CMD_MSG(STR_A012_CAN_T_SEND_AIRCRAFT_TO));
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
2004-12-21 23:27:58 +00:00
|
|
|
case 8: /* refit */
|
2006-09-27 07:23:38 +00:00
|
|
|
ShowVehicleRefitWindow(v);
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
2004-12-21 23:27:58 +00:00
|
|
|
case 9: /* show orders */
|
2004-08-09 17:04:08 +00:00
|
|
|
ShowOrdersWindow(v);
|
|
|
|
break;
|
2004-12-21 23:27:58 +00:00
|
|
|
case 10: /* show details */
|
2004-08-09 17:04:08 +00:00
|
|
|
ShowAircraftDetailsWindow(v);
|
|
|
|
break;
|
2005-10-28 20:04:54 +00:00
|
|
|
case 11:
|
2005-07-31 13:08:08 +00:00
|
|
|
/* clone vehicle */
|
|
|
|
DoCommandP(v->tile, v->index, _ctrl_pressed ? 1 : 0, CcCloneAircraft, CMD_CLONE_VEHICLE | CMD_MSG(STR_A008_CAN_T_BUILD_AIRCRAFT));
|
2005-10-28 20:04:54 +00:00
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
2005-03-11 13:17:39 +00:00
|
|
|
case WE_RESIZE:
|
2006-09-23 02:39:24 +00:00
|
|
|
w->viewport->width += e->we.sizing.diff.x;
|
|
|
|
w->viewport->height += e->we.sizing.diff.y;
|
|
|
|
w->viewport->virtual_width += e->we.sizing.diff.x;
|
|
|
|
w->viewport->virtual_height += e->we.sizing.diff.y;
|
2005-03-11 13:17:39 +00:00
|
|
|
break;
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_DESTROY:
|
|
|
|
DeleteWindowById(WC_VEHICLE_ORDERS, w->window_number);
|
|
|
|
DeleteWindowById(WC_VEHICLE_REFIT, w->window_number);
|
|
|
|
DeleteWindowById(WC_VEHICLE_DETAILS, w->window_number);
|
|
|
|
break;
|
2005-08-01 16:31:19 +00:00
|
|
|
|
2005-10-28 20:04:54 +00:00
|
|
|
case WE_MOUSELOOP: {
|
2006-07-26 03:33:12 +00:00
|
|
|
const Vehicle *v = GetVehicle(w->window_number);
|
2006-06-05 12:43:41 +00:00
|
|
|
uint32 h = IsAircraftInHangarStopped(v) ? 1 << 7 : 1 << 11;
|
2005-07-31 13:08:08 +00:00
|
|
|
|
2005-10-28 20:04:54 +00:00
|
|
|
if (h != w->hidden_state) {
|
|
|
|
w->hidden_state = h;
|
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
|
|
|
} break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const WindowDesc _aircraft_view_desc = {
|
|
|
|
-1,-1, 250, 116,
|
|
|
|
WC_VEHICLE_VIEW ,0,
|
2005-03-11 13:17:39 +00:00
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
2004-08-09 17:04:08 +00:00
|
|
|
_aircraft_view_widgets,
|
|
|
|
AircraftViewWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-07-26 03:33:12 +00:00
|
|
|
void ShowAircraftViewWindow(const Vehicle *v)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-07-26 03:33:12 +00:00
|
|
|
Window *w = AllocateWindowDescFront(&_aircraft_view_desc, v->index);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-10-28 20:04:54 +00:00
|
|
|
if (w != NULL) {
|
2004-08-09 17:04:08 +00:00
|
|
|
w->caption_color = v->owner;
|
|
|
|
AssignWindowViewport(w, 3, 17, 0xE2, 0x54, w->window_number | (1 << 31), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-29 17:41:13 +00:00
|
|
|
void DrawSmallOrderListAircraft(const Vehicle *v, int x, int y)
|
2006-06-27 21:25:53 +00:00
|
|
|
{
|
2005-01-15 19:06:22 +00:00
|
|
|
const Order *order;
|
|
|
|
int sel, i = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
sel = v->cur_order_index;
|
|
|
|
|
2005-01-15 19:06:22 +00:00
|
|
|
FOR_VEHICLE_ORDERS(v, order) {
|
2006-05-03 14:22:59 +00:00
|
|
|
if (sel == 0) DrawString(x - 6, y, STR_SMALL_RIGHT_ARROW, 16);
|
2004-08-09 17:04:08 +00:00
|
|
|
sel--;
|
|
|
|
|
2005-01-15 19:06:22 +00:00
|
|
|
if (order->type == OT_GOTO_STATION) {
|
2006-09-03 08:25:27 +00:00
|
|
|
SetDParam(0, order->dest);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawString(x, y, STR_A036, 0);
|
|
|
|
|
|
|
|
y += 6;
|
2005-11-14 19:48:04 +00:00
|
|
|
if (++i == 4) break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-30 16:32:00 +00:00
|
|
|
static const Widget _player_aircraft_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW },
|
|
|
|
{ WWT_CAPTION, RESIZE_RIGHT, 14, 11, 247, 0, 13, STR_A009_AIRCRAFT, STR_018C_WINDOW_TITLE_DRAG_THIS },
|
|
|
|
{ WWT_STICKYBOX, RESIZE_LR, 14, 248, 259, 0, 13, 0x0, STR_STICKY_BUTTON },
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 0, 80, 14, 25, STR_SORT_BY, STR_SORT_ORDER_TIP },
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 81, 235, 14, 25, 0x0, STR_SORT_CRITERIA_TIP },
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 236, 247, 14, 25, STR_0225, STR_SORT_CRITERIA_TIP },
|
|
|
|
{ WWT_PANEL, RESIZE_RIGHT, 14, 248, 259, 14, 25, 0x0, STR_NULL },
|
|
|
|
{ WWT_MATRIX, RESIZE_RB, 14, 0, 247, 26, 169, 0x401, STR_A01F_AIRCRAFT_CLICK_ON_AIRCRAFT },
|
|
|
|
{ WWT_SCROLLBAR, RESIZE_LRB, 14, 248, 259, 26, 169, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST },
|
2006-09-01 10:24:15 +00:00
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_TB, 14, 0, 124, 170, 181, STR_SEND_TO_HANGARS, STR_SEND_TO_HANGARS_TIP },
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_TB, 14, 125, 247, 170, 181, STR_REPLACE_VEHICLES, STR_REPLACE_HELP },
|
|
|
|
{ WWT_PANEL, RESIZE_RTB, 14, 248, 247, 170, 181, 0x0, STR_NULL },
|
|
|
|
{ WWT_RESIZEBOX, RESIZE_LRTB, 14, 248, 259, 170, 181, 0x0, STR_RESIZE_BUTTON },
|
2004-12-10 18:16:08 +00:00
|
|
|
{ WIDGETS_END},
|
|
|
|
};
|
2004-09-14 14:19:53 +00:00
|
|
|
|
2005-01-03 19:45:18 +00:00
|
|
|
static const Widget _other_player_aircraft_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW },
|
|
|
|
{ WWT_CAPTION, RESIZE_RIGHT, 14, 11, 247, 0, 13, STR_A009_AIRCRAFT, STR_018C_WINDOW_TITLE_DRAG_THIS },
|
|
|
|
{ WWT_STICKYBOX, RESIZE_LR, 14, 248, 259, 0, 13, 0x0, STR_STICKY_BUTTON },
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 0, 80, 14, 25, STR_SORT_BY, STR_SORT_ORDER_TIP },
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 81, 235, 14, 25, 0x0, STR_SORT_CRITERIA_TIP },
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 236, 247, 14, 25, STR_0225, STR_SORT_CRITERIA_TIP },
|
|
|
|
{ WWT_PANEL, RESIZE_RIGHT, 14, 248, 259, 14, 25, 0x0, STR_NULL },
|
|
|
|
{ WWT_MATRIX, RESIZE_RB, 14, 0, 247, 26, 169, 0x401, STR_A01F_AIRCRAFT_CLICK_ON_AIRCRAFT },
|
|
|
|
{ WWT_SCROLLBAR, RESIZE_LRB, 14, 248, 259, 26, 169, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST },
|
|
|
|
{ WWT_PANEL, RESIZE_RTB, 14, 0, 247, 170, 181, 0x0, STR_NULL },
|
|
|
|
{ WWT_RESIZEBOX, RESIZE_LRTB, 14, 248, 259, 170, 181, 0x0, STR_RESIZE_BUTTON },
|
2004-12-10 18:16:08 +00:00
|
|
|
{ WIDGETS_END},
|
|
|
|
};
|
2004-09-06 18:15:13 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
static const WindowDesc _player_aircraft_desc = {
|
2004-09-06 18:15:13 +00:00
|
|
|
-1, -1, 260, 182,
|
2004-08-09 17:04:08 +00:00
|
|
|
WC_AIRCRAFT_LIST,0,
|
2005-01-03 19:45:18 +00:00
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
2004-08-09 17:04:08 +00:00
|
|
|
_player_aircraft_widgets,
|
2006-08-29 17:41:13 +00:00
|
|
|
PlayerVehWndProc
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _other_player_aircraft_desc = {
|
2005-01-03 19:45:18 +00:00
|
|
|
-1, -1, 260, 182,
|
2004-08-09 17:04:08 +00:00
|
|
|
WC_AIRCRAFT_LIST,0,
|
2005-01-03 19:45:18 +00:00
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
2004-08-09 17:04:08 +00:00
|
|
|
_other_player_aircraft_widgets,
|
2006-08-29 17:41:13 +00:00
|
|
|
PlayerVehWndProc
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
2006-08-27 09:55:54 +00:00
|
|
|
void ShowPlayerAircraftLocal(PlayerID player, StationID station, OrderID order, bool show_shared)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Window *w;
|
|
|
|
|
2006-08-26 22:28:40 +00:00
|
|
|
if (show_shared) {
|
2006-08-30 16:32:00 +00:00
|
|
|
w = AllocateWindowDescFront(&_player_aircraft_desc, (order << 16) | (VEH_Aircraft << 11) | VLW_SHARED_ORDERS | player);
|
2006-08-26 22:28:40 +00:00
|
|
|
} else {
|
2006-08-29 21:36:39 +00:00
|
|
|
uint16 VLW_flag = (station == INVALID_STATION) ? VLW_STANDARD : VLW_STATION_LIST;
|
2006-08-26 22:28:40 +00:00
|
|
|
if (player == _local_player) {
|
2006-08-29 21:36:39 +00:00
|
|
|
w = AllocateWindowDescFront(&_player_aircraft_desc, (station << 16) | (VEH_Aircraft << 11) | VLW_flag | player);
|
2006-08-26 22:28:40 +00:00
|
|
|
} else {
|
2006-08-29 21:36:39 +00:00
|
|
|
w = AllocateWindowDescFront(&_other_player_aircraft_desc, (station << 16) | (VEH_Aircraft << 11) | VLW_flag | player);
|
2006-08-26 22:28:40 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
2006-08-26 22:28:40 +00:00
|
|
|
|
|
|
|
void ShowPlayerAircraft(PlayerID player, StationID station)
|
|
|
|
{
|
|
|
|
ShowPlayerAircraftLocal(player, station, INVALID_ORDER, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShowVehWithSharedOrdersAircraft(Vehicle *v)
|
|
|
|
{
|
2006-08-28 18:53:03 +00:00
|
|
|
if (v->orders == NULL) return; // no shared list to show
|
2006-08-27 10:04:02 +00:00
|
|
|
ShowPlayerAircraftLocal(v->owner, INVALID_STATION, v->orders->index, true);
|
2006-08-26 22:28:40 +00:00
|
|
|
}
|