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"
|
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"
|
2005-07-24 15:56:31 +00:00
|
|
|
#include "table/sprites.h"
|
2004-12-15 22:18:54 +00:00
|
|
|
#include "map.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "window.h"
|
|
|
|
#include "gui.h"
|
|
|
|
#include "gfx.h"
|
|
|
|
#include "vehicle.h"
|
|
|
|
#include "viewport.h"
|
|
|
|
#include "station.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "player.h"
|
|
|
|
#include "engine.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"
|
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 a ship 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 DrawShipPurchaseInfo(int x, int y, EngineID engine_number)
|
2005-01-02 17:23:04 +00:00
|
|
|
{
|
|
|
|
YearMonthDay ymd;
|
|
|
|
const ShipVehicleInfo *svi = ShipVehInfo(engine_number);
|
2006-07-26 03:33:12 +00:00
|
|
|
const Engine *e;
|
2005-01-02 17:23:04 +00:00
|
|
|
|
2005-06-05 23:01:10 +00:00
|
|
|
/* Purchase cost - Max speed */
|
2005-01-02 17:23:04 +00:00
|
|
|
SetDParam(0, svi->base_cost * (_price.ship_base>>3)>>5);
|
2006-04-08 12:04:23 +00:00
|
|
|
SetDParam(1, svi->max_speed / 2);
|
2005-06-05 23:01:10 +00:00
|
|
|
DrawString(x,y, STR_PURCHASE_INFO_COST_SPEED, 0);
|
|
|
|
y += 10;
|
|
|
|
|
|
|
|
/* Cargo type + capacity */
|
2005-07-16 20:58:04 +00:00
|
|
|
SetDParam(0, _cargoc.names_long[svi->cargo_type]);
|
2005-06-05 23:01:10 +00:00
|
|
|
SetDParam(1, svi->capacity);
|
|
|
|
SetDParam(2, svi->refittable ? STR_9842_REFITTABLE : STR_EMPTY);
|
|
|
|
DrawString(x,y, STR_PURCHASE_INFO_CAPACITY, 0);
|
|
|
|
y += 10;
|
|
|
|
|
|
|
|
/* Running cost */
|
|
|
|
SetDParam(0, svi->running_cost * _price.ship_running >> 8);
|
|
|
|
DrawString(x,y, STR_PURCHASE_INFO_RUNNINGCOST, 0);
|
|
|
|
y += 10;
|
|
|
|
|
|
|
|
/* Design date - Life length */
|
2005-06-07 18:13:49 +00:00
|
|
|
e = GetEngine(engine_number);
|
2006-08-15 16:49:48 +00:00
|
|
|
ConvertDateToYMD(e->intro_date, &ymd);
|
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
|
|
|
}
|
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
|
|
|
{
|
2006-03-08 06:55:33 +00:00
|
|
|
DrawSprite(GetShipImage(v, 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);
|
2006-06-27 21:25:53 +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
|
|
|
|
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-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);
|
2004-12-03 21:57:05 +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 */
|
|
|
|
{
|
2006-04-08 12:04:23 +00:00
|
|
|
SetDParam(0, v->max_speed / 2);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawString(2, 25, STR_9813_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_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);
|
2004-09-04 13:06:09 +00:00
|
|
|
DrawString(13, 90, _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);
|
|
|
|
|
2006-08-20 19:05:28 +00:00
|
|
|
SetDParam(1, v->build_year);
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, GetCustomEngineName(v->engine_type));
|
|
|
|
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
|
|
|
|
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
|
|
|
DrawString(74, 67, STR_9817_CAPACITY, 0);
|
|
|
|
|
|
|
|
str = STR_8812_EMPTY;
|
|
|
|
if (v->cargo_count != 0) {
|
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
|
|
|
str = STR_8813_FROM;
|
|
|
|
}
|
|
|
|
DrawString(74, 78, str, 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);
|
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_9831_NAME_SHIP, 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_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},
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 0, 404, 14, 55, 0x0, STR_NULL},
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 0, 404, 56, 88, 0x0, STR_NULL},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 0, 10, 89, 94, STR_0188, STR_884D_INCREASE_SERVICING_INTERVAL},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 0, 10, 95, 100, STR_0189, STR_884E_DECREASE_SERVICING_INTERVAL},
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 11, 404, 89, 100, 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 = {
|
|
|
|
-1,-1, 405, 101,
|
|
|
|
WC_VEHICLE_DETAILS,WC_VEHICLE_VIEW,
|
|
|
|
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);
|
2004-09-10 19:02:27 +00:00
|
|
|
_alloc_wnd_parent_num = veh;
|
2004-08-09 17:04:08 +00:00
|
|
|
w = AllocateWindowDesc(&_ship_details_desc);
|
|
|
|
w->window_number = veh;
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2004-09-10 19:02:27 +00:00
|
|
|
static void NewShipWndProc(Window *w, WindowEvent *e)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
switch (e->event) {
|
2006-08-29 06:03:26 +00:00
|
|
|
case WE_PAINT: {
|
|
|
|
EngineID selected_id;
|
|
|
|
EngineID eid;
|
|
|
|
int count;
|
|
|
|
int pos;
|
|
|
|
int sel;
|
|
|
|
int y;
|
|
|
|
|
2006-10-03 02:08:15 +00:00
|
|
|
SetWindowWidgetDisabledState(w, 5, w->window_number == 0);
|
2006-08-29 06:03:26 +00:00
|
|
|
|
|
|
|
count = 0;
|
|
|
|
for (eid = SHIP_ENGINES_INDEX; eid < SHIP_ENGINES_INDEX + NUM_SHIP_ENGINES; eid++) {
|
|
|
|
if (HASBIT(GetEngine(eid)->player_avail, _local_player)) count++;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
SetVScrollCount(w, count);
|
|
|
|
|
2006-08-29 06:03:26 +00:00
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
y = 15;
|
|
|
|
sel = WP(w,buildtrain_d).sel_index;
|
|
|
|
pos = w->vscroll.pos;
|
|
|
|
selected_id = INVALID_ENGINE;
|
|
|
|
for (eid = SHIP_ENGINES_INDEX; eid < SHIP_ENGINES_INDEX + NUM_SHIP_ENGINES; eid++) {
|
|
|
|
if (!HASBIT(GetEngine(eid)->player_avail, _local_player)) continue;
|
|
|
|
if (sel == 0) selected_id = eid;
|
|
|
|
if (IS_INT_INSIDE(--pos, -w->vscroll.cap, 0)) {
|
|
|
|
DrawString(77, y + 7, GetCustomEngineName(eid), sel == 0 ? 0xC : 0x10);
|
|
|
|
DrawShipEngine(37, y + 10, eid, GetEnginePalette(eid, _local_player));
|
|
|
|
y += 24;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-08-29 06:03:26 +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
|
|
|
DrawShipPurchaseInfo(2, w->widget[4].top + 1, selected_id);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-08-29 06:03:26 +00:00
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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, CcBuildShip, CMD_BUILD_SHIP | CMD_MSG(STR_980D_CAN_T_BUILD_SHIP));
|
|
|
|
} 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_9838_RENAME_SHIP_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;
|
|
|
|
|
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, WP(w, buildtrain_d).rename_engine, 0, NULL,
|
|
|
|
CMD_RENAME_ENGINE | CMD_MSG(STR_9839_CAN_T_RENAME_SHIP_TYPE));
|
|
|
|
}
|
2005-10-22 06:39:32 +00:00
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
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_ship_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, 254, 0, 13, STR_9808_NEW_SHIPS, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_MATRIX, RESIZE_BOTTOM, 14, 0, 242, 14, 109, 0x401, STR_9825_SHIP_SELECTION_LIST_CLICK},
|
|
|
|
{ WWT_SCROLLBAR, RESIZE_BOTTOM, 14, 243, 254, 14, 109, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
|
|
|
|
{ WWT_IMGBTN, RESIZE_TB, 14, 0, 254, 110, 161, 0x0, STR_NULL},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_TB, 14, 0, 121, 162, 173, STR_9809_BUILD_SHIP, STR_9826_BUILD_THE_HIGHLIGHTED_SHIP},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_TB, 14, 122, 242, 162, 173, STR_9836_RENAME, STR_9837_RENAME_SHIP_TYPE},
|
|
|
|
{ WWT_RESIZEBOX, RESIZE_TB, 14, 243, 254, 162, 173, 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_ship_desc = {
|
|
|
|
-1, -1, 255, 174,
|
|
|
|
WC_BUILD_VEHICLE,0,
|
2005-01-04 21:28:09 +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_ship_widgets,
|
|
|
|
NewShipWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-08-29 17:41:13 +00:00
|
|
|
void ShowBuildShipWindow(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Window *w;
|
|
|
|
|
|
|
|
DeleteWindowById(WC_BUILD_VEHICLE, tile);
|
|
|
|
|
|
|
|
w = AllocateWindowDesc(&_new_ship_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-09-10 19:02:27 +00:00
|
|
|
|
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;
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04: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;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-10-03 02:08:15 +00:00
|
|
|
/* Possible to refit? */
|
2006-06-05 11:28:00 +00:00
|
|
|
if (ShipVehInfo(v->engine_type)->refittable && IsShipInDepotStopped(v)) {
|
2006-10-03 02:08:15 +00:00
|
|
|
EnableWindowWidget(w, 7);
|
|
|
|
EnableWindowWidget(w, 8);
|
2006-06-05 11:28:00 +00:00
|
|
|
}
|
2005-07-31 13:08:08 +00:00
|
|
|
|
2006-10-03 02:08:15 +00:00
|
|
|
SetWindowWidgetDisabledState(w, 7, v->owner != _local_player);
|
|
|
|
SetWindowWidgetDisabledState(w, 8, v->owner != _local_player);
|
2005-07-31 13:08:08 +00:00
|
|
|
|
|
|
|
/* draw widgets & caption */
|
|
|
|
SetDParam(0, v->string_id);
|
|
|
|
SetDParam(1, v->unitnumber);
|
|
|
|
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);
|
2006-04-08 12:04:23 +00:00
|
|
|
SetDParam(1, v->cur_speed / 2);
|
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);
|
2006-04-08 12:04:23 +00:00
|
|
|
SetDParam(1, v->cur_speed / 2);
|
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;
|
2006-04-08 12:04:23 +00:00
|
|
|
SetDParam(0, v->cur_speed / 2);
|
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 */
|
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;
|
|
|
|
|
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);
|
|
|
|
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-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_980F, 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_9827_CURRENT_SHIP_ACTION_CLICK},
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 14, 31, 0x2AB, STR_9829_CENTER_MAIN_VIEW_ON_SHIP},
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 32, 49, 0x2B0, STR_982A_SEND_SHIP_TO_DEPOT},
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 50, 67, 0x2B4, STR_983A_REFIT_CARGO_SHIP_TO_CARRY},
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 68, 85, 0x2B2, STR_9828_SHOW_SHIP_S_ORDERS},
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 86, 103, 0x2B3, STR_982B_SHOW_SHIP_DETAILS},
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_LR, 14, 232, 249, 32, 49, SPR_CLONE_SHIP, STR_CLONE_SHIP_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 },
|
2005-03-11 13:17:39 +00:00
|
|
|
{ WIDGETS_END }
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _ship_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
|
|
|
_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;
|
|
|
|
AssignWindowViewport(w, 3, 17, 0xE2, 0x54, w->window_number | (1 << 31), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-29 17:41:13 +00:00
|
|
|
void DrawSmallOrderListShip(const Vehicle *v, int x, int y)
|
2005-11-14 19:48:04 +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-23 13:08:01 +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
|
|
|
if (!IsBuoy(GetStation(order->dest))) {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|