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 ship_gui.cpp GUI for ships. */
|
2007-04-04 01:35:16 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2009-01-31 20:16:06 +00:00
|
|
|
#include "vehicle_base.h"
|
2007-12-19 20:45:46 +00:00
|
|
|
#include "window_gui.h"
|
2008-01-09 09:45:45 +00:00
|
|
|
#include "gfx_func.h"
|
2005-07-21 22:15:02 +00:00
|
|
|
#include "vehicle_gui.h"
|
2007-12-21 19:49:27 +00:00
|
|
|
#include "strings_func.h"
|
2007-12-27 13:35:39 +00:00
|
|
|
#include "vehicle_func.h"
|
2009-11-17 11:36:36 +00:00
|
|
|
#include "spritecache.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-13 01:21:35 +00:00
|
|
|
#include "table/strings.h"
|
|
|
|
|
2009-11-16 22:25:01 +00:00
|
|
|
/**
|
|
|
|
* Draws an image of a ship
|
|
|
|
* @param v Front vehicle
|
|
|
|
* @param left The minimum horizontal position
|
|
|
|
* @param right The maximum horizontal position
|
|
|
|
* @param y Vertical position to draw at
|
|
|
|
* @param selection Selected vehicle to draw a frame around
|
|
|
|
*/
|
|
|
|
void DrawShipImage(const Vehicle *v, int left, int right, int y, VehicleID selection)
|
2005-05-11 16:17:03 +00:00
|
|
|
{
|
2009-11-17 11:36:36 +00:00
|
|
|
bool rtl = _dynlang.text_dir == TD_RTL;
|
|
|
|
|
|
|
|
SpriteID sprite = v->GetImage(rtl ? DIR_E : DIR_W);
|
|
|
|
const Sprite *real_sprite = GetSprite(sprite, ST_NORMAL);
|
|
|
|
|
|
|
|
int x = rtl ? right - real_sprite->width - real_sprite->x_offs : left - real_sprite->x_offs;
|
|
|
|
|
|
|
|
DrawSprite(sprite, GetVehiclePalette(v), x, y + 10);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-05-11 16:17:03 +00:00
|
|
|
if (v->index == selection) {
|
2009-11-17 11:36:36 +00:00
|
|
|
x += real_sprite->x_offs;
|
|
|
|
y += real_sprite->y_offs + 10;
|
|
|
|
DrawFrameRect(x - 1, y - 1, x + real_sprite->width + 1, y + real_sprite->height + 1, COLOUR_WHITE, FR_BORDERONLY);
|
2005-05-11 16:17:03 +00:00
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
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;
|
|
|
|
|
2009-05-16 23:34:14 +00:00
|
|
|
v = Vehicle::Get(_new_vehicle_id);
|
2004-08-09 17:04:08 +00:00
|
|
|
if (v->tile == _backup_orders_tile) {
|
|
|
|
_backup_orders_tile = 0;
|
2007-09-28 21:15:45 +00:00
|
|
|
RestoreVehicleOrders(v);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-08-29 20:50:58 +00:00
|
|
|
ShowVehicleViewWindow(v);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-09-05 23:26:45 +00:00
|
|
|
|
|
|
|
/**
|
2009-03-22 10:37:51 +00:00
|
|
|
* Draw the details for the given vehicle at the given position
|
2009-03-14 18:16:29 +00:00
|
|
|
*
|
2009-03-22 10:37:51 +00:00
|
|
|
* @param v current vehicle
|
|
|
|
* @param left The left most coordinate to draw
|
|
|
|
* @param right The right most coordinate to draw
|
|
|
|
* @param y The y coordinate
|
2009-03-14 18:16:29 +00:00
|
|
|
*/
|
2009-03-22 10:37:51 +00:00
|
|
|
void DrawShipDetails(const Vehicle *v, int left, int right, int y)
|
2007-09-05 23:26:45 +00:00
|
|
|
{
|
|
|
|
SetDParam(0, v->engine_type);
|
|
|
|
SetDParam(1, v->build_year);
|
|
|
|
SetDParam(2, v->value);
|
2009-04-26 14:52:56 +00:00
|
|
|
DrawString(left, right, y, STR_VEHICLE_INFO_BUILT_VALUE);
|
2007-09-05 23:26:45 +00:00
|
|
|
|
|
|
|
SetDParam(0, v->cargo_type);
|
|
|
|
SetDParam(1, v->cargo_cap);
|
2009-04-20 21:29:41 +00:00
|
|
|
SetDParam(4, GetCargoSubtypeText(v));
|
2009-10-25 17:21:57 +00:00
|
|
|
DrawString(left, right, y + FONT_HEIGHT_NORMAL, STR_VEHICLE_INFO_CAPACITY);
|
2007-09-05 23:26:45 +00:00
|
|
|
|
2009-04-21 23:40:56 +00:00
|
|
|
StringID str = STR_VEHICLE_DETAILS_CARGO_EMPTY;
|
2007-09-05 23:26:45 +00:00
|
|
|
if (!v->cargo.Empty()) {
|
|
|
|
SetDParam(0, v->cargo_type);
|
|
|
|
SetDParam(1, v->cargo.Count());
|
|
|
|
SetDParam(2, v->cargo.Source());
|
2009-04-21 23:40:56 +00:00
|
|
|
str = STR_VEHICLE_DETAILS_CARGO_FROM;
|
2007-09-05 23:26:45 +00:00
|
|
|
}
|
2009-10-25 17:21:57 +00:00
|
|
|
DrawString(left, right, y + 2 * FONT_HEIGHT_NORMAL + 1, str);
|
2007-09-05 23:26:45 +00:00
|
|
|
|
|
|
|
/* Draw Transfer credits text */
|
|
|
|
SetDParam(0, v->cargo.FeederShare());
|
2009-10-25 17:21:57 +00:00
|
|
|
DrawString(left, right, y + 3 * FONT_HEIGHT_NORMAL + 3, STR_VEHICLE_INFO_FEEDER_CARGO_VALUE);
|
2007-09-05 23:26:45 +00:00
|
|
|
}
|