OpenTTD Source  1.11.2
graph_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 "graph_gui.h"
12 #include "window_gui.h"
13 #include "company_base.h"
14 #include "company_gui.h"
15 #include "economy_func.h"
16 #include "cargotype.h"
17 #include "strings_func.h"
18 #include "window_func.h"
19 #include "date_func.h"
20 #include "gfx_func.h"
21 #include "sortlist_type.h"
22 #include "core/geometry_func.hpp"
23 #include "currency.h"
24 
25 #include "widgets/graph_widget.h"
26 
27 #include "table/strings.h"
28 #include "table/sprites.h"
29 #include <math.h>
30 
31 #include "safeguards.h"
32 
33 /* Bitmasks of company and cargo indices that shouldn't be drawn. */
34 static CompanyMask _legend_excluded_companies;
35 static CargoTypes _legend_excluded_cargo;
36 
37 /* Apparently these don't play well with enums. */
38 static const OverflowSafeInt64 INVALID_DATAPOINT(INT64_MAX); // Value used for a datapoint that shouldn't be drawn.
39 static const uint INVALID_DATAPOINT_POS = UINT_MAX; // Used to determine if the previous point was drawn.
40 
41 /****************/
42 /* GRAPH LEGEND */
43 /****************/
44 
47  {
48  this->InitNested(window_number);
49 
50  for (CompanyID c = COMPANY_FIRST; c < MAX_COMPANIES; c++) {
51  if (!HasBit(_legend_excluded_companies, c)) this->LowerWidget(c + WID_GL_FIRST_COMPANY);
52 
53  this->OnInvalidateData(c);
54  }
55  }
56 
57  void DrawWidget(const Rect &r, int widget) const override
58  {
60 
61  CompanyID cid = (CompanyID)(widget - WID_GL_FIRST_COMPANY);
62 
63  if (!Company::IsValidID(cid)) return;
64 
65  bool rtl = _current_text_dir == TD_RTL;
66 
67  Dimension d = GetSpriteSize(SPR_COMPANY_ICON);
68  DrawCompanyIcon(cid, rtl ? r.right - d.width - 2 : r.left + 2, r.top + (r.bottom - r.top - d.height) / 2);
69 
70  SetDParam(0, cid);
71  SetDParam(1, cid);
72  DrawString(r.left + (rtl ? (uint)WD_FRAMERECT_LEFT : (d.width + 4)), r.right - (rtl ? (d.width + 4) : (uint)WD_FRAMERECT_RIGHT), r.top + (r.bottom - r.top + 1 - FONT_HEIGHT_NORMAL) / 2, STR_COMPANY_NAME_COMPANY_NUM, HasBit(_legend_excluded_companies, cid) ? TC_BLACK : TC_WHITE);
73  }
74 
75  void OnClick(Point pt, int widget, int click_count) override
76  {
78 
79  ToggleBit(_legend_excluded_companies, widget - WID_GL_FIRST_COMPANY);
80  this->ToggleWidgetLoweredState(widget);
81  this->SetDirty();
87  }
88 
94  void OnInvalidateData(int data = 0, bool gui_scope = true) override
95  {
96  if (!gui_scope) return;
97  if (Company::IsValidID(data)) return;
98 
99  SetBit(_legend_excluded_companies, data);
100  this->RaiseWidget(data + WID_GL_FIRST_COMPANY);
101  }
102 };
103 
110 static NWidgetBase *MakeNWidgetCompanyLines(int *biggest_index)
111 {
112  NWidgetVertical *vert = new NWidgetVertical();
113  uint line_height = std::max<uint>(GetSpriteSize(SPR_COMPANY_ICON).height, FONT_HEIGHT_NORMAL) + WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM;
114 
115  for (int widnum = WID_GL_FIRST_COMPANY; widnum <= WID_GL_LAST_COMPANY; widnum++) {
116  NWidgetBackground *panel = new NWidgetBackground(WWT_PANEL, COLOUR_BROWN, widnum);
117  panel->SetMinimalSize(246, line_height);
118  panel->SetFill(1, 0);
119  panel->SetDataTip(0x0, STR_GRAPH_KEY_COMPANY_SELECTION_TOOLTIP);
120  vert->Add(panel);
121  }
122  *biggest_index = WID_GL_LAST_COMPANY;
123  return vert;
124 }
125 
126 static const NWidgetPart _nested_graph_legend_widgets[] = {
128  NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
129  NWidget(WWT_CAPTION, COLOUR_BROWN), SetDataTip(STR_GRAPH_KEY_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
130  NWidget(WWT_SHADEBOX, COLOUR_BROWN),
131  NWidget(WWT_STICKYBOX, COLOUR_BROWN),
132  EndContainer(),
133  NWidget(WWT_PANEL, COLOUR_BROWN, WID_GL_BACKGROUND),
139  EndContainer(),
140  EndContainer(),
141 };
142 
143 static WindowDesc _graph_legend_desc(
144  WDP_AUTO, "graph_legend", 0, 0,
146  0,
147  _nested_graph_legend_widgets, lengthof(_nested_graph_legend_widgets)
148 );
149 
150 static void ShowGraphLegend()
151 {
152  AllocateWindowDescFront<GraphLegendWindow>(&_graph_legend_desc, 0);
153 }
154 
159 };
160 
161 /******************/
162 /* BASE OF GRAPHS */
163 /*****************/
164 
166 protected:
167  static const int GRAPH_MAX_DATASETS = 64;
168  static const int GRAPH_BASE_COLOUR = GREY_SCALE(2);
169  static const int GRAPH_GRID_COLOUR = GREY_SCALE(3);
170  static const int GRAPH_AXIS_LINE_COLOUR = GREY_SCALE(1);
171  static const int GRAPH_ZERO_LINE_COLOUR = GREY_SCALE(8);
172  static const int GRAPH_YEAR_LINE_COLOUR = GREY_SCALE(5);
173  static const int GRAPH_NUM_MONTHS = 24;
174 
175  static const TextColour GRAPH_AXIS_LABEL_COLOUR = TC_BLACK;
176 
177  static const int MIN_GRAPH_NUM_LINES_Y = 9;
178  static const int MIN_GRID_PIXEL_SIZE = 20;
179 
180  uint64 excluded_data;
181  byte num_dataset;
182  byte num_on_x_axis;
183  byte num_vert_lines;
184 
185  /* The starting month and year that values are plotted against. If month is
186  * 0xFF, use x_values_start and x_values_increment below instead. */
187  byte month;
188  Year year;
189 
190  /* These values are used if the graph is being plotted against values
191  * rather than the dates specified by month and year. */
192  uint16 x_values_start;
193  uint16 x_values_increment;
194 
195  int graph_widget;
196  StringID format_str_y_axis;
197  byte colours[GRAPH_MAX_DATASETS];
198  OverflowSafeInt64 cost[GRAPH_MAX_DATASETS][GRAPH_NUM_MONTHS];
199 
206  ValuesInterval GetValuesInterval(int num_hori_lines) const
207  {
208  assert(num_hori_lines > 0);
209 
210  ValuesInterval current_interval;
211  current_interval.highest = INT64_MIN;
212  current_interval.lowest = INT64_MAX;
213 
214  for (int i = 0; i < this->num_dataset; i++) {
215  if (HasBit(this->excluded_data, i)) continue;
216  for (int j = 0; j < this->num_on_x_axis; j++) {
217  OverflowSafeInt64 datapoint = this->cost[i][j];
218 
219  if (datapoint != INVALID_DATAPOINT) {
220  current_interval.highest = std::max(current_interval.highest, datapoint);
221  current_interval.lowest = std::min(current_interval.lowest, datapoint);
222  }
223  }
224  }
225 
226  /* Prevent showing values too close to the graph limits. */
227  current_interval.highest = (11 * current_interval.highest) / 10;
228  current_interval.lowest = (11 * current_interval.lowest) / 10;
229 
230  /* Always include zero in the shown range. */
231  double abs_lower = (current_interval.lowest > 0) ? 0 : (double)abs(current_interval.lowest);
232  double abs_higher = (current_interval.highest < 0) ? 0 : (double)current_interval.highest;
233 
234  int num_pos_grids;
235  int64 grid_size;
236 
237  if (abs_lower != 0 || abs_higher != 0) {
238  /* The number of grids to reserve for the positive part is: */
239  num_pos_grids = (int)floor(0.5 + num_hori_lines * abs_higher / (abs_higher + abs_lower));
240 
241  /* If there are any positive or negative values, force that they have at least one grid. */
242  if (num_pos_grids == 0 && abs_higher != 0) num_pos_grids++;
243  if (num_pos_grids == num_hori_lines && abs_lower != 0) num_pos_grids--;
244 
245  /* Get the required grid size for each side and use the maximum one. */
246  int64 grid_size_higher = (abs_higher > 0) ? ((int64)abs_higher + num_pos_grids - 1) / num_pos_grids : 0;
247  int64 grid_size_lower = (abs_lower > 0) ? ((int64)abs_lower + num_hori_lines - num_pos_grids - 1) / (num_hori_lines - num_pos_grids) : 0;
248  grid_size = std::max(grid_size_higher, grid_size_lower);
249  } else {
250  /* If both values are zero, show an empty graph. */
251  num_pos_grids = num_hori_lines / 2;
252  grid_size = 1;
253  }
254 
255  current_interval.highest = num_pos_grids * grid_size;
256  current_interval.lowest = -(num_hori_lines - num_pos_grids) * grid_size;
257  return current_interval;
258  }
259 
265  uint GetYLabelWidth(ValuesInterval current_interval, int num_hori_lines) const
266  {
267  /* draw text strings on the y axis */
268  int64 y_label = current_interval.highest;
269  int64 y_label_separation = (current_interval.highest - current_interval.lowest) / num_hori_lines;
270 
271  uint max_width = 0;
272 
273  for (int i = 0; i < (num_hori_lines + 1); i++) {
274  SetDParam(0, this->format_str_y_axis);
275  SetDParam(1, y_label);
276  Dimension d = GetStringBoundingBox(STR_GRAPH_Y_LABEL);
277  if (d.width > max_width) max_width = d.width;
278 
279  y_label -= y_label_separation;
280  }
281 
282  return max_width;
283  }
284 
289  void DrawGraph(Rect r) const
290  {
291  uint x, y;
292  ValuesInterval interval;
293  int x_axis_offset;
294 
295  /* the colours and cost array of GraphDrawer must accommodate
296  * both values for cargo and companies. So if any are higher, quit */
297  static_assert(GRAPH_MAX_DATASETS >= (int)NUM_CARGO && GRAPH_MAX_DATASETS >= (int)MAX_COMPANIES);
298  assert(this->num_vert_lines > 0);
299 
300  /* Rect r will be adjusted to contain just the graph, with labels being
301  * placed outside the area. */
302  r.top += 5 + GetCharacterHeight(FS_SMALL) / 2;
303  r.bottom -= (this->month == 0xFF ? 1 : 2) * GetCharacterHeight(FS_SMALL) + 4;
304  r.left += 9;
305  r.right -= 5;
306 
307  /* Initial number of horizontal lines. */
308  int num_hori_lines = 160 / MIN_GRID_PIXEL_SIZE;
309  /* For the rest of the height, the number of horizontal lines will increase more slowly. */
310  int resize = (r.bottom - r.top - 160) / (2 * MIN_GRID_PIXEL_SIZE);
311  if (resize > 0) num_hori_lines += resize;
312 
313  interval = GetValuesInterval(num_hori_lines);
314 
315  int label_width = GetYLabelWidth(interval, num_hori_lines);
316 
317  r.left += label_width;
318 
319  int x_sep = (r.right - r.left) / this->num_vert_lines;
320  int y_sep = (r.bottom - r.top) / num_hori_lines;
321 
322  /* Redetermine right and bottom edge of graph to fit with the integer
323  * separation values. */
324  r.right = r.left + x_sep * this->num_vert_lines;
325  r.bottom = r.top + y_sep * num_hori_lines;
326 
327  OverflowSafeInt64 interval_size = interval.highest + abs(interval.lowest);
328  /* Where to draw the X axis. Use floating point to avoid overflowing and results of zero. */
329  x_axis_offset = (int)((r.bottom - r.top) * (double)interval.highest / (double)interval_size);
330 
331  /* Draw the background of the graph itself. */
332  GfxFillRect(r.left, r.top, r.right, r.bottom, GRAPH_BASE_COLOUR);
333 
334  /* Draw the vertical grid lines. */
335 
336  /* Don't draw the first line, as that's where the axis will be. */
337  x = r.left + x_sep;
338 
339  for (int i = 0; i < this->num_vert_lines; i++) {
340  GfxFillRect(x, r.top, x, r.bottom, GRAPH_GRID_COLOUR);
341  x += x_sep;
342  }
343 
344  /* Draw the horizontal grid lines. */
345  y = r.bottom;
346 
347  for (int i = 0; i < (num_hori_lines + 1); i++) {
348  GfxFillRect(r.left - 3, y, r.left - 1, y, GRAPH_AXIS_LINE_COLOUR);
349  GfxFillRect(r.left, y, r.right, y, GRAPH_GRID_COLOUR);
350  y -= y_sep;
351  }
352 
353  /* Draw the y axis. */
354  GfxFillRect(r.left, r.top, r.left, r.bottom, GRAPH_AXIS_LINE_COLOUR);
355 
356  /* Draw the x axis. */
357  y = x_axis_offset + r.top;
358  GfxFillRect(r.left, y, r.right, y, GRAPH_ZERO_LINE_COLOUR);
359 
360  /* Find the largest value that will be drawn. */
361  if (this->num_on_x_axis == 0) return;
362 
363  assert(this->num_on_x_axis > 0);
364  assert(this->num_dataset > 0);
365 
366  /* draw text strings on the y axis */
367  int64 y_label = interval.highest;
368  int64 y_label_separation = abs(interval.highest - interval.lowest) / num_hori_lines;
369 
370  y = r.top - GetCharacterHeight(FS_SMALL) / 2;
371 
372  for (int i = 0; i < (num_hori_lines + 1); i++) {
373  SetDParam(0, this->format_str_y_axis);
374  SetDParam(1, y_label);
375  DrawString(r.left - label_width - 4, r.left - 4, y, STR_GRAPH_Y_LABEL, GRAPH_AXIS_LABEL_COLOUR, SA_RIGHT);
376 
377  y_label -= y_label_separation;
378  y += y_sep;
379  }
380 
381  /* Draw x-axis labels and markings for graphs based on financial quarters and years. */
382  if (this->month != 0xFF) {
383  x = r.left;
384  y = r.bottom + 2;
385  byte month = this->month;
386  Year year = this->year;
387  for (int i = 0; i < this->num_on_x_axis; i++) {
388  SetDParam(0, month + STR_MONTH_ABBREV_JAN);
389  SetDParam(1, year);
390  DrawStringMultiLine(x, x + x_sep, y, this->height, month == 0 ? STR_GRAPH_X_LABEL_MONTH_YEAR : STR_GRAPH_X_LABEL_MONTH, GRAPH_AXIS_LABEL_COLOUR, SA_LEFT);
391 
392  month += 3;
393  if (month >= 12) {
394  month = 0;
395  year++;
396 
397  /* Draw a lighter grid line between years. Top and bottom adjustments ensure we don't draw over top and bottom horizontal grid lines. */
398  GfxFillRect(x + x_sep, r.top + 1, x + x_sep, r.bottom - 1, GRAPH_YEAR_LINE_COLOUR);
399  }
400  x += x_sep;
401  }
402  } else {
403  /* Draw x-axis labels for graphs not based on quarterly performance (cargo payment rates). */
404  x = r.left;
405  y = r.bottom + 2;
406  uint16 label = this->x_values_start;
407 
408  for (int i = 0; i < this->num_on_x_axis; i++) {
409  SetDParam(0, label);
410  DrawString(x + 1, x + x_sep - 1, y, STR_GRAPH_Y_LABEL_NUMBER, GRAPH_AXIS_LABEL_COLOUR, SA_HOR_CENTER);
411 
412  label += this->x_values_increment;
413  x += x_sep;
414  }
415  }
416 
417  /* draw lines and dots */
418  uint linewidth = _settings_client.gui.graph_line_thickness;
419  uint pointoffs1 = (linewidth + 1) / 2;
420  uint pointoffs2 = linewidth + 1 - pointoffs1;
421  for (int i = 0; i < this->num_dataset; i++) {
422  if (!HasBit(this->excluded_data, i)) {
423  /* Centre the dot between the grid lines. */
424  x = r.left + (x_sep / 2);
425 
426  byte colour = this->colours[i];
427  uint prev_x = INVALID_DATAPOINT_POS;
428  uint prev_y = INVALID_DATAPOINT_POS;
429 
430  for (int j = 0; j < this->num_on_x_axis; j++) {
431  OverflowSafeInt64 datapoint = this->cost[i][j];
432 
433  if (datapoint != INVALID_DATAPOINT) {
434  /*
435  * Check whether we need to reduce the 'accuracy' of the
436  * datapoint value and the highest value to split overflows.
437  * And when 'drawing' 'one million' or 'one million and one'
438  * there is no significant difference, so the least
439  * significant bits can just be removed.
440  *
441  * If there are more bits needed than would fit in a 32 bits
442  * integer, so at about 31 bits because of the sign bit, the
443  * least significant bits are removed.
444  */
445  int mult_range = FindLastBit(x_axis_offset) + FindLastBit(abs(datapoint));
446  int reduce_range = std::max(mult_range - 31, 0);
447 
448  /* Handle negative values differently (don't shift sign) */
449  if (datapoint < 0) {
450  datapoint = -(abs(datapoint) >> reduce_range);
451  } else {
452  datapoint >>= reduce_range;
453  }
454  y = r.top + x_axis_offset - ((r.bottom - r.top) * datapoint) / (interval_size >> reduce_range);
455 
456  /* Draw the point. */
457  GfxFillRect(x - pointoffs1, y - pointoffs1, x + pointoffs2, y + pointoffs2, colour);
458 
459  /* Draw the line connected to the previous point. */
460  if (prev_x != INVALID_DATAPOINT_POS) GfxDrawLine(prev_x, prev_y, x, y, colour, linewidth);
461 
462  prev_x = x;
463  prev_y = y;
464  } else {
465  prev_x = INVALID_DATAPOINT_POS;
466  prev_y = INVALID_DATAPOINT_POS;
467  }
468 
469  x += x_sep;
470  }
471  }
472  }
473  }
474 
475 
476  BaseGraphWindow(WindowDesc *desc, int widget, StringID format_str_y_axis) :
477  Window(desc),
478  format_str_y_axis(format_str_y_axis)
479  {
481  this->num_vert_lines = 24;
482  this->graph_widget = widget;
483  }
484 
485  void InitializeWindow(WindowNumber number)
486  {
487  /* Initialise the dataset */
488  this->UpdateStatistics(true);
489 
490  this->InitNested(number);
491  }
492 
493 public:
494  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
495  {
496  if (widget != this->graph_widget) return;
497 
498  uint x_label_width = 0;
499 
500  /* Draw x-axis labels and markings for graphs based on financial quarters and years. */
501  if (this->month != 0xFF) {
502  byte month = this->month;
503  Year year = this->year;
504  for (int i = 0; i < this->num_on_x_axis; i++) {
505  SetDParam(0, month + STR_MONTH_ABBREV_JAN);
506  SetDParam(1, year);
507  x_label_width = std::max(x_label_width, GetStringBoundingBox(month == 0 ? STR_GRAPH_X_LABEL_MONTH_YEAR : STR_GRAPH_X_LABEL_MONTH).width);
508 
509  month += 3;
510  if (month >= 12) {
511  month = 0;
512  year++;
513  }
514  }
515  } else {
516  /* Draw x-axis labels for graphs not based on quarterly performance (cargo payment rates). */
517  SetDParamMaxValue(0, this->x_values_start + this->num_on_x_axis * this->x_values_increment, 0, FS_SMALL);
518  x_label_width = GetStringBoundingBox(STR_GRAPH_Y_LABEL_NUMBER).width;
519  }
520 
521  SetDParam(0, this->format_str_y_axis);
522  SetDParam(1, INT64_MAX);
523  uint y_label_width = GetStringBoundingBox(STR_GRAPH_Y_LABEL).width;
524 
525  size->width = std::max<uint>(size->width, 5 + y_label_width + this->num_on_x_axis * (x_label_width + 5) + 9);
526  size->height = std::max<uint>(size->height, 5 + (1 + MIN_GRAPH_NUM_LINES_Y * 2 + (this->month != 0xFF ? 3 : 1)) * FONT_HEIGHT_SMALL + 4);
527  size->height = std::max<uint>(size->height, size->width / 3);
528  }
529 
530  void DrawWidget(const Rect &r, int widget) const override
531  {
532  if (widget != this->graph_widget) return;
533 
534  DrawGraph(r);
535  }
536 
537  virtual OverflowSafeInt64 GetGraphData(const Company *c, int j)
538  {
539  return INVALID_DATAPOINT;
540  }
541 
542  void OnClick(Point pt, int widget, int click_count) override
543  {
544  /* Clicked on legend? */
545  if (widget == WID_CV_KEY_BUTTON) ShowGraphLegend();
546  }
547 
548  void OnGameTick() override
549  {
550  this->UpdateStatistics(false);
551  }
552 
558  void OnInvalidateData(int data = 0, bool gui_scope = true) override
559  {
560  if (!gui_scope) return;
561  this->UpdateStatistics(true);
562  }
563 
568  void UpdateStatistics(bool initialize)
569  {
570  CompanyMask excluded_companies = _legend_excluded_companies;
571 
572  /* Exclude the companies which aren't valid */
573  for (CompanyID c = COMPANY_FIRST; c < MAX_COMPANIES; c++) {
574  if (!Company::IsValidID(c)) SetBit(excluded_companies, c);
575  }
576 
577  byte nums = 0;
578  for (const Company *c : Company::Iterate()) {
579  nums = std::min(this->num_vert_lines, std::max(nums, c->num_valid_stat_ent));
580  }
581 
582  int mo = (_cur_month / 3 - nums) * 3;
583  int yr = _cur_year;
584  while (mo < 0) {
585  yr--;
586  mo += 12;
587  }
588 
589  if (!initialize && this->excluded_data == excluded_companies && this->num_on_x_axis == nums &&
590  this->year == yr && this->month == mo) {
591  /* There's no reason to get new stats */
592  return;
593  }
594 
595  this->excluded_data = excluded_companies;
596  this->num_on_x_axis = nums;
597  this->year = yr;
598  this->month = mo;
599 
600  int numd = 0;
601  for (CompanyID k = COMPANY_FIRST; k < MAX_COMPANIES; k++) {
602  const Company *c = Company::GetIfValid(k);
603  if (c != nullptr) {
604  this->colours[numd] = _colour_gradient[c->colour][6];
605  for (int j = this->num_on_x_axis, i = 0; --j >= 0;) {
606  this->cost[numd][i] = (j >= c->num_valid_stat_ent) ? INVALID_DATAPOINT : GetGraphData(c, j);
607  i++;
608  }
609  }
610  numd++;
611  }
612 
613  this->num_dataset = numd;
614  }
615 };
616 
617 
618 /********************/
619 /* OPERATING PROFIT */
620 /********************/
621 
624  BaseGraphWindow(desc, WID_CV_GRAPH, STR_JUST_CURRENCY_SHORT)
625  {
626  this->InitializeWindow(window_number);
627  }
628 
629  OverflowSafeInt64 GetGraphData(const Company *c, int j) override
630  {
631  return c->old_economy[j].income + c->old_economy[j].expenses;
632  }
633 };
634 
635 static const NWidgetPart _nested_operating_profit_widgets[] = {
637  NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
638  NWidget(WWT_CAPTION, COLOUR_BROWN), SetDataTip(STR_GRAPH_OPERATING_PROFIT_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
639  NWidget(WWT_PUSHTXTBTN, COLOUR_BROWN, WID_CV_KEY_BUTTON), SetMinimalSize(50, 0), SetMinimalTextLines(1, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM + 2), SetDataTip(STR_GRAPH_KEY_BUTTON, STR_GRAPH_KEY_TOOLTIP),
640  NWidget(WWT_SHADEBOX, COLOUR_BROWN),
641  NWidget(WWT_DEFSIZEBOX, COLOUR_BROWN),
642  NWidget(WWT_STICKYBOX, COLOUR_BROWN),
643  EndContainer(),
644  NWidget(WWT_PANEL, COLOUR_BROWN, WID_CV_BACKGROUND),
646  NWidget(WWT_EMPTY, COLOUR_BROWN, WID_CV_GRAPH), SetMinimalSize(576, 160), SetFill(1, 1), SetResize(1, 1),
648  NWidget(NWID_SPACER), SetFill(0, 1), SetResize(0, 1),
649  NWidget(WWT_RESIZEBOX, COLOUR_BROWN, WID_CV_RESIZE),
650  EndContainer(),
651  EndContainer(),
652  EndContainer(),
653 };
654 
655 static WindowDesc _operating_profit_desc(
656  WDP_AUTO, "graph_operating_profit", 0, 0,
658  0,
659  _nested_operating_profit_widgets, lengthof(_nested_operating_profit_widgets)
660 );
661 
662 
663 void ShowOperatingProfitGraph()
664 {
665  AllocateWindowDescFront<OperatingProfitGraphWindow>(&_operating_profit_desc, 0);
666 }
667 
668 
669 /****************/
670 /* INCOME GRAPH */
671 /****************/
672 
675  BaseGraphWindow(desc, WID_CV_GRAPH, STR_JUST_CURRENCY_SHORT)
676  {
677  this->InitializeWindow(window_number);
678  }
679 
680  OverflowSafeInt64 GetGraphData(const Company *c, int j) override
681  {
682  return c->old_economy[j].income;
683  }
684 };
685 
686 static const NWidgetPart _nested_income_graph_widgets[] = {
688  NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
689  NWidget(WWT_CAPTION, COLOUR_BROWN), SetDataTip(STR_GRAPH_INCOME_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
690  NWidget(WWT_PUSHTXTBTN, COLOUR_BROWN, WID_CV_KEY_BUTTON), SetMinimalSize(50, 0), SetMinimalTextLines(1, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM + 2), SetDataTip(STR_GRAPH_KEY_BUTTON, STR_GRAPH_KEY_TOOLTIP),
691  NWidget(WWT_SHADEBOX, COLOUR_BROWN),
692  NWidget(WWT_DEFSIZEBOX, COLOUR_BROWN),
693  NWidget(WWT_STICKYBOX, COLOUR_BROWN),
694  EndContainer(),
695  NWidget(WWT_PANEL, COLOUR_BROWN, WID_CV_BACKGROUND),
697  NWidget(WWT_EMPTY, COLOUR_BROWN, WID_CV_GRAPH), SetMinimalSize(576, 128), SetFill(1, 1), SetResize(1, 1),
699  NWidget(NWID_SPACER), SetFill(0, 1), SetResize(0, 1),
700  NWidget(WWT_RESIZEBOX, COLOUR_BROWN, WID_CV_RESIZE),
701  EndContainer(),
702  EndContainer(),
703  EndContainer(),
704 };
705 
706 static WindowDesc _income_graph_desc(
707  WDP_AUTO, "graph_income", 0, 0,
709  0,
710  _nested_income_graph_widgets, lengthof(_nested_income_graph_widgets)
711 );
712 
713 void ShowIncomeGraph()
714 {
715  AllocateWindowDescFront<IncomeGraphWindow>(&_income_graph_desc, 0);
716 }
717 
718 /*******************/
719 /* DELIVERED CARGO */
720 /*******************/
721 
724  BaseGraphWindow(desc, WID_CV_GRAPH, STR_JUST_COMMA)
725  {
726  this->InitializeWindow(window_number);
727  }
728 
729  OverflowSafeInt64 GetGraphData(const Company *c, int j) override
730  {
732  }
733 };
734 
735 static const NWidgetPart _nested_delivered_cargo_graph_widgets[] = {
737  NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
738  NWidget(WWT_CAPTION, COLOUR_BROWN), SetDataTip(STR_GRAPH_CARGO_DELIVERED_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
739  NWidget(WWT_PUSHTXTBTN, COLOUR_BROWN, WID_CV_KEY_BUTTON), SetMinimalSize(50, 0), SetMinimalTextLines(1, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM + 2), SetDataTip(STR_GRAPH_KEY_BUTTON, STR_GRAPH_KEY_TOOLTIP),
740  NWidget(WWT_SHADEBOX, COLOUR_BROWN),
741  NWidget(WWT_DEFSIZEBOX, COLOUR_BROWN),
742  NWidget(WWT_STICKYBOX, COLOUR_BROWN),
743  EndContainer(),
744  NWidget(WWT_PANEL, COLOUR_BROWN, WID_CV_BACKGROUND),
746  NWidget(WWT_EMPTY, COLOUR_BROWN, WID_CV_GRAPH), SetMinimalSize(576, 128), SetFill(1, 1), SetResize(1, 1),
748  NWidget(NWID_SPACER), SetFill(0, 1), SetResize(0, 1),
749  NWidget(WWT_RESIZEBOX, COLOUR_BROWN, WID_CV_RESIZE),
750  EndContainer(),
751  EndContainer(),
752  EndContainer(),
753 };
754 
755 static WindowDesc _delivered_cargo_graph_desc(
756  WDP_AUTO, "graph_delivered_cargo", 0, 0,
758  0,
759  _nested_delivered_cargo_graph_widgets, lengthof(_nested_delivered_cargo_graph_widgets)
760 );
761 
762 void ShowDeliveredCargoGraph()
763 {
764  AllocateWindowDescFront<DeliveredCargoGraphWindow>(&_delivered_cargo_graph_desc, 0);
765 }
766 
767 /***********************/
768 /* PERFORMANCE HISTORY */
769 /***********************/
770 
773  BaseGraphWindow(desc, WID_PHG_GRAPH, STR_JUST_COMMA)
774  {
775  this->InitializeWindow(window_number);
776  }
777 
778  OverflowSafeInt64 GetGraphData(const Company *c, int j) override
779  {
780  return c->old_economy[j].performance_history;
781  }
782 
783  void OnClick(Point pt, int widget, int click_count) override
784  {
785  if (widget == WID_PHG_DETAILED_PERFORMANCE) ShowPerformanceRatingDetail();
786  this->BaseGraphWindow::OnClick(pt, widget, click_count);
787  }
788 };
789 
790 static const NWidgetPart _nested_performance_history_widgets[] = {
792  NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
793  NWidget(WWT_CAPTION, COLOUR_BROWN), SetDataTip(STR_GRAPH_COMPANY_PERFORMANCE_RATINGS_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
794  NWidget(WWT_PUSHTXTBTN, COLOUR_BROWN, WID_PHG_DETAILED_PERFORMANCE), SetMinimalSize(50, 0), SetMinimalTextLines(1, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM + 2), SetDataTip(STR_PERFORMANCE_DETAIL_KEY, STR_GRAPH_PERFORMANCE_DETAIL_TOOLTIP),
795  NWidget(WWT_PUSHTXTBTN, COLOUR_BROWN, WID_PHG_KEY), SetMinimalSize(50, 0), SetMinimalTextLines(1, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM + 2), SetDataTip(STR_GRAPH_KEY_BUTTON, STR_GRAPH_KEY_TOOLTIP),
796  NWidget(WWT_SHADEBOX, COLOUR_BROWN),
797  NWidget(WWT_DEFSIZEBOX, COLOUR_BROWN),
798  NWidget(WWT_STICKYBOX, COLOUR_BROWN),
799  EndContainer(),
800  NWidget(WWT_PANEL, COLOUR_BROWN, WID_PHG_BACKGROUND),
802  NWidget(WWT_EMPTY, COLOUR_BROWN, WID_PHG_GRAPH), SetMinimalSize(576, 224), SetFill(1, 1), SetResize(1, 1),
804  NWidget(NWID_SPACER), SetFill(0, 1), SetResize(0, 1),
805  NWidget(WWT_RESIZEBOX, COLOUR_BROWN, WID_PHG_RESIZE),
806  EndContainer(),
807  EndContainer(),
808  EndContainer(),
809 };
810 
811 static WindowDesc _performance_history_desc(
812  WDP_AUTO, "graph_performance", 0, 0,
814  0,
815  _nested_performance_history_widgets, lengthof(_nested_performance_history_widgets)
816 );
817 
818 void ShowPerformanceHistoryGraph()
819 {
820  AllocateWindowDescFront<PerformanceHistoryGraphWindow>(&_performance_history_desc, 0);
821 }
822 
823 /*****************/
824 /* COMPANY VALUE */
825 /*****************/
826 
829  BaseGraphWindow(desc, WID_CV_GRAPH, STR_JUST_CURRENCY_SHORT)
830  {
831  this->InitializeWindow(window_number);
832  }
833 
834  OverflowSafeInt64 GetGraphData(const Company *c, int j) override
835  {
836  return c->old_economy[j].company_value;
837  }
838 };
839 
840 static const NWidgetPart _nested_company_value_graph_widgets[] = {
842  NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
843  NWidget(WWT_CAPTION, COLOUR_BROWN), SetDataTip(STR_GRAPH_COMPANY_VALUES_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
844  NWidget(WWT_PUSHTXTBTN, COLOUR_BROWN, WID_CV_KEY_BUTTON), SetMinimalSize(50, 0), SetMinimalTextLines(1, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM + 2), SetDataTip(STR_GRAPH_KEY_BUTTON, STR_GRAPH_KEY_TOOLTIP),
845  NWidget(WWT_SHADEBOX, COLOUR_BROWN),
846  NWidget(WWT_DEFSIZEBOX, COLOUR_BROWN),
847  NWidget(WWT_STICKYBOX, COLOUR_BROWN),
848  EndContainer(),
849  NWidget(WWT_PANEL, COLOUR_BROWN, WID_CV_BACKGROUND),
851  NWidget(WWT_EMPTY, COLOUR_BROWN, WID_CV_GRAPH), SetMinimalSize(576, 224), SetFill(1, 1), SetResize(1, 1),
853  NWidget(NWID_SPACER), SetFill(0, 1), SetResize(0, 1),
854  NWidget(WWT_RESIZEBOX, COLOUR_BROWN, WID_CV_RESIZE),
855  EndContainer(),
856  EndContainer(),
857  EndContainer(),
858 };
859 
860 static WindowDesc _company_value_graph_desc(
861  WDP_AUTO, "graph_company_value", 0, 0,
863  0,
864  _nested_company_value_graph_widgets, lengthof(_nested_company_value_graph_widgets)
865 );
866 
867 void ShowCompanyValueGraph()
868 {
869  AllocateWindowDescFront<CompanyValueGraphWindow>(&_company_value_graph_desc, 0);
870 }
871 
872 /*****************/
873 /* PAYMENT RATES */
874 /*****************/
875 
877  uint line_height;
879 
881  BaseGraphWindow(desc, WID_CPR_GRAPH, STR_JUST_CURRENCY_SHORT)
882  {
883  this->num_on_x_axis = 20;
884  this->num_vert_lines = 20;
885  this->month = 0xFF;
886  this->x_values_start = 10;
887  this->x_values_increment = 10;
888 
889  this->CreateNestedTree();
890  this->vscroll = this->GetScrollbar(WID_CPR_MATRIX_SCROLLBAR);
892 
893  /* Initialise the dataset */
894  this->OnHundredthTick();
895 
896  this->FinishInitNested(window_number);
897  }
898 
899  void UpdateExcludedData()
900  {
901  this->excluded_data = 0;
902 
903  int i = 0;
904  const CargoSpec *cs;
906  if (HasBit(_legend_excluded_cargo, cs->Index())) SetBit(this->excluded_data, i);
907  i++;
908  }
909  }
910 
911  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
912  {
913  if (widget != WID_CPR_MATRIX) {
914  BaseGraphWindow::UpdateWidgetSize(widget, size, padding, fill, resize);
915  return;
916  }
917 
918  const CargoSpec *cs;
920  SetDParam(0, cs->name);
921  Dimension d = GetStringBoundingBox(STR_GRAPH_CARGO_PAYMENT_CARGO);
922  d.width += 14; // colour field
925  *size = maxdim(d, *size);
926  }
927 
928  this->line_height = size->height;
929  size->height = this->line_height * 11; /* Default number of cargo types in most climates. */
930  resize->width = 0;
931  resize->height = this->line_height;
932  }
933 
934  void DrawWidget(const Rect &r, int widget) const override
935  {
936  if (widget != WID_CPR_MATRIX) {
937  BaseGraphWindow::DrawWidget(r, widget);
938  return;
939  }
940 
941  bool rtl = _current_text_dir == TD_RTL;
942 
943  int x = r.left + WD_FRAMERECT_LEFT;
944  int y = r.top;
945 
946  int pos = this->vscroll->GetPosition();
947  int max = pos + this->vscroll->GetCapacity();
948 
949  const CargoSpec *cs;
951  if (pos-- > 0) continue;
952  if (--max < 0) break;
953 
954  bool lowered = !HasBit(_legend_excluded_cargo, cs->Index());
955 
956  /* Redraw box if lowered */
957  if (lowered) DrawFrameRect(r.left, y, r.right, y + this->line_height - 1, COLOUR_BROWN, lowered ? FR_LOWERED : FR_NONE);
958 
959  byte clk_dif = lowered ? 1 : 0;
960  int rect_x = clk_dif + (rtl ? r.right - 12 : r.left + WD_FRAMERECT_LEFT);
961 
962  GfxFillRect(rect_x, y + clk_dif, rect_x + 8, y + 5 + clk_dif, PC_BLACK);
963  GfxFillRect(rect_x + 1, y + 1 + clk_dif, rect_x + 7, y + 4 + clk_dif, cs->legend_colour);
964  SetDParam(0, cs->name);
965  DrawString(rtl ? r.left : x + 14 + clk_dif, (rtl ? r.right - 14 + clk_dif : r.right), y + clk_dif, STR_GRAPH_CARGO_PAYMENT_CARGO);
966 
967  y += this->line_height;
968  }
969  }
970 
971  void OnClick(Point pt, int widget, int click_count) override
972  {
973  switch (widget) {
975  /* Remove all cargoes from the excluded lists. */
976  _legend_excluded_cargo = 0;
977  this->excluded_data = 0;
978  this->SetDirty();
979  break;
980 
982  /* Add all cargoes to the excluded lists. */
983  int i = 0;
984  const CargoSpec *cs;
986  SetBit(_legend_excluded_cargo, cs->Index());
987  SetBit(this->excluded_data, i);
988  i++;
989  }
990  this->SetDirty();
991  break;
992  }
993 
994  case WID_CPR_MATRIX: {
995  uint row = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_CPR_MATRIX, 0, this->line_height);
996  if (row >= this->vscroll->GetCount()) return;
997 
998  const CargoSpec *cs;
1000  if (row-- > 0) continue;
1001 
1002  ToggleBit(_legend_excluded_cargo, cs->Index());
1003  this->UpdateExcludedData();
1004  this->SetDirty();
1005  break;
1006  }
1007  break;
1008  }
1009  }
1010  }
1011 
1012  void OnResize() override
1013  {
1014  this->vscroll->SetCapacityFromWidget(this, WID_CPR_MATRIX);
1015  }
1016 
1017  void OnGameTick() override
1018  {
1019  /* Override default OnGameTick */
1020  }
1021 
1027  void OnInvalidateData(int data = 0, bool gui_scope = true) override
1028  {
1029  if (!gui_scope) return;
1030  this->OnHundredthTick();
1031  }
1032 
1033  void OnHundredthTick() override
1034  {
1035  this->UpdateExcludedData();
1036 
1037  int i = 0;
1038  const CargoSpec *cs;
1040  this->colours[i] = cs->legend_colour;
1041  for (uint j = 0; j != 20; j++) {
1042  this->cost[i][j] = GetTransportedGoodsIncome(10, 20, j * 4 + 4, cs->Index());
1043  }
1044  i++;
1045  }
1046  this->num_dataset = i;
1047  }
1048 };
1049 
1050 static const NWidgetPart _nested_cargo_payment_rates_widgets[] = {
1052  NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
1053  NWidget(WWT_CAPTION, COLOUR_BROWN), SetDataTip(STR_GRAPH_CARGO_PAYMENT_RATES_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1054  NWidget(WWT_SHADEBOX, COLOUR_BROWN),
1055  NWidget(WWT_DEFSIZEBOX, COLOUR_BROWN),
1056  NWidget(WWT_STICKYBOX, COLOUR_BROWN),
1057  EndContainer(),
1058  NWidget(WWT_PANEL, COLOUR_BROWN, WID_CPR_BACKGROUND), SetMinimalSize(568, 128),
1060  NWidget(NWID_SPACER), SetFill(1, 0), SetResize(1, 0),
1061  NWidget(WWT_TEXT, COLOUR_BROWN, WID_CPR_HEADER), SetMinimalSize(0, 6), SetPadding(2, 0, 2, 0), SetDataTip(STR_GRAPH_CARGO_PAYMENT_RATES_TITLE, STR_NULL),
1062  NWidget(NWID_SPACER), SetFill(1, 0), SetResize(1, 0),
1063  EndContainer(),
1065  NWidget(WWT_EMPTY, COLOUR_BROWN, WID_CPR_GRAPH), SetMinimalSize(495, 0), SetFill(1, 1), SetResize(1, 1),
1067  NWidget(NWID_SPACER), SetMinimalSize(0, 24), SetFill(0, 1),
1068  NWidget(WWT_PUSHTXTBTN, COLOUR_BROWN, WID_CPR_ENABLE_CARGOES), SetDataTip(STR_GRAPH_CARGO_ENABLE_ALL, STR_GRAPH_CARGO_TOOLTIP_ENABLE_ALL), SetFill(1, 0),
1069  NWidget(WWT_PUSHTXTBTN, COLOUR_BROWN, WID_CPR_DISABLE_CARGOES), SetDataTip(STR_GRAPH_CARGO_DISABLE_ALL, STR_GRAPH_CARGO_TOOLTIP_DISABLE_ALL), SetFill(1, 0),
1072  NWidget(WWT_MATRIX, COLOUR_BROWN, WID_CPR_MATRIX), SetResize(0, 2), SetMatrixDataTip(1, 0, STR_GRAPH_CARGO_PAYMENT_TOGGLE_CARGO), SetScrollbar(WID_CPR_MATRIX_SCROLLBAR),
1074  EndContainer(),
1075  NWidget(NWID_SPACER), SetMinimalSize(0, 24), SetFill(0, 1),
1076  EndContainer(),
1077  NWidget(NWID_SPACER), SetMinimalSize(5, 0), SetFill(0, 1), SetResize(0, 1),
1078  EndContainer(),
1081  NWidget(WWT_TEXT, COLOUR_BROWN, WID_CPR_FOOTER), SetMinimalSize(0, 6), SetPadding(2, 0, 2, 0), SetDataTip(STR_GRAPH_CARGO_PAYMENT_RATES_X_LABEL, STR_NULL),
1082  NWidget(NWID_SPACER), SetFill(1, 0), SetResize(1, 0),
1083  NWidget(WWT_RESIZEBOX, COLOUR_BROWN, WID_CPR_RESIZE),
1084  EndContainer(),
1085  EndContainer(),
1086 };
1087 
1088 static WindowDesc _cargo_payment_rates_desc(
1089  WDP_AUTO, "graph_cargo_payment_rates", 0, 0,
1091  0,
1092  _nested_cargo_payment_rates_widgets, lengthof(_nested_cargo_payment_rates_widgets)
1093 );
1094 
1095 
1096 void ShowCargoPaymentRates()
1097 {
1098  AllocateWindowDescFront<PaymentRatesGraphWindow>(&_cargo_payment_rates_desc, 0);
1099 }
1100 
1101 /************************/
1102 /* COMPANY LEAGUE TABLE */
1103 /************************/
1104 
1105 static const StringID _performance_titles[] = {
1106  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_ENGINEER,
1107  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_ENGINEER,
1108  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_TRAFFIC_MANAGER,
1109  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_TRAFFIC_MANAGER,
1110  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_TRANSPORT_COORDINATOR,
1111  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_TRANSPORT_COORDINATOR,
1112  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_ROUTE_SUPERVISOR,
1113  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_ROUTE_SUPERVISOR,
1114  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_DIRECTOR,
1115  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_DIRECTOR,
1116  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_CHIEF_EXECUTIVE,
1117  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_CHIEF_EXECUTIVE,
1118  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_CHAIRMAN,
1119  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_CHAIRMAN,
1120  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_PRESIDENT,
1121  STR_COMPANY_LEAGUE_PERFORMANCE_TITLE_TYCOON,
1122 };
1123 
1124 static inline StringID GetPerformanceTitleFromValue(uint value)
1125 {
1126  return _performance_titles[std::min(value, 1000u) >> 6];
1127 }
1128 
1129 class CompanyLeagueWindow : public Window {
1130 private:
1131  GUIList<const Company*> companies;
1133  uint text_width;
1134  uint icon_width;
1136 
1141  {
1142  if (!this->companies.NeedRebuild()) return;
1143 
1144  this->companies.clear();
1145 
1146  for (const Company *c : Company::Iterate()) {
1147  this->companies.push_back(c);
1148  }
1149 
1150  this->companies.shrink_to_fit();
1151  this->companies.RebuildDone();
1152  }
1153 
1155  static bool PerformanceSorter(const Company * const &c1, const Company * const &c2)
1156  {
1158  }
1159 
1160 public:
1162  {
1163  this->InitNested(window_number);
1164  this->companies.ForceRebuild();
1165  this->companies.NeedResort();
1166  }
1167 
1168  void OnPaint() override
1169  {
1170  this->BuildCompanyList();
1171  this->companies.Sort(&PerformanceSorter);
1172 
1173  this->DrawWidgets();
1174  }
1175 
1176  void DrawWidget(const Rect &r, int widget) const override
1177  {
1178  if (widget != WID_CL_BACKGROUND) return;
1179 
1180  int icon_y_offset = 1 + (FONT_HEIGHT_NORMAL - this->line_height) / 2;
1181  uint y = r.top + WD_FRAMERECT_TOP - icon_y_offset;
1182 
1183  bool rtl = _current_text_dir == TD_RTL;
1184  uint ordinal_left = rtl ? r.right - WD_FRAMERECT_LEFT - this->ordinal_width : r.left + WD_FRAMERECT_LEFT;
1185  uint ordinal_right = rtl ? r.right - WD_FRAMERECT_LEFT : r.left + WD_FRAMERECT_LEFT + this->ordinal_width;
1186  uint icon_left = r.left + WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT + (rtl ? this->text_width : this->ordinal_width);
1187  uint text_left = rtl ? r.left + WD_FRAMERECT_LEFT : r.right - WD_FRAMERECT_LEFT - this->text_width;
1188  uint text_right = rtl ? r.left + WD_FRAMERECT_LEFT + this->text_width : r.right - WD_FRAMERECT_LEFT;
1189 
1190  for (uint i = 0; i != this->companies.size(); i++) {
1191  const Company *c = this->companies[i];
1192  DrawString(ordinal_left, ordinal_right, y, i + STR_ORDINAL_NUMBER_1ST, i == 0 ? TC_WHITE : TC_YELLOW);
1193 
1194  DrawCompanyIcon(c->index, icon_left, y + icon_y_offset);
1195 
1196  SetDParam(0, c->index);
1197  SetDParam(1, c->index);
1198  SetDParam(2, GetPerformanceTitleFromValue(c->old_economy[0].performance_history));
1199  DrawString(text_left, text_right, y, STR_COMPANY_LEAGUE_COMPANY_NAME);
1200  y += this->line_height;
1201  }
1202  }
1203 
1204  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
1205  {
1206  if (widget != WID_CL_BACKGROUND) return;
1207 
1208  this->ordinal_width = 0;
1209  for (uint i = 0; i < MAX_COMPANIES; i++) {
1210  this->ordinal_width = std::max(this->ordinal_width, GetStringBoundingBox(STR_ORDINAL_NUMBER_1ST + i).width);
1211  }
1212  this->ordinal_width += 5; // Keep some extra spacing
1213 
1214  uint widest_width = 0;
1215  uint widest_title = 0;
1216  for (uint i = 0; i < lengthof(_performance_titles); i++) {
1217  uint width = GetStringBoundingBox(_performance_titles[i]).width;
1218  if (width > widest_width) {
1219  widest_title = i;
1220  widest_width = width;
1221  }
1222  }
1223 
1224  Dimension d = GetSpriteSize(SPR_COMPANY_ICON);
1225  this->icon_width = d.width + 2;
1226  this->line_height = std::max<int>(d.height + 2, FONT_HEIGHT_NORMAL);
1227 
1228  for (const Company *c : Company::Iterate()) {
1229  SetDParam(0, c->index);
1230  SetDParam(1, c->index);
1231  SetDParam(2, _performance_titles[widest_title]);
1232  widest_width = std::max(widest_width, GetStringBoundingBox(STR_COMPANY_LEAGUE_COMPANY_NAME).width);
1233  }
1234 
1235  this->text_width = widest_width + 30; // Keep some extra spacing
1236 
1237  size->width = WD_FRAMERECT_LEFT + this->ordinal_width + WD_FRAMERECT_RIGHT + this->icon_width + WD_FRAMERECT_LEFT + this->text_width + WD_FRAMERECT_RIGHT;
1238  size->height = WD_FRAMERECT_TOP + this->line_height * MAX_COMPANIES + WD_FRAMERECT_BOTTOM;
1239  }
1240 
1241 
1242  void OnGameTick() override
1243  {
1244  if (this->companies.NeedResort()) {
1245  this->SetDirty();
1246  }
1247  }
1248 
1254  void OnInvalidateData(int data = 0, bool gui_scope = true) override
1255  {
1256  if (data == 0) {
1257  /* This needs to be done in command-scope to enforce rebuilding before resorting invalid data */
1258  this->companies.ForceRebuild();
1259  } else {
1260  this->companies.ForceResort();
1261  }
1262  }
1263 };
1264 
1265 static const NWidgetPart _nested_company_league_widgets[] = {
1267  NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
1268  NWidget(WWT_CAPTION, COLOUR_BROWN), SetDataTip(STR_COMPANY_LEAGUE_TABLE_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1269  NWidget(WWT_SHADEBOX, COLOUR_BROWN),
1270  NWidget(WWT_STICKYBOX, COLOUR_BROWN),
1271  EndContainer(),
1273 };
1274 
1275 static WindowDesc _company_league_desc(
1276  WDP_AUTO, "league", 0, 0,
1278  0,
1279  _nested_company_league_widgets, lengthof(_nested_company_league_widgets)
1280 );
1281 
1282 void ShowCompanyLeagueTable()
1283 {
1284  AllocateWindowDescFront<CompanyLeagueWindow>(&_company_league_desc, 0);
1285 }
1286 
1287 /*****************************/
1288 /* PERFORMANCE RATING DETAIL */
1289 /*****************************/
1290 
1292  static CompanyID company;
1293  int timeout;
1294 
1296  {
1297  this->UpdateCompanyStats();
1298 
1299  this->InitNested(window_number);
1301  }
1302 
1303  void UpdateCompanyStats()
1304  {
1305  /* Update all company stats with the current data
1306  * (this is because _score_info is not saved to a savegame) */
1307  for (Company *c : Company::Iterate()) {
1308  UpdateCompanyRatingAndValue(c, false);
1309  }
1310 
1311  this->timeout = DAY_TICKS * 5;
1312  }
1313 
1314  uint score_info_left;
1315  uint score_info_right;
1316  uint bar_left;
1317  uint bar_right;
1318  uint bar_width;
1319  uint bar_height;
1320  uint score_detail_left;
1321  uint score_detail_right;
1322 
1323  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
1324  {
1325  switch (widget) {
1326  case WID_PRD_SCORE_FIRST:
1327  this->bar_height = FONT_HEIGHT_NORMAL + 4;
1328  size->height = this->bar_height + 2 * WD_MATRIX_TOP;
1329 
1330  uint score_info_width = 0;
1331  for (uint i = SCORE_BEGIN; i < SCORE_END; i++) {
1332  score_info_width = std::max(score_info_width, GetStringBoundingBox(STR_PERFORMANCE_DETAIL_VEHICLES + i).width);
1333  }
1334  SetDParamMaxValue(0, 1000);
1335  score_info_width += GetStringBoundingBox(STR_BLACK_COMMA).width + WD_FRAMERECT_LEFT;
1336 
1337  SetDParamMaxValue(0, 100);
1338  this->bar_width = GetStringBoundingBox(STR_PERFORMANCE_DETAIL_PERCENT).width + 20; // Wide bars!
1339 
1340  /* At this number we are roughly at the max; it can become wider,
1341  * but then you need at 1000 times more money. At that time you're
1342  * not that interested anymore in the last few digits anyway.
1343  * The 500 is because 999 999 500 to 999 999 999 are rounded to
1344  * 1 000 M, and not 999 999 k. Use negative numbers to account for
1345  * the negative income/amount of money etc. as well. */
1346  int max = -(999999999 - 500);
1347 
1348  /* Scale max for the display currency. Prior to rendering the value
1349  * is converted into the display currency, which may cause it to
1350  * raise significantly. We need to compensate for that since {{CURRCOMPACT}}
1351  * is used, which can produce quite short renderings of very large
1352  * values. Otherwise the calculated width could be too narrow.
1353  * Note that it doesn't work if there was a currency with an exchange
1354  * rate greater than max.
1355  * When the currency rate is more than 1000, the 999 999 k becomes at
1356  * least 999 999 M which roughly is equally long. Furthermore if the
1357  * exchange rate is that high, 999 999 k is usually not enough anymore
1358  * to show the different currency numbers. */
1359  if (_currency->rate < 1000) max /= _currency->rate;
1360  SetDParam(0, max);
1361  SetDParam(1, max);
1362  uint score_detail_width = GetStringBoundingBox(STR_PERFORMANCE_DETAIL_AMOUNT_CURRENCY).width;
1363 
1364  size->width = 7 + score_info_width + 5 + this->bar_width + 5 + score_detail_width + 7;
1365  uint left = 7;
1366  uint right = size->width - 7;
1367 
1368  bool rtl = _current_text_dir == TD_RTL;
1369  this->score_info_left = rtl ? right - score_info_width : left;
1370  this->score_info_right = rtl ? right : left + score_info_width;
1371 
1372  this->score_detail_left = rtl ? left : right - score_detail_width;
1373  this->score_detail_right = rtl ? left + score_detail_width : right;
1374 
1375  this->bar_left = left + (rtl ? score_detail_width : score_info_width) + 5;
1376  this->bar_right = this->bar_left + this->bar_width;
1377  break;
1378  }
1379  }
1380 
1381  void DrawWidget(const Rect &r, int widget) const override
1382  {
1383  /* No need to draw when there's nothing to draw */
1384  if (this->company == INVALID_COMPANY) return;
1385 
1387  if (this->IsWidgetDisabled(widget)) return;
1388  CompanyID cid = (CompanyID)(widget - WID_PRD_COMPANY_FIRST);
1389  int offset = (cid == this->company) ? 1 : 0;
1390  Dimension sprite_size = GetSpriteSize(SPR_COMPANY_ICON);
1391  DrawCompanyIcon(cid, (r.left + r.right - sprite_size.width) / 2 + offset, (r.top + r.bottom - sprite_size.height) / 2 + offset);
1392  return;
1393  }
1394 
1395  if (!IsInsideMM(widget, WID_PRD_SCORE_FIRST, WID_PRD_SCORE_LAST + 1)) return;
1396 
1397  ScoreID score_type = (ScoreID)(widget - WID_PRD_SCORE_FIRST);
1398 
1399  /* The colours used to show how the progress is going */
1400  int colour_done = _colour_gradient[COLOUR_GREEN][4];
1401  int colour_notdone = _colour_gradient[COLOUR_RED][4];
1402 
1403  /* Draw all the score parts */
1404  int64 val = _score_part[company][score_type];
1405  int64 needed = _score_info[score_type].needed;
1406  int score = _score_info[score_type].score;
1407 
1408  /* SCORE_TOTAL has his own rules ;) */
1409  if (score_type == SCORE_TOTAL) {
1410  for (ScoreID i = SCORE_BEGIN; i < SCORE_END; i++) score += _score_info[i].score;
1411  needed = SCORE_MAX;
1412  }
1413 
1414  uint bar_top = r.top + WD_MATRIX_TOP;
1415  uint text_top = bar_top + 2;
1416 
1417  DrawString(this->score_info_left, this->score_info_right, text_top, STR_PERFORMANCE_DETAIL_VEHICLES + score_type);
1418 
1419  /* Draw the score */
1420  SetDParam(0, score);
1421  DrawString(this->score_info_left, this->score_info_right, text_top, STR_BLACK_COMMA, TC_FROMSTRING, SA_RIGHT);
1422 
1423  /* Calculate the %-bar */
1424  uint x = Clamp<int64>(val, 0, needed) * this->bar_width / needed;
1425  bool rtl = _current_text_dir == TD_RTL;
1426  if (rtl) {
1427  x = this->bar_right - x;
1428  } else {
1429  x = this->bar_left + x;
1430  }
1431 
1432  /* Draw the bar */
1433  if (x != this->bar_left) GfxFillRect(this->bar_left, bar_top, x, bar_top + this->bar_height, rtl ? colour_notdone : colour_done);
1434  if (x != this->bar_right) GfxFillRect(x, bar_top, this->bar_right, bar_top + this->bar_height, rtl ? colour_done : colour_notdone);
1435 
1436  /* Draw it */
1437  SetDParam(0, Clamp<int64>(val, 0, needed) * 100 / needed);
1438  DrawString(this->bar_left, this->bar_right, text_top, STR_PERFORMANCE_DETAIL_PERCENT, TC_FROMSTRING, SA_HOR_CENTER);
1439 
1440  /* SCORE_LOAN is inversed */
1441  if (score_type == SCORE_LOAN) val = needed - val;
1442 
1443  /* Draw the amount we have against what is needed
1444  * For some of them it is in currency format */
1445  SetDParam(0, val);
1446  SetDParam(1, needed);
1447  switch (score_type) {
1448  case SCORE_MIN_PROFIT:
1449  case SCORE_MIN_INCOME:
1450  case SCORE_MAX_INCOME:
1451  case SCORE_MONEY:
1452  case SCORE_LOAN:
1453  DrawString(this->score_detail_left, this->score_detail_right, text_top, STR_PERFORMANCE_DETAIL_AMOUNT_CURRENCY);
1454  break;
1455  default:
1456  DrawString(this->score_detail_left, this->score_detail_right, text_top, STR_PERFORMANCE_DETAIL_AMOUNT_INT);
1457  }
1458  }
1459 
1460  void OnClick(Point pt, int widget, int click_count) override
1461  {
1462  /* Check which button is clicked */
1464  /* Is it no on disable? */
1465  if (!this->IsWidgetDisabled(widget)) {
1466  this->RaiseWidget(this->company + WID_PRD_COMPANY_FIRST);
1467  this->company = (CompanyID)(widget - WID_PRD_COMPANY_FIRST);
1468  this->LowerWidget(this->company + WID_PRD_COMPANY_FIRST);
1469  this->SetDirty();
1470  }
1471  }
1472  }
1473 
1474  void OnGameTick() override
1475  {
1476  /* Update the company score every 5 days */
1477  if (--this->timeout == 0) {
1478  this->UpdateCompanyStats();
1479  this->SetDirty();
1480  }
1481  }
1482 
1488  void OnInvalidateData(int data = 0, bool gui_scope = true) override
1489  {
1490  if (!gui_scope) return;
1491  /* Disable the companies who are not active */
1492  for (CompanyID i = COMPANY_FIRST; i < MAX_COMPANIES; i++) {
1494  }
1495 
1496  /* Check if the currently selected company is still active. */
1497  if (this->company != INVALID_COMPANY && !Company::IsValidID(this->company)) {
1498  /* Raise the widget for the previous selection. */
1499  this->RaiseWidget(this->company + WID_PRD_COMPANY_FIRST);
1500  this->company = INVALID_COMPANY;
1501  }
1502 
1503  if (this->company == INVALID_COMPANY) {
1504  for (const Company *c : Company::Iterate()) {
1505  this->company = c->index;
1506  break;
1507  }
1508  }
1509 
1510  /* Make sure the widget is lowered */
1511  this->LowerWidget(this->company + WID_PRD_COMPANY_FIRST);
1512  }
1513 };
1514 
1515 CompanyID PerformanceRatingDetailWindow::company = INVALID_COMPANY;
1516 
1523 static NWidgetBase *MakePerformanceDetailPanels(int *biggest_index)
1524 {
1525  const StringID performance_tips[] = {
1526  STR_PERFORMANCE_DETAIL_VEHICLES_TOOLTIP,
1527  STR_PERFORMANCE_DETAIL_STATIONS_TOOLTIP,
1528  STR_PERFORMANCE_DETAIL_MIN_PROFIT_TOOLTIP,
1529  STR_PERFORMANCE_DETAIL_MIN_INCOME_TOOLTIP,
1530  STR_PERFORMANCE_DETAIL_MAX_INCOME_TOOLTIP,
1531  STR_PERFORMANCE_DETAIL_DELIVERED_TOOLTIP,
1532  STR_PERFORMANCE_DETAIL_CARGO_TOOLTIP,
1533  STR_PERFORMANCE_DETAIL_MONEY_TOOLTIP,
1534  STR_PERFORMANCE_DETAIL_LOAN_TOOLTIP,
1535  STR_PERFORMANCE_DETAIL_TOTAL_TOOLTIP,
1536  };
1537 
1538  static_assert(lengthof(performance_tips) == SCORE_END - SCORE_BEGIN);
1539 
1541  for (int widnum = WID_PRD_SCORE_FIRST; widnum <= WID_PRD_SCORE_LAST; widnum++) {
1542  NWidgetBackground *panel = new NWidgetBackground(WWT_PANEL, COLOUR_BROWN, widnum);
1543  panel->SetFill(1, 1);
1544  panel->SetDataTip(0x0, performance_tips[widnum - WID_PRD_SCORE_FIRST]);
1545  vert->Add(panel);
1546  }
1547  *biggest_index = WID_PRD_SCORE_LAST;
1548  return vert;
1549 }
1550 
1553 {
1554  return MakeCompanyButtonRows(biggest_index, WID_PRD_COMPANY_FIRST, WID_PRD_COMPANY_LAST, COLOUR_BROWN, 8, STR_PERFORMANCE_DETAIL_SELECT_COMPANY_TOOLTIP);
1555 }
1556 
1557 static const NWidgetPart _nested_performance_rating_detail_widgets[] = {
1559  NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
1560  NWidget(WWT_CAPTION, COLOUR_BROWN), SetDataTip(STR_PERFORMANCE_DETAIL, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1561  NWidget(WWT_SHADEBOX, COLOUR_BROWN),
1562  NWidget(WWT_STICKYBOX, COLOUR_BROWN),
1563  EndContainer(),
1564  NWidget(WWT_PANEL, COLOUR_BROWN),
1566  EndContainer(),
1568 };
1569 
1570 static WindowDesc _performance_rating_detail_desc(
1571  WDP_AUTO, "league_details", 0, 0,
1573  0,
1574  _nested_performance_rating_detail_widgets, lengthof(_nested_performance_rating_detail_widgets)
1575 );
1576 
1577 void ShowPerformanceRatingDetail()
1578 {
1579  AllocateWindowDescFront<PerformanceRatingDetailWindow>(&_performance_rating_detail_desc, 0);
1580 }
1581 
1582 void InitializeGraphGui()
1583 {
1584  _legend_excluded_companies = 0;
1585  _legend_excluded_cargo = 0;
1586 }
MakeCompanyButtonRows
NWidgetBase * MakeCompanyButtonRows(int *biggest_index, int widget_first, int widget_last, Colours button_colour, int max_length, StringID button_tooltip)
Make a number of rows with button-like graphics, for enabling/disabling each company.
Definition: widget.cpp:2878
WD_FRAMERECT_TOP
@ WD_FRAMERECT_TOP
Offset at top to draw the frame rectangular area.
Definition: window_gui.h:62
PaymentRatesGraphWindow::UpdateWidgetSize
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: graph_gui.cpp:911
CargoArray::GetSum
const T GetSum() const
Get the sum of all cargo amounts.
Definition: cargo_type.h:121
InvalidateWindowData
void InvalidateWindowData(WindowClass cls, WindowNumber number, int data, bool gui_scope)
Mark window data of the window of a given class and specific window number as invalid (in need of re-...
Definition: window.cpp:3321
PaymentRatesGraphWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: graph_gui.cpp:934
CompanyEconomyEntry::company_value
Money company_value
The value of the company.
Definition: company_base.h:27
FOR_ALL_SORTED_STANDARD_CARGOSPECS
#define FOR_ALL_SORTED_STANDARD_CARGOSPECS(var)
Loop header for iterating over 'real' cargoes, sorted by name.
Definition: cargotype.h:171
NWidgetFunction
static NWidgetPart NWidgetFunction(NWidgetFunctionType *func_ptr)
Obtain a nested widget (sub)tree from an external source.
Definition: widget_type.h:1155
WID_PHG_KEY
@ WID_PHG_KEY
Key button.
Definition: graph_widget.h:34
CompanyLeagueWindow::line_height
int line_height
Height of the text lines.
Definition: graph_gui.cpp:1135
SetWindowDirty
void SetWindowDirty(WindowClass cls, WindowNumber number)
Mark window as dirty (in need of repainting)
Definition: window.cpp:3220
GraphLegendWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: graph_gui.cpp:57
SetScrollbar
static NWidgetPart SetScrollbar(int index)
Attach a scrollbar to a widget.
Definition: widget_type.h:1104
WID_CV_KEY_BUTTON
@ WID_CV_KEY_BUTTON
Key button.
Definition: graph_widget.h:26
WID_CPR_RESIZE
@ WID_CPR_RESIZE
Resize button.
Definition: graph_widget.h:46
Dimension
Dimensions (a width and height) of a rectangle in 2D.
Definition: geometry_type.hpp:27
Scrollbar::GetCapacity
uint16 GetCapacity() const
Gets the number of visible elements of the scrollbar.
Definition: widget_type.h:631
WWT_STICKYBOX
@ WWT_STICKYBOX
Sticky box (at top-right of a window, after WWT_DEFSIZEBOX)
Definition: widget_type.h:64
SetPadding
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:1055
GUIList::Sort
bool Sort(Comp compare)
Sort the list.
Definition: sortlist_type.h:247
Pool::PoolItem<&_company_pool >::GetIfValid
static Titem * GetIfValid(size_t index)
Returns Titem with given index.
Definition: pool_type.hpp:340
Window::GetScrollbar
const Scrollbar * GetScrollbar(uint widnum) const
Return the Scrollbar to a widget index.
Definition: window.cpp:309
FindLastBit
uint8 FindLastBit(uint64 x)
Search the last set bit in a 64 bit variable.
Definition: bitmath_func.cpp:65
SCORE_TOTAL
@ SCORE_TOTAL
This must always be the last entry.
Definition: economy_type.h:56
company_base.h
_cur_year
Year _cur_year
Current year, starting at 0.
Definition: date.cpp:26
NWidgetContainer::Add
void Add(NWidgetBase *wid)
Append widget wid to container.
Definition: widget.cpp:951
WD_MATRIX_TOP
@ WD_MATRIX_TOP
Offset at top of a matrix cell.
Definition: window_gui.h:78
GUISettings::graph_line_thickness
uint8 graph_line_thickness
the thickness of the lines in the various graph guis
Definition: settings_type.h:155
WWT_CAPTION
@ WWT_CAPTION
Window caption (window title between closebox and stickybox)
Definition: widget_type.h:59
PerformanceRatingDetailWindow
Definition: graph_gui.cpp:1291
company_gui.h
currency.h
Scrollbar::GetScrolledRowFromWidget
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:1972
SA_RIGHT
@ SA_RIGHT
Right align the text (must be a single bit).
Definition: gfx_func.h:98
GUIList< const Company * >
WWT_DEFSIZEBOX
@ WWT_DEFSIZEBOX
Default window size box (at top-right of a window, between WWT_SHADEBOX and WWT_STICKYBOX)
Definition: widget_type.h:63
Window::CreateNestedTree
void CreateNestedTree(bool fill_nested=true)
Perform the first part of the initialization of a nested widget tree.
Definition: window.cpp:1832
SA_LEFT
@ SA_LEFT
Left align the text.
Definition: gfx_func.h:96
CompanyLeagueWindow
Definition: graph_gui.cpp:1129
Pool::PoolItem::index
Tindex index
Index of this pool item.
Definition: pool_type.hpp:227
NWID_HORIZONTAL
@ NWID_HORIZONTAL
Horizontal container.
Definition: widget_type.h:73
CompanyLeagueWindow::BuildCompanyList
void BuildCompanyList()
(Re)Build the company league list
Definition: graph_gui.cpp:1140
WID_GL_FIRST_COMPANY
@ WID_GL_FIRST_COMPANY
First company in the legend.
Definition: graph_widget.h:20
maxdim
Dimension maxdim(const Dimension &d1, const Dimension &d2)
Compute bounding box of both dimensions.
Definition: geometry_func.cpp:22
WWT_MATRIX
@ WWT_MATRIX
Grid of rows and columns.
Definition: widget_type.h:57
WC_PERFORMANCE_HISTORY
@ WC_PERFORMANCE_HISTORY
Performance history graph; Window numbers:
Definition: window_type.h:540
HasBit
static bool HasBit(const T x, const uint8 y)
Checks if a bit in a value is set.
Definition: bitmath_func.hpp:103
Scrollbar::SetCount
void SetCount(int num)
Sets the number of elements in the list.
Definition: widget_type.h:679
PerformanceHistoryGraphWindow::OnClick
void OnClick(Point pt, int widget, int click_count) override
A click with the left mouse button has been made on the window.
Definition: graph_gui.cpp:783
WID_PHG_DETAILED_PERFORMANCE
@ WID_PHG_DETAILED_PERFORMANCE
Detailed performance.
Definition: graph_widget.h:35
Year
int32 Year
Type for the year, note: 0 based, i.e. starts at the year 0.
Definition: date_type.h:18
TextColour
TextColour
Colour of the strings, see _string_colourmap in table/string_colours.h or docs/ottd-colourtext-palett...
Definition: gfx_type.h:250
SetResize
static NWidgetPart SetResize(int16 dx, int16 dy)
Widget part function for setting the resize step.
Definition: widget_type.h:939
PerformanceRatingDetailWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: graph_gui.cpp:1381
MakeCompanyButtonRowsGraphGUI
NWidgetBase * MakeCompanyButtonRowsGraphGUI(int *biggest_index)
Make a number of rows with buttons for each company for the performance rating detail window.
Definition: graph_gui.cpp:1552
_settings_client
ClientSettings _settings_client
The current settings for this game.
Definition: settings.cpp:79
DrawString
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:640
CargoSpec
Specification of a cargo type.
Definition: cargotype.h:55
WWT_EMPTY
@ WWT_EMPTY
Empty widget, place holder to reserve space in widget array.
Definition: widget_type.h:46
WindowNumber
int32 WindowNumber
Number to differentiate different windows of the same class.
Definition: window_type.h:711
FR_LOWERED
@ FR_LOWERED
If set the frame is lowered and the background colour brighter (ie. buttons when pressed)
Definition: window_gui.h:29
economy_func.h
SA_HOR_CENTER
@ SA_HOR_CENTER
Horizontally center the text.
Definition: gfx_func.h:97
ValuesInterval::highest
OverflowSafeInt64 highest
Highest value of this interval. Must be zero or greater.
Definition: graph_gui.cpp:157
Owner
Owner
Enum for all companies/owners.
Definition: company_type.h:18
Scrollbar
Scrollbar data structure.
Definition: widget_type.h:598
WID_CV_BACKGROUND
@ WID_CV_BACKGROUND
Background of the window.
Definition: graph_widget.h:27
WC_COMPANY_LEAGUE
@ WC_COMPANY_LEAGUE
Company league window; Window numbers:
Definition: window_type.h:552
_colour_gradient
byte _colour_gradient[COLOUR_END][8]
All 16 colour gradients 8 colours per gradient from darkest (0) to lightest (7)
Definition: gfx.cpp:52
Window::Window
Window(WindowDesc *desc)
Empty constructor, initialization has been moved to InitNested() called from the constructor of the d...
Definition: window.cpp:1871
SetDParam
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
NWidgetPart
Partial widget specification to allow NWidgets to be written nested.
Definition: widget_type.h:919
SetDataTip
static NWidgetPart SetDataTip(uint32 data, StringID tip)
Widget part function for setting the data and tooltip.
Definition: widget_type.h:1023
GetStringBoundingBox
Dimension GetStringBoundingBox(const char *str, FontSize start_fontsize)
Return the string dimension in pixels.
Definition: gfx.cpp:842
BaseGraphWindow
Definition: graph_gui.cpp:165
WID_PHG_RESIZE
@ WID_PHG_RESIZE
Resize button.
Definition: graph_widget.h:38
DrawStringMultiLine
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:763
PaymentRatesGraphWindow::OnClick
void OnClick(Point pt, int widget, int click_count) override
A click with the left mouse button has been made on the window.
Definition: graph_gui.cpp:971
IsInsideMM
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:204
PaymentRatesGraphWindow
Definition: graph_gui.cpp:876
WC_DELIVERED_CARGO
@ WC_DELIVERED_CARGO
Delivered cargo graph; Window numbers:
Definition: window_type.h:534
WID_CV_RESIZE
@ WID_CV_RESIZE
Resize button.
Definition: graph_widget.h:29
gfx_func.h
ScoreInfo::score
int score
How much score it will give.
Definition: economy_type.h:67
WindowDesc
High level window description.
Definition: window_gui.h:166
COMPANY_FIRST
@ COMPANY_FIRST
First company, same as owner.
Definition: company_type.h:22
WC_GRAPH_LEGEND
@ WC_GRAPH_LEGEND
Legend for graphs; Window numbers:
Definition: window_type.h:510
window_gui.h
WID_PHG_GRAPH
@ WID_PHG_GRAPH
Graph itself.
Definition: graph_widget.h:37
NC_EQUALSIZE
@ NC_EQUALSIZE
Value of the NCB_EQUALSIZE flag.
Definition: widget_type.h:438
CargoSpec::Index
CargoID Index() const
Determines index of this cargospec.
Definition: cargotype.h:88
MakePerformanceDetailPanels
static NWidgetBase * MakePerformanceDetailPanels(int *biggest_index)
Make a vertical list of panels for outputting score details.
Definition: graph_gui.cpp:1523
BaseGraphWindow::GetValuesInterval
ValuesInterval GetValuesInterval(int num_hori_lines) const
Get the interval that contains the graph's data.
Definition: graph_gui.cpp:206
WDP_AUTO
@ WDP_AUTO
Find a place automatically.
Definition: window_gui.h:154
WID_CPR_MATRIX_SCROLLBAR
@ WID_CPR_MATRIX_SCROLLBAR
Cargo list scrollbar.
Definition: graph_widget.h:51
CompanyProperties::colour
byte colour
Company colour.
Definition: company_base.h:70
Window::resize
ResizeInfo resize
Resize information.
Definition: window_gui.h:323
CompanyEconomyEntry::performance_history
int32 performance_history
Company score (scale 0-1000)
Definition: company_base.h:26
Scrollbar::GetCount
uint16 GetCount() const
Gets the number of elements in the list.
Definition: widget_type.h:622
WID_PRD_COMPANY_LAST
@ WID_PRD_COMPANY_LAST
Last company.
Definition: graph_widget.h:65
CompanyProperties::num_valid_stat_ent
byte num_valid_stat_ent
Number of valid statistical entries in old_economy.
Definition: company_base.h:99
WID_GL_BACKGROUND
@ WID_GL_BACKGROUND
Background of the window.
Definition: graph_widget.h:18
Window::InitNested
void InitNested(WindowNumber number=0)
Perform complete initialization of the Window with nested widgets, to allow use.
Definition: window.cpp:1861
GraphLegendWindow
Definition: graph_gui.cpp:45
SCORE_END
@ SCORE_END
How many scores are there..
Definition: economy_type.h:57
Window::height
int height
Height of the window (number of pixels down in y direction)
Definition: window_gui.h:321
PaymentRatesGraphWindow::OnInvalidateData
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: graph_gui.cpp:1027
Window::SetDirty
void SetDirty() const
Mark entire window as dirty (in need of re-paint)
Definition: window.cpp:984
WD_FRAMERECT_LEFT
@ WD_FRAMERECT_LEFT
Offset at left to draw the frame rectangular area.
Definition: window_gui.h:60
FS_SMALL
@ FS_SMALL
Index of the small font in the font tables.
Definition: gfx_type.h:208
WD_FRAMERECT_RIGHT
@ WD_FRAMERECT_RIGHT
Offset at right to draw the frame rectangular area.
Definition: window_gui.h:61
BaseGraphWindow::GRAPH_AXIS_LABEL_COLOUR
static const TextColour GRAPH_AXIS_LABEL_COLOUR
colour of the graph axis label.
Definition: graph_gui.cpp:175
BaseGraphWindow::UpdateStatistics
void UpdateStatistics(bool initialize)
Update the statistics.
Definition: graph_gui.cpp:568
WD_FRAMERECT_BOTTOM
@ WD_FRAMERECT_BOTTOM
Offset at bottom to draw the frame rectangular area.
Definition: window_gui.h:63
WWT_PUSHTXTBTN
@ WWT_PUSHTXTBTN
Normal push-button (no toggle button) with text caption.
Definition: widget_type.h:102
PaymentRatesGraphWindow::line_height
uint line_height
Pixel height of each cargo type row.
Definition: graph_gui.cpp:877
NWidgetBase
Baseclass for nested widgets.
Definition: widget_type.h:124
SetMatrixDataTip
static NWidgetPart SetMatrixDataTip(uint8 cols, uint8 rows, StringID tip)
Widget part function for setting the data and tooltip of WWT_MATRIX widgets.
Definition: widget_type.h:1041
WID_CPR_ENABLE_CARGOES
@ WID_CPR_ENABLE_CARGOES
Enable cargoes button.
Definition: graph_widget.h:48
BaseGraphWindow::excluded_data
uint64 excluded_data
bitmask of the datasets that shouldn't be displayed.
Definition: graph_gui.cpp:180
WID_CPR_GRAPH
@ WID_CPR_GRAPH
Graph itself.
Definition: graph_widget.h:45
Window::SetWidgetDisabledState
void SetWidgetDisabledState(byte widget_index, bool disab_stat)
Sets the enabled/disabled status of a widget.
Definition: window_gui.h:393
WID_PRD_COMPANY_FIRST
@ WID_PRD_COMPANY_FIRST
First company.
Definition: graph_widget.h:64
MAX_COMPANIES
@ MAX_COMPANIES
Maximum number of companies.
Definition: company_type.h:23
CompanyLeagueWindow::OnInvalidateData
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: graph_gui.cpp:1254
BaseGraphWindow::OnClick
void OnClick(Point pt, int widget, int click_count) override
A click with the left mouse button has been made on the window.
Definition: graph_gui.cpp:542
CompanyLeagueWindow::UpdateWidgetSize
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: graph_gui.cpp:1204
safeguards.h
sortlist_type.h
WID_PRD_SCORE_LAST
@ WID_PRD_SCORE_LAST
Last entry in the score list.
Definition: graph_widget.h:62
Window::left
int left
x position of left edge of the window
Definition: window_gui.h:318
ValuesInterval::lowest
OverflowSafeInt64 lowest
Lowest value of this interval. Must be zero or less.
Definition: graph_gui.cpp:158
UpdateCompanyRatingAndValue
int UpdateCompanyRatingAndValue(Company *c, bool update)
if update is set to true, the economy is updated with this score (also the house is updated,...
Definition: economy.cpp:149
BaseGraphWindow::OnInvalidateData
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: graph_gui.cpp:558
CompanyLeagueWindow::PerformanceSorter
static bool PerformanceSorter(const Company *const &c1, const Company *const &c2)
Sort the company league by performance history.
Definition: graph_gui.cpp:1155
CompanyLeagueWindow::text_width
uint text_width
The width of the actual text.
Definition: graph_gui.cpp:1133
sprites.h
PaymentRatesGraphWindow::OnGameTick
void OnGameTick() override
Called once per (game) tick.
Definition: graph_gui.cpp:1017
Point
Coordinates of a point in 2D.
Definition: geometry_type.hpp:21
PerformanceHistoryGraphWindow
Definition: graph_gui.cpp:771
date_func.h
WC_INCOME_GRAPH
@ WC_INCOME_GRAPH
Income graph; Window numbers:
Definition: window_type.h:522
stdafx.h
PC_BLACK
static const uint8 PC_BLACK
Black palette colour.
Definition: gfx_func.h:206
Window::window_number
WindowNumber window_number
Window number within the window class.
Definition: window_gui.h:313
GfxFillRect
void GfxFillRect(int left, int top, int right, int bottom, int colour, FillRectMode mode)
Applies a certain FillRectMode-operation to a rectangle [left, right] x [top, bottom] on the screen.
Definition: gfx.cpp:114
GUIList::NeedResort
bool NeedResort()
Check if a resort is needed next loop If used the resort timer will decrease every call till 0.
Definition: sortlist_type.h:199
SCORE_MAX
@ SCORE_MAX
The max score that can be in the performance history.
Definition: economy_type.h:59
WC_NONE
@ WC_NONE
No window, redirects to WC_MAIN_WINDOW.
Definition: window_type.h:38
_sorted_standard_cargo_specs_size
uint8 _sorted_standard_cargo_specs_size
Number of standard cargo specifications stored in the _sorted_cargo_specs array.
Definition: cargotype.cpp:133
NWID_VERTICAL
@ NWID_VERTICAL
Vertical container.
Definition: widget_type.h:75
NWidgetResizeBase::SetFill
void SetFill(uint fill_x, uint fill_y)
Set the filling of the widget from initial size.
Definition: widget.cpp:837
WID_CPR_FOOTER
@ WID_CPR_FOOTER
Footer.
Definition: graph_widget.h:47
FONT_HEIGHT_SMALL
#define FONT_HEIGHT_SMALL
Height of characters in the small (FS_SMALL) font.
Definition: gfx_func.h:176
CompanyEconomyEntry::delivered_cargo
CargoArray delivered_cargo
The amount of delivered cargo.
Definition: company_base.h:25
DrawCompanyIcon
void DrawCompanyIcon(CompanyID c, int x, int y)
Draw the icon of a company.
Definition: company_cmd.cpp:143
BaseGraphWindow::UpdateWidgetSize
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: graph_gui.cpp:494
BaseGraphWindow::DrawGraph
void DrawGraph(Rect r) const
Actually draw the graph.
Definition: graph_gui.cpp:289
PerformanceRatingDetailWindow::UpdateWidgetSize
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: graph_gui.cpp:1323
WC_PAYMENT_RATES
@ WC_PAYMENT_RATES
Payment rates graph; Window numbers:
Definition: window_type.h:558
GetSpriteSize
Dimension GetSpriteSize(SpriteID sprid, Point *offset, ZoomLevel zoom)
Get the size of a sprite.
Definition: gfx.cpp:913
WWT_CLOSEBOX
@ WWT_CLOSEBOX
Close box (at top-left of a window)
Definition: widget_type.h:67
WWT_RESIZEBOX
@ WWT_RESIZEBOX
Resize box (normally at bottom-right of a window)
Definition: widget_type.h:66
ValuesInterval
Contains the interval of a graph's data.
Definition: graph_gui.cpp:156
GUIList::NeedRebuild
bool NeedRebuild() const
Check if a rebuild is needed.
Definition: sortlist_type.h:362
WC_COMPANY_VALUE
@ WC_COMPANY_VALUE
Company value graph; Window numbers:
Definition: window_type.h:546
CompanyEconomyEntry::expenses
Money expenses
The amount of expenses.
Definition: company_base.h:24
StringID
uint32 StringID
Numeric value that represents a string, independent of the selected language.
Definition: strings_type.h:16
EndContainer
static NWidgetPart EndContainer()
Widget part function for denoting the end of a container (horizontal, vertical, WWT_FRAME,...
Definition: widget_type.h:1008
Pool::PoolItem<&_company_pool >::Iterate
static Pool::IterateWrapper< Titem > Iterate(size_t from=0)
Returns an iterable ensemble of all valid Titem.
Definition: pool_type.hpp:378
strings_func.h
NWID_VSCROLLBAR
@ NWID_VSCROLLBAR
Vertical scrollbar.
Definition: widget_type.h:82
graph_gui.h
NWidgetCore::SetDataTip
void SetDataTip(uint32 widget_data, StringID tool_tip)
Set data and tool tip of the nested widget.
Definition: widget.cpp:892
WC_PERFORMANCE_DETAIL
@ WC_PERFORMANCE_DETAIL
Performance detail window; Window numbers:
Definition: window_type.h:564
WID_CPR_MATRIX
@ WID_CPR_MATRIX
Cargo list.
Definition: graph_widget.h:50
IncomeGraphWindow
Definition: graph_gui.cpp:673
WWT_TEXT
@ WWT_TEXT
Pure simple text.
Definition: widget_type.h:56
FONT_HEIGHT_NORMAL
#define FONT_HEIGHT_NORMAL
Height of characters in the normal (FS_NORMAL) font.
Definition: gfx_func.h:179
NWidget
static NWidgetPart NWidget(WidgetType tp, Colours col, int16 idx=-1)
Widget part function for starting a new 'real' widget.
Definition: widget_type.h:1123
geometry_func.hpp
WID_PRD_SCORE_FIRST
@ WID_PRD_SCORE_FIRST
First entry in the score list.
Definition: graph_widget.h:61
SetDParamMaxValue
void SetDParamMaxValue(uint n, uint64 max_value, uint min_count, FontSize size)
Set DParam n to some number that is suitable for string size computations.
Definition: strings.cpp:104
SetMinimalSize
static NWidgetPart SetMinimalSize(int16 x, int16 y)
Widget part function for setting the minimal size.
Definition: widget_type.h:956
WWT_PANEL
@ WWT_PANEL
Simple depressed panel.
Definition: widget_type.h:48
BaseGraphWindow::MIN_GRID_PIXEL_SIZE
static const int MIN_GRID_PIXEL_SIZE
Minimum distance between graph lines.
Definition: graph_gui.cpp:178
WID_CPR_BACKGROUND
@ WID_CPR_BACKGROUND
Background of the window.
Definition: graph_widget.h:43
BaseGraphWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: graph_gui.cpp:530
NUM_CARGO
@ NUM_CARGO
Maximal number of cargo types in a game.
Definition: cargo_type.h:64
NWidgetVertical
Vertical container.
Definition: widget_type.h:486
Scrollbar::GetPosition
uint16 GetPosition() const
Gets the position of the first visible element in the list.
Definition: widget_type.h:640
cargotype.h
ScoreInfo::needed
int needed
How much you need to get the perfect score.
Definition: economy_type.h:66
GraphLegendWindow::OnInvalidateData
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: graph_gui.cpp:94
WD_RESIZEBOX_WIDTH
@ WD_RESIZEBOX_WIDTH
Width of a resize box widget.
Definition: window_gui.h:110
CargoSpec::name
StringID name
Name of this type of cargo.
Definition: cargotype.h:70
Window::FinishInitNested
void FinishInitNested(WindowNumber window_number=0)
Perform the second part of the initialization of a nested widget tree.
Definition: window.cpp:1848
BaseGraphWindow::GetYLabelWidth
uint GetYLabelWidth(ValuesInterval current_interval, int num_hori_lines) const
Get width for Y labels.
Definition: graph_gui.cpp:265
CompanyValueGraphWindow
Definition: graph_gui.cpp:827
NWID_SPACER
@ NWID_SPACER
Invisible widget that takes some space.
Definition: widget_type.h:77
PerformanceRatingDetailWindow::OnClick
void OnClick(Point pt, int widget, int click_count) override
A click with the left mouse button has been made on the window.
Definition: graph_gui.cpp:1460
BaseGraphWindow::MIN_GRAPH_NUM_LINES_Y
static const int MIN_GRAPH_NUM_LINES_Y
Minimal number of horizontal lines to draw.
Definition: graph_gui.cpp:177
WID_CL_BACKGROUND
@ WID_CL_BACKGROUND
Background of the window.
Definition: graph_widget.h:56
WID_GL_LAST_COMPANY
@ WID_GL_LAST_COMPANY
Last company in the legend.
Definition: graph_widget.h:21
CompanyLeagueWindow::icon_width
uint icon_width
The width of the company icon.
Definition: graph_gui.cpp:1134
CompanyLeagueWindow::OnPaint
void OnPaint() override
The window must be repainted.
Definition: graph_gui.cpp:1168
GUIList::ForceResort
void ForceResort()
Force a resort next Sort call Reset the resort timer if used too.
Definition: sortlist_type.h:213
abs
static T abs(const T a)
Returns the absolute value of (scalar) variable.
Definition: math_func.hpp:21
CompanyLeagueWindow::OnGameTick
void OnGameTick() override
Called once per (game) tick.
Definition: graph_gui.cpp:1242
WID_CPR_HEADER
@ WID_CPR_HEADER
Header.
Definition: graph_widget.h:44
ScoreID
ScoreID
Score categories in the detailed performance rating.
Definition: economy_type.h:45
CompanyEconomyEntry::income
Money income
The amount of income.
Definition: company_base.h:23
BaseGraphWindow::cost
OverflowSafeInt64 cost[GRAPH_MAX_DATASETS][GRAPH_NUM_MONTHS]
Stored costs for the last GRAPH_NUM_MONTHS months.
Definition: graph_gui.cpp:198
DrawFrameRect
void DrawFrameRect(int left, int top, int right, int bottom, Colours colour, FrameFlags flags)
Draw frame rectangle.
Definition: widget.cpp:175
CompanyLeagueWindow::ordinal_width
uint ordinal_width
The width of the ordinal number.
Definition: graph_gui.cpp:1132
PaymentRatesGraphWindow::OnResize
void OnResize() override
Called after the window got resized.
Definition: graph_gui.cpp:1012
window_func.h
GUIList::ForceRebuild
void ForceRebuild()
Force that a rebuild is needed.
Definition: sortlist_type.h:370
ToggleBit
static T ToggleBit(T &x, const uint8 y)
Toggles a bit in a variable.
Definition: bitmath_func.hpp:181
Window::ToggleWidgetLoweredState
void ToggleWidgetLoweredState(byte widget_index)
Invert the lowered/raised status of a widget.
Definition: window_gui.h:464
GetCharacterHeight
int GetCharacterHeight(FontSize size)
Get height of a character for a given font size.
Definition: fontcache.cpp:69
SetBit
static T SetBit(T &x, const uint8 y)
Set a bit in a variable.
Definition: bitmath_func.hpp:121
graph_widget.h
lengthof
#define lengthof(x)
Return the length of an fixed size array.
Definition: stdafx.h:369
Window::width
int width
width of the window (number of pixels to the right in x direction)
Definition: window_gui.h:320
Scrollbar::SetCapacityFromWidget
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:1986
OverflowSafeInt< int64, INT64_MAX, INT64_MIN >
BaseGraphWindow::GRAPH_NUM_MONTHS
static const int GRAPH_NUM_MONTHS
Number of months displayed in the graph.
Definition: graph_gui.cpp:173
INVALID_COMPANY
@ INVALID_COMPANY
An invalid company.
Definition: company_type.h:30
SetFill
static NWidgetPart SetFill(uint fill_x, uint fill_y)
Widget part function for setting filling.
Definition: widget_type.h:992
PaymentRatesGraphWindow::OnHundredthTick
void OnHundredthTick() override
Called once every 100 (game) ticks, or once every 3s, whichever comes last.
Definition: graph_gui.cpp:1033
DeliveredCargoGraphWindow
Definition: graph_gui.cpp:722
GREY_SCALE
#define GREY_SCALE(level)
Return the colour for a particular greyscale level.
Definition: gfx_func.h:204
PaymentRatesGraphWindow::vscroll
Scrollbar * vscroll
Cargo list scrollbar.
Definition: graph_gui.cpp:878
Window
Data structure for an opened window.
Definition: window_gui.h:277
GUIList::RebuildDone
void RebuildDone()
Notify the sortlist that the rebuild is done.
Definition: sortlist_type.h:380
WID_CV_GRAPH
@ WID_CV_GRAPH
Graph itself.
Definition: graph_widget.h:28
Pool::PoolItem<&_company_pool >::IsValidID
static bool IsValidID(size_t index)
Tests whether given index can be used to get valid (non-nullptr) Titem.
Definition: pool_type.hpp:318
Window::RaiseWidget
void RaiseWidget(byte widget_index)
Marks a widget as raised.
Definition: window_gui.h:484
Window::DrawWidgets
void DrawWidgets() const
Paint all widgets of a window.
Definition: widget.cpp:602
NWidgetBackground
Nested widget with a child.
Definition: widget_type.h:554
BaseGraphWindow::OnGameTick
void OnGameTick() override
Called once per (game) tick.
Definition: graph_gui.cpp:548
PerformanceRatingDetailWindow::OnGameTick
void OnGameTick() override
Called once per (game) tick.
Definition: graph_gui.cpp:1474
MakeNWidgetCompanyLines
static NWidgetBase * MakeNWidgetCompanyLines(int *biggest_index)
Construct a vertical list of buttons, one for each company.
Definition: graph_gui.cpp:110
WID_CPR_DISABLE_CARGOES
@ WID_CPR_DISABLE_CARGOES
Disable cargoes button.
Definition: graph_widget.h:49
WC_OPERATING_PROFIT
@ WC_OPERATING_PROFIT
Operating profit graph; Window numbers:
Definition: window_type.h:528
Window::IsWidgetDisabled
bool IsWidgetDisabled(byte widget_index) const
Gets the enabled/disabled status of a widget.
Definition: window_gui.h:422
CompanyLeagueWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: graph_gui.cpp:1176
Rect
Specification of a rectangle with absolute coordinates of all edges.
Definition: geometry_type.hpp:47
Window::LowerWidget
void LowerWidget(byte widget_index)
Marks a widget as lowered.
Definition: window_gui.h:475
Company
Definition: company_base.h:110
_cur_month
Month _cur_month
Current month (0..11)
Definition: date.cpp:27
CompanyProperties::old_economy
CompanyEconomyEntry old_economy[MAX_HISTORY_QUARTERS]
Economic data of the company of the last MAX_HISTORY_QUARTERS quarters.
Definition: company_base.h:98
PerformanceRatingDetailWindow::OnInvalidateData
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: graph_gui.cpp:1488
NWidgetResizeBase::SetMinimalSize
void SetMinimalSize(uint min_x, uint min_y)
Set minimal size of the widget.
Definition: widget.cpp:815
TD_RTL
@ TD_RTL
Text is written right-to-left by default.
Definition: strings_type.h:24
DAY_TICKS
static const int DAY_TICKS
1 day is 74 ticks; _date_fract used to be uint16 and incremented by 885.
Definition: date_type.h:28
_current_text_dir
TextDirection _current_text_dir
Text direction of the currently selected language.
Definition: strings.cpp:48
OperatingProfitGraphWindow
Definition: graph_gui.cpp:622
ClientSettings::gui
GUISettings gui
settings related to the GUI
Definition: settings_type.h:581
WID_PHG_BACKGROUND
@ WID_PHG_BACKGROUND
Background of the window.
Definition: graph_widget.h:36
SetMinimalTextLines
static NWidgetPart SetMinimalTextLines(uint8 lines, uint8 spacing, FontSize size=FS_NORMAL)
Widget part function for setting the minimal text lines.
Definition: widget_type.h:974
_score_info
const ScoreInfo _score_info[]
Score info, values used for computing the detailed performance rating.
Definition: economy.cpp:83
GraphLegendWindow::OnClick
void OnClick(Point pt, int widget, int click_count) override
A click with the left mouse button has been made on the window.
Definition: graph_gui.cpp:75
WWT_SHADEBOX
@ WWT_SHADEBOX
Shade box (at top-right of a window, between WWT_DEBUGBOX and WWT_DEFSIZEBOX)
Definition: widget_type.h:62