2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2007-04-04 01:35:16 +00:00
|
|
|
/** @file ship_gui.cpp */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2005-06-02 19:30:21 +00:00
|
|
|
#include "openttd.h"
|
2005-02-05 15:58:59 +00:00
|
|
|
#include "debug.h"
|
2005-07-22 07:02:20 +00:00
|
|
|
#include "functions.h"
|
2006-06-05 11:28:00 +00:00
|
|
|
#include "ship.h"
|
2004-11-25 10:47:30 +00:00
|
|
|
#include "table/strings.h"
|
2007-07-16 09:16:58 +00:00
|
|
|
#include "strings.h"
|
2005-07-24 15:56:31 +00:00
|
|
|
#include "table/sprites.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "gui.h"
|
|
|
|
#include "vehicle.h"
|
|
|
|
#include "viewport.h"
|
|
|
|
#include "command.h"
|
2005-02-06 10:18:47 +00:00
|
|
|
#include "depot.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"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-08-29 17:41:13 +00:00
|
|
|
void DrawShipImage(const Vehicle *v, int x, int y, VehicleID selection)
|
2005-05-11 16:17:03 +00:00
|
|
|
{
|
2007-07-01 19:11:47 +00:00
|
|
|
DrawSprite(v->GetImage(DIR_W), GetVehiclePalette(v), x + 32, y + 10);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-05-11 16:17:03 +00:00
|
|
|
if (v->index == selection) {
|
2005-11-14 19:48:04 +00:00
|
|
|
DrawFrameRect(x - 5, y - 1, x + 67, y + 21, 15, FR_BORDERONLY);
|
2005-05-11 16:17:03 +00:00
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
static void ShipDetailsWndProc(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);
|
|
|
|
StringID str;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-10-03 02:08:15 +00:00
|
|
|
SetWindowWidgetDisabledState(w, 2, v->owner != _local_player);
|
2007-04-04 01:35:16 +00:00
|
|
|
/* disable service-scroller when interval is set to disabled */
|
2006-10-03 02:08:15 +00:00
|
|
|
SetWindowWidgetDisabledState(w, 5, !_patches.servint_ships);
|
|
|
|
SetWindowWidgetDisabledState(w, 6, !_patches.servint_ships);
|
2004-09-04 13:06:09 +00:00
|
|
|
|
2007-06-24 22:42:11 +00:00
|
|
|
SetDParam(0, v->index);
|
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-09-10 19:02:27 +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);
|
2007-06-21 17:25:17 +00:00
|
|
|
SetDParam(3, ShipVehInfo(v->engine_type)->running_cost * _price.ship_running >> 8);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawString(2, 15, STR_9812_AGE_RUNNING_COST_YR, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw max speed */
|
|
|
|
{
|
2007-07-10 07:10:23 +00:00
|
|
|
SetDParam(0, v->max_speed * 10 / 32);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawString(2, 25, STR_9813_MAX_SPEED, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw profit */
|
|
|
|
{
|
2007-06-21 17:25:17 +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_9814_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_9815_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);
|
2007-04-18 22:10:36 +00:00
|
|
|
DrawString(13, 102, _patches.servint_ispercent ? STR_SERVICING_INTERVAL_PERCENT : STR_883C_SERVICING_INTERVAL_DAYS, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DrawShipImage(v, 3, 57, INVALID_VEHICLE);
|
|
|
|
|
2007-06-25 14:46:32 +00:00
|
|
|
SetDParam(0, v->engine_type);
|
2006-08-20 19:05:28 +00:00
|
|
|
SetDParam(1, v->build_year);
|
2007-06-21 17:25:17 +00:00
|
|
|
SetDParam(2, v->value);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawString(74, 57, STR_9816_BUILT_VALUE, 0);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-10-20 11:53:29 +00:00
|
|
|
SetDParam(0, v->cargo_type);
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(1, v->cargo_cap);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawString(74, 67, STR_9817_CAPACITY, 0);
|
|
|
|
|
|
|
|
str = STR_8812_EMPTY;
|
2007-06-22 11:58:59 +00:00
|
|
|
if (!v->cargo.Empty()) {
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, v->cargo_type);
|
2007-06-22 11:58:59 +00:00
|
|
|
SetDParam(1, v->cargo.Count());
|
|
|
|
SetDParam(2, v->cargo.Source());
|
2004-08-09 17:04:08 +00:00
|
|
|
str = STR_8813_FROM;
|
|
|
|
}
|
|
|
|
DrawString(74, 78, str, 0);
|
2007-03-02 18:49:11 +00:00
|
|
|
|
|
|
|
/* Draw Transfer credits text */
|
2007-06-22 11:58:59 +00:00
|
|
|
SetDParam(0, v->cargo.FeederShare());
|
2007-03-02 18:49:11 +00:00
|
|
|
DrawString(74, 89, STR_FEEDER_CARGO_VALUE, 0);
|
|
|
|
|
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);
|
2007-06-24 22:42:11 +00:00
|
|
|
SetDParam(0, v->index);
|
|
|
|
ShowQueryString(STR_VEHICLE_NAME, STR_9831_NAME_SHIP, 31, 150, w, 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 */
|
2007-04-18 22:10:36 +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_9832_CAN_T_NAME_SHIP));
|
|
|
|
}
|
2005-10-22 06:39:32 +00:00
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const Widget _ship_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, 364, 0, 13, STR_9811_DETAILS, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 365, 404, 0, 13, STR_01AA_NAME, STR_982F_NAME_SHIP},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 404, 14, 55, 0x0, STR_NULL},
|
2007-03-02 18:49:11 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 404, 56, 100, 0x0, STR_NULL},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 0, 10, 101, 106, STR_0188, STR_884D_INCREASE_SERVICING_INTERVAL},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 0, 10, 107, 112, STR_0189, STR_884E_DECREASE_SERVICING_INTERVAL},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 11, 404, 101, 112, 0x0, STR_NULL},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _ship_details_desc = {
|
2007-03-02 18:49:11 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 405, 113,
|
2007-04-18 22:10:36 +00:00
|
|
|
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,
|
|
|
|
_ship_details_widgets,
|
|
|
|
ShipDetailsWndProc
|
|
|
|
};
|
|
|
|
|
2006-07-26 03:33:12 +00:00
|
|
|
static void ShowShipDetailsWindow(const Vehicle *v)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Window *w;
|
|
|
|
VehicleID veh = v->index;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
DeleteWindowById(WC_VEHICLE_ORDERS, veh);
|
|
|
|
DeleteWindowById(WC_VEHICLE_DETAILS, veh);
|
2006-11-11 09:47:44 +00:00
|
|
|
w = AllocateWindowDescFront(&_ship_details_desc, veh);
|
2004-08-09 17:04:08 +00:00
|
|
|
w->caption_color = v->owner;
|
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
void CcBuildShip(bool success, TileIndex tile, uint32 p1, uint32 p2)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-07-26 03:33:12 +00:00
|
|
|
const Vehicle *v;
|
2004-08-09 17:04:08 +00:00
|
|
|
if (!success) return;
|
|
|
|
|
2006-06-04 09:28:33 +00:00
|
|
|
v = GetVehicle(_new_vehicle_id);
|
2004-08-09 17:04:08 +00:00
|
|
|
if (v->tile == _backup_orders_tile) {
|
|
|
|
_backup_orders_tile = 0;
|
|
|
|
RestoreVehicleOrders(v, _backup_orders_data);
|
|
|
|
}
|
|
|
|
ShowShipViewWindow(v);
|
|
|
|
}
|
|
|
|
|
2006-05-21 16:18:58 +00:00
|
|
|
void CcCloneShip(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) ShowShipViewWindow(GetVehicle(_new_vehicle_id));
|
2005-07-31 13:08:08 +00:00
|
|
|
}
|
|
|
|
|
2006-07-26 03:33:12 +00:00
|
|
|
static void ShipViewWndProc(Window *w, WindowEvent *e)
|
2006-06-27 21:25:53 +00:00
|
|
|
{
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2005-07-31 13:08:08 +00:00
|
|
|
case WE_PAINT: {
|
|
|
|
Vehicle *v = GetVehicle(w->window_number);
|
|
|
|
StringID str;
|
2006-10-08 19:50:10 +00:00
|
|
|
bool refitable_and_stopped_in_depot = ShipVehInfo(v->engine_type)->refittable && IsShipInDepotStopped(v);
|
2006-11-14 00:02:02 +00:00
|
|
|
bool is_localplayer = v->owner == _local_player;
|
2005-07-31 13:08:08 +00:00
|
|
|
|
2006-11-14 00:02:02 +00:00
|
|
|
SetWindowWidgetDisabledState(w, 7, !is_localplayer);
|
|
|
|
SetWindowWidgetDisabledState(w, 8,
|
|
|
|
!is_localplayer || // Disable if owner is not local player
|
2006-10-08 19:50:10 +00:00
|
|
|
!refitable_and_stopped_in_depot); // Disable if the ship is not refitable or stopped in a depot
|
2006-11-14 00:02:02 +00:00
|
|
|
SetWindowWidgetDisabledState(w, 11, !is_localplayer);
|
2005-07-31 13:08:08 +00:00
|
|
|
|
|
|
|
/* draw widgets & caption */
|
2007-06-24 22:42:11 +00:00
|
|
|
SetDParam(0, v->index);
|
2005-07-31 13:08:08 +00:00
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
if (v->breakdown_ctr == 1) {
|
|
|
|
str = STR_885C_BROKEN_DOWN;
|
|
|
|
} else if (v->vehstatus & VS_STOPPED) {
|
|
|
|
str = STR_8861_STOPPED;
|
|
|
|
} else {
|
|
|
|
switch (v->current_order.type) {
|
|
|
|
case OT_GOTO_STATION: {
|
2006-09-03 08:25:27 +00:00
|
|
|
SetDParam(0, v->current_order.dest);
|
2007-01-30 21:10:04 +00:00
|
|
|
SetDParam(1, v->cur_speed * 10 / 32);
|
2005-07-31 13:08:08 +00:00
|
|
|
str = STR_HEADING_FOR_STATION + _patches.vehicle_speed;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case OT_GOTO_DEPOT: {
|
2006-09-03 08:25:27 +00:00
|
|
|
Depot *depot = GetDepot(v->current_order.dest);
|
2005-07-31 13:08:08 +00:00
|
|
|
SetDParam(0, depot->town_index);
|
2007-01-30 21:10:04 +00:00
|
|
|
SetDParam(1, v->cur_speed * 10 / 32);
|
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_SHIP_DEPOT + _patches.vehicle_speed;
|
|
|
|
} else {
|
|
|
|
str = STR_HEADING_FOR_SHIP_DEPOT_SERVICE + _patches.vehicle_speed;
|
|
|
|
}
|
2005-07-31 13:08:08 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case OT_LOADING:
|
|
|
|
case OT_LEAVESTATION:
|
|
|
|
str = STR_882F_LOADING_UNLOADING;
|
|
|
|
break;
|
2005-08-01 16:31:19 +00:00
|
|
|
|
2005-07-31 13:08:08 +00:00
|
|
|
default:
|
|
|
|
if (v->num_orders == 0) {
|
|
|
|
str = STR_NO_ORDERS + _patches.vehicle_speed;
|
2007-01-30 21:10:04 +00:00
|
|
|
SetDParam(0, v->cur_speed * 10 / 32);
|
2006-06-27 21:25:53 +00:00
|
|
|
} else {
|
2005-07-31 13:08:08 +00:00
|
|
|
str = STR_EMPTY;
|
2006-06-27 21:25:53 +00:00
|
|
|
}
|
2005-07-31 13:08:08 +00:00
|
|
|
break;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-07-17 17:15:33 +00:00
|
|
|
/* draw the flag plus orders */
|
2007-01-14 19:57:49 +00:00
|
|
|
DrawSprite(v->vehstatus & VS_STOPPED ? SPR_FLAG_VEH_STOPPED : SPR_FLAG_VEH_RUNNING, PAL_NONE, 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;
|
|
|
|
|
2005-07-31 13:08:08 +00:00
|
|
|
case WE_CLICK: {
|
2006-07-26 03:33:12 +00:00
|
|
|
const Vehicle *v = GetVehicle(w->window_number);
|
2005-07-31 13:08:08 +00:00
|
|
|
|
2006-09-23 02:39:24 +00:00
|
|
|
switch (e->we.click.widget) {
|
2005-07-31 13:08:08 +00:00
|
|
|
case 5: /* start stop */
|
|
|
|
DoCommandP(v->tile, v->index, 0, NULL, CMD_START_STOP_SHIP | CMD_MSG(STR_9818_CAN_T_STOP_START_SHIP));
|
|
|
|
break;
|
|
|
|
case 6: /* center main view */
|
|
|
|
ScrollMainWindowTo(v->x_pos, v->y_pos);
|
|
|
|
break;
|
|
|
|
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_SHIP_TO_DEPOT | CMD_MSG(STR_9819_CAN_T_SEND_SHIP_TO_DEPOT));
|
2005-07-31 13:08:08 +00:00
|
|
|
break;
|
|
|
|
case 8: /* refit */
|
2006-10-03 14:52:39 +00:00
|
|
|
ShowVehicleRefitWindow(v, INVALID_VEH_ORDER_ID);
|
2005-07-31 13:08:08 +00:00
|
|
|
break;
|
|
|
|
case 9: /* show orders */
|
|
|
|
ShowOrdersWindow(v);
|
|
|
|
break;
|
|
|
|
case 10: /* show details */
|
|
|
|
ShowShipDetailsWindow(v);
|
|
|
|
break;
|
|
|
|
case 11: {
|
|
|
|
/* clone vehicle */
|
|
|
|
DoCommandP(v->tile, v->index, _ctrl_pressed ? 1 : 0, CcCloneShip, CMD_CLONE_VEHICLE | CMD_MSG(STR_980D_CAN_T_BUILD_SHIP));
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
} break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-07-31 13:08:08 +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;
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
|
2005-07-31 13:08: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);
|
2007-06-25 17:29:03 +00:00
|
|
|
DeleteWindowById(WC_VEHICLE_TIMETABLE, w->window_number);
|
2005-07-31 13:08:08 +00:00
|
|
|
break;
|
2005-03-11 13:17:39 +00:00
|
|
|
|
2006-10-02 00:28:31 +00:00
|
|
|
case WE_MOUSELOOP: {
|
2006-07-26 03:33:12 +00:00
|
|
|
const Vehicle *v = GetVehicle(w->window_number);
|
2006-10-02 00:28:31 +00:00
|
|
|
bool ship_stopped = IsShipInDepotStopped(v);
|
|
|
|
|
|
|
|
/* Widget 7 (send to depot) must be hidden if the ship is already stopped in depot.
|
|
|
|
* Widget 11 (clone) should then be shown, since cloning is allowed only while in depot and stopped.
|
|
|
|
* This sytem allows to have two buttons, on top of each otherother*/
|
|
|
|
if (ship_stopped != IsWindowWidgetHidden(w, 7) || ship_stopped == IsWindowWidgetHidden(w, 11)) {
|
|
|
|
SetWindowWidgetHiddenState(w, 7, ship_stopped); // send to depot
|
|
|
|
SetWindowWidgetHiddenState(w, 11, !ship_stopped); // clone
|
2005-07-31 13:08:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _ship_view_widgets[] = {
|
2006-10-24 16:27:18 +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_980F, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_STICKYBOX, RESIZE_LR, 14, 238, 249, 0, 13, 0x0, STR_STICKY_BUTTON},
|
|
|
|
{ WWT_PANEL, RESIZE_RB, 14, 0, 231, 14, 103, 0x0, STR_NULL},
|
|
|
|
{ WWT_INSET, RESIZE_RB, 14, 2, 229, 16, 101, 0x0, STR_NULL},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PUSHBTN, RESIZE_RTB, 14, 0, 237, 104, 115, 0x0, STR_9827_CURRENT_SHIP_ACTION_CLICK},
|
2006-10-24 13:20:54 +00:00
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 14, 31, SPR_CENTRE_VIEW_VEHICLE, STR_9829_CENTER_MAIN_VIEW_ON_SHIP},
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 32, 49, SPR_SEND_SHIP_TODEPOT, STR_982A_SEND_SHIP_TO_DEPOT},
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 50, 67, SPR_REFIT_VEHICLE, STR_983A_REFIT_CARGO_SHIP_TO_CARRY},
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 68, 85, SPR_SHOW_ORDERS, STR_9828_SHOW_SHIP_S_ORDERS},
|
2007-04-18 22:10:36 +00:00
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 86, 103, SPR_SHOW_VEHICLE_DETAILS, STR_982B_SHOW_SHIP_DETAILS},
|
2006-10-24 13:20:54 +00:00
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 32, 49, SPR_CLONE_SHIP, STR_CLONE_SHIP_INFO},
|
2006-10-24 16:27:18 +00:00
|
|
|
{ WWT_PANEL, RESIZE_LRB, 14, 232, 249, 104, 103, 0x0, STR_NULL },
|
|
|
|
{ WWT_RESIZEBOX, RESIZE_LRTB, 14, 238, 249, 104, 115, 0x0, STR_NULL },
|
2005-03-11 13:17:39 +00:00
|
|
|
{ WIDGETS_END }
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _ship_view_desc = {
|
2006-11-10 19:24:14 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 250, 116,
|
2007-02-01 15:49:12 +00:00
|
|
|
WC_VEHICLE_VIEW, WC_NONE,
|
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
|
|
|
_ship_view_widgets,
|
|
|
|
ShipViewWndProc
|
|
|
|
};
|
|
|
|
|
2006-07-26 03:33:12 +00:00
|
|
|
void ShowShipViewWindow(const Vehicle *v)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-07-26 03:33:12 +00:00
|
|
|
Window *w = AllocateWindowDescFront(&_ship_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;
|
2007-05-15 14:08:39 +00:00
|
|
|
AssignWindowViewport(w, 3, 17, 0xE2, 0x54, w->window_number | (1 << 31), ZOOM_LVL_SHIP);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|