2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file aircraft_gui.cpp The GUI of aircraft. */
|
2007-02-23 01:48:53 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2006-06-05 12:43:41 +00:00
|
|
|
#include "aircraft.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"
|
2007-12-27 13:35:39 +00:00
|
|
|
#include "vehicle_func.h"
|
2008-01-09 09:45:45 +00:00
|
|
|
#include "gfx_func.h"
|
2008-05-17 13:01:30 +00:00
|
|
|
#include "window_gui.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-13 01:21:35 +00:00
|
|
|
#include "table/sprites.h"
|
|
|
|
#include "table/strings.h"
|
|
|
|
|
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 DrawAircraftDetails(const Vehicle *v, int left, int right, int y)
|
2007-09-05 23:26:45 +00:00
|
|
|
{
|
|
|
|
int y_offset = (v->Next()->cargo_cap != 0) ? -11 : 0;
|
2008-08-18 16:52:40 +00:00
|
|
|
Money feeder_share = 0;
|
2007-09-05 23:26:45 +00:00
|
|
|
|
|
|
|
for (const Vehicle *u = v ; u != NULL ; u = u->Next()) {
|
|
|
|
if (IsNormalAircraft(u)) {
|
|
|
|
SetDParam(0, u->engine_type);
|
|
|
|
SetDParam(1, u->build_year);
|
|
|
|
SetDParam(2, u->value);
|
2009-04-26 14:52:56 +00:00
|
|
|
DrawString(left, right, y, STR_VEHICLE_INFO_BUILT_VALUE);
|
2007-09-05 23:26:45 +00:00
|
|
|
|
|
|
|
SetDParam(0, u->cargo_type);
|
|
|
|
SetDParam(1, u->cargo_cap);
|
|
|
|
SetDParam(2, u->Next()->cargo_type);
|
|
|
|
SetDParam(3, u->Next()->cargo_cap);
|
2009-02-14 18:42:03 +00:00
|
|
|
SetDParam(4, GetCargoSubtypeText(u));
|
2009-04-26 14:52:56 +00:00
|
|
|
DrawString(left, right, y + 10, (u->Next()->cargo_cap != 0) ? STR_VEHICLE_INFO_CAPACITY_CAPACITY : STR_VEHICLE_INFO_CAPACITY);
|
2007-09-05 23:26:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (u->cargo_cap != 0) {
|
|
|
|
uint cargo_count = u->cargo.Count();
|
|
|
|
|
|
|
|
y_offset += 11;
|
|
|
|
if (cargo_count != 0) {
|
|
|
|
/* Cargo names (fix pluralness) */
|
|
|
|
SetDParam(0, u->cargo_type);
|
|
|
|
SetDParam(1, cargo_count);
|
|
|
|
SetDParam(2, u->cargo.Source());
|
2009-04-26 14:52:56 +00:00
|
|
|
DrawString(left, right, y + 21 + y_offset, STR_VEHICLE_DETAILS_CARGO_FROM);
|
2008-08-18 16:52:40 +00:00
|
|
|
feeder_share += u->cargo.FeederShare();
|
2007-09-05 23:26:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-18 16:52:40 +00:00
|
|
|
SetDParam(0, feeder_share);
|
2009-04-26 14:52:56 +00:00
|
|
|
DrawString(left, right, y + 33 + y_offset, STR_FEEDER_CARGO_VALUE);
|
2007-09-05 23:26:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-21 22:57:52 +00:00
|
|
|
void DrawAircraftImage(const Vehicle *v, int x, int y, VehicleID selection)
|
|
|
|
{
|
|
|
|
SpriteID pal = (v->vehstatus & VS_CRASHED) ? PALETTE_CRASH : GetVehiclePalette(v);
|
2007-07-01 19:11:47 +00:00
|
|
|
DrawSprite(v->GetImage(DIR_W), pal, x + 25, y + 10);
|
2007-01-27 12:29:55 +00:00
|
|
|
if (v->subtype == AIR_HELICOPTER) {
|
2007-01-21 22:57:52 +00:00
|
|
|
SpriteID rotor_sprite = GetCustomRotorSprite(v, true);
|
|
|
|
if (rotor_sprite == 0) rotor_sprite = SPR_ROTOR_STOPPED;
|
|
|
|
DrawSprite(rotor_sprite, PAL_NONE, x + 25, y + 5);
|
|
|
|
}
|
|
|
|
if (v->index == selection) {
|
2008-08-01 03:43:53 +00:00
|
|
|
DrawFrameRect(x - 1, y - 1, x + 58, y + 21, COLOUR_WHITE, FR_BORDERONLY);
|
2007-01-21 22:57:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-03 16:12:28 +00:00
|
|
|
/**
|
|
|
|
* This is the Callback method after the construction attempt of an aircraft
|
|
|
|
* @param success indicates completion (or not) of the operation
|
|
|
|
* @param tile of depot where aircraft is built
|
|
|
|
* @param p1 unused
|
|
|
|
* @param p2 unused
|
|
|
|
*/
|
2007-01-21 22:57:52 +00:00
|
|
|
void CcBuildAircraft(bool success, TileIndex tile, uint32 p1, uint32 p2)
|
|
|
|
{
|
|
|
|
if (success) {
|
2009-05-16 23:34:14 +00:00
|
|
|
const Vehicle *v = Vehicle::Get(_new_vehicle_id);
|
2007-01-21 22:57:52 +00:00
|
|
|
|
|
|
|
if (v->tile == _backup_orders_tile) {
|
|
|
|
_backup_orders_tile = 0;
|
2007-09-28 21:15:45 +00:00
|
|
|
RestoreVehicleOrders(v);
|
2007-01-21 22:57:52 +00:00
|
|
|
}
|
2007-08-29 20:50:58 +00:00
|
|
|
ShowVehicleViewWindow(v);
|
2007-01-21 22:57:52 +00:00
|
|
|
}
|
|
|
|
}
|