2005-07-24 15:12:37 +01:00
|
|
|
/* $Id$ */
|
|
|
|
|
2007-03-28 21:41:35 +01:00
|
|
|
/** @file roadveh_gui.cpp */
|
|
|
|
|
2004-08-09 18:04:08 +01:00
|
|
|
#include "stdafx.h"
|
2005-06-02 20:30:21 +01:00
|
|
|
#include "openttd.h"
|
2005-02-05 15:58:59 +00:00
|
|
|
#include "debug.h"
|
2005-07-22 08:02:20 +01:00
|
|
|
#include "functions.h"
|
2006-06-05 11:23:18 +01:00
|
|
|
#include "roadveh.h"
|
2005-06-06 23:44:11 +01:00
|
|
|
#include "table/sprites.h"
|
2004-11-25 10:47:30 +00:00
|
|
|
#include "table/strings.h"
|
2004-08-09 18:04:08 +01:00
|
|
|
#include "gui.h"
|
2007-06-11 15:00:16 +01:00
|
|
|
#include "strings.h"
|
2004-08-09 18:04:08 +01:00
|
|
|
#include "vehicle.h"
|
|
|
|
#include "viewport.h"
|
|
|
|
#include "command.h"
|
2005-02-06 10:18:47 +00:00
|
|
|
#include "depot.h"
|
2005-07-21 23:15:02 +01:00
|
|
|
#include "vehicle_gui.h"
|
2006-02-03 12:55:21 +00:00
|
|
|
#include "newgrf_engine.h"
|
2004-08-09 18:04:08 +01:00
|
|
|
|
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
void DrawRoadVehDetails(const Vehicle *v, int x, int y)
|
2007-06-11 15:00:16 +01:00
|
|
|
{
|
2007-09-06 00:26:45 +01:00
|
|
|
uint y_offset = RoadVehHasArticPart(v) ? 15 :0;
|
|
|
|
StringID str;
|
2007-06-11 15:00:16 +01:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
SetDParam(0, v->engine_type);
|
|
|
|
SetDParam(1, v->build_year);
|
|
|
|
SetDParam(2, v->value);
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawString(x, y + y_offset, STR_9011_BUILT_VALUE, TC_FROMSTRING);
|
2007-06-11 15:00:16 +01:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
if (RoadVehHasArticPart(v)) {
|
|
|
|
AcceptedCargo max_cargo;
|
|
|
|
char capacity[512];
|
2007-06-11 15:00:16 +01:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
memset(max_cargo, 0, sizeof(max_cargo));
|
2007-06-11 15:00:16 +01:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
for (const Vehicle *u = v; u != NULL; u = u->Next()) {
|
|
|
|
max_cargo[u->cargo_type] += u->cargo_cap;
|
2007-06-11 15:00:16 +01:00
|
|
|
}
|
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
GetString(capacity, STR_ARTICULATED_RV_CAPACITY, lastof(capacity));
|
2007-06-11 15:00:16 +01:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
bool first = true;
|
|
|
|
for (CargoID i = 0; i < NUM_CARGO; i++) {
|
|
|
|
if (max_cargo[i] > 0) {
|
|
|
|
char buffer[128];
|
2007-06-11 15:00:16 +01:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
SetDParam(0, i);
|
|
|
|
SetDParam(1, max_cargo[i]);
|
|
|
|
GetString(buffer, STR_BARE_CARGO, lastof(buffer));
|
2007-08-06 13:54:03 +01:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
if (!first) strecat(capacity, ", ", lastof(capacity));
|
|
|
|
strecat(capacity, buffer, lastof(capacity));
|
|
|
|
first = false;
|
2007-06-11 15:00:16 +01:00
|
|
|
}
|
2007-09-06 00:26:45 +01:00
|
|
|
}
|
2007-06-11 15:00:16 +01:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
SetDParamStr(0, capacity);
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawStringTruncated(x, y + 10 + y_offset, STR_JUST_STRING, TC_BLUE, 380 - x);
|
2007-06-11 15:00:16 +01:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
for (const Vehicle *u = v; u != NULL; u = u->Next()) {
|
2007-06-11 15:00:16 +01:00
|
|
|
str = STR_8812_EMPTY;
|
2007-09-06 00:26:45 +01:00
|
|
|
if (!u->cargo.Empty()) {
|
|
|
|
SetDParam(0, u->cargo_type);
|
|
|
|
SetDParam(1, u->cargo.Count());
|
|
|
|
SetDParam(2, u->cargo.Source());
|
2007-06-11 15:00:16 +01:00
|
|
|
str = STR_8813_FROM;
|
|
|
|
}
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawString(x, y + 21 + y_offset, str, TC_FROMSTRING);
|
2007-03-02 18:49:11 +00:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
y_offset += 11;
|
2007-06-11 15:00:16 +01:00
|
|
|
}
|
2004-09-04 14:06:09 +01:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
y_offset -= 11;
|
|
|
|
} else {
|
|
|
|
SetDParam(0, v->cargo_type);
|
|
|
|
SetDParam(1, v->cargo_cap);
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawString(x, y + 10 + y_offset, STR_9012_CAPACITY, TC_FROMSTRING);
|
2004-09-04 14:06:09 +01:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
str = STR_8812_EMPTY;
|
|
|
|
if (!v->cargo.Empty()) {
|
|
|
|
SetDParam(0, v->cargo_type);
|
|
|
|
SetDParam(1, v->cargo.Count());
|
|
|
|
SetDParam(2, v->cargo.Source());
|
|
|
|
str = STR_8813_FROM;
|
2005-05-15 19:50:55 +01:00
|
|
|
}
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawString(x, y + 21 + y_offset, str, TC_FROMSTRING);
|
2004-08-09 18:04:08 +01:00
|
|
|
}
|
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
/* Draw Transfer credits text */
|
|
|
|
SetDParam(0, v->cargo.FeederShare());
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawString(x, y + 33 + y_offset, STR_FEEDER_CARGO_VALUE, TC_FROMSTRING);
|
2007-09-06 00:26:45 +01:00
|
|
|
}
|
2004-08-09 18:04:08 +01:00
|
|
|
|
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
static inline int RoadVehLengthToPixels(int length)
|
|
|
|
{
|
|
|
|
return (length * 28) / 8;
|
|
|
|
}
|
2007-08-29 21:50:58 +01:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
void DrawRoadVehImage(const Vehicle *v, int x, int y, int count, VehicleID selection)
|
2004-08-09 18:04:08 +01:00
|
|
|
{
|
2007-09-06 00:26:45 +01:00
|
|
|
/* Road vehicle lengths are measured in eighths of the standard length, so
|
|
|
|
* count is the number of standard vehicles that should be drawn. If it is
|
|
|
|
* 0, we draw enough vehicles for 10 standard vehicle lengths. */
|
|
|
|
int max_length = (count == 0) ? 80 : count * 8;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
for (int dx = 0 ; v != NULL && dx < max_length ; dx += v->u.road.cached_veh_length, v = v->Next()) {
|
|
|
|
if (dx + v->u.road.cached_veh_length > 0 && dx <= max_length) {
|
|
|
|
SpriteID pal = (v->vehstatus & VS_CRASHED) ? PALETTE_CRASH : GetVehiclePalette(v);
|
|
|
|
DrawSprite(v->GetImage(DIR_W), pal, x + 14 + RoadVehLengthToPixels(dx), y + 6);
|
2006-11-11 09:47:44 +00:00
|
|
|
|
2007-09-06 00:26:45 +01:00
|
|
|
if (v->index == selection) {
|
|
|
|
DrawFrameRect(x - 1, y - 1, x + 28, y + 12, 15, FR_BORDERONLY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-08-09 18:04:08 +01:00
|
|
|
}
|
|
|
|
|
2005-06-24 13:38:35 +01:00
|
|
|
void CcBuildRoadVeh(bool success, TileIndex tile, uint32 p1, uint32 p2)
|
2004-08-09 18:04:08 +01:00
|
|
|
{
|
2006-07-26 04:33:12 +01:00
|
|
|
const Vehicle *v;
|
2004-08-09 18:04:08 +01:00
|
|
|
|
|
|
|
if (!success) return;
|
|
|
|
|
2006-06-04 10:28:33 +01:00
|
|
|
v = GetVehicle(_new_vehicle_id);
|
2004-08-09 18:04:08 +01:00
|
|
|
if (v->tile == _backup_orders_tile) {
|
|
|
|
_backup_orders_tile = 0;
|
2007-09-28 22:15:45 +01:00
|
|
|
RestoreVehicleOrders(v);
|
2004-08-09 18:04:08 +01:00
|
|
|
}
|
2007-08-29 21:50:58 +01:00
|
|
|
ShowVehicleViewWindow(v);
|
2004-08-09 18:04:08 +01:00
|
|
|
}
|