diff options
author | frosch <frosch@openttd.org> | 2012-05-06 11:38:52 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2012-05-06 11:38:52 +0000 |
commit | 477a09d13edad166fd5fd3b60ded53b2c1d83c27 (patch) | |
tree | 31bbc858490d251a63c1d629c73688517314754a /src | |
parent | 3e7642abe5c8e91d1eac77586fe2f3e3c4dc97e9 (diff) | |
download | openttd-477a09d13edad166fd5fd3b60ded53b2c1d83c27.tar.xz |
(svn r24205) -Feature [FS#5178-ish]: Show a hint in the supplies tab of station windows, if the station is affected by exclusive transport rights.
Diffstat (limited to 'src')
-rw-r--r-- | src/lang/english.txt | 3 | ||||
-rw-r--r-- | src/station_gui.cpp | 7 | ||||
-rw-r--r-- | src/town_cmd.cpp | 2 |
3 files changed, 12 insertions, 0 deletions
diff --git a/src/lang/english.txt b/src/lang/english.txt index 3908339cd..1fdc47d53 100644 --- a/src/lang/english.txt +++ b/src/lang/english.txt @@ -2732,6 +2732,9 @@ STR_STATION_VIEW_ACCEPTS_BUTTON :{BLACK}Accepts STR_STATION_VIEW_ACCEPTS_TOOLTIP :{BLACK}Show list of accepted cargo STR_STATION_VIEW_ACCEPTS_CARGO :{BLACK}Accepts: {WHITE}{CARGO_LIST} +STR_STATIOV_VIEW_EXCLUSIVE_RIGHTS_SELF :{BLACK}This station has exclusive transport rights in this town. +STR_STATIOV_VIEW_EXCLUSIVE_RIGHTS_COMPANY :{YELLOW}{COMPANY}{BLACK} bought exclusive transport rights in this town. + STR_STATION_VIEW_RATINGS_BUTTON :{BLACK}Ratings STR_STATION_VIEW_RATINGS_TOOLTIP :{BLACK}Show station ratings STR_STATION_VIEW_CARGO_RATINGS_TITLE :{BLACK}Local rating of transport service: diff --git a/src/station_gui.cpp b/src/station_gui.cpp index 7600e216d..6d758fdcf 100644 --- a/src/station_gui.cpp +++ b/src/station_gui.cpp @@ -29,6 +29,7 @@ #include "sortlist_type.h" #include "core/geometry_func.hpp" #include "vehiclelist.h" +#include "town.h" #include "widgets/station_widget.h" @@ -1082,6 +1083,12 @@ struct StationViewWindow : public Window { const Station *st = Station::Get(this->window_number); int y = r.top + WD_FRAMERECT_TOP; + if (st->town->exclusive_counter > 0) { + SetDParam(0, st->town->exclusivity); + y = DrawStringMultiLine(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, y, r.bottom, st->town->exclusivity == st->owner ? STR_STATIOV_VIEW_EXCLUSIVE_RIGHTS_SELF : STR_STATIOV_VIEW_EXCLUSIVE_RIGHTS_COMPANY); + y += WD_PAR_VSEP_WIDE; + } + DrawString(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, y, STR_STATION_VIEW_CARGO_RATINGS_TITLE); y += FONT_HEIGHT_NORMAL; diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp index 7cd6770f1..e42dd8362 100644 --- a/src/town_cmd.cpp +++ b/src/town_cmd.cpp @@ -2822,6 +2822,8 @@ static CommandCost TownActionBuyRights(Town *t, DoCommandFlag flags) t->exclusivity = _current_company; ModifyStationRatingAround(t->xy, _current_company, 130, 17); + + SetWindowClassesDirty(WC_STATION_VIEW); } return CommandCost(); } |