OpenTTD Source  12.2
industry_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 "error.h"
12 #include "gui.h"
13 #include "settings_gui.h"
14 #include "sound_func.h"
15 #include "window_func.h"
16 #include "textbuf_gui.h"
17 #include "command_func.h"
18 #include "viewport_func.h"
19 #include "industry.h"
20 #include "town.h"
21 #include "cheat_type.h"
22 #include "newgrf_industries.h"
23 #include "newgrf_text.h"
24 #include "newgrf_debug.h"
25 #include "network/network.h"
26 #include "strings_func.h"
27 #include "company_func.h"
28 #include "tilehighlight_func.h"
29 #include "string_func.h"
30 #include "sortlist_type.h"
31 #include "widgets/dropdown_func.h"
32 #include "company_base.h"
33 #include "core/geometry_func.hpp"
34 #include "core/random_func.hpp"
35 #include "core/backup_type.hpp"
36 #include "genworld.h"
37 #include "smallmap_gui.h"
38 #include "widgets/dropdown_type.h"
40 #include "clear_map.h"
41 #include "zoom_func.h"
42 
43 #include "table/strings.h"
44 
45 #include <bitset>
46 
47 #include "safeguards.h"
48 
49 bool _ignore_restrictions;
50 std::bitset<NUM_INDUSTRYTYPES> _displayed_industries;
51 
57 };
58 
65 };
66 
68 struct CargoSuffix {
70  char text[512];
71 };
72 
73 static void ShowIndustryCargoesWindow(IndustryType id);
74 
84 static void GetCargoSuffix(uint cargo, CargoSuffixType cst, const Industry *ind, IndustryType ind_type, const IndustrySpec *indspec, CargoSuffix &suffix)
85 {
86  suffix.text[0] = '\0';
87  suffix.display = CSD_CARGO_AMOUNT;
88 
89  if (HasBit(indspec->callback_mask, CBM_IND_CARGO_SUFFIX)) {
90  TileIndex t = (cst != CST_FUND) ? ind->location.tile : INVALID_TILE;
91  uint16 callback = GetIndustryCallback(CBID_INDUSTRY_CARGO_SUFFIX, 0, (cst << 8) | cargo, const_cast<Industry *>(ind), ind_type, t);
92  if (callback == CALLBACK_FAILED) return;
93 
94  if (indspec->grf_prop.grffile->grf_version < 8) {
95  if (GB(callback, 0, 8) == 0xFF) return;
96  if (callback < 0x400) {
98  GetString(suffix.text, GetGRFStringID(indspec->grf_prop.grffile->grfid, 0xD000 + callback), lastof(suffix.text));
101  return;
102  }
104  return;
105 
106  } else { // GRF version 8 or higher.
107  if (callback == 0x400) return;
108  if (callback == 0x401) {
109  suffix.display = CSD_CARGO;
110  return;
111  }
112  if (callback < 0x400) {
114  GetString(suffix.text, GetGRFStringID(indspec->grf_prop.grffile->grfid, 0xD000 + callback), lastof(suffix.text));
117  return;
118  }
119  if (callback >= 0x800 && callback < 0xC00) {
121  GetString(suffix.text, GetGRFStringID(indspec->grf_prop.grffile->grfid, 0xD000 - 0x800 + callback), lastof(suffix.text));
123  suffix.display = CSD_CARGO_TEXT;
124  return;
125  }
127  return;
128  }
129  }
130 }
131 
132 enum CargoSuffixInOut {
133  CARGOSUFFIX_OUT = 0,
134  CARGOSUFFIX_IN = 1,
135 };
136 
147 template <typename TC, typename TS>
148 static inline void GetAllCargoSuffixes(CargoSuffixInOut use_input, CargoSuffixType cst, const Industry *ind, IndustryType ind_type, const IndustrySpec *indspec, const TC &cargoes, TS &suffixes)
149 {
150  static_assert(lengthof(cargoes) <= lengthof(suffixes));
151 
153  /* Reworked behaviour with new many-in-many-out scheme */
154  for (uint j = 0; j < lengthof(suffixes); j++) {
155  if (cargoes[j] != CT_INVALID) {
156  byte local_id = indspec->grf_prop.grffile->cargo_map[cargoes[j]]; // should we check the value for valid?
157  uint cargotype = local_id << 16 | use_input;
158  GetCargoSuffix(cargotype, cst, ind, ind_type, indspec, suffixes[j]);
159  } else {
160  suffixes[j].text[0] = '\0';
161  suffixes[j].display = CSD_CARGO;
162  }
163  }
164  } else {
165  /* Compatible behaviour with old 3-in-2-out scheme */
166  for (uint j = 0; j < lengthof(suffixes); j++) {
167  suffixes[j].text[0] = '\0';
168  suffixes[j].display = CSD_CARGO;
169  }
170  switch (use_input) {
171  case CARGOSUFFIX_OUT:
172  if (cargoes[0] != CT_INVALID) GetCargoSuffix(3, cst, ind, ind_type, indspec, suffixes[0]);
173  if (cargoes[1] != CT_INVALID) GetCargoSuffix(4, cst, ind, ind_type, indspec, suffixes[1]);
174  break;
175  case CARGOSUFFIX_IN:
176  if (cargoes[0] != CT_INVALID) GetCargoSuffix(0, cst, ind, ind_type, indspec, suffixes[0]);
177  if (cargoes[1] != CT_INVALID) GetCargoSuffix(1, cst, ind, ind_type, indspec, suffixes[1]);
178  if (cargoes[2] != CT_INVALID) GetCargoSuffix(2, cst, ind, ind_type, indspec, suffixes[2]);
179  break;
180  default:
181  NOT_REACHED();
182  }
183  }
184 }
185 
186 std::array<IndustryType, NUM_INDUSTRYTYPES> _sorted_industry_types;
187 
189 static bool IndustryTypeNameSorter(const IndustryType &a, const IndustryType &b)
190 {
191  static char industry_name[2][64];
192 
193  const IndustrySpec *indsp1 = GetIndustrySpec(a);
194  GetString(industry_name[0], indsp1->name, lastof(industry_name[0]));
195 
196  const IndustrySpec *indsp2 = GetIndustrySpec(b);
197  GetString(industry_name[1], indsp2->name, lastof(industry_name[1]));
198 
199  int r = strnatcmp(industry_name[0], industry_name[1]); // Sort by name (natural sorting).
200 
201  /* If the names are equal, sort by industry type. */
202  return (r != 0) ? r < 0 : (a < b);
203 }
204 
209 {
210  /* Add each industry type to the list. */
211  for (IndustryType i = 0; i < NUM_INDUSTRYTYPES; i++) {
212  _sorted_industry_types[i] = i;
213  }
214 
215  /* Sort industry types by name. */
217 }
218 
227 void CcBuildIndustry(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2, uint32 cmd)
228 {
229  if (result.Succeeded()) return;
230 
231  uint8 indtype = GB(p1, 0, 8);
232  if (indtype < NUM_INDUSTRYTYPES) {
233  const IndustrySpec *indsp = GetIndustrySpec(indtype);
234  if (indsp->enabled) {
235  SetDParam(0, indsp->name);
236  ShowErrorMessage(STR_ERROR_CAN_T_BUILD_HERE, result.GetErrorMessage(), WL_INFO, TileX(tile) * TILE_SIZE, TileY(tile) * TILE_SIZE);
237  }
238  }
239 }
240 
241 static const NWidgetPart _nested_build_industry_widgets[] = {
243  NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
244  NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_FUND_INDUSTRY_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
245  NWidget(WWT_SHADEBOX, COLOUR_DARK_GREEN),
246  NWidget(WWT_DEFSIZEBOX, COLOUR_DARK_GREEN),
247  NWidget(WWT_STICKYBOX, COLOUR_DARK_GREEN),
248  EndContainer(),
252  SetDataTip(STR_FUND_INDUSTRY_MANY_RANDOM_INDUSTRIES, STR_FUND_INDUSTRY_MANY_RANDOM_INDUSTRIES_TOOLTIP),
253  NWidget(WWT_TEXTBTN, COLOUR_DARK_GREEN, WID_DPI_REMOVE_ALL_INDUSTRIES_WIDGET), SetMinimalSize(0, 12), SetFill(1, 0), SetResize(1, 0),
254  SetDataTip(STR_FUND_INDUSTRY_REMOVE_ALL_INDUSTRIES, STR_FUND_INDUSTRY_REMOVE_ALL_INDUSTRIES_TOOLTIP),
255  EndContainer(),
256  EndContainer(),
258  NWidget(WWT_MATRIX, COLOUR_DARK_GREEN, WID_DPI_MATRIX_WIDGET), SetMatrixDataTip(1, 0, STR_FUND_INDUSTRY_SELECTION_TOOLTIP), SetFill(1, 0), SetResize(1, 1), SetScrollbar(WID_DPI_SCROLLBAR),
259  NWidget(NWID_VSCROLLBAR, COLOUR_DARK_GREEN, WID_DPI_SCROLLBAR),
260  EndContainer(),
261  NWidget(WWT_PANEL, COLOUR_DARK_GREEN, WID_DPI_INFOPANEL), SetResize(1, 0),
262  EndContainer(),
264  NWidget(WWT_TEXTBTN, COLOUR_DARK_GREEN, WID_DPI_DISPLAY_WIDGET), SetFill(1, 0), SetResize(1, 0),
265  SetDataTip(STR_INDUSTRY_DISPLAY_CHAIN, STR_INDUSTRY_DISPLAY_CHAIN_TOOLTIP),
266  NWidget(WWT_TEXTBTN, COLOUR_DARK_GREEN, WID_DPI_FUND_WIDGET), SetFill(1, 0), SetResize(1, 0), SetDataTip(STR_JUST_STRING, STR_NULL),
267  NWidget(WWT_RESIZEBOX, COLOUR_DARK_GREEN),
268  EndContainer(),
269 };
270 
273  WDP_AUTO, "build_industry", 170, 212,
276  _nested_build_industry_widgets, lengthof(_nested_build_industry_widgets)
277 );
278 
280 class BuildIndustryWindow : public Window {
282  IndustryType selected_type;
283  uint16 count;
284  IndustryType index[NUM_INDUSTRYTYPES + 1];
286  Scrollbar *vscroll;
288 
290  static const int MAX_MINWIDTH_LINEHEIGHTS = 20;
291 
292  void SetupArrays()
293  {
294  this->count = 0;
295 
296  for (uint i = 0; i < lengthof(this->index); i++) {
297  this->index[i] = INVALID_INDUSTRYTYPE;
298  this->enabled[i] = false;
299  }
300 
301  /* Fill the arrays with industries.
302  * The tests performed after the enabled allow to load the industries
303  * In the same way they are inserted by grf (if any)
304  */
305  for (IndustryType ind : _sorted_industry_types) {
306  const IndustrySpec *indsp = GetIndustrySpec(ind);
307  if (indsp->enabled) {
308  /* Rule is that editor mode loads all industries.
309  * In game mode, all non raw industries are loaded too
310  * and raw ones are loaded only when setting allows it */
311  if (_game_mode != GM_EDITOR && indsp->IsRawIndustry() && _settings_game.construction.raw_industry_construction == 0) {
312  /* Unselect if the industry is no longer in the list */
313  if (this->selected_type == ind) this->selected_index = -1;
314  continue;
315  }
316  this->index[this->count] = ind;
317  this->enabled[this->count] = (_game_mode == GM_EDITOR) || GetIndustryProbabilityCallback(ind, IACT_USERCREATION, 1) > 0;
318  /* Keep the selection to the correct line */
319  if (this->selected_type == ind) this->selected_index = this->count;
320  this->count++;
321  }
322  }
323 
324  /* first industry type is selected if the current selection is invalid.
325  * I'll be damned if there are none available ;) */
326  if (this->selected_index == -1) {
327  this->selected_index = 0;
328  this->selected_type = this->index[0];
329  }
330 
331  this->vscroll->SetCount(this->count);
332  }
333 
335  void SetButtons()
336  {
337  this->SetWidgetDisabledState(WID_DPI_FUND_WIDGET, this->selected_type != INVALID_INDUSTRYTYPE && !this->enabled[this->selected_index]);
338  this->SetWidgetDisabledState(WID_DPI_DISPLAY_WIDGET, this->selected_type == INVALID_INDUSTRYTYPE && this->enabled[this->selected_index]);
339  }
340 
353  std::string MakeCargoListString(const CargoID *cargolist, const CargoSuffix *cargo_suffix, int cargolistlen, StringID prefixstr) const
354  {
355  std::string cargostring;
356  char buf[1024];
357  int numcargo = 0;
358  int firstcargo = -1;
359 
360  for (int j = 0; j < cargolistlen; j++) {
361  if (cargolist[j] == CT_INVALID) continue;
362  numcargo++;
363  if (firstcargo < 0) {
364  firstcargo = j;
365  continue;
366  }
367  SetDParam(0, CargoSpec::Get(cargolist[j])->name);
368  SetDParamStr(1, cargo_suffix[j].text);
369  GetString(buf, STR_INDUSTRY_VIEW_CARGO_LIST_EXTENSION, lastof(buf));
370  cargostring += buf;
371  }
372 
373  if (numcargo > 0) {
374  SetDParam(0, CargoSpec::Get(cargolist[firstcargo])->name);
375  SetDParamStr(1, cargo_suffix[firstcargo].text);
376  GetString(buf, prefixstr, lastof(buf));
377  cargostring = std::string(buf) + cargostring;
378  } else {
379  SetDParam(0, STR_JUST_NOTHING);
380  SetDParamStr(1, "");
381  GetString(buf, prefixstr, lastof(buf));
382  cargostring = std::string(buf);
383  }
384 
385  return cargostring;
386  }
387 
388 public:
390  {
391  this->selected_index = -1;
392  this->selected_type = INVALID_INDUSTRYTYPE;
393 
394  this->CreateNestedTree();
395  this->vscroll = this->GetScrollbar(WID_DPI_SCROLLBAR);
396  this->FinishInitNested(0);
397 
398  this->SetButtons();
399 
400  /* Show scenario editor tools in editor. */
401  if (_game_mode != GM_EDITOR) {
402  auto *se_tools = this->GetWidget<NWidgetStacked>(WID_DPI_SCENARIO_EDITOR_PANE);
403  se_tools->SetDisplayedPlane(SZSP_HORIZONTAL);
404  this->ReInit();
405  }
406  }
407 
408  void OnInit() override
409  {
410  /* Width of the legend blob -- slightly larger than the smallmap legend blob. */
411  this->legend.height = FONT_HEIGHT_SMALL;
412  this->legend.width = this->legend.height * 8 / 5;
413 
414  this->SetupArrays();
415  }
416 
417  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
418  {
419  switch (widget) {
420  case WID_DPI_MATRIX_WIDGET: {
421  Dimension d = GetStringBoundingBox(STR_FUND_INDUSTRY_MANY_RANDOM_INDUSTRIES);
422  for (uint16 i = 0; i < this->count; i++) {
423  if (this->index[i] == INVALID_INDUSTRYTYPE) continue;
424  d = maxdim(d, GetStringBoundingBox(GetIndustrySpec(this->index[i])->name));
425  }
426  resize->height = std::max<uint>(this->legend.height, FONT_HEIGHT_NORMAL) + WD_MATRIX_TOP + WD_MATRIX_BOTTOM;
427  d.width += this->legend.width + ScaleFontTrad(7) + padding.width;
428  d.height = 5 * resize->height;
429  *size = maxdim(*size, d);
430  break;
431  }
432 
433  case WID_DPI_INFOPANEL: {
434  /* Extra line for cost outside of editor. */
435  int height = 2 + (_game_mode == GM_EDITOR ? 0 : 1);
436  uint extra_lines_req = 0;
437  uint extra_lines_prd = 0;
438  uint extra_lines_newgrf = 0;
439  uint max_minwidth = FONT_HEIGHT_NORMAL * MAX_MINWIDTH_LINEHEIGHTS;
440  Dimension d = {0, 0};
441  for (uint16 i = 0; i < this->count; i++) {
442  if (this->index[i] == INVALID_INDUSTRYTYPE) continue;
443 
444  const IndustrySpec *indsp = GetIndustrySpec(this->index[i]);
445  CargoSuffix cargo_suffix[lengthof(indsp->accepts_cargo)];
446 
447  /* Measure the accepted cargoes, if any. */
448  GetAllCargoSuffixes(CARGOSUFFIX_IN, CST_FUND, nullptr, this->index[i], indsp, indsp->accepts_cargo, cargo_suffix);
449  std::string cargostring = this->MakeCargoListString(indsp->accepts_cargo, cargo_suffix, lengthof(indsp->accepts_cargo), STR_INDUSTRY_VIEW_REQUIRES_N_CARGO);
450  Dimension strdim = GetStringBoundingBox(cargostring.c_str());
451  if (strdim.width > max_minwidth) {
452  extra_lines_req = std::max(extra_lines_req, strdim.width / max_minwidth + 1);
453  strdim.width = max_minwidth;
454  }
455  d = maxdim(d, strdim);
456 
457  /* Measure the produced cargoes, if any. */
458  GetAllCargoSuffixes(CARGOSUFFIX_OUT, CST_FUND, nullptr, this->index[i], indsp, indsp->produced_cargo, cargo_suffix);
459  cargostring = this->MakeCargoListString(indsp->produced_cargo, cargo_suffix, lengthof(indsp->produced_cargo), STR_INDUSTRY_VIEW_PRODUCES_N_CARGO);
460  strdim = GetStringBoundingBox(cargostring.c_str());
461  if (strdim.width > max_minwidth) {
462  extra_lines_prd = std::max(extra_lines_prd, strdim.width / max_minwidth + 1);
463  strdim.width = max_minwidth;
464  }
465  d = maxdim(d, strdim);
466 
467  if (indsp->grf_prop.grffile != nullptr) {
468  /* Reserve a few extra lines for text from an industry NewGRF. */
469  extra_lines_newgrf = 4;
470  }
471  }
472 
473  /* Set it to something more sane :) */
474  height += extra_lines_prd + extra_lines_req + extra_lines_newgrf;
476  size->width = d.width + WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT;
477  break;
478  }
479 
480  case WID_DPI_FUND_WIDGET: {
481  Dimension d = GetStringBoundingBox(STR_FUND_INDUSTRY_BUILD_NEW_INDUSTRY);
482  d = maxdim(d, GetStringBoundingBox(STR_FUND_INDUSTRY_PROSPECT_NEW_INDUSTRY));
483  d = maxdim(d, GetStringBoundingBox(STR_FUND_INDUSTRY_FUND_NEW_INDUSTRY));
484  d.width += padding.width;
485  d.height += padding.height;
486  *size = maxdim(*size, d);
487  break;
488  }
489  }
490  }
491 
492  void SetStringParameters(int widget) const override
493  {
494  switch (widget) {
495  case WID_DPI_FUND_WIDGET:
496  /* Raw industries might be prospected. Show this fact by changing the string
497  * In Editor, you just build, while ingame, or you fund or you prospect */
498  if (_game_mode == GM_EDITOR) {
499  /* We've chosen many random industries but no industries have been specified */
500  SetDParam(0, STR_FUND_INDUSTRY_BUILD_NEW_INDUSTRY);
501  } else {
502  const IndustrySpec *indsp = GetIndustrySpec(this->index[this->selected_index]);
503  SetDParam(0, (_settings_game.construction.raw_industry_construction == 2 && indsp->IsRawIndustry()) ? STR_FUND_INDUSTRY_PROSPECT_NEW_INDUSTRY : STR_FUND_INDUSTRY_FUND_NEW_INDUSTRY);
504  }
505  break;
506  }
507  }
508 
509  void DrawWidget(const Rect &r, int widget) const override
510  {
511  switch (widget) {
512  case WID_DPI_MATRIX_WIDGET: {
513  uint text_left, text_right, icon_left, icon_right;
514  if (_current_text_dir == TD_RTL) {
515  icon_right = r.right - WD_MATRIX_RIGHT;
516  icon_left = icon_right - this->legend.width;
517  text_right = icon_left - ScaleFontTrad(7);
518  text_left = r.left + WD_MATRIX_LEFT;
519  } else {
520  icon_left = r.left + WD_MATRIX_LEFT;
521  icon_right = icon_left + this->legend.width;
522  text_left = icon_right + ScaleFontTrad(7);
523  text_right = r.right - WD_MATRIX_RIGHT;
524  }
525 
526  /* Vertical offset for legend icon. */
527  int icon_top = (this->resize.step_height - this->legend.height + 1) / 2;
528  int icon_bottom = icon_top + this->legend.height;
529 
530  int y = r.top;
531  for (uint16 i = 0; i < this->vscroll->GetCapacity() && i + this->vscroll->GetPosition() < this->count; i++) {
532  bool selected = this->selected_index == i + this->vscroll->GetPosition();
533 
534  if (this->index[i + this->vscroll->GetPosition()] == INVALID_INDUSTRYTYPE) {
535  DrawString(text_left, text_right, y + WD_MATRIX_TOP, STR_FUND_INDUSTRY_MANY_RANDOM_INDUSTRIES, selected ? TC_WHITE : TC_ORANGE);
536  y += this->resize.step_height;
537  continue;
538  }
539  const IndustrySpec *indsp = GetIndustrySpec(this->index[i + this->vscroll->GetPosition()]);
540 
541  /* Draw the name of the industry in white is selected, otherwise, in orange */
542  DrawString(text_left, text_right, y + WD_MATRIX_TOP, indsp->name, selected ? TC_WHITE : TC_ORANGE);
543  GfxFillRect(icon_left, y + icon_top, icon_right, y + icon_bottom, selected ? PC_WHITE : PC_BLACK);
544  GfxFillRect(icon_left + 1, y + icon_top + 1, icon_right - 1, y + icon_bottom - 1, indsp->map_colour);
545 
546  y += this->resize.step_height;
547  }
548  break;
549  }
550 
551  case WID_DPI_INFOPANEL: {
552  int y = r.top + WD_FRAMERECT_TOP;
553  int bottom = r.bottom - WD_FRAMERECT_BOTTOM;
554  int left = r.left + WD_FRAMERECT_LEFT;
555  int right = r.right - WD_FRAMERECT_RIGHT;
556 
557  if (this->selected_type == INVALID_INDUSTRYTYPE) {
558  DrawStringMultiLine(left, right, y, bottom, STR_FUND_INDUSTRY_MANY_RANDOM_INDUSTRIES_TOOLTIP);
559  break;
560  }
561 
562  const IndustrySpec *indsp = GetIndustrySpec(this->selected_type);
563 
564  if (_game_mode != GM_EDITOR) {
565  SetDParam(0, indsp->GetConstructionCost());
566  DrawString(left, right, y, STR_FUND_INDUSTRY_INDUSTRY_BUILD_COST);
567  y += FONT_HEIGHT_NORMAL;
568  }
569 
570  CargoSuffix cargo_suffix[lengthof(indsp->accepts_cargo)];
571 
572  /* Draw the accepted cargoes, if any. Otherwise, will print "Nothing". */
573  GetAllCargoSuffixes(CARGOSUFFIX_IN, CST_FUND, nullptr, this->selected_type, indsp, indsp->accepts_cargo, cargo_suffix);
574  std::string cargostring = this->MakeCargoListString(indsp->accepts_cargo, cargo_suffix, lengthof(indsp->accepts_cargo), STR_INDUSTRY_VIEW_REQUIRES_N_CARGO);
575  y = DrawStringMultiLine(left, right, y, bottom, cargostring);
576 
577  /* Draw the produced cargoes, if any. Otherwise, will print "Nothing". */
578  GetAllCargoSuffixes(CARGOSUFFIX_OUT, CST_FUND, nullptr, this->selected_type, indsp, indsp->produced_cargo, cargo_suffix);
579  cargostring = this->MakeCargoListString(indsp->produced_cargo, cargo_suffix, lengthof(indsp->produced_cargo), STR_INDUSTRY_VIEW_PRODUCES_N_CARGO);
580  y = DrawStringMultiLine(left, right, y, bottom, cargostring);
581 
582  /* Get the additional purchase info text, if it has not already been queried. */
584  uint16 callback_res = GetIndustryCallback(CBID_INDUSTRY_FUND_MORE_TEXT, 0, 0, nullptr, this->selected_type, INVALID_TILE);
585  if (callback_res != CALLBACK_FAILED && callback_res != 0x400) {
586  if (callback_res > 0x400) {
588  } else {
589  StringID str = GetGRFStringID(indsp->grf_prop.grffile->grfid, 0xD000 + callback_res); // No. here's the new string
590  if (str != STR_UNDEFINED) {
592  DrawStringMultiLine(left, right, y, bottom, str, TC_YELLOW);
594  }
595  }
596  }
597  }
598  break;
599  }
600  }
601  }
602 
603  static void AskManyRandomIndustriesCallback(Window *w, bool confirmed)
604  {
605  if (!confirmed) return;
606 
607  if (Town::GetNumItems() == 0) {
608  ShowErrorMessage(STR_ERROR_CAN_T_GENERATE_INDUSTRIES, STR_ERROR_MUST_FOUND_TOWN_FIRST, WL_INFO);
609  } else {
610  extern void GenerateIndustries();
611  Backup<bool> old_generating_world(_generating_world, true, FILE_LINE);
613  old_generating_world.Restore();
614  }
615  }
616 
617  static void AskRemoveAllIndustriesCallback(Window *w, bool confirmed)
618  {
619  if (!confirmed) return;
620 
621  for (Industry *industry : Industry::Iterate()) delete industry;
622 
623  /* Clear farmland. */
624  for (TileIndex tile = 0; tile < MapSize(); tile++) {
625  if (IsTileType(tile, MP_CLEAR) && GetRawClearGround(tile) == CLEAR_FIELDS) {
626  MakeClear(tile, CLEAR_GRASS, 3);
627  }
628  }
629 
631  }
632 
633  void OnClick(Point pt, int widget, int click_count) override
634  {
635  switch (widget) {
637  assert(_game_mode == GM_EDITOR);
639  ShowQuery(STR_FUND_INDUSTRY_MANY_RANDOM_INDUSTRIES_CAPTION, STR_FUND_INDUSTRY_MANY_RANDOM_INDUSTRIES_QUERY, nullptr, AskManyRandomIndustriesCallback);
640  break;
641  }
642 
644  assert(_game_mode == GM_EDITOR);
646  ShowQuery(STR_FUND_INDUSTRY_REMOVE_ALL_INDUSTRIES_CAPTION, STR_FUND_INDUSTRY_REMOVE_ALL_INDUSTRIES_QUERY, nullptr, AskRemoveAllIndustriesCallback);
647  break;
648  }
649 
650  case WID_DPI_MATRIX_WIDGET: {
651  int y = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_DPI_MATRIX_WIDGET);
652  if (y < this->count) { // Is it within the boundaries of available data?
653  this->selected_index = y;
654  this->selected_type = this->index[y];
655  const IndustrySpec *indsp = (this->selected_type == INVALID_INDUSTRYTYPE) ? nullptr : GetIndustrySpec(this->selected_type);
656 
657  this->SetDirty();
658 
659  if (_thd.GetCallbackWnd() == this &&
660  ((_game_mode != GM_EDITOR && _settings_game.construction.raw_industry_construction == 2 && indsp != nullptr && indsp->IsRawIndustry()) ||
661  this->selected_type == INVALID_INDUSTRYTYPE ||
662  !this->enabled[this->selected_index])) {
663  /* Reset the button state if going to prospecting or "build many industries" */
664  this->RaiseButtons();
666  }
667 
668  this->SetButtons();
669  if (this->enabled[this->selected_index] && click_count > 1) this->OnClick(pt, WID_DPI_FUND_WIDGET, 1);
670  }
671  break;
672  }
673 
675  if (this->selected_type != INVALID_INDUSTRYTYPE) ShowIndustryCargoesWindow(this->selected_type);
676  break;
677 
678  case WID_DPI_FUND_WIDGET: {
679  if (this->selected_type != INVALID_INDUSTRYTYPE) {
680  if (_game_mode != GM_EDITOR && _settings_game.construction.raw_industry_construction == 2 && GetIndustrySpec(this->selected_type)->IsRawIndustry()) {
681  DoCommandP(0, this->selected_type, InteractiveRandom(), CMD_BUILD_INDUSTRY | CMD_MSG(STR_ERROR_CAN_T_CONSTRUCT_THIS_INDUSTRY));
683  } else {
684  HandlePlacePushButton(this, WID_DPI_FUND_WIDGET, SPR_CURSOR_INDUSTRY, HT_RECT);
685  }
686  }
687  break;
688  }
689  }
690  }
691 
692  void OnResize() override
693  {
694  /* Adjust the number of items in the matrix depending of the resize */
695  this->vscroll->SetCapacityFromWidget(this, WID_DPI_MATRIX_WIDGET);
696  }
697 
698  void OnPlaceObject(Point pt, TileIndex tile) override
699  {
700  bool success = true;
701  /* We do not need to protect ourselves against "Random Many Industries" in this mode */
702  const IndustrySpec *indsp = GetIndustrySpec(this->selected_type);
703  uint32 seed = InteractiveRandom();
704  uint32 layout_index = InteractiveRandomRange((uint32)indsp->layouts.size());
705 
706  if (_game_mode == GM_EDITOR) {
707  /* Show error if no town exists at all */
708  if (Town::GetNumItems() == 0) {
709  SetDParam(0, indsp->name);
710  ShowErrorMessage(STR_ERROR_CAN_T_BUILD_HERE, STR_ERROR_MUST_FOUND_TOWN_FIRST, WL_INFO, pt.x, pt.y);
711  return;
712  }
713 
714  Backup<CompanyID> cur_company(_current_company, OWNER_NONE, FILE_LINE);
715  Backup<bool> old_generating_world(_generating_world, true, FILE_LINE);
716  _ignore_restrictions = true;
717 
718  DoCommandP(tile, (layout_index << 8) | this->selected_type, seed,
719  CMD_BUILD_INDUSTRY | CMD_MSG(STR_ERROR_CAN_T_CONSTRUCT_THIS_INDUSTRY), &CcBuildIndustry);
720 
721  cur_company.Restore();
722  old_generating_world.Restore();
723  _ignore_restrictions = false;
724  } else {
725  success = DoCommandP(tile, (layout_index << 8) | this->selected_type, seed, CMD_BUILD_INDUSTRY | CMD_MSG(STR_ERROR_CAN_T_CONSTRUCT_THIS_INDUSTRY));
726  }
727 
728  /* If an industry has been built, just reset the cursor and the system */
730  }
731 
732  void OnHundredthTick() override
733  {
734  if (_game_mode == GM_EDITOR) return;
735  const IndustrySpec *indsp = GetIndustrySpec(this->selected_type);
736 
737  if (indsp->enabled) {
738  bool call_back_result = GetIndustryProbabilityCallback(this->selected_type, IACT_USERCREATION, 1) > 0;
739 
740  /* Only if result does match the previous state would it require a redraw. */
741  if (call_back_result != this->enabled[this->selected_index]) {
742  this->enabled[this->selected_index] = call_back_result;
743  this->SetButtons();
744  this->SetDirty();
745  }
746  }
747  }
748 
749  void OnTimeout() override
750  {
751  this->RaiseButtons();
752  }
753 
754  void OnPlaceObjectAbort() override
755  {
756  this->RaiseButtons();
757  }
758 
764  void OnInvalidateData(int data = 0, bool gui_scope = true) override
765  {
766  if (!gui_scope) return;
767  this->SetupArrays();
768 
769  const IndustrySpec *indsp = (this->selected_type == INVALID_INDUSTRYTYPE) ? nullptr : GetIndustrySpec(this->selected_type);
770  if (indsp == nullptr) this->enabled[this->selected_index] = _settings_game.difficulty.industry_density != ID_FUND_ONLY;
771  this->SetButtons();
772  this->SetDirty();
773  }
774 };
775 
776 void ShowBuildIndustryWindow()
777 {
778  if (_game_mode != GM_EDITOR && !Company::IsValidID(_local_company)) return;
780  new BuildIndustryWindow();
781 }
782 
783 static void UpdateIndustryProduction(Industry *i);
784 
785 static inline bool IsProductionAlterable(const Industry *i)
786 {
787  const IndustrySpec *is = GetIndustrySpec(i->type);
788  bool has_prod = false;
789  for (size_t j = 0; j < lengthof(is->production_rate); j++) {
790  if (is->production_rate[j] != 0) {
791  has_prod = true;
792  break;
793  }
794  }
795  return ((_game_mode == GM_EDITOR || _cheats.setup_prod.value) &&
796  (has_prod || is->IsRawIndustry()) &&
797  !_networking);
798 }
799 
801 {
803  enum Editability {
807  };
808 
810  enum InfoLine {
815  };
816 
823 
824 public:
826  {
827  this->flags |= WF_DISABLE_VP_SCROLL;
828  this->editbox_line = IL_NONE;
829  this->clicked_line = IL_NONE;
830  this->clicked_button = 0;
831  this->info_height = WD_FRAMERECT_TOP + 2 * FONT_HEIGHT_NORMAL + WD_FRAMERECT_BOTTOM + 1; // Info panel has at least two lines text.
832 
833  this->InitNested(window_number);
834  NWidgetViewport *nvp = this->GetWidget<NWidgetViewport>(WID_IV_VIEWPORT);
835  nvp->InitializeViewport(this, Industry::Get(window_number)->location.GetCenterTile(), ZOOM_LVL_INDUSTRY);
836 
837  this->InvalidateData();
838  }
839 
840  void OnPaint() override
841  {
842  this->DrawWidgets();
843 
844  if (this->IsShaded()) return; // Don't draw anything when the window is shaded.
845 
846  NWidgetBase *nwi = this->GetWidget<NWidgetBase>(WID_IV_INFO);
847  uint expected = this->DrawInfo(nwi->pos_x, nwi->pos_x + nwi->current_x - 1, nwi->pos_y) - nwi->pos_y;
848  if (expected > nwi->current_y - 1) {
849  this->info_height = expected + 1;
850  this->ReInit();
851  return;
852  }
853  }
854 
862  int DrawInfo(uint left, uint right, uint top)
863  {
865  const IndustrySpec *ind = GetIndustrySpec(i->type);
866  int y = top + WD_FRAMERECT_TOP;
867  bool first = true;
868  bool has_accept = false;
869 
870  if (i->prod_level == PRODLEVEL_CLOSURE) {
871  DrawString(left + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_RIGHT, y, STR_INDUSTRY_VIEW_INDUSTRY_ANNOUNCED_CLOSURE);
872  y += 2 * FONT_HEIGHT_NORMAL;
873  }
874 
875  CargoSuffix cargo_suffix[lengthof(i->accepts_cargo)];
876  GetAllCargoSuffixes(CARGOSUFFIX_IN, CST_VIEW, i, i->type, ind, i->accepts_cargo, cargo_suffix);
878 
879  uint left_side = left + WD_FRAMERECT_LEFT * 4; // Indent accepted cargoes.
880  for (byte j = 0; j < lengthof(i->accepts_cargo); j++) {
881  if (i->accepts_cargo[j] == CT_INVALID) continue;
882  has_accept = true;
883  if (first) {
884  DrawString(left + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_RIGHT, y, STR_INDUSTRY_VIEW_REQUIRES);
885  y += FONT_HEIGHT_NORMAL;
886  first = false;
887  }
889  SetDParam(1, i->accepts_cargo[j]);
891  SetDParamStr(3, "");
892  StringID str = STR_NULL;
893  switch (cargo_suffix[j].display) {
895  SetDParamStr(3, cargo_suffix[j].text);
896  FALLTHROUGH;
897  case CSD_CARGO_AMOUNT:
898  str = stockpiling ? STR_INDUSTRY_VIEW_ACCEPT_CARGO_AMOUNT : STR_INDUSTRY_VIEW_ACCEPT_CARGO;
899  break;
900 
901  case CSD_CARGO_TEXT:
902  SetDParamStr(3, cargo_suffix[j].text);
903  FALLTHROUGH;
904  case CSD_CARGO:
905  str = STR_INDUSTRY_VIEW_ACCEPT_CARGO;
906  break;
907 
908  default:
909  NOT_REACHED();
910  }
911  DrawString(left_side, right - WD_FRAMERECT_RIGHT, y, str);
912  y += FONT_HEIGHT_NORMAL;
913  }
914 
915  GetAllCargoSuffixes(CARGOSUFFIX_OUT, CST_VIEW, i, i->type, ind, i->produced_cargo, cargo_suffix);
916  first = true;
917  for (byte j = 0; j < lengthof(i->produced_cargo); j++) {
918  if (i->produced_cargo[j] == CT_INVALID) continue;
919  if (first) {
920  if (has_accept) y += WD_PAR_VSEP_WIDE;
921  DrawString(left + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_RIGHT, y, STR_INDUSTRY_VIEW_PRODUCTION_LAST_MONTH_TITLE);
922  y += FONT_HEIGHT_NORMAL;
923  if (this->editable == EA_RATE) this->production_offset_y = y;
924  first = false;
925  }
926 
927  SetDParam(0, i->produced_cargo[j]);
929  SetDParamStr(2, cargo_suffix[j].text);
931  uint x = left + WD_FRAMETEXT_LEFT + (this->editable == EA_RATE ? SETTING_BUTTON_WIDTH + 10 : 0);
932  DrawString(x, right - WD_FRAMERECT_RIGHT, y, STR_INDUSTRY_VIEW_TRANSPORTED);
933  /* Let's put out those buttons.. */
934  if (this->editable == EA_RATE) {
935  DrawArrowButtons(left + WD_FRAMETEXT_LEFT, y, COLOUR_YELLOW, (this->clicked_line == IL_RATE1 + j) ? this->clicked_button : 0,
936  i->production_rate[j] > 0, i->production_rate[j] < 255);
937  }
938  y += FONT_HEIGHT_NORMAL;
939  }
940 
941  /* Display production multiplier if editable */
942  if (this->editable == EA_MULTIPLIER) {
943  y += WD_PAR_VSEP_WIDE;
944  this->production_offset_y = y;
946  uint x = left + WD_FRAMETEXT_LEFT + SETTING_BUTTON_WIDTH + 10;
947  DrawString(x, right - WD_FRAMERECT_RIGHT, y, STR_INDUSTRY_VIEW_PRODUCTION_LEVEL);
948  DrawArrowButtons(left + WD_FRAMETEXT_LEFT, y, COLOUR_YELLOW, (this->clicked_line == IL_MULTIPLIER) ? this->clicked_button : 0,
950  y += FONT_HEIGHT_NORMAL;
951  }
952 
953  /* Get the extra message for the GUI */
955  uint16 callback_res = GetIndustryCallback(CBID_INDUSTRY_WINDOW_MORE_TEXT, 0, 0, i, i->type, i->location.tile);
956  if (callback_res != CALLBACK_FAILED && callback_res != 0x400) {
957  if (callback_res > 0x400) {
959  } else {
960  StringID message = GetGRFStringID(ind->grf_prop.grffile->grfid, 0xD000 + callback_res);
961  if (message != STR_NULL && message != STR_UNDEFINED) {
962  y += WD_PAR_VSEP_WIDE;
963 
965  /* Use all the available space left from where we stand up to the
966  * end of the window. We ALSO enlarge the window if needed, so we
967  * can 'go' wild with the bottom of the window. */
968  y = DrawStringMultiLine(left + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_RIGHT, y, UINT16_MAX, message, TC_BLACK);
970  }
971  }
972  }
973  }
974 
975  if (!i->text.empty()) {
976  SetDParamStr(0, i->text);
977  y += WD_PAR_VSEP_WIDE;
978  y = DrawStringMultiLine(left + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_RIGHT, y, UINT16_MAX, STR_JUST_RAW_STRING, TC_BLACK);
979  }
980 
981  return y + WD_FRAMERECT_BOTTOM;
982  }
983 
984  void SetStringParameters(int widget) const override
985  {
986  if (widget == WID_IV_CAPTION) SetDParam(0, this->window_number);
987  }
988 
989  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
990  {
991  if (widget == WID_IV_INFO) size->height = this->info_height;
992  }
993 
994  void OnClick(Point pt, int widget, int click_count) override
995  {
996  switch (widget) {
997  case WID_IV_INFO: {
999  InfoLine line = IL_NONE;
1000 
1001  switch (this->editable) {
1002  case EA_NONE: break;
1003 
1004  case EA_MULTIPLIER:
1005  if (IsInsideBS(pt.y, this->production_offset_y, FONT_HEIGHT_NORMAL)) line = IL_MULTIPLIER;
1006  break;
1007 
1008  case EA_RATE:
1009  if (pt.y >= this->production_offset_y) {
1010  int row = (pt.y - this->production_offset_y) / FONT_HEIGHT_NORMAL;
1011  for (uint j = 0; j < lengthof(i->produced_cargo); j++) {
1012  if (i->produced_cargo[j] == CT_INVALID) continue;
1013  row--;
1014  if (row < 0) {
1015  line = (InfoLine)(IL_RATE1 + j);
1016  break;
1017  }
1018  }
1019  }
1020  break;
1021  }
1022  if (line == IL_NONE) return;
1023 
1024  NWidgetBase *nwi = this->GetWidget<NWidgetBase>(widget);
1025  int left = nwi->pos_x + WD_FRAMETEXT_LEFT;
1026  int right = nwi->pos_x + nwi->current_x - 1 - WD_FRAMERECT_RIGHT;
1027  if (IsInsideMM(pt.x, left, left + SETTING_BUTTON_WIDTH)) {
1028  /* Clicked buttons, decrease or increase production */
1029  byte button = (pt.x < left + SETTING_BUTTON_WIDTH / 2) ? 1 : 2;
1030  switch (this->editable) {
1031  case EA_MULTIPLIER:
1032  if (button == 1) {
1033  if (i->prod_level <= PRODLEVEL_MINIMUM) return;
1034  i->prod_level = std::max<uint>(i->prod_level / 2, PRODLEVEL_MINIMUM);
1035  } else {
1036  if (i->prod_level >= PRODLEVEL_MAXIMUM) return;
1037  i->prod_level = std::min<uint>(i->prod_level * 2, PRODLEVEL_MAXIMUM);
1038  }
1039  break;
1040 
1041  case EA_RATE:
1042  if (button == 1) {
1043  if (i->production_rate[line - IL_RATE1] <= 0) return;
1044  i->production_rate[line - IL_RATE1] = std::max(i->production_rate[line - IL_RATE1] / 2, 0);
1045  } else {
1046  if (i->production_rate[line - IL_RATE1] >= 255) return;
1047  /* a zero production industry is unlikely to give anything but zero, so push it a little bit */
1048  int new_prod = i->production_rate[line - IL_RATE1] == 0 ? 1 : i->production_rate[line - IL_RATE1] * 2;
1049  i->production_rate[line - IL_RATE1] = std::min<uint>(new_prod, 255);
1050  }
1051  break;
1052 
1053  default: NOT_REACHED();
1054  }
1055 
1056  UpdateIndustryProduction(i);
1057  this->SetDirty();
1058  this->SetTimeout();
1059  this->clicked_line = line;
1060  this->clicked_button = button;
1061  } else if (IsInsideMM(pt.x, left + SETTING_BUTTON_WIDTH + 10, right)) {
1062  /* clicked the text */
1063  this->editbox_line = line;
1064  switch (this->editable) {
1065  case EA_MULTIPLIER:
1067  ShowQueryString(STR_JUST_INT, STR_CONFIG_GAME_PRODUCTION_LEVEL, 10, this, CS_ALPHANUMERAL, QSF_NONE);
1068  break;
1069 
1070  case EA_RATE:
1071  SetDParam(0, i->production_rate[line - IL_RATE1] * 8);
1072  ShowQueryString(STR_JUST_INT, STR_CONFIG_GAME_PRODUCTION, 10, this, CS_ALPHANUMERAL, QSF_NONE);
1073  break;
1074 
1075  default: NOT_REACHED();
1076  }
1077  }
1078  break;
1079  }
1080 
1081  case WID_IV_GOTO: {
1082  Industry *i = Industry::Get(this->window_number);
1083  if (_ctrl_pressed) {
1085  } else {
1087  }
1088  break;
1089  }
1090 
1091  case WID_IV_DISPLAY: {
1092  Industry *i = Industry::Get(this->window_number);
1094  break;
1095  }
1096  }
1097  }
1098 
1099  void OnTimeout() override
1100  {
1101  this->clicked_line = IL_NONE;
1102  this->clicked_button = 0;
1103  this->SetDirty();
1104  }
1105 
1106  void OnResize() override
1107  {
1108  if (this->viewport != nullptr) {
1109  NWidgetViewport *nvp = this->GetWidget<NWidgetViewport>(WID_IV_VIEWPORT);
1110  nvp->UpdateViewportCoordinates(this);
1111 
1112  ScrollWindowToTile(Industry::Get(this->window_number)->location.GetCenterTile(), this, true); // Re-center viewport.
1113  }
1114  }
1115 
1116  void OnQueryTextFinished(char *str) override
1117  {
1118  if (StrEmpty(str)) return;
1119 
1120  Industry *i = Industry::Get(this->window_number);
1121  uint value = atoi(str);
1122  switch (this->editbox_line) {
1123  case IL_NONE: NOT_REACHED();
1124 
1125  case IL_MULTIPLIER:
1127  break;
1128 
1129  default:
1130  i->production_rate[this->editbox_line - IL_RATE1] = ClampU(RoundDivSU(value, 8), 0, 255);
1131  break;
1132  }
1133  UpdateIndustryProduction(i);
1134  this->SetDirty();
1135  }
1136 
1142  void OnInvalidateData(int data = 0, bool gui_scope = true) override
1143  {
1144  if (!gui_scope) return;
1145  const Industry *i = Industry::Get(this->window_number);
1146  if (IsProductionAlterable(i)) {
1147  const IndustrySpec *ind = GetIndustrySpec(i->type);
1148  this->editable = ind->UsesOriginalEconomy() ? EA_MULTIPLIER : EA_RATE;
1149  } else {
1150  this->editable = EA_NONE;
1151  }
1152  }
1153 
1154  bool IsNewGRFInspectable() const override
1155  {
1156  return ::IsNewGRFInspectable(GSF_INDUSTRIES, this->window_number);
1157  }
1158 
1159  void ShowNewGRFInspectWindow() const override
1160  {
1161  ::ShowNewGRFInspectWindow(GSF_INDUSTRIES, this->window_number);
1162  }
1163 };
1164 
1165 static void UpdateIndustryProduction(Industry *i)
1166 {
1167  const IndustrySpec *indspec = GetIndustrySpec(i->type);
1169 
1170  for (byte j = 0; j < lengthof(i->produced_cargo); j++) {
1171  if (i->produced_cargo[j] != CT_INVALID) {
1172  i->last_month_production[j] = 8 * i->production_rate[j];
1173  }
1174  }
1175 }
1176 
1180  NWidget(WWT_CLOSEBOX, COLOUR_CREAM),
1181  NWidget(WWT_CAPTION, COLOUR_CREAM, WID_IV_CAPTION), SetDataTip(STR_INDUSTRY_VIEW_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1182  NWidget(WWT_PUSHIMGBTN, COLOUR_CREAM, WID_IV_GOTO), SetMinimalSize(12, 14), SetDataTip(SPR_GOTO_LOCATION, STR_INDUSTRY_VIEW_LOCATION_TOOLTIP),
1183  NWidget(WWT_DEBUGBOX, COLOUR_CREAM),
1184  NWidget(WWT_SHADEBOX, COLOUR_CREAM),
1185  NWidget(WWT_DEFSIZEBOX, COLOUR_CREAM),
1186  NWidget(WWT_STICKYBOX, COLOUR_CREAM),
1187  EndContainer(),
1188  NWidget(WWT_PANEL, COLOUR_CREAM),
1189  NWidget(WWT_INSET, COLOUR_CREAM), SetPadding(2, 2, 2, 2),
1190  NWidget(NWID_VIEWPORT, INVALID_COLOUR, WID_IV_VIEWPORT), SetMinimalSize(254, 86), SetFill(1, 0), SetResize(1, 1),
1191  EndContainer(),
1192  EndContainer(),
1193  NWidget(WWT_PANEL, COLOUR_CREAM, WID_IV_INFO), SetMinimalSize(260, 2), SetResize(1, 0),
1194  EndContainer(),
1196  NWidget(WWT_PUSHTXTBTN, COLOUR_CREAM, WID_IV_DISPLAY), SetFill(1, 0), SetResize(1, 0), SetDataTip(STR_INDUSTRY_DISPLAY_CHAIN, STR_INDUSTRY_DISPLAY_CHAIN_TOOLTIP),
1197  NWidget(WWT_RESIZEBOX, COLOUR_CREAM),
1198  EndContainer(),
1199 };
1200 
1203  WDP_AUTO, "view_industry", 260, 120,
1205  0,
1207 );
1208 
1209 void ShowIndustryViewWindow(int industry)
1210 {
1211  AllocateWindowDescFront<IndustryViewWindow>(&_industry_view_desc, industry);
1212 }
1213 
1217  NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
1218  NWidget(WWT_CAPTION, COLOUR_BROWN), SetDataTip(STR_INDUSTRY_DIRECTORY_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1219  NWidget(WWT_SHADEBOX, COLOUR_BROWN),
1220  NWidget(WWT_DEFSIZEBOX, COLOUR_BROWN),
1221  NWidget(WWT_STICKYBOX, COLOUR_BROWN),
1222  EndContainer(),
1226  NWidget(WWT_TEXTBTN, COLOUR_BROWN, WID_ID_DROPDOWN_ORDER), SetDataTip(STR_BUTTON_SORT_BY, STR_TOOLTIP_SORT_ORDER),
1227  NWidget(WWT_DROPDOWN, COLOUR_BROWN, WID_ID_DROPDOWN_CRITERIA), SetDataTip(STR_JUST_STRING, STR_TOOLTIP_SORT_CRITERIA),
1228  NWidget(WWT_DROPDOWN, COLOUR_BROWN, WID_ID_FILTER_BY_ACC_CARGO), SetMinimalSize(225, 12), SetFill(0, 1), SetDataTip(STR_INDUSTRY_DIRECTORY_ACCEPTED_CARGO_FILTER, STR_TOOLTIP_FILTER_CRITERIA),
1229  NWidget(WWT_DROPDOWN, COLOUR_BROWN, WID_ID_FILTER_BY_PROD_CARGO), SetMinimalSize(225, 12), SetFill(0, 1), SetDataTip(STR_INDUSTRY_DIRECTORY_PRODUCED_CARGO_FILTER, STR_TOOLTIP_FILTER_CRITERIA),
1230  NWidget(WWT_PANEL, COLOUR_BROWN), SetResize(1, 0), EndContainer(),
1231  EndContainer(),
1232  NWidget(WWT_PANEL, COLOUR_BROWN, WID_ID_INDUSTRY_LIST), SetDataTip(0x0, STR_INDUSTRY_DIRECTORY_LIST_CAPTION), SetResize(1, 1), SetScrollbar(WID_ID_SCROLLBAR), EndContainer(),
1233  EndContainer(),
1235  NWidget(NWID_VSCROLLBAR, COLOUR_BROWN, WID_ID_SCROLLBAR),
1236  NWidget(WWT_RESIZEBOX, COLOUR_BROWN),
1237  EndContainer(),
1238  EndContainer(),
1239 };
1240 
1242 
1247 };
1248 
1256 static bool CDECL CargoFilter(const Industry * const *industry, const std::pair<CargoID, CargoID> &cargoes)
1257 {
1258  auto accepted_cargo = cargoes.first;
1259  auto produced_cargo = cargoes.second;
1260 
1261  bool accepted_cargo_matches;
1262 
1263  switch (accepted_cargo) {
1264  case CF_ANY:
1265  accepted_cargo_matches = true;
1266  break;
1267 
1268  case CF_NONE:
1269  accepted_cargo_matches = std::all_of(std::begin((*industry)->accepts_cargo), std::end((*industry)->accepts_cargo), [](CargoID cargo) {
1270  return cargo == CT_INVALID;
1271  });
1272  break;
1273 
1274  default:
1275  const auto &ac = (*industry)->accepts_cargo;
1276  accepted_cargo_matches = std::find(std::begin(ac), std::end(ac), accepted_cargo) != std::end(ac);
1277  break;
1278  }
1279 
1280  bool produced_cargo_matches;
1281 
1282  switch (produced_cargo) {
1283  case CF_ANY:
1284  produced_cargo_matches = true;
1285  break;
1286 
1287  case CF_NONE:
1288  produced_cargo_matches = std::all_of(std::begin((*industry)->produced_cargo), std::end((*industry)->produced_cargo), [](CargoID cargo) {
1289  return cargo == CT_INVALID;
1290  });
1291  break;
1292 
1293  default:
1294  const auto &pc = (*industry)->produced_cargo;
1295  produced_cargo_matches = std::find(std::begin(pc), std::end(pc), produced_cargo) != std::end(pc);
1296  break;
1297  }
1298 
1299  return accepted_cargo_matches && produced_cargo_matches;
1300 }
1301 
1302 static GUIIndustryList::FilterFunction * const _filter_funcs[] = { &CargoFilter };
1303 
1304 
1309 protected:
1310  /* Runtime saved values */
1311  static Listing last_sorting;
1312 
1313  /* Constants for sorting industries */
1314  static const StringID sorter_names[];
1315  static GUIIndustryList::SortFunction * const sorter_funcs[];
1316 
1317  GUIIndustryList industries;
1318  Scrollbar *vscroll;
1319 
1324  static CargoID produced_cargo_filter;
1325 
1326  enum class SorterType : uint8 {
1331  };
1332 
1338  {
1339  if (this->produced_cargo_filter_criteria != index) {
1340  this->produced_cargo_filter_criteria = index;
1341  /* deactivate filter if criteria is 'Show All', activate it otherwise */
1342  bool is_filtering_necessary = this->cargo_filter[this->produced_cargo_filter_criteria] != CF_ANY || this->cargo_filter[this->accepted_cargo_filter_criteria] != CF_ANY;
1343 
1344  this->industries.SetFilterState(is_filtering_necessary);
1345  this->industries.SetFilterType(0);
1346  this->industries.ForceRebuild();
1347  }
1348  }
1349 
1355  {
1356  if (this->accepted_cargo_filter_criteria != index) {
1357  this->accepted_cargo_filter_criteria = index;
1358  /* deactivate filter if criteria is 'Show All', activate it otherwise */
1359  bool is_filtering_necessary = this->cargo_filter[this->produced_cargo_filter_criteria] != CF_ANY || this->cargo_filter[this->accepted_cargo_filter_criteria] != CF_ANY;
1360 
1361  this->industries.SetFilterState(is_filtering_necessary);
1362  this->industries.SetFilterType(0);
1363  this->industries.ForceRebuild();
1364  }
1365  }
1366 
1371  {
1372  byte filter_items = 0;
1373 
1374  /* Add item for disabling filtering. */
1375  this->cargo_filter[filter_items] = CF_ANY;
1376  this->cargo_filter_texts[filter_items] = STR_INDUSTRY_DIRECTORY_FILTER_ALL_TYPES;
1377  this->produced_cargo_filter_criteria = filter_items;
1378  this->accepted_cargo_filter_criteria = filter_items;
1379  filter_items++;
1380 
1381  /* Add item for industries not producing anything, e.g. power plants */
1382  this->cargo_filter[filter_items] = CF_NONE;
1383  this->cargo_filter_texts[filter_items] = STR_INDUSTRY_DIRECTORY_FILTER_NONE;
1384  filter_items++;
1385 
1386  /* Collect available cargo types for filtering. */
1387  for (const CargoSpec *cs : _sorted_standard_cargo_specs) {
1388  this->cargo_filter[filter_items] = cs->Index();
1389  this->cargo_filter_texts[filter_items] = cs->name;
1390  filter_items++;
1391  }
1392 
1393  /* Terminate the filter list. */
1394  this->cargo_filter_texts[filter_items] = INVALID_STRING_ID;
1395 
1396  this->industries.SetFilterFuncs(_filter_funcs);
1397 
1398  bool is_filtering_necessary = this->cargo_filter[this->produced_cargo_filter_criteria] != CF_ANY || this->cargo_filter[this->accepted_cargo_filter_criteria] != CF_ANY;
1399 
1400  this->industries.SetFilterState(is_filtering_necessary);
1401  }
1402 
1405  {
1406  if (this->industries.NeedRebuild()) {
1407  this->industries.clear();
1408 
1409  for (const Industry *i : Industry::Iterate()) {
1410  this->industries.push_back(i);
1411  }
1412 
1413  this->industries.shrink_to_fit();
1414  this->industries.RebuildDone();
1415  }
1416 
1417  auto filter = std::make_pair(this->cargo_filter[this->accepted_cargo_filter_criteria],
1418  this->cargo_filter[this->produced_cargo_filter_criteria]);
1419 
1420  this->industries.Filter(filter);
1421 
1422  IndustryDirectoryWindow::produced_cargo_filter = this->cargo_filter[this->produced_cargo_filter_criteria];
1423  this->industries.Sort();
1424 
1425  this->vscroll->SetCount((uint)this->industries.size()); // Update scrollbar as well.
1426 
1427  this->SetDirty();
1428  }
1429 
1437  static inline int GetCargoTransportedPercentsIfValid(const Industry *i, uint id)
1438  {
1439  assert(id < lengthof(i->produced_cargo));
1440 
1441  if (i->produced_cargo[id] == CT_INVALID) return -1;
1442  return ToPercent8(i->last_month_pct_transported[id]);
1443  }
1444 
1453  {
1454  CargoID filter = IndustryDirectoryWindow::produced_cargo_filter;
1455  if (filter == CF_NONE) return 0;
1456 
1457  int percentage = 0, produced_cargo_count = 0;
1458  for (uint id = 0; id < lengthof(i->produced_cargo); id++) {
1459  if (filter == CF_ANY) {
1460  int transported = GetCargoTransportedPercentsIfValid(i, id);
1461  if (transported != -1) {
1462  produced_cargo_count++;
1463  percentage += transported;
1464  }
1465  if (produced_cargo_count == 0 && id == lengthof(i->produced_cargo) - 1 && percentage == 0) {
1466  return transported;
1467  }
1468  } else if (filter == i->produced_cargo[id]) {
1469  return GetCargoTransportedPercentsIfValid(i, id);
1470  }
1471  }
1472 
1473  if (produced_cargo_count == 0) return percentage;
1474  return percentage / produced_cargo_count;
1475  }
1476 
1478  static bool IndustryNameSorter(const Industry * const &a, const Industry * const &b)
1479  {
1480  int r = strnatcmp(a->GetCachedName(), b->GetCachedName()); // Sort by name (natural sorting).
1481  if (r == 0) return a->index < b->index;
1482  return r < 0;
1483  }
1484 
1486  static bool IndustryTypeSorter(const Industry * const &a, const Industry * const &b)
1487  {
1488  int it_a = 0;
1489  while (it_a != NUM_INDUSTRYTYPES && a->type != _sorted_industry_types[it_a]) it_a++;
1490  int it_b = 0;
1491  while (it_b != NUM_INDUSTRYTYPES && b->type != _sorted_industry_types[it_b]) it_b++;
1492  int r = it_a - it_b;
1493  return (r == 0) ? IndustryNameSorter(a, b) : r < 0;
1494  }
1495 
1497  static bool IndustryProductionSorter(const Industry * const &a, const Industry * const &b)
1498  {
1499  CargoID filter = IndustryDirectoryWindow::produced_cargo_filter;
1500  if (filter == CF_NONE) return IndustryTypeSorter(a, b);
1501 
1502  uint prod_a = 0, prod_b = 0;
1503  for (uint i = 0; i < lengthof(a->produced_cargo); i++) {
1504  if (filter == CF_ANY) {
1505  if (a->produced_cargo[i] != CT_INVALID) prod_a += a->last_month_production[i];
1506  if (b->produced_cargo[i] != CT_INVALID) prod_b += b->last_month_production[i];
1507  } else {
1508  if (a->produced_cargo[i] == filter) prod_a += a->last_month_production[i];
1509  if (b->produced_cargo[i] == filter) prod_b += b->last_month_production[i];
1510  }
1511  }
1512  int r = prod_a - prod_b;
1513 
1514  return (r == 0) ? IndustryTypeSorter(a, b) : r < 0;
1515  }
1516 
1518  static bool IndustryTransportedCargoSorter(const Industry * const &a, const Industry * const &b)
1519  {
1521  return (r == 0) ? IndustryNameSorter(a, b) : r < 0;
1522  }
1523 
1530  {
1531  const IndustrySpec *indsp = GetIndustrySpec(i->type);
1532  byte p = 0;
1533 
1534  /* Industry name */
1535  SetDParam(p++, i->index);
1536 
1537  static CargoSuffix cargo_suffix[lengthof(i->produced_cargo)];
1538  GetAllCargoSuffixes(CARGOSUFFIX_OUT, CST_DIR, i, i->type, indsp, i->produced_cargo, cargo_suffix);
1539 
1540  /* Get industry productions (CargoID, production, suffix, transported) */
1541  struct CargoInfo {
1542  CargoID cargo_id;
1543  uint16 production;
1544  const char *suffix;
1545  uint transported;
1546  };
1547  std::vector<CargoInfo> cargos;
1548 
1549  for (byte j = 0; j < lengthof(i->produced_cargo); j++) {
1550  if (i->produced_cargo[j] == CT_INVALID) continue;
1551  cargos.push_back({ i->produced_cargo[j], i->last_month_production[j], cargo_suffix[j].text, ToPercent8(i->last_month_pct_transported[j]) });
1552  }
1553 
1554  switch (static_cast<IndustryDirectoryWindow::SorterType>(this->industries.SortType())) {
1558  /* Sort by descending production, then descending transported */
1559  std::sort(cargos.begin(), cargos.end(), [](const CargoInfo &a, const CargoInfo &b) {
1560  if (a.production != b.production) return a.production > b.production;
1561  return a.transported > b.transported;
1562  });
1563  break;
1564 
1566  /* Sort by descending transported, then descending production */
1567  std::sort(cargos.begin(), cargos.end(), [](const CargoInfo &a, const CargoInfo &b) {
1568  if (a.transported != b.transported) return a.transported > b.transported;
1569  return a.production > b.production;
1570  });
1571  break;
1572  }
1573 
1574  /* If the produced cargo filter is active then move the filtered cargo to the beginning of the list,
1575  * because this is the one the player interested in, and that way it is not hidden in the 'n' more cargos */
1576  const CargoID cid = this->cargo_filter[this->produced_cargo_filter_criteria];
1577  if (cid != CF_ANY && cid != CF_NONE) {
1578  auto filtered_ci = std::find_if(cargos.begin(), cargos.end(), [cid](const CargoInfo &ci) -> bool {
1579  return ci.cargo_id == cid;
1580  });
1581  if (filtered_ci != cargos.end()) {
1582  std::rotate(cargos.begin(), filtered_ci, filtered_ci + 1);
1583  }
1584  }
1585 
1586  /* Display first 3 cargos */
1587  for (size_t j = 0; j < std::min<size_t>(3, cargos.size()); j++) {
1588  CargoInfo ci = cargos[j];
1589  SetDParam(p++, STR_INDUSTRY_DIRECTORY_ITEM_INFO);
1590  SetDParam(p++, ci.cargo_id);
1591  SetDParam(p++, ci.production);
1592  SetDParamStr(p++, ci.suffix);
1593  SetDParam(p++, ci.transported);
1594  }
1595 
1596  /* Undisplayed cargos if any */
1597  SetDParam(p++, cargos.size() - 3);
1598 
1599  /* Drawing the right string */
1600  switch (cargos.size()) {
1601  case 0: return STR_INDUSTRY_DIRECTORY_ITEM_NOPROD;
1602  case 1: return STR_INDUSTRY_DIRECTORY_ITEM_PROD1;
1603  case 2: return STR_INDUSTRY_DIRECTORY_ITEM_PROD2;
1604  case 3: return STR_INDUSTRY_DIRECTORY_ITEM_PROD3;
1605  default: return STR_INDUSTRY_DIRECTORY_ITEM_PRODMORE;
1606  }
1607  }
1608 
1609 public:
1610  IndustryDirectoryWindow(WindowDesc *desc, WindowNumber number) : Window(desc)
1611  {
1612  this->CreateNestedTree();
1613  this->vscroll = this->GetScrollbar(WID_ID_SCROLLBAR);
1614 
1615  this->industries.SetListing(this->last_sorting);
1616  this->industries.SetSortFuncs(IndustryDirectoryWindow::sorter_funcs);
1617  this->industries.ForceRebuild();
1618  this->BuildSortIndustriesList();
1619 
1620  this->FinishInitNested(0);
1621  }
1622 
1624  {
1625  this->last_sorting = this->industries.GetListing();
1626  }
1627 
1628  void OnInit() override
1629  {
1630  this->SetCargoFilterArray();
1631  }
1632 
1633  void SetStringParameters(int widget) const override
1634  {
1635  switch (widget) {
1637  SetDParam(0, IndustryDirectoryWindow::sorter_names[this->industries.SortType()]);
1638  break;
1639 
1641  SetDParam(0, this->cargo_filter_texts[this->accepted_cargo_filter_criteria]);
1642  break;
1643 
1645  SetDParam(0, this->cargo_filter_texts[this->produced_cargo_filter_criteria]);
1646  break;
1647  }
1648  }
1649 
1650  void DrawWidget(const Rect &r, int widget) const override
1651  {
1652  switch (widget) {
1653  case WID_ID_DROPDOWN_ORDER:
1654  this->DrawSortButtonState(widget, this->industries.IsDescSortOrder() ? SBS_DOWN : SBS_UP);
1655  break;
1656 
1657  case WID_ID_INDUSTRY_LIST: {
1658  int n = 0;
1659  int y = r.top + WD_FRAMERECT_TOP;
1660  if (this->industries.size() == 0) {
1661  DrawString(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, y, STR_INDUSTRY_DIRECTORY_NONE);
1662  break;
1663  }
1664  TextColour tc;
1665  const CargoID acf_cid = this->cargo_filter[this->accepted_cargo_filter_criteria];
1666  for (uint i = this->vscroll->GetPosition(); i < this->industries.size(); i++) {
1667  tc = TC_FROMSTRING;
1668  if (acf_cid != CF_ANY && acf_cid != CF_NONE) {
1669  Industry *ind = const_cast<Industry *>(this->industries[i]);
1670  if (IndustryTemporarilyRefusesCargo(ind, acf_cid)) {
1671  tc = TC_GREY | TC_FORCED;
1672  }
1673  }
1674  DrawString(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, y, this->GetIndustryString(this->industries[i]), tc);
1675 
1676  y += this->resize.step_height;
1677  if (++n == this->vscroll->GetCapacity()) break; // max number of industries in 1 window
1678  }
1679  break;
1680  }
1681  }
1682  }
1683 
1684  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
1685  {
1686  switch (widget) {
1687  case WID_ID_DROPDOWN_ORDER: {
1688  Dimension d = GetStringBoundingBox(this->GetWidget<NWidgetCore>(widget)->widget_data);
1689  d.width += padding.width + Window::SortButtonWidth() * 2; // Doubled since the string is centred and it also looks better.
1690  d.height += padding.height;
1691  *size = maxdim(*size, d);
1692  break;
1693  }
1694 
1695  case WID_ID_DROPDOWN_CRITERIA: {
1696  Dimension d = {0, 0};
1697  for (uint i = 0; IndustryDirectoryWindow::sorter_names[i] != INVALID_STRING_ID; i++) {
1698  d = maxdim(d, GetStringBoundingBox(IndustryDirectoryWindow::sorter_names[i]));
1699  }
1700  d.width += padding.width;
1701  d.height += padding.height;
1702  *size = maxdim(*size, d);
1703  break;
1704  }
1705 
1706  case WID_ID_INDUSTRY_LIST: {
1707  Dimension d = GetStringBoundingBox(STR_INDUSTRY_DIRECTORY_NONE);
1708  for (uint i = 0; i < this->industries.size(); i++) {
1709  d = maxdim(d, GetStringBoundingBox(this->GetIndustryString(this->industries[i])));
1710  }
1711  resize->height = d.height;
1712  d.height *= 5;
1713  d.width += padding.width + WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT;
1714  d.height += padding.height + WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM;
1715  *size = maxdim(*size, d);
1716  break;
1717  }
1718  }
1719  }
1720 
1721 
1722  void OnClick(Point pt, int widget, int click_count) override
1723  {
1724  switch (widget) {
1725  case WID_ID_DROPDOWN_ORDER:
1726  this->industries.ToggleSortOrder();
1727  this->SetDirty();
1728  break;
1729 
1731  ShowDropDownMenu(this, IndustryDirectoryWindow::sorter_names, this->industries.SortType(), WID_ID_DROPDOWN_CRITERIA, 0, 0);
1732  break;
1733 
1734  case WID_ID_FILTER_BY_ACC_CARGO: // Cargo filter dropdown
1735  ShowDropDownMenu(this, this->cargo_filter_texts, this->accepted_cargo_filter_criteria, WID_ID_FILTER_BY_ACC_CARGO, 0, 0);
1736  break;
1737 
1738  case WID_ID_FILTER_BY_PROD_CARGO: // Cargo filter dropdown
1739  ShowDropDownMenu(this, this->cargo_filter_texts, this->produced_cargo_filter_criteria, WID_ID_FILTER_BY_PROD_CARGO, 0, 0);
1740  break;
1741 
1742  case WID_ID_INDUSTRY_LIST: {
1743  uint p = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_ID_INDUSTRY_LIST, WD_FRAMERECT_TOP);
1744  if (p < this->industries.size()) {
1745  if (_ctrl_pressed) {
1746  ShowExtraViewportWindow(this->industries[p]->location.tile);
1747  } else {
1748  ScrollMainWindowToTile(this->industries[p]->location.tile);
1749  }
1750  }
1751  break;
1752  }
1753  }
1754  }
1755 
1756  void OnDropdownSelect(int widget, int index) override
1757  {
1758  switch (widget) {
1759  case WID_ID_DROPDOWN_CRITERIA: {
1760  if (this->industries.SortType() != index) {
1761  this->industries.SetSortType(index);
1762  this->BuildSortIndustriesList();
1763  }
1764  break;
1765  }
1766 
1768  this->SetAcceptedCargoFilterIndex(index);
1769  this->BuildSortIndustriesList();
1770  break;
1771  }
1772 
1774  this->SetProducedCargoFilterIndex(index);
1775  this->BuildSortIndustriesList();
1776  break;
1777  }
1778  }
1779  }
1780 
1781  void OnResize() override
1782  {
1783  this->vscroll->SetCapacityFromWidget(this, WID_ID_INDUSTRY_LIST);
1784  }
1785 
1786  void OnPaint() override
1787  {
1788  if (this->industries.NeedRebuild()) this->BuildSortIndustriesList();
1789  this->DrawWidgets();
1790  }
1791 
1792  void OnHundredthTick() override
1793  {
1794  this->industries.ForceResort();
1795  this->BuildSortIndustriesList();
1796  }
1797 
1803  void OnInvalidateData(int data = 0, bool gui_scope = true) override
1804  {
1805  switch (data) {
1806  case IDIWD_FORCE_REBUILD:
1807  /* This needs to be done in command-scope to enforce rebuilding before resorting invalid data */
1808  this->industries.ForceRebuild();
1809  break;
1810 
1811  case IDIWD_PRODUCTION_CHANGE:
1812  if (this->industries.SortType() == 2) this->industries.ForceResort();
1813  break;
1814 
1815  default:
1816  this->industries.ForceResort();
1817  break;
1818  }
1819  }
1820 };
1821 
1822 Listing IndustryDirectoryWindow::last_sorting = {false, 0};
1823 
1824 /* Available station sorting functions. */
1825 GUIIndustryList::SortFunction * const IndustryDirectoryWindow::sorter_funcs[] = {
1826  &IndustryNameSorter,
1827  &IndustryTypeSorter,
1828  &IndustryProductionSorter,
1829  &IndustryTransportedCargoSorter
1830 };
1831 
1832 /* Names of the sorting functions */
1833 const StringID IndustryDirectoryWindow::sorter_names[] = {
1834  STR_SORT_BY_NAME,
1835  STR_SORT_BY_TYPE,
1836  STR_SORT_BY_PRODUCTION,
1837  STR_SORT_BY_TRANSPORTED,
1839 };
1840 
1841 CargoID IndustryDirectoryWindow::produced_cargo_filter = CF_ANY;
1842 
1843 
1846  WDP_AUTO, "list_industries", 428, 190,
1848  0,
1850 );
1851 
1852 void ShowIndustryDirectory()
1853 {
1854  AllocateWindowDescFront<IndustryDirectoryWindow>(&_industry_directory_desc, 0);
1855 }
1856 
1860  NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
1861  NWidget(WWT_CAPTION, COLOUR_BROWN, WID_IC_CAPTION), SetDataTip(STR_INDUSTRY_CARGOES_INDUSTRY_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1862  NWidget(WWT_SHADEBOX, COLOUR_BROWN),
1863  NWidget(WWT_DEFSIZEBOX, COLOUR_BROWN),
1864  NWidget(WWT_STICKYBOX, COLOUR_BROWN),
1865  EndContainer(),
1870  NWidget(WWT_TEXTBTN, COLOUR_BROWN, WID_IC_NOTIFY),
1871  SetDataTip(STR_INDUSTRY_CARGOES_NOTIFY_SMALLMAP, STR_INDUSTRY_CARGOES_NOTIFY_SMALLMAP_TOOLTIP),
1872  NWidget(WWT_PANEL, COLOUR_BROWN), SetFill(1, 0), SetResize(0, 0), EndContainer(),
1873  NWidget(WWT_DROPDOWN, COLOUR_BROWN, WID_IC_IND_DROPDOWN), SetFill(0, 0), SetResize(0, 0),
1874  SetDataTip(STR_INDUSTRY_CARGOES_SELECT_INDUSTRY, STR_INDUSTRY_CARGOES_SELECT_INDUSTRY_TOOLTIP),
1875  NWidget(WWT_DROPDOWN, COLOUR_BROWN, WID_IC_CARGO_DROPDOWN), SetFill(0, 0), SetResize(0, 0),
1876  SetDataTip(STR_INDUSTRY_CARGOES_SELECT_CARGO, STR_INDUSTRY_CARGOES_SELECT_CARGO_TOOLTIP),
1877  EndContainer(),
1878  EndContainer(),
1880  NWidget(NWID_VSCROLLBAR, COLOUR_BROWN, WID_IC_SCROLLBAR),
1881  NWidget(WWT_RESIZEBOX, COLOUR_BROWN),
1882  EndContainer(),
1883  EndContainer(),
1884 };
1885 
1888  WDP_AUTO, "industry_cargoes", 300, 210,
1890  0,
1892 );
1893 
1902 };
1903 
1904 static const uint MAX_CARGOES = 16;
1905 
1908  static const int VERT_INTER_INDUSTRY_SPACE;
1909  static const int BLOB_DISTANCE;
1910 
1916 
1917  static const int INDUSTRY_LINE_COLOUR;
1918  static const int CARGO_LINE_COLOUR;
1919 
1921  static int cargo_field_width;
1922  static int industry_width;
1923  static uint max_cargoes;
1924 
1926  union {
1927  struct {
1928  IndustryType ind_type;
1931  } industry;
1932  struct {
1936  byte top_end;
1938  byte bottom_end;
1939  } cargo;
1940  struct {
1942  bool left_align;
1943  } cargo_label;
1945  } u; // Data for each type.
1946 
1952  {
1953  this->type = type;
1954  }
1955 
1961  void MakeIndustry(IndustryType ind_type)
1962  {
1963  this->type = CFT_INDUSTRY;
1964  this->u.industry.ind_type = ind_type;
1965  MemSetT(this->u.industry.other_accepted, INVALID_CARGO, MAX_CARGOES);
1966  MemSetT(this->u.industry.other_produced, INVALID_CARGO, MAX_CARGOES);
1967  }
1968 
1975  int ConnectCargo(CargoID cargo, bool producer)
1976  {
1977  assert(this->type == CFT_CARGO);
1978  if (cargo == INVALID_CARGO) return -1;
1979 
1980  /* Find the vertical cargo column carrying the cargo. */
1981  int column = -1;
1982  for (int i = 0; i < this->u.cargo.num_cargoes; i++) {
1983  if (cargo == this->u.cargo.vertical_cargoes[i]) {
1984  column = i;
1985  break;
1986  }
1987  }
1988  if (column < 0) return -1;
1989 
1990  if (producer) {
1991  assert(this->u.cargo.supp_cargoes[column] == INVALID_CARGO);
1992  this->u.cargo.supp_cargoes[column] = column;
1993  } else {
1994  assert(this->u.cargo.cust_cargoes[column] == INVALID_CARGO);
1995  this->u.cargo.cust_cargoes[column] = column;
1996  }
1997  return column;
1998  }
1999 
2005  {
2006  assert(this->type == CFT_CARGO);
2007 
2008  for (uint i = 0; i < MAX_CARGOES; i++) {
2009  if (this->u.cargo.supp_cargoes[i] != INVALID_CARGO) return true;
2010  if (this->u.cargo.cust_cargoes[i] != INVALID_CARGO) return true;
2011  }
2012  return false;
2013  }
2014 
2024  void MakeCargo(const CargoID *cargoes, uint length, int count = -1, bool top_end = false, bool bottom_end = false)
2025  {
2026  this->type = CFT_CARGO;
2027  uint i;
2028  uint num = 0;
2029  for (i = 0; i < MAX_CARGOES && i < length; i++) {
2030  if (cargoes[i] != INVALID_CARGO) {
2031  this->u.cargo.vertical_cargoes[num] = cargoes[i];
2032  num++;
2033  }
2034  }
2035  this->u.cargo.num_cargoes = (count < 0) ? num : count;
2036  for (; num < MAX_CARGOES; num++) this->u.cargo.vertical_cargoes[num] = INVALID_CARGO;
2037  this->u.cargo.top_end = top_end;
2038  this->u.cargo.bottom_end = bottom_end;
2039  MemSetT(this->u.cargo.supp_cargoes, INVALID_CARGO, MAX_CARGOES);
2040  MemSetT(this->u.cargo.cust_cargoes, INVALID_CARGO, MAX_CARGOES);
2041  }
2042 
2049  void MakeCargoLabel(const CargoID *cargoes, uint length, bool left_align)
2050  {
2051  this->type = CFT_CARGO_LABEL;
2052  uint i;
2053  for (i = 0; i < MAX_CARGOES && i < length; i++) this->u.cargo_label.cargoes[i] = cargoes[i];
2054  for (; i < MAX_CARGOES; i++) this->u.cargo_label.cargoes[i] = INVALID_CARGO;
2055  this->u.cargo_label.left_align = left_align;
2056  }
2057 
2062  void MakeHeader(StringID textid)
2063  {
2064  this->type = CFT_HEADER;
2065  this->u.header = textid;
2066  }
2067 
2073  int GetCargoBase(int xpos) const
2074  {
2075  assert(this->type == CFT_CARGO);
2076  int n = this->u.cargo.num_cargoes;
2077 
2078  return xpos + cargo_field_width / 2 - (CargoesField::cargo_line.width * n + CargoesField::cargo_space.width * (n - 1)) / 2;
2079  }
2080 
2086  void Draw(int xpos, int ypos) const
2087  {
2088  switch (this->type) {
2089  case CFT_EMPTY:
2090  case CFT_SMALL_EMPTY:
2091  break;
2092 
2093  case CFT_HEADER:
2094  ypos += (small_height - FONT_HEIGHT_NORMAL) / 2;
2095  DrawString(xpos, xpos + industry_width, ypos, this->u.header, TC_WHITE, SA_HOR_CENTER);
2096  break;
2097 
2098  case CFT_INDUSTRY: {
2099  int ypos1 = ypos + VERT_INTER_INDUSTRY_SPACE / 2;
2100  int ypos2 = ypos + normal_height - 1 - VERT_INTER_INDUSTRY_SPACE / 2;
2101  int xpos2 = xpos + industry_width - 1;
2102  GfxDrawLine(xpos, ypos1, xpos2, ypos1, INDUSTRY_LINE_COLOUR);
2103  GfxDrawLine(xpos, ypos1, xpos, ypos2, INDUSTRY_LINE_COLOUR);
2104  GfxDrawLine(xpos, ypos2, xpos2, ypos2, INDUSTRY_LINE_COLOUR);
2105  GfxDrawLine(xpos2, ypos1, xpos2, ypos2, INDUSTRY_LINE_COLOUR);
2106  ypos += (normal_height - FONT_HEIGHT_NORMAL) / 2;
2107  if (this->u.industry.ind_type < NUM_INDUSTRYTYPES) {
2108  const IndustrySpec *indsp = GetIndustrySpec(this->u.industry.ind_type);
2109  DrawString(xpos, xpos2, ypos, indsp->name, TC_WHITE, SA_HOR_CENTER);
2110 
2111  /* Draw the industry legend. */
2112  int blob_left, blob_right;
2113  if (_current_text_dir == TD_RTL) {
2114  blob_right = xpos2 - BLOB_DISTANCE;
2115  blob_left = blob_right - CargoesField::legend.width;
2116  } else {
2117  blob_left = xpos + BLOB_DISTANCE;
2118  blob_right = blob_left + CargoesField::legend.width;
2119  }
2120  GfxFillRect(blob_left, ypos2 - BLOB_DISTANCE - CargoesField::legend.height, blob_right, ypos2 - BLOB_DISTANCE, PC_BLACK); // Border
2121  GfxFillRect(blob_left + 1, ypos2 - BLOB_DISTANCE - CargoesField::legend.height + 1, blob_right - 1, ypos2 - BLOB_DISTANCE - 1, indsp->map_colour);
2122  } else {
2123  DrawString(xpos, xpos2, ypos, STR_INDUSTRY_CARGOES_HOUSES, TC_FROMSTRING, SA_HOR_CENTER);
2124  }
2125 
2126  /* Draw the other_produced/other_accepted cargoes. */
2127  const CargoID *other_right, *other_left;
2128  if (_current_text_dir == TD_RTL) {
2129  other_right = this->u.industry.other_accepted;
2130  other_left = this->u.industry.other_produced;
2131  } else {
2132  other_right = this->u.industry.other_produced;
2133  other_left = this->u.industry.other_accepted;
2134  }
2136  for (uint i = 0; i < CargoesField::max_cargoes; i++) {
2137  if (other_right[i] != INVALID_CARGO) {
2138  const CargoSpec *csp = CargoSpec::Get(other_right[i]);
2139  int xp = xpos + industry_width + CargoesField::cargo_stub.width;
2140  DrawHorConnection(xpos + industry_width, xp - 1, ypos1, csp);
2141  GfxDrawLine(xp, ypos1, xp, ypos1 + CargoesField::cargo_line.height - 1, CARGO_LINE_COLOUR);
2142  }
2143  if (other_left[i] != INVALID_CARGO) {
2144  const CargoSpec *csp = CargoSpec::Get(other_left[i]);
2145  int xp = xpos - CargoesField::cargo_stub.width;
2146  DrawHorConnection(xp + 1, xpos - 1, ypos1, csp);
2147  GfxDrawLine(xp, ypos1, xp, ypos1 + CargoesField::cargo_line.height - 1, CARGO_LINE_COLOUR);
2148  }
2150  }
2151  break;
2152  }
2153 
2154  case CFT_CARGO: {
2155  int cargo_base = this->GetCargoBase(xpos);
2156  int top = ypos + (this->u.cargo.top_end ? VERT_INTER_INDUSTRY_SPACE / 2 + 1 : 0);
2157  int bot = ypos - (this->u.cargo.bottom_end ? VERT_INTER_INDUSTRY_SPACE / 2 + 1 : 0) + normal_height - 1;
2158  int colpos = cargo_base;
2159  for (int i = 0; i < this->u.cargo.num_cargoes; i++) {
2160  if (this->u.cargo.top_end) GfxDrawLine(colpos, top - 1, colpos + CargoesField::cargo_line.width - 1, top - 1, CARGO_LINE_COLOUR);
2161  if (this->u.cargo.bottom_end) GfxDrawLine(colpos, bot + 1, colpos + CargoesField::cargo_line.width - 1, bot + 1, CARGO_LINE_COLOUR);
2162  GfxDrawLine(colpos, top, colpos, bot, CARGO_LINE_COLOUR);
2163  colpos++;
2164  const CargoSpec *csp = CargoSpec::Get(this->u.cargo.vertical_cargoes[i]);
2165  GfxFillRect(colpos, top, colpos + CargoesField::cargo_line.width - 2, bot, csp->legend_colour, FILLRECT_OPAQUE);
2166  colpos += CargoesField::cargo_line.width - 2;
2167  GfxDrawLine(colpos, top, colpos, bot, CARGO_LINE_COLOUR);
2168  colpos += 1 + CargoesField::cargo_space.width;
2169  }
2170 
2171  const CargoID *hor_left, *hor_right;
2172  if (_current_text_dir == TD_RTL) {
2173  hor_left = this->u.cargo.cust_cargoes;
2174  hor_right = this->u.cargo.supp_cargoes;
2175  } else {
2176  hor_left = this->u.cargo.supp_cargoes;
2177  hor_right = this->u.cargo.cust_cargoes;
2178  }
2180  for (uint i = 0; i < MAX_CARGOES; i++) {
2181  if (hor_left[i] != INVALID_CARGO) {
2182  int col = hor_left[i];
2183  int dx = 0;
2184  const CargoSpec *csp = CargoSpec::Get(this->u.cargo.vertical_cargoes[col]);
2185  for (; col > 0; col--) {
2186  int lf = cargo_base + col * CargoesField::cargo_line.width + (col - 1) * CargoesField::cargo_space.width;
2187  DrawHorConnection(lf, lf + CargoesField::cargo_space.width - dx, ypos, csp);
2188  dx = 1;
2189  }
2190  DrawHorConnection(xpos, cargo_base - dx, ypos, csp);
2191  }
2192  if (hor_right[i] != INVALID_CARGO) {
2193  int col = hor_right[i];
2194  int dx = 0;
2195  const CargoSpec *csp = CargoSpec::Get(this->u.cargo.vertical_cargoes[col]);
2196  for (; col < this->u.cargo.num_cargoes - 1; col++) {
2197  int lf = cargo_base + (col + 1) * CargoesField::cargo_line.width + col * CargoesField::cargo_space.width;
2198  DrawHorConnection(lf + dx - 1, lf + CargoesField::cargo_space.width - 1, ypos, csp);
2199  dx = 1;
2200  }
2201  DrawHorConnection(cargo_base + col * CargoesField::cargo_space.width + (col + 1) * CargoesField::cargo_line.width - 1 + dx, xpos + CargoesField::cargo_field_width - 1, ypos, csp);
2202  }
2204  }
2205  break;
2206  }
2207 
2208  case CFT_CARGO_LABEL:
2210  for (uint i = 0; i < MAX_CARGOES; i++) {
2211  if (this->u.cargo_label.cargoes[i] != INVALID_CARGO) {
2212  const CargoSpec *csp = CargoSpec::Get(this->u.cargo_label.cargoes[i]);
2213  DrawString(xpos + WD_FRAMERECT_LEFT, xpos + industry_width - 1 - WD_FRAMERECT_RIGHT, ypos, csp->name, TC_WHITE,
2214  (this->u.cargo_label.left_align) ? SA_LEFT : SA_RIGHT);
2215  }
2217  }
2218  break;
2219 
2220  default:
2221  NOT_REACHED();
2222  }
2223  }
2224 
2232  CargoID CargoClickedAt(const CargoesField *left, const CargoesField *right, Point pt) const
2233  {
2234  assert(this->type == CFT_CARGO);
2235 
2236  /* Vertical matching. */
2237  int cpos = this->GetCargoBase(0);
2238  uint col;
2239  for (col = 0; col < this->u.cargo.num_cargoes; col++) {
2240  if (pt.x < cpos) break;
2241  if (pt.x < cpos + (int)CargoesField::cargo_line.width) return this->u.cargo.vertical_cargoes[col];
2243  }
2244  /* col = 0 -> left of first col, 1 -> left of 2nd col, ... this->u.cargo.num_cargoes right of last-col. */
2245 
2247  uint row;
2248  for (row = 0; row < MAX_CARGOES; row++) {
2249  if (pt.y < vpos) return INVALID_CARGO;
2250  if (pt.y < vpos + FONT_HEIGHT_NORMAL) break;
2252  }
2253  if (row == MAX_CARGOES) return INVALID_CARGO;
2254 
2255  /* row = 0 -> at first horizontal row, row = 1 -> second horizontal row, 2 = 3rd horizontal row. */
2256  if (col == 0) {
2257  if (this->u.cargo.supp_cargoes[row] != INVALID_CARGO) return this->u.cargo.vertical_cargoes[this->u.cargo.supp_cargoes[row]];
2258  if (left != nullptr) {
2259  if (left->type == CFT_INDUSTRY) return left->u.industry.other_produced[row];
2260  if (left->type == CFT_CARGO_LABEL && !left->u.cargo_label.left_align) return left->u.cargo_label.cargoes[row];
2261  }
2262  return INVALID_CARGO;
2263  }
2264  if (col == this->u.cargo.num_cargoes) {
2265  if (this->u.cargo.cust_cargoes[row] != INVALID_CARGO) return this->u.cargo.vertical_cargoes[this->u.cargo.cust_cargoes[row]];
2266  if (right != nullptr) {
2267  if (right->type == CFT_INDUSTRY) return right->u.industry.other_accepted[row];
2268  if (right->type == CFT_CARGO_LABEL && right->u.cargo_label.left_align) return right->u.cargo_label.cargoes[row];
2269  }
2270  return INVALID_CARGO;
2271  }
2272  if (row >= col) {
2273  /* Clicked somewhere in-between vertical cargo connection.
2274  * Since the horizontal connection is made in the same order as the vertical list, the above condition
2275  * ensures we are left-below the main diagonal, thus at the supplying side.
2276  */
2277  return (this->u.cargo.supp_cargoes[row] != INVALID_CARGO) ? this->u.cargo.vertical_cargoes[this->u.cargo.supp_cargoes[row]] : INVALID_CARGO;
2278  } else {
2279  /* Clicked at a customer connection. */
2280  return (this->u.cargo.cust_cargoes[row] != INVALID_CARGO) ? this->u.cargo.vertical_cargoes[this->u.cargo.cust_cargoes[row]] : INVALID_CARGO;
2281  }
2282  }
2283 
2290  {
2291  assert(this->type == CFT_CARGO_LABEL);
2292 
2293  int vpos = VERT_INTER_INDUSTRY_SPACE / 2 + CargoesField::cargo_border.height;
2294  uint row;
2295  for (row = 0; row < MAX_CARGOES; row++) {
2296  if (pt.y < vpos) return INVALID_CARGO;
2297  if (pt.y < vpos + FONT_HEIGHT_NORMAL) break;
2299  }
2300  if (row == MAX_CARGOES) return INVALID_CARGO;
2301  return this->u.cargo_label.cargoes[row];
2302  }
2303 
2304 private:
2312  static void DrawHorConnection(int left, int right, int top, const CargoSpec *csp)
2313  {
2314  GfxDrawLine(left, top, right, top, CARGO_LINE_COLOUR);
2315  GfxFillRect(left, top + 1, right, top + CargoesField::cargo_line.height - 2, csp->legend_colour, FILLRECT_OPAQUE);
2316  GfxDrawLine(left, top + CargoesField::cargo_line.height - 1, right, top + CargoesField::cargo_line.height - 1, CARGO_LINE_COLOUR);
2317  }
2318 };
2319 
2320 static_assert(MAX_CARGOES >= cpp_lengthof(IndustrySpec, produced_cargo));
2321 static_assert(MAX_CARGOES >= cpp_lengthof(IndustrySpec, accepts_cargo));
2322 
2328 
2335 
2336 const int CargoesField::BLOB_DISTANCE = 5;
2337 
2340 
2342 struct CargoesRow {
2344 
2349  void ConnectIndustryProduced(int column)
2350  {
2351  CargoesField *ind_fld = this->columns + column;
2352  CargoesField *cargo_fld = this->columns + column + 1;
2353  assert(ind_fld->type == CFT_INDUSTRY && cargo_fld->type == CFT_CARGO);
2354 
2355  MemSetT(ind_fld->u.industry.other_produced, INVALID_CARGO, MAX_CARGOES);
2356 
2357  if (ind_fld->u.industry.ind_type < NUM_INDUSTRYTYPES) {
2358  CargoID others[MAX_CARGOES]; // Produced cargoes not carried in the cargo column.
2359  int other_count = 0;
2360 
2361  const IndustrySpec *indsp = GetIndustrySpec(ind_fld->u.industry.ind_type);
2362  assert(CargoesField::max_cargoes <= lengthof(indsp->produced_cargo));
2363  for (uint i = 0; i < CargoesField::max_cargoes; i++) {
2364  int col = cargo_fld->ConnectCargo(indsp->produced_cargo[i], true);
2365  if (col < 0) others[other_count++] = indsp->produced_cargo[i];
2366  }
2367 
2368  /* Allocate other cargoes in the empty holes of the horizontal cargo connections. */
2369  for (uint i = 0; i < CargoesField::max_cargoes && other_count > 0; i++) {
2370  if (cargo_fld->u.cargo.supp_cargoes[i] == INVALID_CARGO) ind_fld->u.industry.other_produced[i] = others[--other_count];
2371  }
2372  } else {
2373  /* Houses only display what is demanded. */
2374  for (uint i = 0; i < cargo_fld->u.cargo.num_cargoes; i++) {
2375  CargoID cid = cargo_fld->u.cargo.vertical_cargoes[i];
2376  if (cid == CT_PASSENGERS || cid == CT_MAIL) cargo_fld->ConnectCargo(cid, true);
2377  }
2378  }
2379  }
2380 
2386  void MakeCargoLabel(int column, bool accepting)
2387  {
2388  CargoID cargoes[MAX_CARGOES];
2389  MemSetT(cargoes, INVALID_CARGO, lengthof(cargoes));
2390 
2391  CargoesField *label_fld = this->columns + column;
2392  CargoesField *cargo_fld = this->columns + (accepting ? column - 1 : column + 1);
2393 
2394  assert(cargo_fld->type == CFT_CARGO && label_fld->type == CFT_EMPTY);
2395  for (uint i = 0; i < cargo_fld->u.cargo.num_cargoes; i++) {
2396  int col = cargo_fld->ConnectCargo(cargo_fld->u.cargo.vertical_cargoes[i], !accepting);
2397  if (col >= 0) cargoes[col] = cargo_fld->u.cargo.vertical_cargoes[i];
2398  }
2399  label_fld->MakeCargoLabel(cargoes, lengthof(cargoes), accepting);
2400  }
2401 
2402 
2407  void ConnectIndustryAccepted(int column)
2408  {
2409  CargoesField *ind_fld = this->columns + column;
2410  CargoesField *cargo_fld = this->columns + column - 1;
2411  assert(ind_fld->type == CFT_INDUSTRY && cargo_fld->type == CFT_CARGO);
2412 
2413  MemSetT(ind_fld->u.industry.other_accepted, INVALID_CARGO, MAX_CARGOES);
2414 
2415  if (ind_fld->u.industry.ind_type < NUM_INDUSTRYTYPES) {
2416  CargoID others[MAX_CARGOES]; // Accepted cargoes not carried in the cargo column.
2417  int other_count = 0;
2418 
2419  const IndustrySpec *indsp = GetIndustrySpec(ind_fld->u.industry.ind_type);
2421  for (uint i = 0; i < CargoesField::max_cargoes; i++) {
2422  int col = cargo_fld->ConnectCargo(indsp->accepts_cargo[i], false);
2423  if (col < 0) others[other_count++] = indsp->accepts_cargo[i];
2424  }
2425 
2426  /* Allocate other cargoes in the empty holes of the horizontal cargo connections. */
2427  for (uint i = 0; i < CargoesField::max_cargoes && other_count > 0; i++) {
2428  if (cargo_fld->u.cargo.cust_cargoes[i] == INVALID_CARGO) ind_fld->u.industry.other_accepted[i] = others[--other_count];
2429  }
2430  } else {
2431  /* Houses only display what is demanded. */
2432  for (uint i = 0; i < cargo_fld->u.cargo.num_cargoes; i++) {
2433  for (uint h = 0; h < NUM_HOUSES; h++) {
2434  HouseSpec *hs = HouseSpec::Get(h);
2435  if (!hs->enabled) continue;
2436 
2437  for (uint j = 0; j < lengthof(hs->accepts_cargo); j++) {
2438  if (hs->cargo_acceptance[j] > 0 && cargo_fld->u.cargo.vertical_cargoes[i] == hs->accepts_cargo[j]) {
2439  cargo_fld->ConnectCargo(cargo_fld->u.cargo.vertical_cargoes[i], false);
2440  goto next_cargo;
2441  }
2442  }
2443  }
2444 next_cargo: ;
2445  }
2446  }
2447  }
2448 };
2449 
2450 
2480 
2481  typedef std::vector<CargoesRow> Fields;
2482 
2483  Fields fields;
2484  uint ind_cargo;
2487  Scrollbar *vscroll;
2488 
2490  {
2491  this->OnInit();
2492  this->CreateNestedTree();
2493  this->vscroll = this->GetScrollbar(WID_IC_SCROLLBAR);
2494  this->FinishInitNested(0);
2495  this->OnInvalidateData(id);
2496  }
2497 
2498  void OnInit() override
2499  {
2500  /* Initialize static CargoesField size variables. */
2501  Dimension d = GetStringBoundingBox(STR_INDUSTRY_CARGOES_PRODUCERS);
2502  d = maxdim(d, GetStringBoundingBox(STR_INDUSTRY_CARGOES_CUSTOMERS));
2504  d.height += WD_FRAMETEXT_TOP + WD_FRAMETEXT_BOTTOM;
2505  CargoesField::small_height = d.height;
2506 
2507  /* Size of the legend blob -- slightly larger than the smallmap legend blob. */
2509  CargoesField::legend.width = CargoesField::legend.height * 8 / 5;
2510 
2511  /* Size of cargo lines. */
2514 
2515  /* Size of border between cargo lines and industry boxes. */
2518 
2519  /* Size of space between cargo lines. */
2522 
2523  /* Size of cargo stub (unconnected cargo line.) */
2525  CargoesField::cargo_stub.height = CargoesField::cargo_line.height; /* Unused */
2526 
2527  /* Decide about the size of the box holding the text of an industry type. */
2528  this->ind_textsize.width = 0;
2529  this->ind_textsize.height = 0;
2531  for (IndustryType it = 0; it < NUM_INDUSTRYTYPES; it++) {
2532  const IndustrySpec *indsp = GetIndustrySpec(it);
2533  if (!indsp->enabled) continue;
2534  this->ind_textsize = maxdim(this->ind_textsize, GetStringBoundingBox(indsp->name));
2535  CargoesField::max_cargoes = std::max<uint>(CargoesField::max_cargoes, std::count_if(indsp->accepts_cargo, endof(indsp->accepts_cargo), IsCargoIDValid));
2536  CargoesField::max_cargoes = std::max<uint>(CargoesField::max_cargoes, std::count_if(indsp->produced_cargo, endof(indsp->produced_cargo), IsCargoIDValid));
2537  }
2538  d.width = std::max(d.width, this->ind_textsize.width);
2539  d.height = this->ind_textsize.height;
2540  this->ind_textsize = maxdim(this->ind_textsize, GetStringBoundingBox(STR_INDUSTRY_CARGOES_SELECT_INDUSTRY));
2541 
2542  /* Compute max size of the cargo texts. */
2543  this->cargo_textsize.width = 0;
2544  this->cargo_textsize.height = 0;
2545  for (uint i = 0; i < NUM_CARGO; i++) {
2546  const CargoSpec *csp = CargoSpec::Get(i);
2547  if (!csp->IsValid()) continue;
2548  this->cargo_textsize = maxdim(this->cargo_textsize, GetStringBoundingBox(csp->name));
2549  }
2550  d = maxdim(d, this->cargo_textsize); // Box must also be wide enough to hold any cargo label.
2551  this->cargo_textsize = maxdim(this->cargo_textsize, GetStringBoundingBox(STR_INDUSTRY_CARGOES_SELECT_CARGO));
2552 
2553  d.width += 2 * HOR_TEXT_PADDING;
2554  /* Ensure the height is enough for the industry type text, for the horizontal connections, and for the cargo labels. */
2556  d.height = std::max(d.height + 2 * VERT_TEXT_PADDING, min_ind_height);
2557 
2558  CargoesField::industry_width = d.width;
2560 
2561  /* Width of a #CFT_CARGO field. */
2563  }
2564 
2565  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
2566  {
2567  switch (widget) {
2568  case WID_IC_PANEL:
2571  size->height = WD_FRAMETEXT_TOP + CargoesField::small_height + 2 * resize->height + WD_FRAMETEXT_BOTTOM;
2572  break;
2573 
2574  case WID_IC_IND_DROPDOWN:
2575  size->width = std::max(size->width, this->ind_textsize.width + padding.width);
2576  break;
2577 
2578  case WID_IC_CARGO_DROPDOWN:
2579  size->width = std::max(size->width, this->cargo_textsize.width + padding.width);
2580  break;
2581  }
2582  }
2583 
2584 
2586  void SetStringParameters (int widget) const override
2587  {
2588  if (widget != WID_IC_CAPTION) return;
2589 
2590  if (this->ind_cargo < NUM_INDUSTRYTYPES) {
2591  const IndustrySpec *indsp = GetIndustrySpec(this->ind_cargo);
2592  SetDParam(0, indsp->name);
2593  } else {
2594  const CargoSpec *csp = CargoSpec::Get(this->ind_cargo - NUM_INDUSTRYTYPES);
2595  SetDParam(0, csp->name);
2596  }
2597  }
2598 
2607  static bool HasCommonValidCargo(const CargoID *cargoes1, uint length1, const CargoID *cargoes2, uint length2)
2608  {
2609  while (length1 > 0) {
2610  if (*cargoes1 != INVALID_CARGO) {
2611  for (uint i = 0; i < length2; i++) if (*cargoes1 == cargoes2[i]) return true;
2612  }
2613  cargoes1++;
2614  length1--;
2615  }
2616  return false;
2617  }
2618 
2625  static bool HousesCanSupply(const CargoID *cargoes, uint length)
2626  {
2627  for (uint i = 0; i < length; i++) {
2628  if (cargoes[i] == INVALID_CARGO) continue;
2629  if (cargoes[i] == CT_PASSENGERS || cargoes[i] == CT_MAIL) return true;
2630  }
2631  return false;
2632  }
2633 
2640  static bool HousesCanAccept(const CargoID *cargoes, uint length)
2641  {
2642  HouseZones climate_mask;
2644  case LT_TEMPERATE: climate_mask = HZ_TEMP; break;
2645  case LT_ARCTIC: climate_mask = HZ_SUBARTC_ABOVE | HZ_SUBARTC_BELOW; break;
2646  case LT_TROPIC: climate_mask = HZ_SUBTROPIC; break;
2647  case LT_TOYLAND: climate_mask = HZ_TOYLND; break;
2648  default: NOT_REACHED();
2649  }
2650  for (uint i = 0; i < length; i++) {
2651  if (cargoes[i] == INVALID_CARGO) continue;
2652 
2653  for (uint h = 0; h < NUM_HOUSES; h++) {
2654  HouseSpec *hs = HouseSpec::Get(h);
2655  if (!hs->enabled || !(hs->building_availability & climate_mask)) continue;
2656 
2657  for (uint j = 0; j < lengthof(hs->accepts_cargo); j++) {
2658  if (hs->cargo_acceptance[j] > 0 && cargoes[i] == hs->accepts_cargo[j]) return true;
2659  }
2660  }
2661  }
2662  return false;
2663  }
2664 
2671  static int CountMatchingAcceptingIndustries(const CargoID *cargoes, uint length)
2672  {
2673  int count = 0;
2674  for (IndustryType it = 0; it < NUM_INDUSTRYTYPES; it++) {
2675  const IndustrySpec *indsp = GetIndustrySpec(it);
2676  if (!indsp->enabled) continue;
2677 
2678  if (HasCommonValidCargo(cargoes, length, indsp->accepts_cargo, lengthof(indsp->accepts_cargo))) count++;
2679  }
2680  return count;
2681  }
2682 
2689  static int CountMatchingProducingIndustries(const CargoID *cargoes, uint length)
2690  {
2691  int count = 0;
2692  for (IndustryType it = 0; it < NUM_INDUSTRYTYPES; it++) {
2693  const IndustrySpec *indsp = GetIndustrySpec(it);
2694  if (!indsp->enabled) continue;
2695 
2696  if (HasCommonValidCargo(cargoes, length, indsp->produced_cargo, lengthof(indsp->produced_cargo))) count++;
2697  }
2698  return count;
2699  }
2700 
2707  void ShortenCargoColumn(int column, int top, int bottom)
2708  {
2709  while (top < bottom && !this->fields[top].columns[column].HasConnection()) {
2710  this->fields[top].columns[column].MakeEmpty(CFT_EMPTY);
2711  top++;
2712  }
2713  this->fields[top].columns[column].u.cargo.top_end = true;
2714 
2715  while (bottom > top && !this->fields[bottom].columns[column].HasConnection()) {
2716  this->fields[bottom].columns[column].MakeEmpty(CFT_EMPTY);
2717  bottom--;
2718  }
2719  this->fields[bottom].columns[column].u.cargo.bottom_end = true;
2720  }
2721 
2728  void PlaceIndustry(int row, int col, IndustryType it)
2729  {
2730  assert(this->fields[row].columns[col].type == CFT_EMPTY);
2731  this->fields[row].columns[col].MakeIndustry(it);
2732  if (col == 0) {
2733  this->fields[row].ConnectIndustryProduced(col);
2734  } else {
2735  this->fields[row].ConnectIndustryAccepted(col);
2736  }
2737  }
2738 
2743  {
2744  if (!this->IsWidgetLowered(WID_IC_NOTIFY)) return;
2745 
2746  /* Only notify the smallmap window if it exists. In particular, do not
2747  * bring it to the front to prevent messing up any nice layout of the user. */
2749  }
2750 
2755  void ComputeIndustryDisplay(IndustryType displayed_it)
2756  {
2757  this->GetWidget<NWidgetCore>(WID_IC_CAPTION)->widget_data = STR_INDUSTRY_CARGOES_INDUSTRY_CAPTION;
2758  this->ind_cargo = displayed_it;
2759  _displayed_industries.reset();
2760  _displayed_industries.set(displayed_it);
2761 
2762  this->fields.clear();
2763  CargoesRow &row = this->fields.emplace_back();
2764  row.columns[0].MakeHeader(STR_INDUSTRY_CARGOES_PRODUCERS);
2768  row.columns[4].MakeHeader(STR_INDUSTRY_CARGOES_CUSTOMERS);
2769 
2770  const IndustrySpec *central_sp = GetIndustrySpec(displayed_it);
2771  bool houses_supply = HousesCanSupply(central_sp->accepts_cargo, lengthof(central_sp->accepts_cargo));
2772  bool houses_accept = HousesCanAccept(central_sp->produced_cargo, lengthof(central_sp->produced_cargo));
2773  /* Make a field consisting of two cargo columns. */
2774  int num_supp = CountMatchingProducingIndustries(central_sp->accepts_cargo, lengthof(central_sp->accepts_cargo)) + houses_supply;
2775  int num_cust = CountMatchingAcceptingIndustries(central_sp->produced_cargo, lengthof(central_sp->produced_cargo)) + houses_accept;
2776  int num_indrows = std::max(3, std::max(num_supp, num_cust)); // One is needed for the 'it' industry, and 2 for the cargo labels.
2777  for (int i = 0; i < num_indrows; i++) {
2778  CargoesRow &row = this->fields.emplace_back();
2779  row.columns[0].MakeEmpty(CFT_EMPTY);
2780  row.columns[1].MakeCargo(central_sp->accepts_cargo, lengthof(central_sp->accepts_cargo));
2781  row.columns[2].MakeEmpty(CFT_EMPTY);
2782  row.columns[3].MakeCargo(central_sp->produced_cargo, lengthof(central_sp->produced_cargo));
2783  row.columns[4].MakeEmpty(CFT_EMPTY);
2784  }
2785  /* Add central industry. */
2786  int central_row = 1 + num_indrows / 2;
2787  this->fields[central_row].columns[2].MakeIndustry(displayed_it);
2788  this->fields[central_row].ConnectIndustryProduced(2);
2789  this->fields[central_row].ConnectIndustryAccepted(2);
2790 
2791  /* Add cargo labels. */
2792  this->fields[central_row - 1].MakeCargoLabel(2, true);
2793  this->fields[central_row + 1].MakeCargoLabel(2, false);
2794 
2795  /* Add suppliers and customers of the 'it' industry. */
2796  int supp_count = 0;
2797  int cust_count = 0;
2798  for (IndustryType it = 0; it < NUM_INDUSTRYTYPES; it++) {
2799  const IndustrySpec *indsp = GetIndustrySpec(it);
2800  if (!indsp->enabled) continue;
2801 
2802  if (HasCommonValidCargo(central_sp->accepts_cargo, lengthof(central_sp->accepts_cargo), indsp->produced_cargo, lengthof(indsp->produced_cargo))) {
2803  this->PlaceIndustry(1 + supp_count * num_indrows / num_supp, 0, it);
2804  _displayed_industries.set(it);
2805  supp_count++;
2806  }
2807  if (HasCommonValidCargo(central_sp->produced_cargo, lengthof(central_sp->produced_cargo), indsp->accepts_cargo, lengthof(indsp->accepts_cargo))) {
2808  this->PlaceIndustry(1 + cust_count * num_indrows / num_cust, 4, it);
2809  _displayed_industries.set(it);
2810  cust_count++;
2811  }
2812  }
2813  if (houses_supply) {
2814  this->PlaceIndustry(1 + supp_count * num_indrows / num_supp, 0, NUM_INDUSTRYTYPES);
2815  supp_count++;
2816  }
2817  if (houses_accept) {
2818  this->PlaceIndustry(1 + cust_count * num_indrows / num_cust, 4, NUM_INDUSTRYTYPES);
2819  cust_count++;
2820  }
2821 
2822  this->ShortenCargoColumn(1, 1, num_indrows);
2823  this->ShortenCargoColumn(3, 1, num_indrows);
2824  this->vscroll->SetCount(num_indrows);
2825  this->SetDirty();
2826  this->NotifySmallmap();
2827  }
2828 
2834  {
2835  this->GetWidget<NWidgetCore>(WID_IC_CAPTION)->widget_data = STR_INDUSTRY_CARGOES_CARGO_CAPTION;
2836  this->ind_cargo = cid + NUM_INDUSTRYTYPES;
2837  _displayed_industries.reset();
2838 
2839  this->fields.clear();
2840  CargoesRow &row = this->fields.emplace_back();
2841  row.columns[0].MakeHeader(STR_INDUSTRY_CARGOES_PRODUCERS);
2843  row.columns[2].MakeHeader(STR_INDUSTRY_CARGOES_CUSTOMERS);
2846 
2847  bool houses_supply = HousesCanSupply(&cid, 1);
2848  bool houses_accept = HousesCanAccept(&cid, 1);
2849  int num_supp = CountMatchingProducingIndustries(&cid, 1) + houses_supply + 1; // Ensure room for the cargo label.
2850  int num_cust = CountMatchingAcceptingIndustries(&cid, 1) + houses_accept;
2851  int num_indrows = std::max(num_supp, num_cust);
2852  for (int i = 0; i < num_indrows; i++) {
2853  CargoesRow &row = this->fields.emplace_back();
2854  row.columns[0].MakeEmpty(CFT_EMPTY);
2855  row.columns[1].MakeCargo(&cid, 1);
2856  row.columns[2].MakeEmpty(CFT_EMPTY);
2857  row.columns[3].MakeEmpty(CFT_EMPTY);
2858  row.columns[4].MakeEmpty(CFT_EMPTY);
2859  }
2860 
2861  this->fields[num_indrows].MakeCargoLabel(0, false); // Add cargo labels at the left bottom.
2862 
2863  /* Add suppliers and customers of the cargo. */
2864  int supp_count = 0;
2865  int cust_count = 0;
2866  for (IndustryType it = 0; it < NUM_INDUSTRYTYPES; it++) {
2867  const IndustrySpec *indsp = GetIndustrySpec(it);
2868  if (!indsp->enabled) continue;
2869 
2870  if (HasCommonValidCargo(&cid, 1, indsp->produced_cargo, lengthof(indsp->produced_cargo))) {
2871  this->PlaceIndustry(1 + supp_count * num_indrows / num_supp, 0, it);
2872  _displayed_industries.set(it);
2873  supp_count++;
2874  }
2875  if (HasCommonValidCargo(&cid, 1, indsp->accepts_cargo, lengthof(indsp->accepts_cargo))) {
2876  this->PlaceIndustry(1 + cust_count * num_indrows / num_cust, 2, it);
2877  _displayed_industries.set(it);
2878  cust_count++;
2879  }
2880  }
2881  if (houses_supply) {
2882  this->PlaceIndustry(1 + supp_count * num_indrows / num_supp, 0, NUM_INDUSTRYTYPES);
2883  supp_count++;
2884  }
2885  if (houses_accept) {
2886  this->PlaceIndustry(1 + cust_count * num_indrows / num_cust, 2, NUM_INDUSTRYTYPES);
2887  cust_count++;
2888  }
2889 
2890  this->ShortenCargoColumn(1, 1, num_indrows);
2891  this->vscroll->SetCount(num_indrows);
2892  this->SetDirty();
2893  this->NotifySmallmap();
2894  }
2895 
2903  void OnInvalidateData(int data = 0, bool gui_scope = true) override
2904  {
2905  if (!gui_scope) return;
2906  if (data == NUM_INDUSTRYTYPES) {
2907  if (this->IsWidgetLowered(WID_IC_NOTIFY)) {
2908  this->RaiseWidget(WID_IC_NOTIFY);
2910  }
2911  return;
2912  }
2913 
2914  assert(data >= 0 && data < NUM_INDUSTRYTYPES);
2915  this->ComputeIndustryDisplay(data);
2916  }
2917 
2918  void DrawWidget(const Rect &r, int widget) const override
2919  {
2920  if (widget != WID_IC_PANEL) return;
2921 
2922  DrawPixelInfo tmp_dpi, *old_dpi;
2923  int width = r.right - r.left + 1;
2924  int height = r.bottom - r.top + 1 - WD_FRAMERECT_TOP - WD_FRAMERECT_BOTTOM;
2925  if (!FillDrawPixelInfo(&tmp_dpi, r.left + WD_FRAMERECT_LEFT, r.top + WD_FRAMERECT_TOP, width, height)) return;
2926  old_dpi = _cur_dpi;
2927  _cur_dpi = &tmp_dpi;
2928 
2929  int left_pos = WD_FRAMERECT_LEFT;
2930  if (this->ind_cargo >= NUM_INDUSTRYTYPES) left_pos += (CargoesField::industry_width + CargoesField::cargo_field_width) / 2;
2931  int last_column = (this->ind_cargo < NUM_INDUSTRYTYPES) ? 4 : 2;
2932 
2933  const NWidgetBase *nwp = this->GetWidget<NWidgetBase>(WID_IC_PANEL);
2934  int vpos = -this->vscroll->GetPosition() * nwp->resize_y;
2935  for (uint i = 0; i < this->fields.size(); i++) {
2936  int row_height = (i == 0) ? CargoesField::small_height : CargoesField::normal_height;
2937  if (vpos + row_height >= 0) {
2938  int xpos = left_pos;
2939  int col, dir;
2940  if (_current_text_dir == TD_RTL) {
2941  col = last_column;
2942  dir = -1;
2943  } else {
2944  col = 0;
2945  dir = 1;
2946  }
2947  while (col >= 0 && col <= last_column) {
2948  this->fields[i].columns[col].Draw(xpos, vpos);
2950  col += dir;
2951  }
2952  }
2953  vpos += row_height;
2954  if (vpos >= height) break;
2955  }
2956 
2957  _cur_dpi = old_dpi;
2958  }
2959 
2967  bool CalculatePositionInWidget(Point pt, Point *fieldxy, Point *xy)
2968  {
2969  const NWidgetBase *nw = this->GetWidget<NWidgetBase>(WID_IC_PANEL);
2970  pt.x -= nw->pos_x;
2971  pt.y -= nw->pos_y;
2972 
2973  int vpos = WD_FRAMERECT_TOP + CargoesField::small_height - this->vscroll->GetPosition() * nw->resize_y;
2974  if (pt.y < vpos) return false;
2975 
2976  int row = (pt.y - vpos) / CargoesField::normal_height; // row is relative to row 1.
2977  if (row + 1 >= (int)this->fields.size()) return false;
2978  vpos = pt.y - vpos - row * CargoesField::normal_height; // Position in the row + 1 field
2979  row++; // rebase row to match index of this->fields.
2980 
2981  int xpos = 2 * WD_FRAMERECT_LEFT + ((this->ind_cargo < NUM_INDUSTRYTYPES) ? 0 : (CargoesField::industry_width + CargoesField::cargo_field_width) / 2);
2982  if (pt.x < xpos) return false;
2983  int column;
2984  for (column = 0; column <= 5; column++) {
2986  if (pt.x < xpos + width) break;
2987  xpos += width;
2988  }
2989  int num_columns = (this->ind_cargo < NUM_INDUSTRYTYPES) ? 4 : 2;
2990  if (column > num_columns) return false;
2991  xpos = pt.x - xpos;
2992 
2993  /* Return both positions, compensating for RTL languages (which works due to the equal symmetry in both displays). */
2994  fieldxy->y = row;
2995  xy->y = vpos;
2996  if (_current_text_dir == TD_RTL) {
2997  fieldxy->x = num_columns - column;
2998  xy->x = ((column & 1) ? CargoesField::cargo_field_width : CargoesField::industry_width) - xpos;
2999  } else {
3000  fieldxy->x = column;
3001  xy->x = xpos;
3002  }
3003  return true;
3004  }
3005 
3006  void OnClick(Point pt, int widget, int click_count) override
3007  {
3008  switch (widget) {
3009  case WID_IC_PANEL: {
3010  Point fieldxy, xy;
3011  if (!CalculatePositionInWidget(pt, &fieldxy, &xy)) return;
3012 
3013  const CargoesField *fld = this->fields[fieldxy.y].columns + fieldxy.x;
3014  switch (fld->type) {
3015  case CFT_INDUSTRY:
3016  if (fld->u.industry.ind_type < NUM_INDUSTRYTYPES) this->ComputeIndustryDisplay(fld->u.industry.ind_type);
3017  break;
3018 
3019  case CFT_CARGO: {
3020  CargoesField *lft = (fieldxy.x > 0) ? this->fields[fieldxy.y].columns + fieldxy.x - 1 : nullptr;
3021  CargoesField *rgt = (fieldxy.x < 4) ? this->fields[fieldxy.y].columns + fieldxy.x + 1 : nullptr;
3022  CargoID cid = fld->CargoClickedAt(lft, rgt, xy);
3023  if (cid != INVALID_CARGO) this->ComputeCargoDisplay(cid);
3024  break;
3025  }
3026 
3027  case CFT_CARGO_LABEL: {
3028  CargoID cid = fld->CargoLabelClickedAt(xy);
3029  if (cid != INVALID_CARGO) this->ComputeCargoDisplay(cid);
3030  break;
3031  }
3032 
3033  default:
3034  break;
3035  }
3036  break;
3037  }
3038 
3039  case WID_IC_NOTIFY:
3042  if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
3043 
3044  if (this->IsWidgetLowered(WID_IC_NOTIFY)) {
3045  if (FindWindowByClass(WC_SMALLMAP) == nullptr) ShowSmallMap();
3046  this->NotifySmallmap();
3047  }
3048  break;
3049 
3050  case WID_IC_CARGO_DROPDOWN: {
3051  DropDownList lst;
3052  for (const CargoSpec *cs : _sorted_standard_cargo_specs) {
3053  lst.emplace_back(new DropDownListStringItem(cs->name, cs->Index(), false));
3054  }
3055  if (!lst.empty()) {
3056  int selected = (this->ind_cargo >= NUM_INDUSTRYTYPES) ? (int)(this->ind_cargo - NUM_INDUSTRYTYPES) : -1;
3057  ShowDropDownList(this, std::move(lst), selected, WID_IC_CARGO_DROPDOWN, 0, true);
3058  }
3059  break;
3060  }
3061 
3062  case WID_IC_IND_DROPDOWN: {
3063  DropDownList lst;
3064  for (IndustryType ind : _sorted_industry_types) {
3065  const IndustrySpec *indsp = GetIndustrySpec(ind);
3066  if (!indsp->enabled) continue;
3067  lst.emplace_back(new DropDownListStringItem(indsp->name, ind, false));
3068  }
3069  if (!lst.empty()) {
3070  int selected = (this->ind_cargo < NUM_INDUSTRYTYPES) ? (int)this->ind_cargo : -1;
3071  ShowDropDownList(this, std::move(lst), selected, WID_IC_IND_DROPDOWN, 0, true);
3072  }
3073  break;
3074  }
3075  }
3076  }
3077 
3078  void OnDropdownSelect(int widget, int index) override
3079  {
3080  if (index < 0) return;
3081 
3082  switch (widget) {
3083  case WID_IC_CARGO_DROPDOWN:
3084  this->ComputeCargoDisplay(index);
3085  break;
3086 
3087  case WID_IC_IND_DROPDOWN:
3088  this->ComputeIndustryDisplay(index);
3089  break;
3090  }
3091  }
3092 
3093  bool OnTooltip(Point pt, int widget, TooltipCloseCondition close_cond) override
3094  {
3095  if (widget != WID_IC_PANEL) return false;
3096 
3097  Point fieldxy, xy;
3098  if (!CalculatePositionInWidget(pt, &fieldxy, &xy)) return false;
3099 
3100  const CargoesField *fld = this->fields[fieldxy.y].columns + fieldxy.x;
3101  CargoID cid = INVALID_CARGO;
3102  switch (fld->type) {
3103  case CFT_CARGO: {
3104  CargoesField *lft = (fieldxy.x > 0) ? this->fields[fieldxy.y].columns + fieldxy.x - 1 : nullptr;
3105  CargoesField *rgt = (fieldxy.x < 4) ? this->fields[fieldxy.y].columns + fieldxy.x + 1 : nullptr;
3106  cid = fld->CargoClickedAt(lft, rgt, xy);
3107  break;
3108  }
3109 
3110  case CFT_CARGO_LABEL: {
3111  cid = fld->CargoLabelClickedAt(xy);
3112  break;
3113  }
3114 
3115  case CFT_INDUSTRY:
3116  if (fld->u.industry.ind_type < NUM_INDUSTRYTYPES && (this->ind_cargo >= NUM_INDUSTRYTYPES || fieldxy.x != 2)) {
3117  GuiShowTooltips(this, STR_INDUSTRY_CARGOES_INDUSTRY_TOOLTIP, 0, nullptr, close_cond);
3118  }
3119  return true;
3120 
3121  default:
3122  break;
3123  }
3124  if (cid != INVALID_CARGO && (this->ind_cargo < NUM_INDUSTRYTYPES || cid != this->ind_cargo - NUM_INDUSTRYTYPES)) {
3125  const CargoSpec *csp = CargoSpec::Get(cid);
3126  uint64 params[5];
3127  params[0] = csp->name;
3128  GuiShowTooltips(this, STR_INDUSTRY_CARGOES_CARGO_TOOLTIP, 1, params, close_cond);
3129  return true;
3130  }
3131 
3132  return false;
3133  }
3134 
3135  void OnResize() override
3136  {
3138  }
3139 };
3140 
3143 
3148 static void ShowIndustryCargoesWindow(IndustryType id)
3149 {
3150  if (id >= NUM_INDUSTRYTYPES) {
3151  for (IndustryType ind : _sorted_industry_types) {
3152  const IndustrySpec *indsp = GetIndustrySpec(ind);
3153  if (indsp->enabled) {
3154  id = ind;
3155  break;
3156  }
3157  }
3158  if (id >= NUM_INDUSTRYTYPES) return;
3159  }
3160 
3162  if (w != nullptr) {
3163  w->InvalidateData(id);
3164  return;
3165  }
3166  new IndustryCargoesWindow(id);
3167 }
3168 
3171 {
3173 }
_sorted_industry_types
std::array< IndustryType, NUM_INDUSTRYTYPES > _sorted_industry_types
Industry types sorted by name.
Definition: industry_gui.cpp:186
PC_WHITE
static const uint8 PC_WHITE
White palette colour.
Definition: gfx_func.h:195
CargoesField::cargo_label
struct CargoesField::@17::@20 cargo_label
Label data (for CFT_CARGO_LABEL).
MP_CLEAR
@ MP_CLEAR
A tile without any structures, i.e. grass, rocks, farm fields etc.
Definition: tile_type.h:46
TC_FORCED
@ TC_FORCED
Ignore colour changes from strings.
Definition: gfx_type.h:275
INVALID_CARGO
static const byte INVALID_CARGO
Constant representing invalid cargo.
Definition: cargotype.h:54
IndustryViewWindow::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: industry_gui.cpp:989
IndustryCargoesWindow::CountMatchingProducingIndustries
static int CountMatchingProducingIndustries(const CargoID *cargoes, uint length)
Count how many industries have produced cargoes in common with one of the supplied set.
Definition: industry_gui.cpp:2689
Window::SetTimeout
void SetTimeout()
Set the timeout flag of the window and initiate the timer.
Definition: window_gui.h:360
IndustryDirectoryWindow::SorterType::IDW_SORT_BY_TYPE
@ IDW_SORT_BY_TYPE
Sorter type to sort by type.
PRODLEVEL_MINIMUM
@ PRODLEVEL_MINIMUM
below this level, the industry is set to be closing
Definition: industry.h:31
BuildIndustryWindow::count
uint16 count
How many industries are loaded.
Definition: industry_gui.cpp:283
WD_FRAMERECT_TOP
@ WD_FRAMERECT_TOP
Offset at top to draw the frame rectangular area.
Definition: window_gui.h:64
CMD_MSG
#define CMD_MSG(x)
Used to combine a StringID with the command.
Definition: command_type.h:372
TileIndex
uint32 TileIndex
The index/ID of a Tile.
Definition: tile_type.h:83
WID_DPI_DISPLAY_WIDGET
@ WID_DPI_DISPLAY_WIDGET
Display chain button.
Definition: industry_widget.h:21
sound_func.h
IndustryCargoesWindow::HousesCanAccept
static bool HousesCanAccept(const CargoID *cargoes, uint length)
Can houses be used as customers of the produced cargoes?
Definition: industry_gui.cpp:2640
ID_FUND_ONLY
@ ID_FUND_ONLY
The game does not build industries.
Definition: settings_type.h:54
CBM_IND_PRODUCTION_CARGO_ARRIVAL
@ CBM_IND_PRODUCTION_CARGO_ARRIVAL
call production callback when cargo arrives at the industry
Definition: newgrf_callbacks.h:349
NUM_INDUSTRYTYPES
static const IndustryType NUM_INDUSTRYTYPES
total number of industry types, new and old; limited to 240 because we need some special ids like INV...
Definition: industry_type.h:26
IndustrySpec::map_colour
byte map_colour
colour used for the small map
Definition: industrytype.h:126
CBM_IND_CARGO_SUFFIX
@ CBM_IND_CARGO_SUFFIX
cargo sub-type display
Definition: newgrf_callbacks.h:354
GUIList::SortType
uint8 SortType() const
Get the sorttype of the list.
Definition: sortlist_type.h:93
Pool::PoolItem<&_industry_pool >::Get
static Titem * Get(size_t index)
Returns Titem with given index.
Definition: pool_type.hpp:337
ScrollMainWindowToTile
bool ScrollMainWindowToTile(TileIndex tile, bool instant)
Scrolls the viewport of the main window to a given location.
Definition: viewport.cpp:2445
INDUSTRYBEH_CARGOTYPES_UNLIMITED
@ INDUSTRYBEH_CARGOTYPES_UNLIMITED
Allow produced/accepted cargoes callbacks to supply more than 2 and 3 types.
Definition: industrytype.h:82
IndustrySpec::UsesOriginalEconomy
bool UsesOriginalEconomy() const
Determines whether this industrytype uses standard/newgrf production changes.
Definition: industry_cmd.cpp:3022
CargoesField::MakeCargo
void MakeCargo(const CargoID *cargoes, uint length, int count=-1, bool top_end=false, bool bottom_end=false)
Make a piece of cargo column.
Definition: industry_gui.cpp:2024
WC_INDUSTRY_CARGOES
@ WC_INDUSTRY_CARGOES
Industry cargoes chain; Window numbers:
Definition: window_type.h:502
IndustryCargoesWindow::HousesCanSupply
static bool HousesCanSupply(const CargoID *cargoes, uint length)
Can houses be used to supply one of the cargoes?
Definition: industry_gui.cpp:2625
IndustryTypeNameSorter
static bool IndustryTypeNameSorter(const IndustryType &a, const IndustryType &b)
Sort industry types by their name.
Definition: industry_gui.cpp:189
WD_MATRIX_RIGHT
@ WD_MATRIX_RIGHT
Offset at right of a matrix cell.
Definition: window_gui.h:79
CargoesField::INDUSTRY_LINE_COLOUR
static const int INDUSTRY_LINE_COLOUR
Line colour of the industry type box.
Definition: industry_gui.cpp:1917
SetScrollbar
static NWidgetPart SetScrollbar(int index)
Attach a scrollbar to a widget.
Definition: widget_type.h:1188
ShowExtraViewportWindow
void ShowExtraViewportWindow(TileIndex tile=INVALID_TILE)
Show a new Extra Viewport window.
Definition: viewport_gui.cpp:168
BuildIndustryWindow::OnInit
void OnInit() override
Notification that the nested widget tree gets initialized.
Definition: industry_gui.cpp:408
GB
static uint GB(const T x, const uint8 s, const uint8 n)
Fetch n bits from x, started at bit s.
Definition: bitmath_func.hpp:32
ToPercent8
static uint ToPercent8(uint i)
Converts a "fract" value 0..255 to "percent" value 0..100.
Definition: math_func.hpp:227
ScaleFontTrad
static int ScaleFontTrad(int value)
Scale traditional pixel dimensions to Font zoom level.
Definition: zoom_func.h:96
IndustryCargoesWindow::ComputeIndustryDisplay
void ComputeIndustryDisplay(IndustryType displayed_it)
Compute what and where to display for industry type it.
Definition: industry_gui.cpp:2755
CargoesField::other_produced
CargoID other_produced[MAX_CARGOES]
Cargoes produced but not used in this figure.
Definition: industry_gui.cpp:1929
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:662
command_func.h
Window::DrawSortButtonState
void DrawSortButtonState(int widget, SortButtonState state) const
Draw a sort button's up or down arrow symbol.
Definition: widget.cpp:670
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:1139
GUIList::Sort
bool Sort(Comp compare)
Sort the list.
Definition: sortlist_type.h:247
IndustryDirectoryWindow::GetCargoTransportedPercentsIfValid
static int GetCargoTransportedPercentsIfValid(const Industry *i, uint id)
Returns percents of cargo transported if industry produces this cargo, else -1.
Definition: industry_gui.cpp:1437
Window::GetScrollbar
const Scrollbar * GetScrollbar(uint widnum) const
Return the Scrollbar to a widget index.
Definition: window.cpp:320
WDF_CONSTRUCTION
@ WDF_CONSTRUCTION
This window is used for construction; close it whenever changing company.
Definition: window_gui.h:210
dropdown_func.h
PC_YELLOW
static const uint8 PC_YELLOW
Yellow palette colour.
Definition: gfx_func.h:205
WID_IC_NOTIFY
@ WID_IC_NOTIFY
Row of buttons at the bottom.
Definition: industry_widget.h:47
IndustryViewWindow::production_offset_y
int production_offset_y
The offset of the production texts/buttons.
Definition: industry_gui.cpp:821
smallmap_gui.h
GameCreationSettings::landscape
byte landscape
the landscape we're currently in
Definition: settings_type.h:321
CFT_HEADER
@ CFT_HEADER
Header text.
Definition: industry_gui.cpp:1901
Backup
Class to backup a specific variable and restore it later.
Definition: backup_type.hpp:21
IndustryDirectoryWindow::BuildSortIndustriesList
void BuildSortIndustriesList()
(Re)Build industries list
Definition: industry_gui.cpp:1404
Window::ReInit
void ReInit(int rx=0, int ry=0)
Re-initialize a window, and optionally change its size.
Definition: window.cpp:1004
company_base.h
IndustryCargoesWindow::ind_textsize
Dimension ind_textsize
Size to hold any industry type text, as well as STR_INDUSTRY_CARGOES_SELECT_INDUSTRY.
Definition: industry_gui.cpp:2486
GUIList::SetFilterType
void SetFilterType(uint8 n_type)
Set the filtertype of the list.
Definition: sortlist_type.h:155
WD_MATRIX_TOP
@ WD_MATRIX_TOP
Offset at top of a matrix cell.
Definition: window_gui.h:80
BuildIndustryWindow::OnResize
void OnResize() override
Called after the window got resized.
Definition: industry_gui.cpp:692
CargoesField::bottom_end
byte bottom_end
Stop at the bottom of the vertical cargoes.
Definition: industry_gui.cpp:1938
HouseSpec::accepts_cargo
CargoID accepts_cargo[HOUSE_NUM_ACCEPTS]
input cargo slots
Definition: house.h:108
NWidgetViewport
Nested widget to display a viewport in a window.
Definition: widget_type.h:615
WWT_CAPTION
@ WWT_CAPTION
Window caption (window title between closebox and stickybox)
Definition: widget_type.h:59
CMD_BUILD_INDUSTRY
@ CMD_BUILD_INDUSTRY
build a new industry
Definition: command_type.h:232
IndustryViewWindow::OnResize
void OnResize() override
Called after the window got resized.
Definition: industry_gui.cpp:1106
HZ_SUBTROPIC
@ HZ_SUBTROPIC
14 4000 can appear in subtropical climate
Definition: house.h:82
PRODLEVEL_CLOSURE
@ PRODLEVEL_CLOSURE
signal set to actually close the industry
Definition: industry.h:30
IndustrySpec::GetConstructionCost
Money GetConstructionCost() const
Get the cost for constructing this industry.
Definition: industry_cmd.cpp:3000
CSD_CARGO
@ CSD_CARGO
Display the cargo without sub-type (cb37 result 401).
Definition: industry_gui.cpp:61
IndustryViewWindow::EA_MULTIPLIER
@ EA_MULTIPLIER
Allow changing the production multiplier.
Definition: industry_gui.cpp:805
WF_DISABLE_VP_SCROLL
@ WF_DISABLE_VP_SCROLL
Window does not do autoscroll,.
Definition: window_gui.h:241
GUIList
List template of 'things' T to sort in a GUI.
Definition: sortlist_type.h:46
Window::viewport
ViewportData * viewport
Pointer to viewport data, if present.
Definition: window_gui.h:321
IndustryCargoesWindow::OnDropdownSelect
void OnDropdownSelect(int widget, int index) override
A dropdown option associated to this window has been selected.
Definition: industry_gui.cpp:3078
CargoesRow
A single row of CargoesField.
Definition: industry_gui.cpp:2342
IndustryViewWindow::IsNewGRFInspectable
bool IsNewGRFInspectable() const override
Is the data related to this window NewGRF inspectable?
Definition: industry_gui.cpp:1154
DropDownList
std::vector< std::unique_ptr< const DropDownListItem > > DropDownList
A drop down list is a collection of drop down list items.
Definition: dropdown_type.h:99
WID_IV_GOTO
@ WID_IV_GOTO
Goto button.
Definition: industry_widget.h:30
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
WC_INDUSTRY_VIEW
@ WC_INDUSTRY_VIEW
Industry view; Window numbers:
Definition: window_type.h:355
Window::CreateNestedTree
void CreateNestedTree(bool fill_nested=true)
Perform the first part of the initialization of a nested widget tree.
Definition: window.cpp:1760
CargoesField::cargo_stub
static Dimension cargo_stub
Dimensions of cargo stub (unconnected cargo line.)
Definition: industry_gui.cpp:1915
MakeClear
static void MakeClear(TileIndex t, ClearGround g, uint density)
Make a clear tile.
Definition: clear_map.h:259
Pool::PoolItem::index
Tindex index
Index of this pool item.
Definition: pool_type.hpp:235
CargoSpec::Get
static CargoSpec * Get(size_t index)
Retrieve cargo details for the given cargo ID.
Definition: cargotype.h:119
NWID_HORIZONTAL
@ NWID_HORIZONTAL
Horizontal container.
Definition: widget_type.h:73
_build_industry_desc
static WindowDesc _build_industry_desc(WDP_AUTO, "build_industry", 170, 212, WC_BUILD_INDUSTRY, WC_NONE, WDF_CONSTRUCTION, _nested_build_industry_widgets, lengthof(_nested_build_industry_widgets))
Window definition of the dynamic place industries gui.
IndustryCargoesWindow::PlaceIndustry
void PlaceIndustry(int row, int col, IndustryType it)
Place an industry in the fields.
Definition: industry_gui.cpp:2728
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
HouseSpec::enabled
bool enabled
the house is available to build (true by default, but can be disabled by newgrf)
Definition: house.h:111
ClampU
static uint ClampU(const uint a, const uint min, const uint max)
Clamp an unsigned integer between an interval.
Definition: math_func.hpp:122
SortIndustryTypes
void SortIndustryTypes()
Initialize the list of sorted industry types.
Definition: industry_gui.cpp:208
GameSettings::difficulty
DifficultySettings difficulty
settings related to the difficulty
Definition: settings_type.h:576
HasBit
static bool HasBit(const T x, const uint8 y)
Checks if a bit in a value is set.
Definition: bitmath_func.hpp:103
CLEAR_GRASS
@ CLEAR_GRASS
0-3
Definition: clear_map.h:20
Industry::last_month_production
uint16 last_month_production[INDUSTRY_NUM_OUTPUTS]
total units produced per cargo in the last full month
Definition: industry.h:79
WID_DPI_MATRIX_WIDGET
@ WID_DPI_MATRIX_WIDGET
Matrix of the industries.
Definition: industry_widget.h:18
IndustryCargoesWindow::ShortenCargoColumn
void ShortenCargoColumn(int column, int top, int bottom)
Shorten the cargo column to just the part between industries.
Definition: industry_gui.cpp:2707
CST_DIR
@ CST_DIR
Industry-directory window.
Definition: industry_gui.cpp:56
CargoesField::legend
static Dimension legend
Dimension of the legend blob.
Definition: industry_gui.cpp:1911
Cheats::setup_prod
Cheat setup_prod
setup raw-material production in game
Definition: cheat_type.h:33
Scrollbar::SetCount
void SetCount(int num)
Sets the number of elements in the list.
Definition: widget_type.h:710
_ctrl_pressed
bool _ctrl_pressed
Is Ctrl pressed?
Definition: gfx.cpp:36
SND_15_BEEP
@ SND_15_BEEP
19 == 0x13 GUI button click
Definition: sound_type.h:58
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:993
WC_BUILD_INDUSTRY
@ WC_BUILD_INDUSTRY
Build industry; Window numbers:
Definition: window_type.h:427
zoom_func.h
TILE_SIZE
static const uint TILE_SIZE
Tile size in world coordinates.
Definition: tile_type.h:13
Window::RaiseButtons
void RaiseButtons(bool autoraise=false)
Raise the buttons of the window.
Definition: window.cpp:584
WD_FRAMETEXT_TOP
@ WD_FRAMETEXT_TOP
Top offset of the text of the frame.
Definition: window_gui.h:74
StartTextRefStackUsage
void StartTextRefStackUsage(const GRFFile *grffile, byte numEntries, const uint32 *values)
Start using the TTDP compatible string code parsing.
Definition: newgrf_text.cpp:821
Industry::RecomputeProductionMultipliers
void RecomputeProductionMultipliers()
Recompute production_rate for current prod_level.
Definition: industry_cmd.cpp:2378
IndustryDirectoryWindow::IndustryTypeSorter
static bool IndustryTypeSorter(const Industry *const &a, const Industry *const &b)
Sort industries by type and name.
Definition: industry_gui.cpp:1486
_settings_client
ClientSettings _settings_client
The current settings for this game.
Definition: settings.cpp:52
CargoesField::ConnectCargo
int ConnectCargo(CargoID cargo, bool producer)
Connect a cargo from an industry to the CFT_CARGO column.
Definition: industry_gui.cpp:1975
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:643
CargoSpec
Specification of a cargo type.
Definition: cargotype.h:57
SZSP_HORIZONTAL
@ SZSP_HORIZONTAL
Display plane with zero size vertically, and filling and resizing horizontally.
Definition: widget_type.h:422
newgrf_debug.h
town.h
TileY
static uint TileY(TileIndex tile)
Get the Y component of a tile.
Definition: map_func.h:215
IndustryDirectoryWindow::OnDropdownSelect
void OnDropdownSelect(int widget, int index) override
A dropdown option associated to this window has been selected.
Definition: industry_gui.cpp:1756
IndustryViewWindow::ShowNewGRFInspectWindow
void ShowNewGRFInspectWindow() const override
Show the NewGRF inspection window.
Definition: industry_gui.cpp:1159
CBM_IND_PRODUCTION_256_TICKS
@ CBM_IND_PRODUCTION_256_TICKS
call production callback every 256 ticks
Definition: newgrf_callbacks.h:350
WindowNumber
int32 WindowNumber
Number to differentiate different windows of the same class.
Definition: window_type.h:711
CargoesField::CARGO_LINE_COLOUR
static const int CARGO_LINE_COLOUR
Line colour around the cargo.
Definition: industry_gui.cpp:1918
IndustryCargoesWindow::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: industry_gui.cpp:2565
StopTextRefStackUsage
void StopTextRefStackUsage()
Stop using the TTDP compatible string code parsing.
Definition: newgrf_text.cpp:838
SA_RIGHT
@ SA_RIGHT
Right align the text (must be a single bit).
Definition: gfx_type.h:330
BuildIndustryWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: industry_gui.cpp:509
GetAllCargoSuffixes
static void GetAllCargoSuffixes(CargoSuffixInOut use_input, CargoSuffixType cst, const Industry *ind, IndustryType ind_type, const IndustrySpec *indspec, const TC &cargoes, TS &suffixes)
Gets all strings to display after the cargoes of industries (using callback 37)
Definition: industry_gui.cpp:148
clear_map.h
PRODLEVEL_DEFAULT
@ PRODLEVEL_DEFAULT
default level set when the industry is created
Definition: industry.h:32
BuildIndustryWindow::selected_index
int selected_index
index of the element in the matrix
Definition: industry_gui.cpp:281
Industry
Defines the internal data of a functional industry.
Definition: industry.h:66
GUIList::SetSortType
void SetSortType(uint8 n_type)
Set the sorttype of the list.
Definition: sortlist_type.h:103
Scrollbar::GetScrolledRowFromWidget
int GetScrolledRowFromWidget(int clickpos, const Window *const w, int widget, int padding=0) const
Compute the row of a scrolled widget that a user clicked in.
Definition: widget.cpp:2098
Window::HandleButtonClick
void HandleButtonClick(byte widget)
Do all things to make a button look clicked and mark it to be unclicked in a few ticks.
Definition: window.cpp:646
Scrollbar
Scrollbar data structure.
Definition: widget_type.h:629
CargoesField::DrawHorConnection
static void DrawHorConnection(int left, int right, int top, const CargoSpec *csp)
Draw a horizontal cargo connection.
Definition: industry_gui.cpp:2312
WD_FRAMETEXT_LEFT
@ WD_FRAMETEXT_LEFT
Left offset of the text of the frame.
Definition: window_gui.h:72
CFT_INDUSTRY
@ CFT_INDUSTRY
Display industry.
Definition: industry_gui.cpp:1898
MAX_CARGOES
static const uint MAX_CARGOES
Maximum number of cargoes carried in a CFT_CARGO field in CargoesField.
Definition: industry_gui.cpp:1904
_industry_cargoes_desc
static WindowDesc _industry_cargoes_desc(WDP_AUTO, "industry_cargoes", 300, 210, WC_INDUSTRY_CARGOES, WC_NONE, 0, _nested_industry_cargoes_widgets, lengthof(_nested_industry_cargoes_widgets))
Window description for the industry cargoes window.
CargoesField::cargo
struct CargoesField::@17::@19 cargo
Cargo data (for CFT_CARGO).
CommandCost::GetErrorMessage
StringID GetErrorMessage() const
Returns the error message of a command.
Definition: command_type.h:140
IndustryCargoesWindow::ind_cargo
uint ind_cargo
If less than NUM_INDUSTRYTYPES, an industry type, else a cargo id + NUM_INDUSTRYTYPES.
Definition: industry_gui.cpp:2484
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:196
CargoFilter
static bool CDECL CargoFilter(const Industry *const *industry, const std::pair< CargoID, CargoID > &cargoes)
Cargo filter functions.
Definition: industry_gui.cpp:1256
NWidgetPart
Partial widget specification to allow NWidgets to be written nested.
Definition: widget_type.h:971
genworld.h
SetDataTip
static NWidgetPart SetDataTip(uint32 data, StringID tip)
Widget part function for setting the data and tooltip.
Definition: widget_type.h:1107
CBM_IND_FUND_MORE_TEXT
@ CBM_IND_FUND_MORE_TEXT
additional text in fund window
Definition: newgrf_callbacks.h:355
IndustryDirectoryWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: industry_gui.cpp:1650
IndustryCargoesWindow::type
CargoesFieldType type
Type of field.
Definition: industry_gui.cpp:2585
BuildIndustryWindow::OnTimeout
void OnTimeout() override
Called when this window's timeout has been reached.
Definition: industry_gui.cpp:749
CommandCost::Succeeded
bool Succeeded() const
Did this command succeed?
Definition: command_type.h:150
GetStringBoundingBox
Dimension GetStringBoundingBox(const char *str, FontSize start_fontsize)
Return the string dimension in pixels.
Definition: gfx.cpp:889
GUIList::SetFilterFuncs
void SetFilterFuncs(FilterFunction *const *n_funcs)
Hand the array of filter function pointers to the sort list.
Definition: sortlist_type.h:341
textbuf_gui.h
CargoesField::GetCargoBase
int GetCargoBase(int xpos) const
For a CFT_CARGO, compute the left position of the left-most vertical cargo connection.
Definition: industry_gui.cpp:2073
TileX
static uint TileX(TileIndex tile)
Get the X component of a tile.
Definition: map_func.h:205
CBID_INDUSTRY_FUND_MORE_TEXT
@ CBID_INDUSTRY_FUND_MORE_TEXT
Called to determine more text in the fund industry window.
Definition: newgrf_callbacks.h:165
BuildIndustryWindow::enabled
bool enabled[NUM_INDUSTRYTYPES+1]
availability state, coming from CBID_INDUSTRY_PROBABILITY (if ever)
Definition: industry_gui.cpp:285
ShowErrorMessage
void ShowErrorMessage(StringID summary_msg, StringID detailed_msg, WarningLevel wl, int x=0, int y=0, const GRFFile *textref_stack_grffile=nullptr, uint textref_stack_size=0, const uint32 *textref_stack=nullptr)
Display an error message in a window.
Definition: error_gui.cpp:383
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:788
WID_ID_FILTER_BY_PROD_CARGO
@ WID_ID_FILTER_BY_PROD_CARGO
Produced cargo filter dropdown list.
Definition: industry_widget.h:39
GameSettings::game_creation
GameCreationSettings game_creation
settings used during the creation of a game (map)
Definition: settings_type.h:577
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
IndustryDirectoryWindow::OnInit
void OnInit() override
Notification that the nested widget tree gets initialized.
Definition: industry_gui.cpp:1628
GetIndustryProbabilityCallback
uint32 GetIndustryProbabilityCallback(IndustryType type, IndustryAvailabilityCallType creation_type, uint32 default_prob)
Check with callback CBID_INDUSTRY_PROBABILITY whether the industry can be built.
Definition: newgrf_industries.cpp:569
WindowDesc
High level window description.
Definition: window_gui.h:168
WID_IV_CAPTION
@ WID_IV_CAPTION
Caption of the window.
Definition: industry_widget.h:27
CFT_CARGO
@ CFT_CARGO
Display cargo connections.
Definition: industry_gui.cpp:1899
IndustryDirectoryWindow::cargo_filter
CargoID cargo_filter[NUM_CARGO+2]
Available cargo filters; CargoID or CF_ANY or CF_NONE.
Definition: industry_gui.cpp:1320
IndustryCargoesWindow::OnResize
void OnResize() override
Called after the window got resized.
Definition: industry_gui.cpp:3135
CargoesField::CargoLabelClickedAt
CargoID CargoLabelClickedAt(Point pt) const
Decide what cargo the user clicked in the cargo label field.
Definition: industry_gui.cpp:2289
IndustryDirectoryWindow::SorterType::IDW_SORT_BY_TRANSPORTED
@ IDW_SORT_BY_TRANSPORTED
Sorter type to sort by transported percentage.
CcBuildIndustry
void CcBuildIndustry(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2, uint32 cmd)
Command callback.
Definition: industry_gui.cpp:227
GetRawClearGround
static ClearGround GetRawClearGround(TileIndex t)
Get the type of clear tile but never return CLEAR_SNOW.
Definition: clear_map.h:47
CargoSuffixDisplay
CargoSuffixDisplay
Ways of displaying the cargo.
Definition: industry_gui.cpp:60
IndustryCargoesWindow
Window displaying the cargo connections around an industry (or cargo).
Definition: industry_gui.cpp:2478
GUIList::IsDescSortOrder
bool IsDescSortOrder() const
Check if the sort order is descending.
Definition: sortlist_type.h:223
IndustrySpec::IsRawIndustry
bool IsRawIndustry() const
Is an industry with the spec a raw industry?
Definition: industry_cmd.cpp:2980
WDP_AUTO
@ WDP_AUTO
Find a place automatically.
Definition: window_gui.h:156
Listing
Data structure describing how to show the list (what sort direction and criteria).
Definition: sortlist_type.h:30
GUIList::SetFilterState
void SetFilterState(bool state)
Enable or disable the filter.
Definition: sortlist_type.h:302
MapSize
static uint MapSize()
Get the size of the map.
Definition: map_func.h:92
IndustryDirectoryWindow::IndustryTransportedCargoSorter
static bool IndustryTransportedCargoSorter(const Industry *const &a, const Industry *const &b)
Sort industries by transported cargo and name.
Definition: industry_gui.cpp:1518
Window::resize
ResizeInfo resize
Resize information.
Definition: window_gui.h:317
CommandCost
Common return value for all commands.
Definition: command_type.h:23
Industry::location
TileArea location
Location of the industry.
Definition: industry.h:67
GuiShowTooltips
void GuiShowTooltips(Window *parent, StringID str, uint paramcount, const uint64 params[], TooltipCloseCondition close_tooltip)
Shows a tooltip.
Definition: misc_gui.cpp:768
IndustryViewWindow::editable
Editability editable
Mode for changing production.
Definition: industry_gui.cpp:817
NWidgetViewport::UpdateViewportCoordinates
void UpdateViewportCoordinates(Window *w)
Update the position and size of the viewport (after eg a resize).
Definition: widget.cpp:2076
tilehighlight_func.h
ClientSettings::sound
SoundSettings sound
sound effect settings
Definition: settings_type.h:597
NUM_HOUSES
static const HouseID NUM_HOUSES
Total number of houses.
Definition: house.h:29
DoCommandP
bool DoCommandP(const CommandContainer *container, bool my_cmd)
Shortcut for the long DoCommandP when having a container with the data.
Definition: command.cpp:541
IndustryCargoesWindow::OnInit
void OnInit() override
Notification that the nested widget tree gets initialized.
Definition: industry_gui.cpp:2498
CargoesRow::MakeCargoLabel
void MakeCargoLabel(int column, bool accepting)
Construct a CFT_CARGO_LABEL field.
Definition: industry_gui.cpp:2386
Window::InitNested
void InitNested(WindowNumber number=0)
Perform complete initialization of the Window with nested widgets, to allow use.
Definition: window.cpp:1789
NWID_VIEWPORT
@ NWID_VIEWPORT
Nested widget containing a viewport.
Definition: widget_type.h:79
Industry::type
IndustryType type
type of industry.
Definition: industry.h:83
Window::height
int height
Height of the window (number of pixels down in y direction)
Definition: window_gui.h:315
IndustryViewWindow::IL_NONE
@ IL_NONE
No line.
Definition: industry_gui.cpp:811
CargoSuffix::text
char text[512]
Cargo suffix text.
Definition: industry_gui.cpp:70
GUIList< const Industry *, const std::pair< CargoID, CargoID > & >::SortFunction
bool SortFunction(const const Industry * &, const const Industry * &)
Signature of sort function.
Definition: sortlist_type.h:48
CargoSpec::IsValid
bool IsValid() const
Tests for validity of this cargospec.
Definition: cargotype.h:100
Window::SetDirty
void SetDirty() const
Mark entire window as dirty (in need of re-paint)
Definition: window.cpp:993
IndustryDirectoryWindow::OnResize
void OnResize() override
Called after the window got resized.
Definition: industry_gui.cpp:1781
GUIList::SetListing
void SetListing(Listing l)
Import sort conditions.
Definition: sortlist_type.h:130
WC_INDUSTRY_DIRECTORY
@ WC_INDUSTRY_DIRECTORY
Industry directory; Window numbers:
Definition: window_type.h:258
WD_FRAMERECT_LEFT
@ WD_FRAMERECT_LEFT
Offset at left to draw the frame rectangular area.
Definition: window_gui.h:62
IndustryViewWindow::OnPaint
void OnPaint() override
The window must be repainted.
Definition: industry_gui.cpp:840
ScrollWindowToTile
bool ScrollWindowToTile(TileIndex tile, Window *w, bool instant)
Scrolls the viewport in a window to a given location.
Definition: viewport.cpp:2434
CargoesField::industry_width
static int industry_width
Width of an industry field.
Definition: industry_gui.cpp:1922
_cheats
Cheats _cheats
All the cheats.
Definition: cheat.cpp:16
HZ_TEMP
@ HZ_TEMP
12 1000 can appear in temperate climate
Definition: house.h:80
IndustryDirectoryWindow
The list of industries.
Definition: industry_gui.cpp:1308
IsInsideBS
static bool IsInsideBS(const T x, const size_t base, const size_t size)
Checks if a value is between a window started at some base point.
Definition: math_func.hpp:188
IndustrySpec::layouts
std::vector< IndustryTileLayout > layouts
List of possible tile layouts for the industry.
Definition: industrytype.h:108
CargoesField::BLOB_DISTANCE
static const int BLOB_DISTANCE
Distance of the industry legend colour from the edge of the industry box.
Definition: industry_gui.cpp:1909
IsCargoIDValid
bool IsCargoIDValid(CargoID t)
Test whether cargo type is not CT_INVALID.
Definition: cargo_type.h:75
IndustrySpec::accepts_cargo
CargoID accepts_cargo[INDUSTRY_NUM_INPUTS]
16 accepted cargoes.
Definition: industrytype.h:121
CargoesField::MakeIndustry
void MakeIndustry(IndustryType ind_type)
Make an industry type field.
Definition: industry_gui.cpp:1961
Industry::produced_cargo
CargoID produced_cargo[INDUSTRY_NUM_OUTPUTS]
16 production cargo slots
Definition: industry.h:70
IndustryViewWindow::OnTimeout
void OnTimeout() override
Called when this window's timeout has been reached.
Definition: industry_gui.cpp:1099
WD_FRAMERECT_RIGHT
@ WD_FRAMERECT_RIGHT
Offset at right to draw the frame rectangular area.
Definition: window_gui.h:63
CargoesField
Data about a single field in the IndustryCargoesWindow panel.
Definition: industry_gui.cpp:1907
WD_FRAMERECT_BOTTOM
@ WD_FRAMERECT_BOTTOM
Offset at bottom to draw the frame rectangular area.
Definition: window_gui.h:65
WWT_PUSHTXTBTN
@ WWT_PUSHTXTBTN
Normal push-button (no toggle button) with text caption.
Definition: widget_type.h:104
CargoesField::cargoes
CargoID cargoes[MAX_CARGOES]
Cargoes to display (or INVALID_CARGO).
Definition: industry_gui.cpp:1941
Industry::incoming_cargo_waiting
uint16 incoming_cargo_waiting[INDUSTRY_NUM_INPUTS]
incoming cargo waiting to be processed
Definition: industry.h:72
NWidgetBase
Baseclass for nested widgets.
Definition: widget_type.h:126
CargoSuffix::display
CargoSuffixDisplay display
How to display the cargo and text.
Definition: industry_gui.cpp:69
WD_FRAMETEXT_BOTTOM
@ WD_FRAMETEXT_BOTTOM
Bottom offset of the text of the frame.
Definition: window_gui.h:75
IndustryDirectoryWindow::OnPaint
void OnPaint() override
The window must be repainted.
Definition: industry_gui.cpp:1786
BuildIndustryWindow::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: industry_gui.cpp:633
ShowDropDownList
void ShowDropDownList(Window *w, DropDownList &&list, int selected, int button, uint width, bool auto_width, bool instant_close)
Show a drop down list.
Definition: dropdown.cpp:443
WID_DPI_INFOPANEL
@ WID_DPI_INFOPANEL
Info panel about the industry.
Definition: industry_widget.h:20
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:1125
ConstructionSettings::raw_industry_construction
uint8 raw_industry_construction
type of (raw) industry construction (none, "normal", prospecting)
Definition: settings_type.h:344
dropdown_type.h
WID_DPI_CREATE_RANDOM_INDUSTRIES_WIDGET
@ WID_DPI_CREATE_RANDOM_INDUSTRIES_WIDGET
Create random industries button.
Definition: industry_widget.h:17
IndustryDirectoryWindow::GetIndustryString
StringID GetIndustryString(const Industry *i) const
Get the StringID to draw and set the appropriate DParams.
Definition: industry_gui.cpp:1529
_settings_game
GameSettings _settings_game
Game settings of a running game or the scenario editor.
Definition: settings.cpp:53
ShowIndustryCargoesWindow
static void ShowIndustryCargoesWindow(IndustryType id)
Open the industry and cargoes window.
Definition: industry_gui.cpp:3148
ZOOM_LVL_INDUSTRY
@ ZOOM_LVL_INDUSTRY
Default zoom level for the industry view.
Definition: zoom_type.h:37
CargoesField::max_cargoes
static uint max_cargoes
Largest number of cargoes actually on any industry.
Definition: industry_gui.cpp:1923
Window::SetWidgetDisabledState
void SetWidgetDisabledState(byte widget_index, bool disab_stat)
Sets the enabled/disabled status of a widget.
Definition: window_gui.h:386
WL_INFO
@ WL_INFO
Used for DoCommand-like (and some non-fatal AI GUI) errors/information.
Definition: error.h:22
_local_company
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
Definition: company_cmd.cpp:46
PRODLEVEL_MAXIMUM
@ PRODLEVEL_MAXIMUM
the industry is running at full speed
Definition: industry.h:33
_nested_industry_view_widgets
static const NWidgetPart _nested_industry_view_widgets[]
Widget definition of the view industry gui.
Definition: industry_gui.cpp:1178
DropDownListStringItem
Common string list item.
Definition: dropdown_type.h:39
industry.h
safeguards.h
sortlist_type.h
ShowQueryString
void ShowQueryString(StringID str, StringID caption, uint maxsize, Window *parent, CharSetFilter afilter, QueryStringFlags flags)
Show a query popup window with a textbox in it.
Definition: misc_gui.cpp:1119
HandlePlacePushButton
bool HandlePlacePushButton(Window *w, int widget, CursorID cursor, HighLightStyle mode)
This code is shared for the majority of the pushbuttons.
Definition: main_gui.cpp:61
Window::left
int left
x position of left edge of the window
Definition: window_gui.h:312
IndustryDirectoryWindow::OnInvalidateData
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: industry_gui.cpp:1803
CST_VIEW
@ CST_VIEW
View-industry window.
Definition: industry_gui.cpp:55
Window::flags
WindowFlags flags
Window flags.
Definition: window_gui.h:305
BuildIndustryWindow::legend
Dimension legend
Dimension of the legend 'blob'.
Definition: industry_gui.cpp:287
CargoesRow::ConnectIndustryProduced
void ConnectIndustryProduced(int column)
Connect industry production cargoes to the cargo column after it.
Definition: industry_gui.cpp:2349
GetGRFStringID
StringID GetGRFStringID(uint32 grfid, StringID stringid)
Returns the index for this stringid associated with its grfID.
Definition: newgrf_text.cpp:601
StrEmpty
static bool StrEmpty(const char *s)
Check if a string buffer is empty.
Definition: string_func.h:64
CargoesField::HasConnection
bool HasConnection()
Does this CFT_CARGO field have a horizontal connection?
Definition: industry_gui.cpp:2004
DifficultySettings::industry_density
byte industry_density
The industry density.
Definition: settings_type.h:78
_displayed_industries
std::bitset< NUM_INDUSTRYTYPES > _displayed_industries
Communication from the industry chain window to the smallmap window about what industries to display.
Definition: industry_gui.cpp:50
_networking
bool _networking
are we in networking mode?
Definition: network.cpp:57
CargoesField::header
StringID header
Header text (for CFT_HEADER).
Definition: industry_gui.cpp:1944
CargoesField::vertical_cargoes
CargoID vertical_cargoes[MAX_CARGOES]
Cargoes running from top to bottom (cargo ID or INVALID_CARGO).
Definition: industry_gui.cpp:1933
IndustryDirectoryWindow::cargo_filter_texts
StringID cargo_filter_texts[NUM_CARGO+3]
Texts for filter_cargo, terminated by INVALID_STRING_ID.
Definition: industry_gui.cpp:1321
newgrf_text.h
IndustryViewWindow::OnInvalidateData
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: industry_gui.cpp:1142
CargoesField::industry
struct CargoesField::@17::@18 industry
Industry data (for CFT_INDUSTRY).
CBID_INDUSTRY_CARGO_SUFFIX
@ CBID_INDUSTRY_CARGO_SUFFIX
Called to determine text to display after cargo name.
Definition: newgrf_callbacks.h:162
IndustryCargoesWindow::CalculatePositionInWidget
bool CalculatePositionInWidget(Point pt, Point *fieldxy, Point *xy)
Calculate in which field was clicked, and within the field, at what position.
Definition: industry_gui.cpp:2967
Point
Coordinates of a point in 2D.
Definition: geometry_type.hpp:21
error.h
IndustryCargoesWindow::VERT_TEXT_PADDING
static const int VERT_TEXT_PADDING
Vertical padding around the industry type text.
Definition: industry_gui.cpp:2479
CFT_SMALL_EMPTY
@ CFT_SMALL_EMPTY
Empty small field (for the header).
Definition: industry_gui.cpp:1897
ShowDropDownMenu
void ShowDropDownMenu(Window *w, const StringID *strings, int selected, int button, uint32 disabled_mask, uint32 hidden_mask, uint width)
Show a dropdown menu window near a widget of the parent window.
Definition: dropdown.cpp:480
SETTING_BUTTON_WIDTH
#define SETTING_BUTTON_WIDTH
Width of setting buttons.
Definition: settings_gui.h:17
IndustryViewWindow::OnQueryTextFinished
void OnQueryTextFinished(char *str) override
The query window opened from this window has closed.
Definition: industry_gui.cpp:1116
CargoesField::Draw
void Draw(int xpos, int ypos) const
Draw the field.
Definition: industry_gui.cpp:2086
IndustryViewWindow::Editability
Editability
Modes for changing production.
Definition: industry_gui.cpp:803
WID_IC_SCROLLBAR
@ WID_IC_SCROLLBAR
Scrollbar of the panel.
Definition: industry_widget.h:49
WD_FRAMETEXT_RIGHT
@ WD_FRAMETEXT_RIGHT
Right offset of the text of the frame.
Definition: window_gui.h:73
stdafx.h
WID_DPI_REMOVE_ALL_INDUSTRIES_WIDGET
@ WID_DPI_REMOVE_ALL_INDUSTRIES_WIDGET
Remove all industries button.
Definition: industry_widget.h:16
PC_BLACK
static const uint8 PC_BLACK
Black palette colour.
Definition: gfx_func.h:192
DrawArrowButtons
void DrawArrowButtons(int x, int y, Colours button_colour, byte state, bool clickable_left, bool clickable_right)
Draw [<][>] boxes.
Definition: settings_gui.cpp:2503
Window::window_number
WindowNumber window_number
Window number within the window class.
Definition: window_gui.h:307
IndustryCargoesWindow::SetStringParameters
void SetStringParameters(int widget) const override
Initialize string parameters for a widget.
Definition: industry_gui.cpp:2586
RoundDivSU
static int RoundDivSU(int a, uint b)
Computes round(a / b) for signed a and unsigned b.
Definition: math_func.hpp:276
IndustryCargoesWindow::OnInvalidateData
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: industry_gui.cpp:2903
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:117
GetCargoSuffix
static void GetCargoSuffix(uint cargo, CargoSuffixType cst, const Industry *ind, IndustryType ind_type, const IndustrySpec *indspec, CargoSuffix &suffix)
Gets the string to display after the cargo name (using callback 37)
Definition: industry_gui.cpp:84
ResizeInfo::step_height
uint step_height
Step-size of height resize changes.
Definition: window_gui.h:220
IndustrySpec
Defines the data structure for constructing industry.
Definition: industrytype.h:107
GUIList::ToggleSortOrder
void ToggleSortOrder()
Toggle the sort order Since that is the worst condition for the sort function reverse the list here.
Definition: sortlist_type.h:233
IndustryDirectoryWindow::IndustryNameSorter
static bool IndustryNameSorter(const Industry *const &a, const Industry *const &b)
Sort industries by name.
Definition: industry_gui.cpp:1478
Cheat::value
bool value
tells if the bool cheat is active or not
Definition: cheat_type.h:18
WID_IC_CAPTION
@ WID_IC_CAPTION
Caption of the window.
Definition: industry_widget.h:46
Window::InvalidateData
void InvalidateData(int data=0, bool gui_scope=true)
Mark this window's data as invalid (in need of re-computing)
Definition: window.cpp:3174
CFT_CARGO_LABEL
@ CFT_CARGO_LABEL
Display cargo labels.
Definition: industry_gui.cpp:1900
CargoesField::normal_height
static int normal_height
Height of the non-header rows.
Definition: industry_gui.cpp:1920
CS_ALPHANUMERAL
@ CS_ALPHANUMERAL
Both numeric and alphabetic and spaces and stuff.
Definition: string_type.h:27
viewport_func.h
NWidgetBase::current_y
uint current_y
Current vertical size (after resizing).
Definition: widget_type.h:187
Industry::text
std::string text
General text with additional information.
Definition: industry.h:101
WC_NONE
@ WC_NONE
No window, redirects to WC_MAIN_WINDOW.
Definition: window_type.h:37
CargoesField::small_height
static int small_height
Height of the header row.
Definition: industry_gui.cpp:1920
IACT_USERCREATION
@ IACT_USERCREATION
from the Fund/build window
Definition: newgrf_industries.h:85
SA_HOR_CENTER
@ SA_HOR_CENTER
Horizontally center the text.
Definition: gfx_type.h:329
IsTileType
static bool IsTileType(TileIndex tile, TileType type)
Checks if a tile is a given tiletype.
Definition: tile_map.h:150
OrthogonalTileArea::GetCenterTile
TileIndex GetCenterTile() const
Get the center tile.
Definition: tilearea_type.h:59
IndustryViewWindow::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: industry_gui.cpp:994
IndustryDirectoryWindow::SorterType
SorterType
Definition: industry_gui.cpp:1326
HouseSpec::cargo_acceptance
byte cargo_acceptance[HOUSE_NUM_ACCEPTS]
acceptance level for the cargo slots
Definition: house.h:107
NWID_VERTICAL
@ NWID_VERTICAL
Vertical container.
Definition: widget_type.h:75
WID_IC_IND_DROPDOWN
@ WID_IC_IND_DROPDOWN
Select industry dropdown.
Definition: industry_widget.h:51
CFT_EMPTY
@ CFT_EMPTY
Empty field.
Definition: industry_gui.cpp:1896
FillDrawPixelInfo
bool FillDrawPixelInfo(DrawPixelInfo *n, int left, int top, int width, int height)
Set up a clipping area for only drawing into a certain area.
Definition: gfx.cpp:1770
IndustryViewWindow::SetStringParameters
void SetStringParameters(int widget) const override
Initialize string parameters for a widget.
Definition: industry_gui.cpp:984
FONT_HEIGHT_SMALL
#define FONT_HEIGHT_SMALL
Height of characters in the small (FS_SMALL) font.
Definition: gfx_func.h:164
FILLRECT_OPAQUE
@ FILLRECT_OPAQUE
Fill rectangle with a single colour.
Definition: gfx_type.h:287
CargoesField::cargo_space
static Dimension cargo_space
Dimensions of space between cargo lines.
Definition: industry_gui.cpp:1914
IndustryViewWindow
Definition: industry_gui.cpp:800
Industry::last_month_pct_transported
byte last_month_pct_transported[INDUSTRY_NUM_OUTPUTS]
percentage transported per cargo in the last full month
Definition: industry.h:78
IndustryViewWindow::EA_RATE
@ EA_RATE
Allow changing the production rates.
Definition: industry_gui.cpp:806
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
_generating_world
bool _generating_world
Whether we are generating the map or not.
Definition: genworld.cpp:61
CargoFilterSpecialType
CargoFilterSpecialType
Special cargo filter criteria.
Definition: industry_gui.cpp:1244
GUIList::NeedRebuild
bool NeedRebuild() const
Check if a rebuild is needed.
Definition: sortlist_type.h:362
_nested_industry_directory_widgets
static const NWidgetPart _nested_industry_directory_widgets[]
Widget definition of the industry directory gui.
Definition: industry_gui.cpp:1215
CargoesField::cargo_border
static Dimension cargo_border
Dimensions of border between cargo lines and industry boxes.
Definition: industry_gui.cpp:1912
IndustryDirectoryWindow::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: industry_gui.cpp:1684
IndustryTemporarilyRefusesCargo
bool IndustryTemporarilyRefusesCargo(Industry *ind, CargoID cargo_type)
Check whether an industry temporarily refuses to accept a certain cargo.
Definition: newgrf_industries.cpp:680
IndustryCargoesWindow::OnTooltip
bool OnTooltip(Point pt, int widget, TooltipCloseCondition close_cond) override
Event to display a custom tooltip.
Definition: industry_gui.cpp:3093
IndustryViewWindow::IL_MULTIPLIER
@ IL_MULTIPLIER
Production multiplier.
Definition: industry_gui.cpp:812
CargoesField::left_align
bool left_align
Align all cargo texts to the left (else align to the right).
Definition: industry_gui.cpp:1942
string_func.h
BuildIndustryWindow::MakeCargoListString
std::string MakeCargoListString(const CargoID *cargolist, const CargoSuffix *cargo_suffix, int cargolistlen, StringID prefixstr) const
Build a string of cargo names with suffixes attached.
Definition: industry_gui.cpp:353
IndustrySpec::enabled
bool enabled
entity still available (by default true).newgrf can disable it, though
Definition: industrytype.h:140
CALLBACK_FAILED
static const uint CALLBACK_FAILED
Different values for Callback result evaluations.
Definition: newgrf_callbacks.h:404
StringID
uint32 StringID
Numeric value that represents a string, independent of the selected language.
Definition: strings_type.h:16
CargoesField::cust_cargoes
CargoID cust_cargoes[MAX_CARGOES]
Cargoes leaving to the right (index in vertical_cargoes, or INVALID_CARGO).
Definition: industry_gui.cpp:1937
WWT_PUSHIMGBTN
@ WWT_PUSHIMGBTN
Normal push-button (no toggle button) with image caption.
Definition: widget_type.h:105
ShowQuery
void ShowQuery(StringID caption, StringID message, Window *parent, QueryCallbackProc *callback)
Show a modal confirmation window with standard 'yes' and 'no' buttons The window is aligned to the ce...
Definition: misc_gui.cpp:1268
WID_IC_CARGO_DROPDOWN
@ WID_IC_CARGO_DROPDOWN
Select cargo dropdown.
Definition: industry_widget.h:50
SBS_DOWN
@ SBS_DOWN
Sort ascending.
Definition: window_gui.h:226
_current_company
CompanyID _current_company
Company currently doing an action.
Definition: company_cmd.cpp:47
CargoesField::MakeCargoLabel
void MakeCargoLabel(const CargoID *cargoes, uint length, bool left_align)
Make a field displaying cargo type names.
Definition: industry_gui.cpp:2049
EndContainer
static NWidgetPart EndContainer()
Widget part function for denoting the end of a container (horizontal, vertical, WWT_FRAME,...
Definition: widget_type.h:1092
CF_ANY
@ CF_ANY
Show all industries (i.e. no filtering)
Definition: industry_gui.cpp:1245
IndustryViewWindow::IL_RATE1
@ IL_RATE1
Production rate of cargo 1.
Definition: industry_gui.cpp:813
Pool::PoolItem<&_industry_pool >::Iterate
static Pool::IterateWrapper< Titem > Iterate(size_t from=0)
Returns an iterable ensemble of all valid Titem.
Definition: pool_type.hpp:386
strings_func.h
NWID_VSCROLLBAR
@ NWID_VSCROLLBAR
Vertical scrollbar.
Definition: widget_type.h:82
WID_IC_PANEL
@ WID_IC_PANEL
Panel that shows the chain.
Definition: industry_widget.h:48
CargoesRow::columns
CargoesField columns[5]
One row of fields.
Definition: industry_gui.cpp:2343
_sorted_standard_cargo_specs
span< const CargoSpec * > _sorted_standard_cargo_specs
Standard cargo specifications sorted alphabetically by name.
Definition: cargotype.cpp:153
CSD_CARGO_AMOUNT_TEXT
@ CSD_CARGO_AMOUNT_TEXT
Display then cargo, amount, and string (cb37 result 000-3FF).
Definition: industry_gui.cpp:64
CargoesField::MakeHeader
void MakeHeader(StringID textid)
Make a header above an industry column.
Definition: industry_gui.cpp:2062
BuildIndustryWindow::OnHundredthTick
void OnHundredthTick() override
Called once every 100 (game) ticks, or once every 3s, whichever comes last.
Definition: industry_gui.cpp:732
_industry_directory_desc
static WindowDesc _industry_directory_desc(WDP_AUTO, "list_industries", 428, 190, WC_INDUSTRY_DIRECTORY, WC_NONE, 0, _nested_industry_directory_widgets, lengthof(_nested_industry_directory_widgets))
Window definition of the industry directory gui.
Window::IsShaded
bool IsShaded() const
Is window shaded currently?
Definition: window_gui.h:520
NWidgetBase::pos_x
int pos_x
Horizontal position of top-left corner of the widget in the window.
Definition: widget_type.h:189
IndustryDirectoryWindow::GetCargoTransportedSortValue
static int GetCargoTransportedSortValue(const Industry *i)
Returns value representing industry's transported cargo percentage for industry sorting.
Definition: industry_gui.cpp:1452
Pool::PoolItem<&_town_pool >::GetNumItems
static size_t GetNumItems()
Returns number of valid items in the pool.
Definition: pool_type.hpp:367
industry_widget.h
Backup::Restore
void Restore()
Restore the variable.
Definition: backup_type.hpp:112
IndustryViewWindow::editbox_line
InfoLine editbox_line
The line clicked to open the edit box.
Definition: industry_gui.cpp:818
INVALID_INDUSTRYTYPE
static const IndustryType INVALID_INDUSTRYTYPE
one above amount is considered invalid
Definition: industry_type.h:27
CargoesField::num_cargoes
byte num_cargoes
Number of cargoes.
Definition: industry_gui.cpp:1934
CST_FUND
@ CST_FUND
Fund-industry window.
Definition: industry_gui.cpp:54
IndustryCargoesWindow::cargo_textsize
Dimension cargo_textsize
Size to hold any cargo text, as well as STR_INDUSTRY_CARGOES_SELECT_CARGO.
Definition: industry_gui.cpp:2485
FONT_HEIGHT_NORMAL
#define FONT_HEIGHT_NORMAL
Height of characters in the normal (FS_NORMAL) font.
Definition: gfx_func.h:167
NWidget
static NWidgetPart NWidget(WidgetType tp, Colours col, int16 idx=-1)
Widget part function for starting a new 'real' widget.
Definition: widget_type.h:1207
CargoesFieldType
CargoesFieldType
Available types of field.
Definition: industry_gui.cpp:1895
WID_ID_INDUSTRY_LIST
@ WID_ID_INDUSTRY_LIST
Industry list.
Definition: industry_widget.h:40
BuildIndustryWindow::selected_type
IndustryType selected_type
industry corresponding to the above index
Definition: industry_gui.cpp:282
IndustryViewWindow::EA_NONE
@ EA_NONE
Not alterable.
Definition: industry_gui.cpp:804
IndustryCargoesWindow::ComputeCargoDisplay
void ComputeCargoDisplay(CargoID cid)
Compute what and where to display for cargo id cid.
Definition: industry_gui.cpp:2833
geometry_func.hpp
GUIList< const Industry *, const std::pair< CargoID, CargoID > & >::FilterFunction
bool CDECL FilterFunction(const const Industry * *, const std::pair< CargoID, CargoID > &)
Signature of filter function.
Definition: sortlist_type.h:49
OrthogonalTileArea::tile
TileIndex tile
The base tile of the area.
Definition: tilearea_type.h:19
endof
#define endof(x)
Get the end element of an fixed size array.
Definition: stdafx.h:386
InvalidateWindowClassesData
void InvalidateWindowClassesData(WindowClass cls, int data, bool gui_scope)
Mark window data of all windows of a given class as invalid (in need of re-computing) Note that by de...
Definition: window.cpp:3251
IndustryDirectoryWindow::SetCargoFilterArray
void SetCargoFilterArray()
Populate the filter list and set the cargo filter criteria.
Definition: industry_gui.cpp:1370
SetMinimalSize
static NWidgetPart SetMinimalSize(int16 x, int16 y)
Widget part function for setting the minimal size.
Definition: widget_type.h:1010
HZ_SUBARTC_ABOVE
@ HZ_SUBARTC_ABOVE
11 800 can appear in sub-arctic climate above the snow line
Definition: house.h:79
NWidgetViewport::InitializeViewport
void InitializeViewport(Window *w, uint32 follow_flags, ZoomLevel zoom)
Initialize the viewport of the window.
Definition: widget.cpp:2067
IndustryDirectoryWindow::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: industry_gui.cpp:1722
cheat_type.h
IndustryDirectoryWindow::SorterType::IDW_SORT_BY_NAME
@ IDW_SORT_BY_NAME
Sorter type to sort by name.
WWT_PANEL
@ WWT_PANEL
Simple depressed panel.
Definition: widget_type.h:48
GUIList::GetListing
Listing GetListing() const
Export current sort conditions.
Definition: sortlist_type.h:116
OWNER_NONE
@ OWNER_NONE
The tile has no ownership.
Definition: company_type.h:25
CargoesField::cargo_field_width
static int cargo_field_width
Width of a cargo field.
Definition: industry_gui.cpp:1921
NWidgetBase::resize_y
uint resize_y
Vertical resize step (0 means not resizable).
Definition: widget_type.h:179
IndustryCargoesWindow::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: industry_gui.cpp:3006
ShowSmallMap
void ShowSmallMap()
Show the smallmap window.
Definition: smallmap_gui.cpp:1866
Window::IsWidgetLowered
bool IsWidgetLowered(byte widget_index) const
Gets the lowered state of a widget.
Definition: window_gui.h:487
WID_DPI_FUND_WIDGET
@ WID_DPI_FUND_WIDGET
Fund button.
Definition: industry_widget.h:22
IndustrySpec::grf_prop
GRFFileProps grf_prop
properties related to the grf file
Definition: industrytype.h:141
CargoesField::VERT_INTER_INDUSTRY_SPACE
static const int VERT_INTER_INDUSTRY_SPACE
Amount of space between two industries in a column.
Definition: industry_gui.cpp:1908
NUM_CARGO
@ NUM_CARGO
Maximal number of cargo types in a game.
Definition: cargo_type.h:65
CSD_CARGO_TEXT
@ CSD_CARGO_TEXT
Display then cargo and supplied string (cb37 result 800-BFF).
Definition: industry_gui.cpp:63
HT_RECT
@ HT_RECT
rectangle (stations, depots, ...)
Definition: tilehighlight_type.h:21
IndustryViewWindow::clicked_line
InfoLine clicked_line
The line of the button that has been clicked.
Definition: industry_gui.cpp:819
GRFFile::cargo_map
uint8 cargo_map[NUM_CARGO]
Inverse cargo translation table (CargoID -> local ID)
Definition: newgrf.h:127
Scrollbar::GetPosition
uint16 GetPosition() const
Gets the position of the first visible element in the list.
Definition: widget_type.h:671
FindWindowByClass
Window * FindWindowByClass(WindowClass cls)
Find any window by its class.
Definition: window.cpp:1161
IndustryDirectoryWindow::SetStringParameters
void SetStringParameters(int widget) const override
Initialize string parameters for a widget.
Definition: industry_gui.cpp:1633
IndustryViewWindow::InfoLine
InfoLine
Specific lines in the info panel.
Definition: industry_gui.cpp:810
HouseSpec::building_availability
HouseZones building_availability
where can it be built (climates, zones)
Definition: house.h:110
BuildIndustryWindow::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: industry_gui.cpp:417
CargoSpec::name
StringID name
Name of this type of cargo.
Definition: cargotype.h:72
CBM_IND_WINDOW_MORE_TEXT
@ CBM_IND_WINDOW_MORE_TEXT
additional text in industry window
Definition: newgrf_callbacks.h:356
GUIList::Filter
bool Filter(FilterFunction *decide, F filter_data)
Filter the list.
Definition: sortlist_type.h:318
Window::FinishInitNested
void FinishInitNested(WindowNumber window_number=0)
Perform the second part of the initialization of a nested widget tree.
Definition: window.cpp:1776
_nested_industry_cargoes_widgets
static const NWidgetPart _nested_industry_cargoes_widgets[]
Widgets of the industry cargoes window.
Definition: industry_gui.cpp:1858
company_func.h
WWT_INSET
@ WWT_INSET
Pressed (inset) panel, most commonly used as combo box text area.
Definition: widget_type.h:49
IndustrySpec::callback_mask
uint16 callback_mask
Bitmask of industry callbacks that have to be called.
Definition: industrytype.h:138
IndustryViewWindow::DrawInfo
int DrawInfo(uint left, uint right, uint top)
Draw the text in the WID_IV_INFO panel.
Definition: industry_gui.cpp:862
CargoesRow::ConnectIndustryAccepted
void ConnectIndustryAccepted(int column)
Connect industry accepted cargoes to the cargo column before it.
Definition: industry_gui.cpp:2407
GenerateIndustries
void GenerateIndustries()
This function will create random industries during game creation.
Definition: industry_cmd.cpp:2303
BuildIndustryWindow::OnPlaceObjectAbort
void OnPlaceObjectAbort() override
The user cancelled a tile highlight mode that has been set.
Definition: industry_gui.cpp:754
Window::top
int top
y position of top edge of the window
Definition: window_gui.h:313
GUIList::ForceResort
void ForceResort()
Force a resort next Sort call Reset the resort timer if used too.
Definition: sortlist_type.h:213
BuildIndustryWindow::OnInvalidateData
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: industry_gui.cpp:764
SA_LEFT
@ SA_LEFT
Left align the text.
Definition: gfx_type.h:328
network.h
WID_DPI_SCROLLBAR
@ WID_DPI_SCROLLBAR
Scrollbar of the matrix.
Definition: industry_widget.h:19
BuildIndustryWindow::index
IndustryType index[NUM_INDUSTRYTYPES+1]
Type of industry, in the order it was loaded.
Definition: industry_gui.cpp:284
WD_MATRIX_BOTTOM
@ WD_MATRIX_BOTTOM
Offset at bottom of a matrix cell.
Definition: window_gui.h:81
BuildIndustryWindow::SetStringParameters
void SetStringParameters(int widget) const override
Initialize string parameters for a widget.
Definition: industry_gui.cpp:492
IndustryCargoesWindow::HasCommonValidCargo
static bool HasCommonValidCargo(const CargoID *cargoes1, uint length1, const CargoID *cargoes2, uint length2)
Do the two sets of cargoes have a valid cargo in common?
Definition: industry_gui.cpp:2607
window_func.h
WID_DPI_SCENARIO_EDITOR_PANE
@ WID_DPI_SCENARIO_EDITOR_PANE
Pane containing SE-only widgets.
Definition: industry_widget.h:15
IndustrySpec::behaviour
IndustryBehaviour behaviour
How this industry will behave, and how others entities can use it.
Definition: industrytype.h:125
GUIList::ForceRebuild
void ForceRebuild()
Force that a rebuild is needed.
Definition: sortlist_type.h:370
WID_ID_DROPDOWN_ORDER
@ WID_ID_DROPDOWN_ORDER
Dropdown for the order of the sort.
Definition: industry_widget.h:36
Window::ToggleWidgetLoweredState
void ToggleWidgetLoweredState(byte widget_index)
Invert the lowered/raised status of a widget.
Definition: window_gui.h:457
SoundSettings::click_beep
bool click_beep
Beep on a random selection of buttons.
Definition: settings_type.h:211
lengthof
#define lengthof(x)
Return the length of an fixed size array.
Definition: stdafx.h:378
Window::width
int width
width of the window (number of pixels to the right in x direction)
Definition: window_gui.h:314
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:2172
HZ_TOYLND
@ HZ_TOYLND
15 8000 can appear in toyland climate
Definition: house.h:83
MarkWholeScreenDirty
void MarkWholeScreenDirty()
This function mark the whole screen as dirty.
Definition: gfx.cpp:1751
Window::SortButtonWidth
static int SortButtonWidth()
Get width of up/down arrow of sort button state.
Definition: widget.cpp:690
random_func.hpp
CargoID
byte CargoID
Cargo slots to indicate a cargo type within a game.
Definition: cargo_type.h:20
NWidgetBase::pos_y
int pos_y
Vertical position of top-left corner of the widget in the window.
Definition: widget_type.h:190
CargoSuffix
Transfer storage of cargo suffix information.
Definition: industry_gui.cpp:68
WID_ID_FILTER_BY_ACC_CARGO
@ WID_ID_FILTER_BY_ACC_CARGO
Accepted cargo filter dropdown list.
Definition: industry_widget.h:38
MemSetT
static void MemSetT(T *ptr, byte value, size_t num=1)
Type-safe version of memset().
Definition: mem_func.hpp:49
WID_IV_INFO
@ WID_IV_INFO
Info of the industry.
Definition: industry_widget.h:29
HouseSpec
Definition: house.h:98
IndustryCargoesWindow::HOR_TEXT_PADDING
static const int HOR_TEXT_PADDING
Horizontal padding around the industry type text.
Definition: industry_gui.cpp:2479
INVALID_TILE
static const TileIndex INVALID_TILE
The very nice invalid tile marker.
Definition: tile_type.h:88
CBID_INDUSTRY_WINDOW_MORE_TEXT
@ CBID_INDUSTRY_WINDOW_MORE_TEXT
Called to determine more text in the industry window.
Definition: newgrf_callbacks.h:171
strnatcmp
int strnatcmp(const char *s1, const char *s2, bool ignore_garbage_at_front)
Compares two strings using case insensitive natural sort.
Definition: string.cpp:718
IndustryDirectoryWindow::SetAcceptedCargoFilterIndex
void SetAcceptedCargoFilterIndex(byte index)
Set cargo filter list item index.
Definition: industry_gui.cpp:1354
HouseZones
HouseZones
Definition: house.h:71
IsNewGRFInspectable
bool IsNewGRFInspectable(GrfSpecFeature feature, uint index)
Can we inspect the data given a certain feature and index.
Definition: newgrf_debug_gui.cpp:756
CargoesField::ind_type
IndustryType ind_type
Industry type (NUM_INDUSTRYTYPES means 'houses').
Definition: industry_gui.cpp:1928
BuildIndustryWindow::SetButtons
void SetButtons()
Update status of the fund and display-chain widgets.
Definition: industry_gui.cpp:335
SetFill
static NWidgetPart SetFill(uint fill_x, uint fill_y)
Widget part function for setting filling.
Definition: widget_type.h:1076
gui.h
newgrf_industries.h
GameSettings::construction
ConstructionSettings construction
construction of things in-game
Definition: settings_type.h:578
ErrorUnknownCallbackResult
void ErrorUnknownCallbackResult(uint32 grfid, uint16 cbid, uint16 cb_res)
Record that a NewGRF returned an unknown/invalid callback result.
Definition: newgrf_commons.cpp:516
GetIndustrySpec
const IndustrySpec * GetIndustrySpec(IndustryType thistype)
Accessor for array _industry_specs.
Definition: industry_cmd.cpp:121
CargoSuffixType
CargoSuffixType
Cargo suffix type (for which window is it requested)
Definition: industry_gui.cpp:53
Window
Data structure for an opened window.
Definition: window_gui.h:279
GUIList::RebuildDone
void RebuildDone()
Notify the sortlist that the rebuild is done.
Definition: sortlist_type.h:380
IndustryViewWindow::clicked_button
byte clicked_button
The button that has been clicked (to raise)
Definition: industry_gui.cpp:820
Industry::accepts_cargo
CargoID accepts_cargo[INDUSTRY_NUM_INPUTS]
16 input cargo slots
Definition: industry.h:75
IndustrySpec::name
StringID name
Displayed name of the industry.
Definition: industrytype.h:127
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:326
Window::RaiseWidget
void RaiseWidget(byte widget_index)
Marks a widget as raised.
Definition: window_gui.h:477
WD_MATRIX_LEFT
@ WD_MATRIX_LEFT
Offset at left of a matrix cell.
Definition: window_gui.h:78
Window::DrawWidgets
void DrawWidgets() const
Paint all widgets of a window.
Definition: widget.cpp:636
GRFFilePropsBase::grffile
const struct GRFFile * grffile
grf file that introduced this entity
Definition: newgrf_commons.h:320
Industry::prod_level
byte prod_level
general production level
Definition: industry.h:74
IndustryDirectoryWindow::OnHundredthTick
void OnHundredthTick() override
Called once every 100 (game) ticks, or once every 3s, whichever comes last.
Definition: industry_gui.cpp:1792
_industry_view_desc
static WindowDesc _industry_view_desc(WDP_AUTO, "view_industry", 260, 120, WC_INDUSTRY_VIEW, WC_NONE, 0, _nested_industry_view_widgets, lengthof(_nested_industry_view_widgets))
Window definition of the view industry gui.
settings_gui.h
CargoesField::type
CargoesFieldType type
Type of field.
Definition: industry_gui.cpp:1925
SBS_UP
@ SBS_UP
Sort descending.
Definition: window_gui.h:227
CargoesField::MakeEmpty
void MakeEmpty(CargoesFieldType type)
Make one of the empty fields (CFT_EMPTY or CFT_SMALL_EMPTY).
Definition: industry_gui.cpp:1951
NWID_SELECTION
@ NWID_SELECTION
Stacked widgets, only one visible at a time (eg in a panel with tabs).
Definition: widget_type.h:78
CT_INVALID
@ CT_INVALID
Invalid cargo type.
Definition: cargo_type.h:69
Window::SetWidgetDirty
void SetWidgetDirty(byte widget_index) const
Invalidate a widget, i.e.
Definition: window.cpp:608
IndustryDirectoryWindow::accepted_cargo_filter_criteria
byte accepted_cargo_filter_criteria
Selected accepted cargo filter index.
Definition: industry_gui.cpp:1323
WID_ID_DROPDOWN_CRITERIA
@ WID_ID_DROPDOWN_CRITERIA
Dropdown for the criteria of the sort.
Definition: industry_widget.h:37
WWT_DEBUGBOX
@ WWT_DEBUGBOX
NewGRF debug box (at top-right of a window, between WWT_CAPTION and WWT_SHADEBOX)
Definition: widget_type.h:61
Rect
Specification of a rectangle with absolute coordinates of all edges.
Definition: geometry_type.hpp:47
CargoesField::supp_cargoes
CargoID supp_cargoes[MAX_CARGOES]
Cargoes entering from the left (index in vertical_cargoes, or INVALID_CARGO).
Definition: industry_gui.cpp:1935
BringWindowToFrontById
Window * BringWindowToFrontById(WindowClass cls, WindowNumber number)
Find a window and make it the relative top-window on the screen.
Definition: window.cpp:1259
CLEAR_FIELDS
@ CLEAR_FIELDS
3
Definition: clear_map.h:23
CargoesField::CargoClickedAt
CargoID CargoClickedAt(const CargoesField *left, const CargoesField *right, Point pt) const
Decide which cargo was clicked at in a CFT_CARGO field.
Definition: industry_gui.cpp:2232
CT_NO_REFIT
@ CT_NO_REFIT
Do not refit cargo of a vehicle (used in vehicle orders and auto-replace/auto-new).
Definition: cargo_type.h:68
HZ_SUBARTC_BELOW
@ HZ_SUBARTC_BELOW
13 2000 can appear in sub-arctic climate below the snow line
Definition: house.h:81
Industry::production_rate
byte production_rate[INDUSTRY_NUM_OUTPUTS]
production rate for each cargo
Definition: industry.h:73
IndustryViewWindow::IL_RATE2
@ IL_RATE2
Production rate of cargo 2.
Definition: industry_gui.cpp:814
NWidgetBase::current_x
uint current_x
Current horizontal size (after resizing).
Definition: widget_type.h:186
lastof
#define lastof(x)
Get the last element of an fixed size array.
Definition: stdafx.h:394
WD_PAR_VSEP_WIDE
@ WD_PAR_VSEP_WIDE
Large amount of vertical space between two paragraphs of text.
Definition: window_gui.h:140
IndustryDirectoryWindow::SetProducedCargoFilterIndex
void SetProducedCargoFilterIndex(byte index)
Set cargo filter list item index.
Definition: industry_gui.cpp:1337
WID_IV_VIEWPORT
@ WID_IV_VIEWPORT
Viewport of the industry.
Definition: industry_widget.h:28
ResetObjectToPlace
void ResetObjectToPlace()
Reset the cursor and mouse mode handling back to default (normal cursor, only clicking in windows).
Definition: viewport.cpp:3423
BuildIndustryWindow::OnPlaceObject
void OnPlaceObject(Point pt, TileIndex tile) override
The user clicked some place on the map when a tile highlight mode has been set.
Definition: industry_gui.cpp:698
BuildIndustryWindow::MAX_MINWIDTH_LINEHEIGHTS
static const int MAX_MINWIDTH_LINEHEIGHTS
The largest allowed minimum-width of the window, given in line heights.
Definition: industry_gui.cpp:290
WC_SMALLMAP
@ WC_SMALLMAP
Small map; Window numbers:
Definition: window_type.h:96
CargoesField::top_end
byte top_end
Stop at the top of the vertical cargoes.
Definition: industry_gui.cpp:1936
cpp_lengthof
#define cpp_lengthof(base, variable)
Gets the length of an array variable within a class.
Definition: stdafx.h:410
IndustryCargoesWindow::CountMatchingAcceptingIndustries
static int CountMatchingAcceptingIndustries(const CargoID *cargoes, uint length)
Count how many industries have accepted cargoes in common with one of the supplied set.
Definition: industry_gui.cpp:2671
TD_RTL
@ TD_RTL
Text is written right-to-left by default.
Definition: strings_type.h:24
_current_text_dir
TextDirection _current_text_dir
Text direction of the currently selected language.
Definition: strings.cpp:48
IndustryCargoesWindow::fields
Fields fields
Fields to display in the WID_IC_PANEL.
Definition: industry_gui.cpp:2483
IndustryCargoesWindow::NotifySmallmap
void NotifySmallmap()
Notify smallmap that new displayed industries have been selected (in _displayed_industries).
Definition: industry_gui.cpp:2742
CSD_CARGO_AMOUNT
@ CSD_CARGO_AMOUNT
Display the cargo and amount (if useful), but no sub-type (cb37 result 400 or fail).
Definition: industry_gui.cpp:62
IndustryViewWindow::info_height
int info_height
Height needed for the WID_IV_INFO panel.
Definition: industry_gui.cpp:822
SetDParamStr
void SetDParamStr(uint n, const char *str)
This function is used to "bind" a C string to a OpenTTD dparam slot.
Definition: strings.cpp:296
BuildIndustryWindow
Build (fund or prospect) a new industry,.
Definition: industry_gui.cpp:280
WWT_TEXTBTN
@ WWT_TEXTBTN
(Toggle) Button with text
Definition: widget_type.h:53
WID_ID_SCROLLBAR
@ WID_ID_SCROLLBAR
Scrollbar of the list.
Definition: industry_widget.h:41
INVALID_STRING_ID
static const StringID INVALID_STRING_ID
Constant representing an invalid string (16bit in case it is used in savegames)
Definition: strings_type.h:17
WID_IV_DISPLAY
@ WID_IV_DISPLAY
Display chain button.
Definition: industry_widget.h:31
IndustryDirectoryWindow::IndustryProductionSorter
static bool IndustryProductionSorter(const Industry *const &a, const Industry *const &b)
Sort industries by production and name.
Definition: industry_gui.cpp:1497
ClientSettings::gui
GUISettings gui
settings related to the GUI
Definition: settings_type.h:594
CargoesField::cargo_line
static Dimension cargo_line
Dimensions of cargo lines.
Definition: industry_gui.cpp:1913
IndustryDirectoryWindow::produced_cargo_filter_criteria
byte produced_cargo_filter_criteria
Selected produced cargo filter index.
Definition: industry_gui.cpp:1322
CargoesField::other_accepted
CargoID other_accepted[MAX_CARGOES]
Cargoes accepted but not used in this figure.
Definition: industry_gui.cpp:1930
CF_NONE
@ CF_NONE
Show only industries which do not produce/accept cargo.
Definition: industry_gui.cpp:1246
WWT_DROPDOWN
@ WWT_DROPDOWN
Drop down list.
Definition: widget_type.h:68
TileHighlightData::GetCallbackWnd
Window * GetCallbackWnd()
Get the window that started the current highlighting.
Definition: viewport.cpp:2518
GUIList::SetSortFuncs
void SetSortFuncs(SortFunction *const *n_funcs)
Hand the array of sort function pointers to the sort list.
Definition: sortlist_type.h:270
DrawPixelInfo
Data about how and where to blit pixels.
Definition: gfx_type.h:155
GUISettings::persistent_buildingtools
bool persistent_buildingtools
keep the building tools active after usage
Definition: settings_type.h:164
IndustryCargoesWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: industry_gui.cpp:2918
GetIndustryCallback
uint16 GetIndustryCallback(CallbackID callback, uint32 param1, uint32 param2, Industry *industry, IndustryType type, TileIndex tile)
Perform an industry callback.
Definition: newgrf_industries.cpp:521
WWT_SHADEBOX
@ WWT_SHADEBOX
Shade box (at top-right of a window, between WWT_DEBUGBOX and WWT_DEFSIZEBOX)
Definition: widget_type.h:62
backup_type.hpp
IndustryDirectoryWindow::SorterType::IDW_SORT_BY_PRODUCTION
@ IDW_SORT_BY_PRODUCTION
Sorter type to sort by production amount.