OpenTTD Source  1.10.1
goal_gui.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * 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.
4  * 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.
5  * 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/>.
6  */
7 
10 #include "stdafx.h"
11 #include "industry.h"
12 #include "town.h"
13 #include "window_gui.h"
14 #include "strings_func.h"
15 #include "date_func.h"
16 #include "viewport_func.h"
17 #include "gui.h"
18 #include "goal_base.h"
19 #include "core/geometry_func.hpp"
20 #include "company_func.h"
21 #include "company_base.h"
22 #include "company_gui.h"
23 #include "story_base.h"
24 #include "command_func.h"
25 #include "string_func.h"
26 
27 #include "widgets/goal_widget.h"
28 
29 #include "table/strings.h"
30 
31 #include "safeguards.h"
32 
34 enum GoalColumn {
35  GC_GOAL = 0,
37 };
38 
40 struct GoalListWindow : public Window {
42 
44  {
45  this->CreateNestedTree();
46  this->vscroll = this->GetScrollbar(WID_GOAL_SCROLLBAR);
47  this->FinishInitNested(window_number);
48  this->owner = (Owner)this->window_number;
49  this->OnInvalidateData(0);
50  }
51 
52  void SetStringParameters(int widget) const override
53  {
54  if (widget != WID_GOAL_CAPTION) return;
55 
56  if (this->window_number == INVALID_COMPANY) {
57  SetDParam(0, STR_GOALS_SPECTATOR_CAPTION);
58  } else {
59  SetDParam(0, STR_GOALS_CAPTION);
60  SetDParam(1, this->window_number);
61  }
62  }
63 
64  void OnClick(Point pt, int widget, int click_count) override
65  {
66  if (widget != WID_GOAL_LIST) return;
67 
68  int y = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_GOAL_LIST, WD_FRAMERECT_TOP);
69  int num = 0;
70  for (const Goal *s : Goal::Iterate()) {
71  if (s->company == INVALID_COMPANY) {
72  y--;
73  if (y == 0) {
74  this->HandleClick(s);
75  return;
76  }
77  num++;
78  }
79  }
80 
81  if (num == 0) {
82  y--; // "None" line.
83  if (y < 0) return;
84  }
85 
86  y -= 2; // "Company specific goals:" line.
87  if (y < 0) return;
88 
89  for (const Goal *s : Goal::Iterate()) {
90  if (s->company == this->window_number && s->company != INVALID_COMPANY) {
91  y--;
92  if (y == 0) {
93  this->HandleClick(s);
94  return;
95  }
96  }
97  }
98  }
99 
104  void HandleClick(const Goal *s)
105  {
106  /* Determine dst coordinate for goal and try to scroll to it. */
107  TileIndex xy;
108  switch (s->type) {
109  case GT_NONE: return;
110 
111  case GT_COMPANY:
112  /* s->dst here is not a tile, but a CompanyID.
113  * Show the window with the overview of the company instead. */
115  return;
116 
117  case GT_TILE:
118  if (!IsValidTile(s->dst)) return;
119  xy = s->dst;
120  break;
121 
122  case GT_INDUSTRY:
123  if (!Industry::IsValidID(s->dst)) return;
124  xy = Industry::Get(s->dst)->location.tile;
125  break;
126 
127  case GT_TOWN:
128  if (!Town::IsValidID(s->dst)) return;
129  xy = Town::Get(s->dst)->xy;
130  break;
131 
132  case GT_STORY_PAGE: {
133  if (!StoryPage::IsValidID(s->dst)) return;
134 
135  /* Verify that:
136  * - if global goal: story page must be global.
137  * - if company goal: story page must be global or of the same company.
138  */
139  CompanyID goal_company = s->company;
140  CompanyID story_company = StoryPage::Get(s->dst)->company;
141  if (goal_company == INVALID_COMPANY ? story_company != INVALID_COMPANY : story_company != INVALID_COMPANY && story_company != goal_company) return;
142 
144  return;
145  }
146 
147  default: NOT_REACHED();
148  }
149 
150  if (_ctrl_pressed) {
152  } else {
154  }
155  }
156 
161  uint CountLines()
162  {
163  /* Count number of (non) awarded goals. */
164  uint num_global = 0;
165  uint num_company = 0;
166  for (const Goal *s : Goal::Iterate()) {
167  if (s->company == INVALID_COMPANY) {
168  num_global++;
169  } else if (s->company == this->window_number) {
170  num_company++;
171  }
172  }
173 
174  /* Count the 'none' lines. */
175  if (num_global == 0) num_global = 1;
176  if (num_company == 0) num_company = 1;
177 
178  /* Global, company and an empty line before the accepted ones. */
179  return 3 + num_global + num_company;
180  }
181 
182  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
183  {
184  if (widget != WID_GOAL_LIST) return;
185  Dimension d = maxdim(GetStringBoundingBox(STR_GOALS_GLOBAL_TITLE), GetStringBoundingBox(STR_GOALS_COMPANY_TITLE));
186 
187  resize->height = d.height;
188 
189  d.height *= 5;
190  d.width += padding.width + WD_FRAMERECT_RIGHT + WD_FRAMERECT_LEFT;
191  d.height += padding.height + WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM;
192  *size = maxdim(*size, d);
193  }
194 
206  void DrawPartialGoalList(int &pos, const int cap, int x, int y, int right, uint progress_col_width, bool global_section, GoalColumn column) const
207  {
208  if (column == GC_GOAL && IsInsideMM(pos, 0, cap)) DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, global_section ? STR_GOALS_GLOBAL_TITLE : STR_GOALS_COMPANY_TITLE);
209  pos++;
210 
211  bool rtl = _current_text_dir == TD_RTL;
212 
213  uint num = 0;
214  for (const Goal *s : Goal::Iterate()) {
215  if (global_section ? s->company == INVALID_COMPANY : (s->company == this->window_number && s->company != INVALID_COMPANY)) {
216  if (IsInsideMM(pos, 0, cap)) {
217  switch (column) {
218  case GC_GOAL: {
219  /* Display the goal. */
220  SetDParamStr(0, s->text);
221  uint width_reduction = progress_col_width > 0 ? progress_col_width + WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT : 0;
222  DrawString(x + (rtl ? width_reduction : 0), right - (rtl ? 0 : width_reduction), y + pos * FONT_HEIGHT_NORMAL, STR_GOALS_TEXT);
223  break;
224  }
225 
226  case GC_PROGRESS:
227  if (s->progress != nullptr) {
228  SetDParamStr(0, s->progress);
229  StringID str = s->completed ? STR_GOALS_PROGRESS_COMPLETE : STR_GOALS_PROGRESS;
230  int progress_x = x;
231  int progress_right = rtl ? x + progress_col_width : right;
232  DrawString(progress_x, progress_right, y + pos * FONT_HEIGHT_NORMAL, str, TC_FROMSTRING, SA_RIGHT | SA_FORCE);
233  }
234  break;
235  }
236  }
237  pos++;
238  num++;
239  }
240  }
241 
242  if (num == 0) {
243  if (column == GC_GOAL && IsInsideMM(pos, 0, cap)) {
244  StringID str = !global_section && this->window_number == INVALID_COMPANY ? STR_GOALS_SPECTATOR_NONE : STR_GOALS_NONE;
245  DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, str);
246  }
247  pos++;
248  }
249  }
250 
258  void DrawListColumn(GoalColumn column, NWidgetBase *wid, uint progress_col_width) const
259  {
260  /* Get column draw area. */
261  int y = wid->pos_y + WD_FRAMERECT_TOP;
262  int x = wid->pos_x + WD_FRAMERECT_LEFT;
263  int right = x + wid->current_x - WD_FRAMERECT_RIGHT;
264 
265  int pos = -this->vscroll->GetPosition();
266  const int cap = this->vscroll->GetCapacity();
267 
268  /* Draw partial list with global goals. */
269  DrawPartialGoalList(pos, cap, x, y, right, progress_col_width, true, column);
270 
271  /* Draw partial list with company goals. */
272  pos++;
273  DrawPartialGoalList(pos, cap, x, y, right, progress_col_width, false, column);
274  }
275 
276  void OnPaint() override
277  {
278  this->DrawWidgets();
279 
280  if (this->IsShaded()) return; // Don't draw anything when the window is shaded.
281 
282  /* Calculate progress column width. */
283  uint max_width = 0;
284  for (const Goal *s : Goal::Iterate()) {
285  if (s->progress != nullptr) {
286  SetDParamStr(0, s->progress);
287  StringID str = s->completed ? STR_GOALS_PROGRESS_COMPLETE : STR_GOALS_PROGRESS;
288  uint str_width = GetStringBoundingBox(str).width;
289  if (str_width > max_width) max_width = str_width;
290  }
291  }
292 
293  NWidgetBase *wid = this->GetWidget<NWidgetBase>(WID_GOAL_LIST);
294  uint progress_col_width = min(max_width, wid->current_x);
295 
296  /* Draw goal list. */
297  this->DrawListColumn(GC_PROGRESS, wid, progress_col_width);
298  this->DrawListColumn(GC_GOAL, wid, progress_col_width);
299 
300  }
301 
302  void OnResize() override
303  {
304  this->vscroll->SetCapacityFromWidget(this, WID_GOAL_LIST);
305  }
306 
312  void OnInvalidateData(int data = 0, bool gui_scope = true) override
313  {
314  if (!gui_scope) return;
315  this->vscroll->SetCount(this->CountLines());
317  }
318 };
319 
323  NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
324  NWidget(WWT_CAPTION, COLOUR_BROWN, WID_GOAL_CAPTION), SetDataTip(STR_JUST_STRING, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
325  NWidget(WWT_SHADEBOX, COLOUR_BROWN),
326  NWidget(WWT_DEFSIZEBOX, COLOUR_BROWN),
327  NWidget(WWT_STICKYBOX, COLOUR_BROWN),
328  EndContainer(),
330  NWidget(WWT_PANEL, COLOUR_BROWN), SetDataTip(0x0, STR_GOALS_TOOLTIP_CLICK_ON_SERVICE_TO_CENTER), SetScrollbar(WID_GOAL_SCROLLBAR),
332  EndContainer(),
335  NWidget(WWT_RESIZEBOX, COLOUR_BROWN),
336  EndContainer(),
337  EndContainer(),
338 };
339 
340 static WindowDesc _goals_list_desc(
341  WDP_AUTO, "list_goals", 500, 127,
343  0,
344  _nested_goals_list_widgets, lengthof(_nested_goals_list_widgets)
345 );
346 
352 {
353  if (!Company::IsValidID(company)) company = (CompanyID)INVALID_COMPANY;
354 
355  AllocateWindowDescFront<GoalListWindow>(&_goals_list_desc, company);
356 }
357 
359 struct GoalQuestionWindow : public Window {
360  char *question;
361  int buttons;
362  int button[3];
363  byte type;
364 
365  GoalQuestionWindow(WindowDesc *desc, WindowNumber window_number, byte type, uint32 button_mask, const char *question) : Window(desc), type(type)
366  {
367  assert(type < GOAL_QUESTION_TYPE_COUNT);
368  this->question = stredup(question);
369 
370  /* Figure out which buttons we have to enable. */
371  uint bit;
372  int n = 0;
373  FOR_EACH_SET_BIT(bit, button_mask) {
374  if (bit >= GOAL_QUESTION_BUTTON_COUNT) break;
375  this->button[n++] = bit;
376  if (n == 3) break;
377  }
378  this->buttons = n;
379  assert(this->buttons > 0 && this->buttons < 4);
380 
381  this->CreateNestedTree();
382  this->GetWidget<NWidgetStacked>(WID_GQ_BUTTONS)->SetDisplayedPlane(this->buttons - 1);
383  this->FinishInitNested(window_number);
384  }
385 
387  {
388  free(this->question);
389  }
390 
391  void SetStringParameters(int widget) const override
392  {
393  switch (widget) {
394  case WID_GQ_CAPTION:
395  SetDParam(0, STR_GOAL_QUESTION_CAPTION_QUESTION + this->type);
396  break;
397 
398  case WID_GQ_BUTTON_1:
399  SetDParam(0, STR_GOAL_QUESTION_BUTTON_CANCEL + this->button[0]);
400  break;
401 
402  case WID_GQ_BUTTON_2:
403  SetDParam(0, STR_GOAL_QUESTION_BUTTON_CANCEL + this->button[1]);
404  break;
405 
406  case WID_GQ_BUTTON_3:
407  SetDParam(0, STR_GOAL_QUESTION_BUTTON_CANCEL + this->button[2]);
408  break;
409  }
410  }
411 
412  void OnClick(Point pt, int widget, int click_count) override
413  {
414  switch (widget) {
415  case WID_GQ_BUTTON_1:
416  DoCommandP(0, this->window_number, this->button[0], CMD_GOAL_QUESTION_ANSWER);
417  delete this;
418  break;
419 
420  case WID_GQ_BUTTON_2:
421  DoCommandP(0, this->window_number, this->button[1], CMD_GOAL_QUESTION_ANSWER);
422  delete this;
423  break;
424 
425  case WID_GQ_BUTTON_3:
426  DoCommandP(0, this->window_number, this->button[2], CMD_GOAL_QUESTION_ANSWER);
427  delete this;
428  break;
429  }
430  }
431 
432  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
433  {
434  if (widget != WID_GQ_QUESTION) return;
435 
436  SetDParamStr(0, this->question);
437  size->height = GetStringHeight(STR_JUST_RAW_STRING, size->width) + WD_PAR_VSEP_WIDE;
438  }
439 
440  void DrawWidget(const Rect &r, int widget) const override
441  {
442  if (widget != WID_GQ_QUESTION) return;
443 
444  SetDParamStr(0, this->question);
445  DrawStringMultiLine(r.left, r.right, r.top, UINT16_MAX, STR_JUST_RAW_STRING, TC_BLACK, SA_TOP | SA_HOR_CENTER);
446  }
447 };
448 
452  NWidget(WWT_CLOSEBOX, COLOUR_LIGHT_BLUE),
453  NWidget(WWT_CAPTION, COLOUR_LIGHT_BLUE, WID_GQ_CAPTION), SetDataTip(STR_WHITE_STRING, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
454  EndContainer(),
455  NWidget(WWT_PANEL, COLOUR_LIGHT_BLUE),
456  NWidget(WWT_EMPTY, INVALID_COLOUR, WID_GQ_QUESTION), SetMinimalSize(300, 0), SetPadding(8, 8, 8, 8), SetFill(1, 0),
457  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_GQ_BUTTONS),
459  NWidget(WWT_PUSHTXTBTN, COLOUR_LIGHT_BLUE, WID_GQ_BUTTON_1), SetDataTip(STR_BLACK_STRING, STR_NULL), SetFill(1, 0),
460  EndContainer(),
462  NWidget(WWT_PUSHTXTBTN, COLOUR_LIGHT_BLUE, WID_GQ_BUTTON_1), SetDataTip(STR_BLACK_STRING, STR_NULL), SetFill(1, 0),
463  NWidget(WWT_PUSHTXTBTN, COLOUR_LIGHT_BLUE, WID_GQ_BUTTON_2), SetDataTip(STR_BLACK_STRING, STR_NULL), SetFill(1, 0),
464  EndContainer(),
466  NWidget(WWT_PUSHTXTBTN, COLOUR_LIGHT_BLUE, WID_GQ_BUTTON_1), SetDataTip(STR_BLACK_STRING, STR_NULL), SetFill(1, 0),
467  NWidget(WWT_PUSHTXTBTN, COLOUR_LIGHT_BLUE, WID_GQ_BUTTON_2), SetDataTip(STR_BLACK_STRING, STR_NULL), SetFill(1, 0),
468  NWidget(WWT_PUSHTXTBTN, COLOUR_LIGHT_BLUE, WID_GQ_BUTTON_3), SetDataTip(STR_BLACK_STRING, STR_NULL), SetFill(1, 0),
469  EndContainer(),
470  EndContainer(),
472  EndContainer(),
473 };
474 
475 static WindowDesc _goal_question_list_desc(
476  WDP_CENTER, nullptr, 0, 0,
479  _nested_goal_question_widgets, lengthof(_nested_goal_question_widgets)
480 );
481 
489 void ShowGoalQuestion(uint16 id, byte type, uint32 button_mask, const char *question)
490 {
491  new GoalQuestionWindow(&_goal_question_list_desc, id, type, button_mask, question);
492 }
Functions related to OTTD&#39;s strings.
Owner
Enum for all companies/owners.
Definition: company_type.h:18
Empty widget, place holder to reserve space in widget array.
Definition: widget_type.h:46
Destination is an industry.
Definition: goal_type.h:22
Definition of stuff that is very close to a company, like the company struct itself.
Horizontally center the text.
Definition: gfx_func.h:95
ResizeInfo resize
Resize information.
Definition: window_gui.h:322
static NWidgetPart SetResize(int16 dx, int16 dy)
Widget part function for setting the resize step.
Definition: widget_type.h:928
Caption of the window.
Definition: goal_widget.h:16
Buttons selection (between 1, 2 or 3).
Definition: goal_widget.h:25
High level window description.
Definition: window_gui.h:166
Goal progress column.
Definition: goal_gui.cpp:36
static const NWidgetPart _nested_goal_question_widgets[]
Widgets of the goal question window.
Definition: goal_gui.cpp:450
void DrawWidgets() const
Paint all widgets of a window.
Definition: widget.cpp:602
static Titem * Get(size_t index)
Returns Titem with given index.
Definition: pool_type.hpp:329
Functions related to dates.
Scrollbar data structure.
Definition: widget_type.h:587
void SetWidgetDirty(byte widget_index) const
Invalidate a widget, i.e.
Definition: window.cpp:597
Offset at top to draw the frame rectangular area.
Definition: window_gui.h:62
Horizontal container.
Definition: widget_type.h:73
Popup with a set of buttons, designed to ask the user a question from a GameScript.
Definition: window_type.h:130
void DrawPartialGoalList(int &pos, const int cap, int x, int y, int right, uint progress_col_width, bool global_section, GoalColumn column) const
Draws either the global goals or the company goal section.
Definition: goal_gui.cpp:206
void SetStringParameters(int widget) const override
Initialize string parameters for a widget.
Definition: goal_gui.cpp:391
char * question
Question to ask (private copy).
Definition: goal_gui.cpp:360
Window for displaying goals.
Definition: goal_gui.cpp:40
Resize box (normally at bottom-right of a window)
Definition: widget_type.h:66
Struct about goals, current and completed.
Definition: goal_base.h:21
Goals list; Window numbers:
Definition: window_type.h:283
void ShowGoalsList(CompanyID company)
Open a goal list window.
Definition: goal_gui.cpp:351
Third button.
Definition: goal_widget.h:28
int GetStringHeight(const char *str, int maxw, FontSize fontsize)
Calculates height of string (in pixels).
Definition: gfx.cpp:685
Close box (at top-left of a window)
Definition: widget_type.h:67
static NWidgetPart SetMinimalTextLines(uint8 lines, uint8 spacing, FontSize size=FS_NORMAL)
Widget part function for setting the minimal text lines.
Definition: widget_type.h:963
Ask a question about a goal.
Definition: goal_gui.cpp:359
First button.
Definition: goal_widget.h:26
#define FOR_EACH_SET_BIT(bitpos_var, bitset_value)
Do an operation for each set set bit in a value.
byte type
Type of question.
Definition: goal_gui.cpp:363
void CreateNestedTree(bool fill_nested=true)
Perform the first part of the initialization of a nested widget tree.
Definition: window.cpp:1831
void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
Update size and resize step of a widget in the window.
Definition: goal_gui.cpp:432
Large amount of vertical space between two paragraphs of text.
Definition: window_gui.h:138
void OnResize() override
Called after the window got resized.
Definition: goal_gui.cpp:302
Functions, definitions and such used only by the GUI.
Caption of the window.
Definition: goal_widget.h:23
void SetCount(int num)
Sets the number of elements in the list.
Definition: widget_type.h:668
Force the alignment, i.e. don&#39;t swap for RTL languages.
Definition: gfx_func.h:106
Partial widget specification to allow NWidgets to be written nested.
Definition: widget_type.h:908
Functions related to (drawing on) viewports.
GoalTypeID dst
Index of type.
Definition: goal_base.h:24
Data structure for an opened window.
Definition: window_gui.h:276
bool _ctrl_pressed
Is Ctrl pressed?
Definition: gfx.cpp:35
void FinishInitNested(WindowNumber window_number=0)
Perform the second part of the initialization of a nested widget tree.
Definition: window.cpp:1847
static bool IsValidTile(TileIndex tile)
Checks if a tile is valid.
Definition: tile_map.h:161
static NWidgetPart SetPadding(uint8 top, uint8 right, uint8 bottom, uint8 left)
Widget part function for setting additional space around a widget.
Definition: widget_type.h:1044
static bool IsInsideMM(const T x, const size_t min, const size_t max)
Checks if a value is in an interval.
Definition: math_func.hpp:264
Destination is a tile.
Definition: goal_type.h:21
void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
Update size and resize step of a widget in the window.
Definition: goal_gui.cpp:182
Bottom offset of the text of the frame.
Definition: window_gui.h:73
void SetDParamStr(uint n, const char *str)
This function is used to "bind" a C string to a OpenTTD dparam slot.
Definition: strings.cpp:279
Functions related to low-level strings.
Invisible widget that takes some space.
Definition: widget_type.h:77
void ShowCompany(CompanyID company)
Show the window with the overview of the company.
Default window size box (at top-right of a window, between WWT_SHADEBOX and WWT_STICKYBOX) ...
Definition: widget_type.h:63
int GetScrolledRowFromWidget(int clickpos, const Window *const w, int widget, int padding=0, int line_height=-1) const
Compute the row of a scrolled widget that a user clicked in.
Definition: widget.cpp:1957
This window is used for construction; close it whenever changing company.
Definition: window_gui.h:208
#define FONT_HEIGHT_NORMAL
Height of characters in the normal (FS_NORMAL) font.
Definition: gfx_func.h:177
static NWidgetPart SetDataTip(uint32 data, StringID tip)
Widget part function for setting the data and tooltip.
Definition: widget_type.h:1012
static NWidgetPart SetMinimalSize(int16 x, int16 y)
Widget part function for setting the minimal size.
Definition: widget_type.h:945
Destination is a town.
Definition: goal_type.h:23
Definition of base types and functions in a cross-platform compatible way.
Top align the text.
Definition: gfx_func.h:99
static const NWidgetPart _nested_goals_list_widgets[]
Widgets of the GoalListWindow.
Definition: goal_gui.cpp:321
A number of safeguards to prevent using unsafe methods.
Normal push-button (no toggle button) with text caption.
Definition: widget_type.h:102
Geometry functions.
Simple depressed panel.
Definition: widget_type.h:48
const Scrollbar * GetScrollbar(uint widnum) const
Return the Scrollbar to a widget index.
Definition: window.cpp:309
char * stredup(const char *s, const char *last)
Create a duplicate of the given string.
Definition: string.cpp:136
GUI Functions related to companies.
Goal list.
Definition: goal_widget.h:17
int pos_x
Horizontal position of top-left corner of the widget in the window.
Definition: widget_type.h:175
Center the window.
Definition: window_gui.h:155
static NWidgetPart NWidget(WidgetType tp, Colours col, int16 idx=-1)
Widget part function for starting a new &#39;real&#39; widget.
Definition: widget_type.h:1112
Offset at bottom to draw the frame rectangular area.
Definition: window_gui.h:63
Baseclass for nested widgets.
Definition: widget_type.h:124
int DrawString(int left, int right, int top, const char *str, TextColour colour, StringAlignment align, bool underline, FontSize fontsize)
Draw string, possibly truncated to make it fit in its allocated space.
Definition: gfx.cpp:636
bool DoCommandP(const CommandContainer *container, bool my_cmd)
Shortcut for the long DoCommandP when having a container with the data.
Definition: command.cpp:536
#define lengthof(x)
Return the length of an fixed size array.
Definition: depend.cpp:40
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: goal_gui.cpp:312
void OnClick(Point pt, int widget, int click_count) override
A click with the left mouse button has been made on the window.
Definition: goal_gui.cpp:412
static T min(const T a, const T b)
Returns the minimum of two values.
Definition: math_func.hpp:40
uint32 StringID
Numeric value that represents a string, independent of the selected language.
Definition: strings_type.h:16
Destination is not linked.
Definition: goal_type.h:20
void ShowExtraViewPortWindow(TileIndex tile=INVALID_TILE)
Show a new Extra Viewport window.
Dimension GetStringBoundingBox(const char *str, FontSize start_fontsize)
Return the string dimension in pixels.
Definition: gfx.cpp:838
Scrollbar * vscroll
Reference to the scrollbar widget.
Definition: goal_gui.cpp:41
void OnPaint() override
The window must be repainted.
Definition: goal_gui.cpp:276
Dimension maxdim(const Dimension &d1, const Dimension &d2)
Compute bounding box of both dimensions.
No window, redirects to WC_MAIN_WINDOW.
Definition: window_type.h:38
Functions related to companies.
Scrollbar of the goal list.
Definition: goal_widget.h:18
An invalid company.
Definition: company_type.h:30
static Pool::IterateWrapper< Titem > Iterate(size_t from=0)
Returns an iterable ensemble of all valid Titem.
Definition: pool_type.hpp:378
Window caption (window title between closebox and stickybox)
Definition: widget_type.h:59
uint32 TileIndex
The index/ID of a Tile.
Definition: tile_type.h:78
Types related to the goal widgets.
TextDirection _current_text_dir
Text direction of the currently selected language.
Definition: strings.cpp:48
Vertical container.
Definition: widget_type.h:75
void ShowGoalQuestion(uint16 id, byte type, uint32 button_mask, const char *question)
Display a goal question.
Definition: goal_gui.cpp:489
static NWidgetPart EndContainer()
Widget part function for denoting the end of a container (horizontal, vertical, WWT_FRAME, WWT_INSET, or WWT_PANEL).
Definition: widget_type.h:997
Second button.
Definition: goal_widget.h:27
uint current_x
Current horizontal size (after resizing).
Definition: widget_type.h:172
Goal base class.
bool ScrollMainWindowToTile(TileIndex tile, bool instant)
Scrolls the viewport of the main window to a given location.
Definition: viewport.cpp:2396
Functions related to commands.
void ShowStoryBook(CompanyID company, uint16 page_id=INVALID_STORY_PAGE)
Raise or create the story book window for company, at page page_id.
Definition: story_gui.cpp:750
Coordinates of a point in 2D.
Destination is a company.
Definition: goal_type.h:24
static bool IsValidID(size_t index)
Tests whether given index can be used to get valid (non-nullptr) Titem.
Definition: pool_type.hpp:318
Destination is a story page.
Definition: goal_type.h:25
uint16 GetCapacity() const
Gets the number of visible elements of the scrollbar.
Definition: widget_type.h:620
uint CountLines()
Count the number of lines in this window.
Definition: goal_gui.cpp:161
Goal text column.
Definition: goal_gui.cpp:35
void HandleClick(const Goal *s)
Handle clicking at a goal.
Definition: goal_gui.cpp:104
Owner owner
The owner of the content shown in this window. Company colour is acquired from this variable...
Definition: window_gui.h:324
StoryPage base class.
Base of all industries.
static void free(const void *ptr)
Version of the standard free that accepts const pointers.
Definition: depend.cpp:129
CompanyID company
Goal is for a specific company; INVALID_COMPANY if it is global.
Definition: goal_base.h:22
Offset at right to draw the frame rectangular area.
Definition: window_gui.h:61
Sticky box (at top-right of a window, after WWT_DEFSIZEBOX)
Definition: widget_type.h:64
static NWidgetPart SetFill(uint fill_x, uint fill_y)
Widget part function for setting filling.
Definition: widget_type.h:981
static const uint32 GOAL_QUESTION_BUTTON_COUNT
Amount of buttons available.
Definition: goal_type.h:15
void OnClick(Point pt, int widget, int click_count) override
A click with the left mouse button has been made on the window.
Definition: goal_gui.cpp:64
GoalColumn
Goal list columns.
Definition: goal_gui.cpp:34
Base of the town class.
answer(s) to CMD_GOAL_QUESTION
Definition: command_type.h:288
int32 WindowNumber
Number to differentiate different windows of the same class.
Definition: window_type.h:711
void SetCapacityFromWidget(Window *w, int widget, int padding=0)
Set capacity of visible elements from the size and resize properties of a widget. ...
Definition: widget.cpp:1971
Specification of a rectangle with absolute coordinates of all edges.
Vertical scrollbar.
Definition: widget_type.h:82
bool IsShaded() const
Is window shaded currently?
Definition: window_gui.h:524
Text is written right-to-left by default.
Definition: strings_type.h:24
Right align the text (must be a single bit).
Definition: gfx_func.h:96
WindowNumber window_number
Window number within the window class.
Definition: window_gui.h:312
static const byte GOAL_QUESTION_TYPE_COUNT
Amount of question types.
Definition: goal_type.h:16
void SetStringParameters(int widget) const override
Initialize string parameters for a widget.
Definition: goal_gui.cpp:52
Find a place automatically.
Definition: window_gui.h:154
Stacked widgets, only one visible at a time (eg in a panel with tabs).
Definition: widget_type.h:78
GUI functions that shouldn&#39;t be here.
int buttons
Number of valid buttons in button.
Definition: goal_gui.cpp:361
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: goal_gui.cpp:440
static NWidgetPart SetScrollbar(int index)
Attach a scrollbar to a widget.
Definition: widget_type.h:1093
Question text.
Definition: goal_widget.h:24
Dimensions (a width and height) of a rectangle in 2D.
Value of the NCB_EQUALSIZE flag.
Definition: widget_type.h:427
Offset at left to draw the frame rectangular area.
Definition: window_gui.h:60
Shade box (at top-right of a window, between WWT_DEBUGBOX and WWT_DEFSIZEBOX)
Definition: widget_type.h:62
static NWidgetPart SetPIP(uint8 pre, uint8 inter, uint8 post)
Widget part function for setting a pre/inter/post spaces.
Definition: widget_type.h:1074
int pos_y
Vertical position of top-left corner of the widget in the window.
Definition: widget_type.h:176
GoalType type
Type of the goal.
Definition: goal_base.h:23
int DrawStringMultiLine(int left, int right, int top, int bottom, const char *str, TextColour colour, StringAlignment align, bool underline, FontSize fontsize)
Draw string, possibly over multiple lines.
Definition: gfx.cpp:759
uint16 GetPosition() const
Gets the position of the first visible element in the list.
Definition: widget_type.h:629
static void SetDParam(uint n, uint64 v)
Set a string parameter v at index n in the global string parameter array.
Definition: strings_func.h:199
void DrawListColumn(GoalColumn column, NWidgetBase *wid, uint progress_col_width) const
Draws a given column of the goal list.
Definition: goal_gui.cpp:258