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"
|
|
|
|
|
2014-04-23 20:13:33 +00:00
|
|
|
#include "safeguards.h"
|
|
|
|
|
2009-11-16 22:25:01 +00:00
|
|
|
/**
|
|
|
|
* Draws an image of a ship
|
|
|
|
* @param v Front vehicle
|
2022-11-23 21:01:09 +00:00
|
|
|
* @param r Rect to draw at
|
2009-11-16 22:25:01 +00:00
|
|
|
* @param selection Selected vehicle to draw a frame around
|
|
|
|
*/
|
2022-11-23 21:01:09 +00:00
|
|
|
void DrawShipImage(const Vehicle *v, const Rect &r, 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
|
|
|
|
2016-10-16 14:57:56 +00:00
|
|
|
VehicleSpriteSeq seq;
|
|
|
|
v->GetImage(rtl ? DIR_E : DIR_W, image_type, &seq);
|
|
|
|
|
2016-10-16 14:58:38 +00:00
|
|
|
Rect rect;
|
|
|
|
seq.GetBounds(&rect);
|
2009-11-17 11:36:36 +00:00
|
|
|
|
2022-09-28 23:10:41 +00:00
|
|
|
int width = UnScaleGUI(rect.Width());
|
2016-10-16 14:58:38 +00:00
|
|
|
int x_offs = UnScaleGUI(rect.left);
|
2022-11-23 21:01:09 +00:00
|
|
|
int x = rtl ? r.right - width - x_offs : r.left - x_offs;
|
|
|
|
/* This magic -1 offset is related to the sprite_y_offsets in build_vehicle_gui.cpp */
|
|
|
|
int y = ScaleSpriteTrad(-1) + CenterBounds(r.top, r.bottom, 0);
|
2009-11-17 11:36:36 +00:00
|
|
|
|
2016-10-16 14:58:38 +00:00
|
|
|
seq.Draw(x, y, GetVehiclePalette(v), false);
|
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;
|
2016-10-16 14:58:38 +00:00
|
|
|
y += UnScaleGUI(rect.top);
|
2022-11-23 21:01:09 +00:00
|
|
|
Rect hr = {x, y, x + width - 1, y + UnScaleGUI(rect.Height()) - 1};
|
|
|
|
DrawFrameRect(hr.Expand(WidgetDimensions::scaled.bevel), 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
|
2022-10-18 12:52:22 +00:00
|
|
|
* @param r the Rect to draw within
|
2009-03-14 18:16:29 +00:00
|
|
|
*/
|
2022-10-18 12:52:22 +00:00
|
|
|
void DrawShipDetails(const Vehicle *v, const Rect &r)
|
2007-09-05 23:26:45 +00:00
|
|
|
{
|
2022-10-18 12:52:22 +00:00
|
|
|
int y = r.top;
|
|
|
|
|
2023-01-22 21:06:48 +00:00
|
|
|
SetDParam(0, PackEngineNameDParam(v->engine_type, EngineNameContext::VehicleDetails));
|
2007-09-05 23:26:45 +00:00
|
|
|
SetDParam(1, v->build_year);
|
|
|
|
SetDParam(2, v->value);
|
2022-10-18 12:52:22 +00:00
|
|
|
DrawString(r.left, r.right, y, STR_VEHICLE_INFO_BUILT_VALUE);
|
|
|
|
y += FONT_HEIGHT_NORMAL;
|
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));
|
2022-10-18 12:52:22 +00:00
|
|
|
DrawString(r.left, r.right, y, STR_VEHICLE_INFO_CAPACITY);
|
2022-09-23 08:36:22 +00:00
|
|
|
y += FONT_HEIGHT_NORMAL + WidgetDimensions::scaled.vsep_normal;
|
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
|
|
|
}
|
2022-10-18 12:52:22 +00:00
|
|
|
DrawString(r.left, r.right, y, str);
|
2022-09-23 08:36:22 +00:00
|
|
|
y += FONT_HEIGHT_NORMAL + WidgetDimensions::scaled.vsep_normal;
|
2007-09-05 23:26:45 +00:00
|
|
|
|
|
|
|
/* Draw Transfer credits text */
|
|
|
|
SetDParam(0, v->cargo.FeederShare());
|
2022-10-18 12:52:22 +00:00
|
|
|
DrawString(r.left, r.right, y, STR_VEHICLE_INFO_FEEDER_CARGO_VALUE);
|
2007-09-05 23:26:45 +00:00
|
|
|
}
|