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"
|
2011-11-24 12:38:48 +00:00
|
|
|
#include "zoom_func.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
|
|
|
|
*/
|
2011-11-01 16:51:47 +00:00
|
|
|
void DrawShipImage(const Vehicle *v, int left, int right, int y, VehicleID selection, EngineImageType image_type)
|
2005-05-11 16:17:03 +00:00
|
|
|
{
|
2010-11-13 09:56:25 +00:00
|
|
|
bool rtl = _current_text_dir == TD_RTL;
|
2009-11-17 11:36:36 +00:00
|
|
|
|
2011-11-01 16:51:47 +00:00
|
|
|
SpriteID sprite = v->GetImage(rtl ? DIR_E : DIR_W, image_type);
|
2009-11-17 11:36:36 +00:00
|
|
|
const Sprite *real_sprite = GetSprite(sprite, ST_NORMAL);
|
|
|
|
|
2011-11-24 12:38:48 +00:00
|
|
|
int width = UnScaleByZoom(real_sprite->width, ZOOM_LVL_GUI);
|
|
|
|
int x_offs = UnScaleByZoom(real_sprite->x_offs, ZOOM_LVL_GUI);
|
|
|
|
int x = rtl ? right - width - x_offs : left - x_offs;
|
2009-11-17 11:36:36 +00:00
|
|
|
|
|
|
|
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) {
|
2011-11-24 12:38:48 +00:00
|
|
|
x += x_offs;
|
|
|
|
y += UnScaleByZoom(real_sprite->y_offs, ZOOM_LVL_GUI) + 10;
|
|
|
|
DrawFrameRect(x - 1, y - 1, x + width + 1, y + UnScaleByZoom(real_sprite->height, ZOOM_LVL_GUI) + 1, COLOUR_WHITE, FR_BORDERONLY);
|
2005-05-11 16:17:03 +00:00
|
|
|
}
|
|
|
|
}
|
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-11-17 15:26:46 +00:00
|
|
|
DrawString(left, right, y, STR_VEHICLE_INFO_BUILT_VALUE, TC_FROMSTRING, SA_LEFT | SA_STRIP);
|
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;
|
2013-04-13 13:42:08 +00:00
|
|
|
if (v->cargo.StoredCount() > 0) {
|
2007-09-05 23:26:45 +00:00
|
|
|
SetDParam(0, v->cargo_type);
|
2013-04-13 13:42:08 +00:00
|
|
|
SetDParam(1, v->cargo.StoredCount());
|
2007-09-05 23:26:45 +00:00
|
|
|
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
|
|
|
}
|