2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2007-04-04 01:35:16 +00:00
|
|
|
/** @file ship_gui.cpp */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2005-06-02 19:30:21 +00:00
|
|
|
#include "openttd.h"
|
2005-02-05 15:58:59 +00:00
|
|
|
#include "debug.h"
|
2005-07-22 07:02:20 +00:00
|
|
|
#include "functions.h"
|
2006-06-05 11:28:00 +00:00
|
|
|
#include "ship.h"
|
2004-11-25 10:47:30 +00:00
|
|
|
#include "table/strings.h"
|
2005-07-24 15:56:31 +00:00
|
|
|
#include "table/sprites.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "gui.h"
|
2007-12-19 20:45:46 +00:00
|
|
|
#include "window_gui.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "vehicle.h"
|
|
|
|
#include "viewport.h"
|
2005-02-06 10:18:47 +00:00
|
|
|
#include "depot.h"
|
2005-07-21 22:15:02 +00:00
|
|
|
#include "vehicle_gui.h"
|
2006-02-03 12:55:21 +00:00
|
|
|
#include "newgrf_engine.h"
|
2007-12-21 19:49:27 +00:00
|
|
|
#include "strings_func.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-08-29 17:41:13 +00:00
|
|
|
void DrawShipImage(const Vehicle *v, int x, int y, VehicleID selection)
|
2005-05-11 16:17:03 +00:00
|
|
|
{
|
2007-07-01 19:11:47 +00:00
|
|
|
DrawSprite(v->GetImage(DIR_W), GetVehiclePalette(v), x + 32, y + 10);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-05-11 16:17:03 +00:00
|
|
|
if (v->index == selection) {
|
2005-11-14 19:48:04 +00:00
|
|
|
DrawFrameRect(x - 5, y - 1, x + 67, y + 21, 15, 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;
|
|
|
|
|
2006-06-04 09:28:33 +00:00
|
|
|
v = GetVehicle(_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
|
|
|
|
|
|
|
/**
|
|
|
|
* Draw the details for the given vehicle at the position (x,y)
|
|
|
|
*
|
|
|
|
* @param v current vehicle
|
|
|
|
* @param x The x coordinate
|
|
|
|
* @param y The y coordinate
|
|
|
|
*/
|
|
|
|
void DrawShipDetails(const Vehicle *v, int x, int y)
|
|
|
|
{
|
|
|
|
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, STR_9816_BUILT_VALUE, TC_FROMSTRING);
|
2007-09-05 23:26:45 +00:00
|
|
|
|
|
|
|
SetDParam(0, v->cargo_type);
|
|
|
|
SetDParam(1, v->cargo_cap);
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawString(x, y + 10, STR_9817_CAPACITY, TC_FROMSTRING);
|
2007-09-05 23:26:45 +00:00
|
|
|
|
|
|
|
StringID 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;
|
|
|
|
}
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawString(x, y + 21, str, TC_FROMSTRING);
|
2007-09-05 23:26:45 +00:00
|
|
|
|
|
|
|
/* Draw Transfer credits text */
|
|
|
|
SetDParam(0, v->cargo.FeederShare());
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawString(x, y + 33, STR_FEEDER_CARGO_VALUE, TC_FROMSTRING);
|
2007-09-05 23:26:45 +00:00
|
|
|
}
|