summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichi_cc <michi_cc@openttd.org>2012-04-17 19:44:08 +0000
committermichi_cc <michi_cc@openttd.org>2012-04-17 19:44:08 +0000
commite44a923a71ad25f1a2d913d8bf858820e5ee7300 (patch)
tree813fbc103297cbe4c878a87835089c5a85754278
parent6a70abbd998ed5b54d52ddb44b4df8521413185c (diff)
downloadopenttd-e44a923a71ad25f1a2d913d8bf858820e5ee7300.tar.xz
(svn r24137) -Feature(ette): Draw indicator icon in the replace vehicle window for vehicles which have a replacement set.
-rw-r--r--src/build_vehicle_gui.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/build_vehicle_gui.cpp b/src/build_vehicle_gui.cpp
index 93d229184..4ecd1a3e7 100644
--- a/src/build_vehicle_gui.cpp
+++ b/src/build_vehicle_gui.cpp
@@ -30,6 +30,7 @@
#include "engine_gui.h"
#include "cargotype.h"
#include "core/geometry_func.hpp"
+#include "autoreplace_func.h"
#include "widgets/build_vehicle_widget.h"
@@ -885,11 +886,16 @@ void DrawEngineList(VehicleType type, int l, int r, int y, const GUIEngineList *
int sprite_x = (rtl ? r - sprite_width / 2 : l + sprite_width / 2) - 1;
int sprite_y_offset = sprite_y_offsets[type] + step_size / 2;
- int text_left = l + (rtl ? WD_FRAMERECT_LEFT : sprite_width);
- int text_right = r - (rtl ? sprite_width : WD_FRAMERECT_RIGHT);
+ Dimension replace_icon = {0, 0};
+ if (show_count) replace_icon = GetSpriteSize(SPR_GROUP_REPLACE_ACTIVE);
+
+ int text_left = l + (rtl ? WD_FRAMERECT_LEFT + replace_icon.width : sprite_width);
+ int text_right = r - (rtl ? sprite_width : WD_FRAMERECT_RIGHT + replace_icon.width);
+ int replace_icon_left = rtl ? l + WD_FRAMERECT_LEFT : r - WD_FRAMERECT_RIGHT - replace_icon.width;
int normal_text_y_offset = (step_size - FONT_HEIGHT_NORMAL) / 2;
int small_text_y_offset = step_size - FONT_HEIGHT_SMALL - WD_FRAMERECT_BOTTOM - 1;
+ int replace_icon_y_offset = (step_size - replace_icon.height) / 2 - 1;
for (; min < max; min++, y += step_size) {
const EngineID engine = (*eng_list)[min];
@@ -902,6 +908,7 @@ void DrawEngineList(VehicleType type, int l, int r, int y, const GUIEngineList *
if (show_count) {
SetDParam(0, num_engines);
DrawString(text_left, text_right, y + small_text_y_offset, STR_TINY_BLACK_COMA, TC_FROMSTRING, SA_RIGHT);
+ if (EngineHasReplacementForCompany(Company::Get(_local_company), engine, selected_group)) DrawSprite(SPR_GROUP_REPLACE_ACTIVE, num_engines == 0 ? PALETTE_CRASH : PAL_NONE, replace_icon_left, y + replace_icon_y_offset);
}
}
}