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 roadveh_gui.cpp GUI for road vehicles. */
|
2007-03-28 20:41:35 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2023-01-26 18:21:36 +00:00
|
|
|
#include "core/backup_type.hpp"
|
2006-06-05 10:23:18 +00:00
|
|
|
#include "roadveh.h"
|
2007-12-19 20:45:46 +00:00
|
|
|
#include "window_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"
|
2008-01-07 14:23:25 +00:00
|
|
|
#include "string_func.h"
|
2014-10-04 16:40:23 +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"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2014-04-23 20:13:33 +00:00
|
|
|
#include "safeguards.h"
|
|
|
|
|
2009-03-22 10:37:51 +00:00
|
|
|
/**
|
|
|
|
* Draw the details for the given vehicle at the given position
|
|
|
|
*
|
|
|
|
* @param v current vehicle
|
2022-10-18 12:52:22 +00:00
|
|
|
* @param r the Rect to draw within
|
2009-03-22 10:37:51 +00:00
|
|
|
*/
|
2022-10-18 12:52:22 +00:00
|
|
|
void DrawRoadVehDetails(const Vehicle *v, const Rect &r)
|
2007-06-11 14:00:16 +00:00
|
|
|
{
|
2022-09-05 20:05:18 +00:00
|
|
|
int y = r.top + (v->HasArticulatedPart() ? ScaleSpriteTrad(15) : 0); // Draw the first line below the sprite of an articulated RV instead of after it.
|
2007-09-05 23:26:45 +00:00
|
|
|
StringID str;
|
2008-08-18 16:52:40 +00:00
|
|
|
Money feeder_share = 0;
|
2007-06-11 14:00:16 +00:00
|
|
|
|
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-06-11 14:00:16 +00:00
|
|
|
|
2011-01-29 17:30:25 +00:00
|
|
|
if (v->HasArticulatedPart()) {
|
2009-06-27 18:26:50 +00:00
|
|
|
CargoArray max_cargo;
|
2009-02-14 18:42:03 +00:00
|
|
|
StringID subtype_text[NUM_CARGO];
|
2007-09-05 23:26:45 +00:00
|
|
|
char capacity[512];
|
2007-06-11 14:00:16 +00:00
|
|
|
|
2009-02-14 18:42:03 +00:00
|
|
|
memset(subtype_text, 0, sizeof(subtype_text));
|
2007-06-11 14:00:16 +00:00
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
for (const Vehicle *u = v; u != nullptr; u = u->Next()) {
|
2007-09-05 23:26:45 +00:00
|
|
|
max_cargo[u->cargo_type] += u->cargo_cap;
|
2009-02-14 18:42:03 +00:00
|
|
|
if (u->cargo_cap > 0) {
|
|
|
|
StringID text = GetCargoSubtypeText(u);
|
|
|
|
if (text != STR_EMPTY) subtype_text[u->cargo_type] = text;
|
|
|
|
}
|
2007-06-11 14:00:16 +00:00
|
|
|
}
|
|
|
|
|
2009-08-05 17:59:21 +00:00
|
|
|
GetString(capacity, STR_VEHICLE_DETAILS_TRAIN_ARTICULATED_RV_CAPACITY, lastof(capacity));
|
2007-06-11 14:00:16 +00:00
|
|
|
|
2007-09-05 23:26:45 +00:00
|
|
|
bool first = true;
|
|
|
|
for (CargoID i = 0; i < NUM_CARGO; i++) {
|
|
|
|
if (max_cargo[i] > 0) {
|
|
|
|
char buffer[128];
|
2007-06-11 14:00:16 +00:00
|
|
|
|
2007-09-05 23:26:45 +00:00
|
|
|
SetDParam(0, i);
|
|
|
|
SetDParam(1, max_cargo[i]);
|
2009-07-23 19:31:50 +00:00
|
|
|
GetString(buffer, STR_JUST_CARGO, lastof(buffer));
|
2007-08-06 12:54:03 +00:00
|
|
|
|
2007-09-05 23:26:45 +00:00
|
|
|
if (!first) strecat(capacity, ", ", lastof(capacity));
|
|
|
|
strecat(capacity, buffer, lastof(capacity));
|
2009-02-14 18:42:03 +00:00
|
|
|
|
|
|
|
if (subtype_text[i] != 0) {
|
|
|
|
GetString(buffer, subtype_text[i], lastof(buffer));
|
|
|
|
strecat(capacity, buffer, lastof(capacity));
|
|
|
|
}
|
|
|
|
|
2007-09-05 23:26:45 +00:00
|
|
|
first = false;
|
2007-06-11 14:00:16 +00:00
|
|
|
}
|
2007-09-05 23:26:45 +00:00
|
|
|
}
|
2007-06-11 14:00:16 +00:00
|
|
|
|
2022-10-18 12:52:22 +00:00
|
|
|
DrawString(r.left, r.right, y, capacity, TC_BLUE);
|
2022-09-23 08:36:22 +00:00
|
|
|
y += FONT_HEIGHT_NORMAL + WidgetDimensions::scaled.vsep_normal;
|
2007-06-11 14:00:16 +00:00
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
for (const Vehicle *u = v; u != nullptr; u = u->Next()) {
|
2008-06-24 13:49:13 +00:00
|
|
|
if (u->cargo_cap == 0) continue;
|
|
|
|
|
2009-04-21 23:40:56 +00:00
|
|
|
str = STR_VEHICLE_DETAILS_CARGO_EMPTY;
|
2013-04-13 13:42:08 +00:00
|
|
|
if (u->cargo.StoredCount() > 0) {
|
2007-09-05 23:26:45 +00:00
|
|
|
SetDParam(0, u->cargo_type);
|
2013-04-13 13:42:08 +00:00
|
|
|
SetDParam(1, u->cargo.StoredCount());
|
2007-09-05 23:26:45 +00:00
|
|
|
SetDParam(2, u->cargo.Source());
|
2009-04-21 23:40:56 +00:00
|
|
|
str = STR_VEHICLE_DETAILS_CARGO_FROM;
|
2008-08-18 16:52:40 +00:00
|
|
|
feeder_share += u->cargo.FeederShare();
|
2007-06-11 14:00:16 +00:00
|
|
|
}
|
2022-10-18 12:52:22 +00:00
|
|
|
DrawString(r.left, r.right, y, str);
|
|
|
|
y += FONT_HEIGHT_NORMAL;
|
2007-06-11 14:00:16 +00:00
|
|
|
}
|
2022-09-23 08:36:22 +00:00
|
|
|
y += WidgetDimensions::scaled.vsep_normal;
|
2007-09-05 23:26:45 +00:00
|
|
|
} else {
|
|
|
|
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;
|
2004-09-04 13:06:09 +00:00
|
|
|
|
2009-04-21 23:40:56 +00:00
|
|
|
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;
|
2008-08-18 16:52:40 +00:00
|
|
|
feeder_share += v->cargo.FeederShare();
|
2005-05-15 18:50:55 +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;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-09-05 23:26:45 +00:00
|
|
|
/* Draw Transfer credits text */
|
2008-08-18 16:52:40 +00:00
|
|
|
SetDParam(0, feeder_share);
|
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
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-07-12 16:00:11 +00:00
|
|
|
/**
|
|
|
|
* Draws an image of a road vehicle chain
|
2009-11-16 22:25:01 +00:00
|
|
|
* @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
|
2010-12-21 13:56:52 +00:00
|
|
|
* @param skip Number of pixels to skip at the front (for scrolling)
|
2009-07-12 16:00:11 +00:00
|
|
|
*/
|
2022-11-23 21:01:09 +00:00
|
|
|
void DrawRoadVehImage(const Vehicle *v, const Rect &r, VehicleID selection, EngineImageType image_type, int skip)
|
2004-08-09 17:04:08 +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
|
|
|
Direction dir = rtl ? DIR_E : DIR_W;
|
2009-07-18 12:34:19 +00:00
|
|
|
const RoadVehicle *u = RoadVehicle::From(v);
|
2009-11-17 11:36:36 +00:00
|
|
|
|
2023-01-26 18:21:36 +00:00
|
|
|
DrawPixelInfo tmp_dpi;
|
2022-11-23 21:01:09 +00:00
|
|
|
int max_width = r.Width();
|
2009-11-17 11:36:36 +00:00
|
|
|
|
2022-11-23 21:01:09 +00:00
|
|
|
if (!FillDrawPixelInfo(&tmp_dpi, r.left, r.top, r.Width(), r.Height())) return;
|
2010-12-21 13:56:07 +00:00
|
|
|
|
2023-01-26 18:21:36 +00:00
|
|
|
AutoRestoreBackup dpi_backup(_cur_dpi, &tmp_dpi);
|
2010-12-21 13:56:07 +00:00
|
|
|
|
2010-12-21 13:56:52 +00:00
|
|
|
int px = rtl ? max_width + skip : -skip;
|
2022-11-23 21:01:09 +00:00
|
|
|
int y = r.Height() / 2;
|
|
|
|
for (; u != nullptr && (rtl ? px > 0 : px < max_width); u = u->Next())
|
|
|
|
{
|
2009-07-18 12:34:19 +00:00
|
|
|
Point offset;
|
|
|
|
int width = u->GetDisplayImageWidth(&offset);
|
|
|
|
|
2010-12-21 13:56:07 +00:00
|
|
|
if (rtl ? px + width > 0 : px - width < max_width) {
|
|
|
|
PaletteID pal = (u->vehstatus & VS_CRASHED) ? PALETTE_CRASH : GetVehiclePalette(u);
|
2016-10-16 14:57:56 +00:00
|
|
|
VehicleSpriteSeq seq;
|
|
|
|
u->GetImage(dir, image_type, &seq);
|
2022-11-23 21:01:09 +00:00
|
|
|
seq.Draw(px + (rtl ? -offset.x : offset.x), y + offset.y, pal, (u->vehstatus & VS_CRASHED) != 0);
|
2010-12-21 13:56:07 +00:00
|
|
|
}
|
2009-11-17 11:36:36 +00:00
|
|
|
|
2010-12-21 13:56:07 +00:00
|
|
|
px += rtl ? -width : width;
|
2008-04-05 11:27:50 +00:00
|
|
|
}
|
|
|
|
|
2009-07-18 12:34:19 +00:00
|
|
|
if (v->index == selection) {
|
2022-11-23 21:01:09 +00:00
|
|
|
int height = ScaleSpriteTrad(12);
|
|
|
|
Rect hr = {(rtl ? px : 0), 0, (rtl ? max_width : px) - 1, height - 1};
|
|
|
|
DrawFrameRect(hr.Translate(r.left, CenterBounds(r.top, r.bottom, height)).Expand(WidgetDimensions::scaled.bevel), COLOUR_WHITE, FR_BORDERONLY);
|
2007-09-05 23:26:45 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|