Update readme and changelog for v1.27.0
[openttd-joker.git] / src / subsidy_gui.cpp
blobe604a008b17b0ff4832ae72897a462272c1db444
1 /* $Id: subsidy_gui.cpp 25294 2013-05-26 19:30:07Z frosch $ */
3 /*
4 * This file is part of OpenTTD.
5 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
8 */
10 /** @file subsidy_gui.cpp GUI for subsidies. */
12 #include "stdafx.h"
13 #include "industry.h"
14 #include "town.h"
15 #include "window_gui.h"
16 #include "strings_func.h"
17 #include "date_func.h"
18 #include "viewport_func.h"
19 #include "gui.h"
20 #include "subsidy_func.h"
21 #include "subsidy_base.h"
22 #include "core/geometry_func.hpp"
24 #include "widgets/subsidy_widget.h"
26 #include "table/strings.h"
28 #include "safeguards.h"
30 struct SubsidyListWindow : Window {
31 Scrollbar *vscroll;
33 SubsidyListWindow(WindowDesc *desc, WindowNumber window_number) : Window(desc)
35 this->CreateNestedTree();
36 this->vscroll = this->GetScrollbar(WID_SUL_SCROLLBAR);
37 this->FinishInitNested(window_number);
38 this->OnInvalidateData(0);
41 virtual void OnClick(Point pt, int widget, int click_count)
43 if (widget != WID_SUL_PANEL) return;
45 int y = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_SUL_PANEL, WD_FRAMERECT_TOP);
46 int num = 0;
47 const Subsidy *s;
48 FOR_ALL_SUBSIDIES(s) {
49 if (!s->IsAwarded()) {
50 y--;
51 if (y == 0) {
52 this->HandleClick(s);
53 return;
55 num++;
59 if (num == 0) {
60 y--; // "None"
61 if (y < 0) return;
64 y -= 2; // "Services already subsidised:"
65 if (y < 0) return;
67 FOR_ALL_SUBSIDIES(s) {
68 if (s->IsAwarded()) {
69 y--;
70 if (y == 0) {
71 this->HandleClick(s);
72 return;
78 void HandleClick(const Subsidy *s)
80 /* determine src coordinate for subsidy and try to scroll to it */
81 TileIndex xy;
82 switch (s->src_type) {
83 case ST_INDUSTRY: xy = Industry::Get(s->src)->location.tile; break;
84 case ST_TOWN: xy = Town::Get(s->src)->xy; break;
85 default: NOT_REACHED();
88 if (_ctrl_pressed || !ScrollMainWindowToTile(xy)) {
89 if (_ctrl_pressed) ShowExtraViewPortWindow(xy);
91 /* otherwise determine dst coordinate for subsidy and scroll to it */
92 switch (s->dst_type) {
93 case ST_INDUSTRY: xy = Industry::Get(s->dst)->location.tile; break;
94 case ST_TOWN: xy = Town::Get(s->dst)->xy; break;
95 default: NOT_REACHED();
98 if (_ctrl_pressed) {
99 ShowExtraViewPortWindow(xy);
100 } else {
101 ScrollMainWindowToTile(xy);
107 * Count the number of lines in this window.
108 * @return the number of lines
110 uint CountLines()
112 /* Count number of (non) awarded subsidies */
113 uint num_awarded = 0;
114 uint num_not_awarded = 0;
115 const Subsidy *s;
116 FOR_ALL_SUBSIDIES(s) {
117 if (!s->IsAwarded()) {
118 num_not_awarded++;
119 } else {
120 num_awarded++;
124 /* Count the 'none' lines */
125 if (num_awarded == 0) num_awarded = 1;
126 if (num_not_awarded == 0) num_not_awarded = 1;
128 /* Offered, accepted and an empty line before the accepted ones. */
129 return 3 + num_awarded + num_not_awarded;
132 virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
134 if (widget != WID_SUL_PANEL) return;
135 Dimension d = maxdim(GetStringBoundingBox(STR_SUBSIDIES_OFFERED_TITLE), GetStringBoundingBox(STR_SUBSIDIES_SUBSIDISED_TITLE));
137 resize->height = d.height;
139 d.height *= 5;
140 d.width += padding.width + WD_FRAMERECT_RIGHT + WD_FRAMERECT_LEFT;
141 d.height += padding.height + WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM;
142 *size = maxdim(*size, d);
145 virtual void DrawWidget(const Rect &r, int widget) const
147 if (widget != WID_SUL_PANEL) return;
149 int right = r.right - WD_FRAMERECT_RIGHT;
150 int y = r.top + WD_FRAMERECT_TOP;
151 int x = r.left + WD_FRAMERECT_LEFT;
153 int pos = -this->vscroll->GetPosition();
154 const int cap = this->vscroll->GetCapacity();
156 /* Section for drawing the offered subsidies */
157 if (IsInsideMM(pos, 0, cap)) DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, STR_SUBSIDIES_OFFERED_TITLE);
158 pos++;
160 uint num = 0;
161 const Subsidy *s;
162 FOR_ALL_SUBSIDIES(s) {
163 if (!s->IsAwarded()) {
164 if (IsInsideMM(pos, 0, cap)) {
165 /* Displays the two offered towns */
166 SetupSubsidyDecodeParam(s, true);
167 SetDParam(7, _date - _cur_date_ymd.day + s->remaining * 32);
168 DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, STR_SUBSIDIES_OFFERED_FROM_TO);
170 pos++;
171 num++;
175 if (num == 0) {
176 if (IsInsideMM(pos, 0, cap)) DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, STR_SUBSIDIES_NONE);
177 pos++;
180 /* Section for drawing the already granted subsidies */
181 pos++;
182 if (IsInsideMM(pos, 0, cap)) DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, STR_SUBSIDIES_SUBSIDISED_TITLE);
183 pos++;
184 num = 0;
186 FOR_ALL_SUBSIDIES(s) {
187 if (s->IsAwarded()) {
188 if (IsInsideMM(pos, 0, cap)) {
189 SetupSubsidyDecodeParam(s, true);
190 SetDParam(7, s->awarded);
191 SetDParam(8, _date - _cur_date_ymd.day + s->remaining * 32);
193 /* Displays the two connected stations */
194 DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, STR_SUBSIDIES_SUBSIDISED_FROM_TO);
196 pos++;
197 num++;
201 if (num == 0) {
202 if (IsInsideMM(pos, 0, cap)) DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, STR_SUBSIDIES_NONE);
203 pos++;
207 virtual void OnResize()
209 this->vscroll->SetCapacityFromWidget(this, WID_SUL_PANEL);
213 * Some data on this window has become invalid.
214 * @param data Information about the changed data.
215 * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
217 virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
219 if (!gui_scope) return;
220 this->vscroll->SetCount(this->CountLines());
224 static const NWidgetPart _nested_subsidies_list_widgets[] = {
225 NWidget(NWID_HORIZONTAL),
226 NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
227 NWidget(WWT_CAPTION, COLOUR_BROWN), SetDataTip(STR_SUBSIDIES_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
228 NWidget(WWT_SHADEBOX, COLOUR_BROWN),
229 NWidget(WWT_DEFSIZEBOX, COLOUR_BROWN),
230 NWidget(WWT_STICKYBOX, COLOUR_BROWN),
231 EndContainer(),
232 NWidget(NWID_HORIZONTAL),
233 NWidget(WWT_PANEL, COLOUR_BROWN, WID_SUL_PANEL), SetDataTip(0x0, STR_SUBSIDIES_TOOLTIP_CLICK_ON_SERVICE_TO_CENTER), SetResize(1, 1), SetScrollbar(WID_SUL_SCROLLBAR), EndContainer(),
234 NWidget(NWID_VERTICAL),
235 NWidget(NWID_VSCROLLBAR, COLOUR_BROWN, WID_SUL_SCROLLBAR),
236 NWidget(WWT_RESIZEBOX, COLOUR_BROWN),
237 EndContainer(),
238 EndContainer(),
241 static WindowDesc _subsidies_list_desc(
242 WDP_AUTO, "list_subsidies", 500, 127,
243 WC_SUBSIDIES_LIST, WC_NONE,
245 _nested_subsidies_list_widgets, lengthof(_nested_subsidies_list_widgets)
249 void ShowSubsidiesList()
251 AllocateWindowDescFront<SubsidyListWindow>(&_subsidies_list_desc, 0);