OpenTTD Source  12.0-beta2
company_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 "currency.h"
12 #include "error.h"
13 #include "gui.h"
14 #include "window_gui.h"
15 #include "textbuf_gui.h"
16 #include "viewport_func.h"
17 #include "company_func.h"
18 #include "command_func.h"
19 #include "network/network.h"
20 #include "network/network_gui.h"
21 #include "network/network_func.h"
22 #include "newgrf.h"
23 #include "company_manager_face.h"
24 #include "strings_func.h"
25 #include "date_func.h"
26 #include "widgets/dropdown_type.h"
27 #include "tilehighlight_func.h"
28 #include "company_base.h"
29 #include "core/geometry_func.hpp"
30 #include "object_type.h"
31 #include "rail.h"
32 #include "road.h"
33 #include "engine_base.h"
34 #include "window_func.h"
35 #include "road_func.h"
36 #include "water.h"
37 #include "station_func.h"
38 #include "zoom_func.h"
39 #include "sortlist_type.h"
40 
41 #include "widgets/company_widget.h"
42 
43 #include "safeguards.h"
44 
45 
47 static const uint EXP_LINESPACE = 2;
48 static const uint EXP_BLOCKSPACE = 10;
49 
50 static void DoSelectCompanyManagerFace(Window *parent);
51 static void ShowCompanyInfrastructure(CompanyID company);
52 
68 };
69 
88 };
89 
91 struct ExpensesList {
92  const ExpensesType *et;
93  const uint length;
94  const uint num_subtotals;
95 
97  {
98  }
99 
100  uint GetHeight() const
101  {
102  /* heading + line + texts of expenses + sub-totals + total line + total text */
104  }
105 
107  uint GetCategoriesWidth() const
108  {
109  uint width = 0;
110  bool invalid_expenses_measured = false; // Measure 'Total' width only once.
111  for (uint i = 0; i < this->length; i++) {
112  ExpensesType et = this->et[i];
113  if (et == INVALID_EXPENSES) {
114  if (!invalid_expenses_measured) {
115  width = std::max(width, GetStringBoundingBox(STR_FINANCES_TOTAL_CAPTION).width);
116  invalid_expenses_measured = true;
117  }
118  } else {
119  width = std::max(width, GetStringBoundingBox(STR_FINANCES_SECTION_CONSTRUCTION + et).width);
120  }
121  }
122  return width;
123  }
124 };
125 
126 static const ExpensesList _expenses_list_types[] = {
129 };
130 
136 static void DrawCategories(const Rect &r)
137 {
138  int y = r.top;
139 
140  DrawString(r.left, r.right, y, STR_FINANCES_EXPENDITURE_INCOME_TITLE, TC_FROMSTRING, SA_HOR_CENTER, true);
142 
144  for (uint i = 0; i < _expenses_list_types[type].length; i++) {
145  const ExpensesType et = _expenses_list_types[type].et[i];
146  if (et == INVALID_EXPENSES) {
147  y += EXP_LINESPACE;
148  DrawString(r.left, r.right, y, STR_FINANCES_TOTAL_CAPTION, TC_FROMSTRING, SA_RIGHT);
150  } else {
151  DrawString(r.left, r.right, y, STR_FINANCES_SECTION_CONSTRUCTION + et);
152  y += FONT_HEIGHT_NORMAL;
153  }
154  }
155 
156  DrawString(r.left, r.right, y + EXP_LINESPACE, STR_FINANCES_TOTAL_CAPTION, TC_FROMSTRING, SA_RIGHT);
157 }
158 
166 static void DrawPrice(Money amount, int left, int right, int top)
167 {
168  StringID str = STR_FINANCES_NEGATIVE_INCOME;
169  if (amount < 0) {
170  amount = -amount;
171  str++;
172  }
173  SetDParam(0, amount);
174  DrawString(left, right, top, str, TC_FROMSTRING, SA_RIGHT);
175 }
176 
184 static void DrawYearColumn(const Rect &r, int year, const Money (*tbl)[EXPENSES_END])
185 {
186  int y = r.top;
187 
188  SetDParam(0, year);
189  DrawString(r.left, r.right, y, STR_FINANCES_YEAR, TC_FROMSTRING, SA_RIGHT, true);
191 
192  Money sum = 0;
193  Money subtotal = 0;
195  for (uint i = 0; i < _expenses_list_types[type].length; i++) {
196  const ExpensesType et = _expenses_list_types[type].et[i];
197  if (et == INVALID_EXPENSES) {
198  Money cost = subtotal;
199  subtotal = 0;
200  GfxFillRect(r.left, y, r.right, y, PC_BLACK);
201  y += EXP_LINESPACE;
202  DrawPrice(cost, r.left, r.right, y);
204  } else {
205  Money cost = (*tbl)[et];
206  subtotal += cost;
207  sum += cost;
208  if (cost != 0) DrawPrice(cost, r.left, r.right, y);
209  y += FONT_HEIGHT_NORMAL;
210  }
211  }
212 
213  GfxFillRect(r.left, y, r.right, y, PC_BLACK);
214  y += EXP_LINESPACE;
215  DrawPrice(sum, r.left, r.right, y);
216 }
217 
218 static const NWidgetPart _nested_company_finances_widgets[] = {
220  NWidget(WWT_CLOSEBOX, COLOUR_GREY),
221  NWidget(WWT_CAPTION, COLOUR_GREY, WID_CF_CAPTION), SetDataTip(STR_FINANCES_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
222  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_CF_TOGGLE_SIZE), SetDataTip(SPR_LARGE_SMALL_WINDOW, STR_TOOLTIP_TOGGLE_LARGE_SMALL_WINDOW),
223  NWidget(WWT_SHADEBOX, COLOUR_GREY),
224  NWidget(WWT_STICKYBOX, COLOUR_GREY),
225  EndContainer(),
226  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_CF_SEL_PANEL),
227  NWidget(WWT_PANEL, COLOUR_GREY),
229  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CF_EXPS_CATEGORY), SetMinimalSize(120, 0), SetFill(0, 0),
230  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CF_EXPS_PRICE1), SetMinimalSize(86, 0), SetFill(0, 0),
231  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CF_EXPS_PRICE2), SetMinimalSize(86, 0), SetFill(0, 0),
232  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CF_EXPS_PRICE3), SetMinimalSize(86, 0), SetFill(0, 0),
233  EndContainer(),
234  EndContainer(),
235  EndContainer(),
236  NWidget(WWT_PANEL, COLOUR_GREY),
238  NWidget(NWID_VERTICAL), // Vertical column with 'bank balance', 'loan'
239  NWidget(WWT_TEXT, COLOUR_GREY), SetDataTip(STR_FINANCES_BANK_BALANCE_TITLE, STR_NULL), SetFill(1, 0),
240  NWidget(WWT_TEXT, COLOUR_GREY), SetDataTip(STR_FINANCES_LOAN_TITLE, STR_NULL), SetFill(1, 0),
241  NWidget(NWID_SPACER), SetFill(0, 1),
242  EndContainer(),
243  NWidget(NWID_SPACER), SetFill(0, 0), SetMinimalSize(30, 0),
244  NWidget(NWID_VERTICAL), // Vertical column with bank balance amount, loan amount, and total.
245  NWidget(WWT_TEXT, COLOUR_GREY, WID_CF_BALANCE_VALUE), SetDataTip(STR_FINANCES_TOTAL_CURRENCY, STR_NULL), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
246  NWidget(WWT_TEXT, COLOUR_GREY, WID_CF_LOAN_VALUE), SetDataTip(STR_FINANCES_TOTAL_CURRENCY, STR_NULL), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
247  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CF_LOAN_LINE), SetMinimalSize(0, 2), SetFill(1, 0),
248  NWidget(WWT_TEXT, COLOUR_GREY, WID_CF_TOTAL_VALUE), SetDataTip(STR_FINANCES_TOTAL_CURRENCY, STR_NULL), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
249  EndContainer(),
250  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_CF_SEL_MAXLOAN),
252  NWidget(NWID_SPACER), SetFill(0, 1), SetMinimalSize(25, 0),
253  NWidget(NWID_VERTICAL), // Max loan information
254  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CF_MAXLOAN_GAP), SetFill(0, 0),
255  NWidget(WWT_TEXT, COLOUR_GREY, WID_CF_MAXLOAN_VALUE), SetDataTip(STR_FINANCES_MAX_LOAN, STR_NULL),
256  NWidget(NWID_SPACER), SetFill(0, 1),
257  EndContainer(),
258  EndContainer(),
259  EndContainer(),
260  NWidget(NWID_SPACER), SetFill(1, 1),
261  EndContainer(),
262  EndContainer(),
263  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_CF_SEL_BUTTONS),
265  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_CF_INCREASE_LOAN), SetFill(1, 0), SetDataTip(STR_FINANCES_BORROW_BUTTON, STR_FINANCES_BORROW_TOOLTIP),
266  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_CF_REPAY_LOAN), SetFill(1, 0), SetDataTip(STR_FINANCES_REPAY_BUTTON, STR_FINANCES_REPAY_TOOLTIP),
267  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_CF_INFRASTRUCTURE), SetFill(1, 0), SetDataTip(STR_FINANCES_INFRASTRUCTURE_BUTTON, STR_COMPANY_VIEW_INFRASTRUCTURE_TOOLTIP),
268  EndContainer(),
269  EndContainer(),
270 };
271 
274  static Money max_money;
275  bool small;
276 
277  CompanyFinancesWindow(WindowDesc *desc, CompanyID company) : Window(desc)
278  {
279  this->small = false;
280  this->CreateNestedTree();
281  this->SetupWidgets();
282  this->FinishInitNested(company);
283 
284  this->owner = (Owner)this->window_number;
285  }
286 
287  void SetStringParameters(int widget) const override
288  {
289  switch (widget) {
290  case WID_CF_CAPTION:
291  SetDParam(0, (CompanyID)this->window_number);
292  SetDParam(1, (CompanyID)this->window_number);
293  break;
294 
295  case WID_CF_BALANCE_VALUE: {
296  const Company *c = Company::Get((CompanyID)this->window_number);
297  SetDParam(0, c->money);
298  break;
299  }
300 
301  case WID_CF_LOAN_VALUE: {
302  const Company *c = Company::Get((CompanyID)this->window_number);
303  SetDParam(0, c->current_loan);
304  break;
305  }
306 
307  case WID_CF_TOTAL_VALUE: {
308  const Company *c = Company::Get((CompanyID)this->window_number);
309  SetDParam(0, c->money - c->current_loan);
310  break;
311  }
312 
314  SetDParam(0, _economy.max_loan);
315  break;
316 
318  case WID_CF_REPAY_LOAN:
320  break;
321  }
322  }
323 
324  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
325  {
327  switch (widget) {
329  size->width = _expenses_list_types[type].GetCategoriesWidth();
330  size->height = _expenses_list_types[type].GetHeight();
331  break;
332 
333  case WID_CF_EXPS_PRICE1:
334  case WID_CF_EXPS_PRICE2:
335  case WID_CF_EXPS_PRICE3:
336  size->height = _expenses_list_types[type].GetHeight();
337  FALLTHROUGH;
338 
340  case WID_CF_LOAN_VALUE:
341  case WID_CF_TOTAL_VALUE:
343  size->width = std::max(GetStringBoundingBox(STR_FINANCES_NEGATIVE_INCOME).width, GetStringBoundingBox(STR_FINANCES_POSITIVE_INCOME).width) + padding.width;
344  break;
345 
346  case WID_CF_MAXLOAN_GAP:
347  size->height = FONT_HEIGHT_NORMAL;
348  break;
349  }
350  }
351 
352  void DrawWidget(const Rect &r, int widget) const override
353  {
354  switch (widget) {
356  DrawCategories(r);
357  break;
358 
359  case WID_CF_EXPS_PRICE1:
360  case WID_CF_EXPS_PRICE2:
361  case WID_CF_EXPS_PRICE3: {
362  const Company *c = Company::Get((CompanyID)this->window_number);
363  int age = std::min(_cur_year - c->inaugurated_year, 2);
364  int wid_offset = widget - WID_CF_EXPS_PRICE1;
365  if (wid_offset <= age) {
366  DrawYearColumn(r, _cur_year - (age - wid_offset), c->yearly_expenses + (age - wid_offset));
367  }
368  break;
369  }
370 
371  case WID_CF_LOAN_LINE:
372  GfxFillRect(r.left, r.top, r.right, r.top, PC_BLACK);
373  break;
374  }
375  }
376 
382  {
383  int plane = this->small ? SZSP_NONE : 0;
384  this->GetWidget<NWidgetStacked>(WID_CF_SEL_PANEL)->SetDisplayedPlane(plane);
385  this->GetWidget<NWidgetStacked>(WID_CF_SEL_MAXLOAN)->SetDisplayedPlane(plane);
386 
387  CompanyID company = (CompanyID)this->window_number;
388  plane = (company != _local_company) ? SZSP_NONE : 0;
389  this->GetWidget<NWidgetStacked>(WID_CF_SEL_BUTTONS)->SetDisplayedPlane(plane);
390  }
391 
392  void OnPaint() override
393  {
394  if (!this->IsShaded()) {
395  if (!this->small) {
396  /* Check that the expenses panel height matches the height needed for the layout. */
398  if (_expenses_list_types[type].GetHeight() != this->GetWidget<NWidgetBase>(WID_CF_EXPS_CATEGORY)->current_y) {
399  this->SetupWidgets();
400  this->ReInit();
401  return;
402  }
403  }
404 
405  /* Check that the loan buttons are shown only when the user owns the company. */
406  CompanyID company = (CompanyID)this->window_number;
407  int req_plane = (company != _local_company) ? SZSP_NONE : 0;
408  if (req_plane != this->GetWidget<NWidgetStacked>(WID_CF_SEL_BUTTONS)->shown_plane) {
409  this->SetupWidgets();
410  this->ReInit();
411  return;
412  }
413 
414  const Company *c = Company::Get(company);
415  this->SetWidgetDisabledState(WID_CF_INCREASE_LOAN, c->current_loan == _economy.max_loan); // Borrow button only shows when there is any more money to loan.
416  this->SetWidgetDisabledState(WID_CF_REPAY_LOAN, company != _local_company || c->current_loan == 0); // Repay button only shows when there is any more money to repay.
417  }
418 
419  this->DrawWidgets();
420  }
421 
422  void OnClick(Point pt, int widget, int click_count) override
423  {
424  switch (widget) {
425  case WID_CF_TOGGLE_SIZE: // toggle size
426  this->small = !this->small;
427  this->SetupWidgets();
428  if (this->IsShaded()) {
429  /* Finances window is not resizable, so size hints given during unshading have no effect
430  * on the changed appearance of the window. */
431  this->SetShaded(false);
432  } else {
433  this->ReInit();
434  }
435  break;
436 
437  case WID_CF_INCREASE_LOAN: // increase loan
438  DoCommandP(0, 0, _ctrl_pressed, CMD_INCREASE_LOAN | CMD_MSG(STR_ERROR_CAN_T_BORROW_ANY_MORE_MONEY));
439  break;
440 
441  case WID_CF_REPAY_LOAN: // repay loan
442  DoCommandP(0, 0, _ctrl_pressed, CMD_DECREASE_LOAN | CMD_MSG(STR_ERROR_CAN_T_REPAY_LOAN));
443  break;
444 
445  case WID_CF_INFRASTRUCTURE: // show infrastructure details
447  break;
448  }
449  }
450 
451  void OnHundredthTick() override
452  {
453  const Company *c = Company::Get((CompanyID)this->window_number);
456  this->SetupWidgets();
457  this->ReInit();
458  }
459  }
460 };
461 
464 
465 static WindowDesc _company_finances_desc(
466  WDP_AUTO, "company_finances", 0, 0,
468  0,
469  _nested_company_finances_widgets, lengthof(_nested_company_finances_widgets)
470 );
471 
478 {
479  if (!Company::IsValidID(company)) return;
480  if (BringWindowToFrontById(WC_FINANCES, company)) return;
481 
482  new CompanyFinancesWindow(&_company_finances_desc, company);
483 }
484 
485 /* List of colours for the livery window */
486 static const StringID _colour_dropdown[] = {
487  STR_COLOUR_DARK_BLUE,
488  STR_COLOUR_PALE_GREEN,
489  STR_COLOUR_PINK,
490  STR_COLOUR_YELLOW,
491  STR_COLOUR_RED,
492  STR_COLOUR_LIGHT_BLUE,
493  STR_COLOUR_GREEN,
494  STR_COLOUR_DARK_GREEN,
495  STR_COLOUR_BLUE,
496  STR_COLOUR_CREAM,
497  STR_COLOUR_MAUVE,
498  STR_COLOUR_PURPLE,
499  STR_COLOUR_ORANGE,
500  STR_COLOUR_BROWN,
501  STR_COLOUR_GREY,
502  STR_COLOUR_WHITE,
503 };
504 
505 /* Association of liveries to livery classes */
506 static const LiveryClass _livery_class[LS_END] = {
507  LC_OTHER,
508  LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL,
509  LC_ROAD, LC_ROAD,
510  LC_SHIP, LC_SHIP,
511  LC_AIRCRAFT, LC_AIRCRAFT, LC_AIRCRAFT,
512  LC_ROAD, LC_ROAD,
513 };
514 
516 public:
518 
519  StringID String() const
520  {
521  return this->result >= COLOUR_END ? STR_COLOUR_DEFAULT : _colour_dropdown[this->result];
522  }
523 
524  uint Height(uint width) const override
525  {
526  return std::max(FONT_HEIGHT_NORMAL, ScaleGUITrad(12) + 2);
527  }
528 
529  bool Selectable() const override
530  {
531  return true;
532  }
533 
534  void Draw(int left, int right, int top, int bottom, bool sel, Colours bg_colour) const override
535  {
536  bool rtl = _current_text_dir == TD_RTL;
537  int height = bottom - top;
538  int icon_y_offset = height / 2;
539  int text_y_offset = (height - FONT_HEIGHT_NORMAL) / 2 + 1;
540  DrawSprite(SPR_VEH_BUS_SIDE_VIEW, PALETTE_RECOLOUR_START + (this->result % COLOUR_END),
541  rtl ? right - 2 - ScaleGUITrad(14) : left + ScaleGUITrad(14) + 2,
542  top + icon_y_offset);
543  DrawString(rtl ? left + 2 : left + ScaleGUITrad(28) + 4,
544  rtl ? right - ScaleGUITrad(28) - 4 : right - 2,
545  top + text_y_offset, this->String(), sel ? TC_WHITE : TC_BLACK);
546  }
547 };
548 
549 static const int LEVEL_WIDTH = 10;
550 
552 
555 private:
556  uint32 sel;
557  LiveryClass livery_class;
558  Dimension square;
559  uint rows;
560  uint line_height;
561  GUIGroupList groups;
562  std::vector<int> indents;
563  Scrollbar *vscroll;
564 
565  void ShowColourDropDownMenu(uint32 widget)
566  {
567  uint32 used_colours = 0;
568  const Company *c;
569  const Livery *livery, *default_livery = nullptr;
570  bool primary = widget == WID_SCL_PRI_COL_DROPDOWN;
571  byte default_col;
572 
573  /* Disallow other company colours for the primary colour */
574  if (this->livery_class < LC_GROUP_RAIL && HasBit(this->sel, LS_DEFAULT) && primary) {
575  for (const Company *c : Company::Iterate()) {
576  if (c->index != _local_company) SetBit(used_colours, c->colour);
577  }
578  }
579 
581 
582  if (this->livery_class < LC_GROUP_RAIL) {
583  /* Get the first selected livery to use as the default dropdown item */
584  LiveryScheme scheme;
585  for (scheme = LS_BEGIN; scheme < LS_END; scheme++) {
586  if (HasBit(this->sel, scheme)) break;
587  }
588  if (scheme == LS_END) scheme = LS_DEFAULT;
589  livery = &c->livery[scheme];
590  if (scheme != LS_DEFAULT) default_livery = &c->livery[LS_DEFAULT];
591  } else {
592  const Group *g = Group::Get(this->sel);
593  livery = &g->livery;
594  if (g->parent == INVALID_GROUP) {
595  default_livery = &c->livery[LS_DEFAULT];
596  } else {
597  const Group *pg = Group::Get(g->parent);
598  default_livery = &pg->livery;
599  }
600  }
601 
602  DropDownList list;
603  if (default_livery != nullptr) {
604  /* Add COLOUR_END to put the colour out of range, but also allow us to show what the default is */
605  default_col = (primary ? default_livery->colour1 : default_livery->colour2) + COLOUR_END;
606  list.emplace_back(new DropDownListColourItem(default_col, false));
607  }
608  for (uint i = 0; i < lengthof(_colour_dropdown); i++) {
609  list.emplace_back(new DropDownListColourItem(i, HasBit(used_colours, i)));
610  }
611 
612  byte sel = (default_livery == nullptr || HasBit(livery->in_use, primary ? 0 : 1)) ? (primary ? livery->colour1 : livery->colour2) : default_col;
613  ShowDropDownList(this, std::move(list), sel, widget);
614  }
615 
616  void AddChildren(GUIGroupList *source, GroupID parent, int indent)
617  {
618  for (const Group *g : *source) {
619  if (g->parent != parent) continue;
620  this->groups.push_back(g);
621  this->indents.push_back(indent);
622  AddChildren(source, g->index, indent + 1);
623  }
624  }
625 
626  void BuildGroupList(CompanyID owner)
627  {
628  if (!this->groups.NeedRebuild()) return;
629 
630  this->groups.clear();
631  this->indents.clear();
632 
633  if (this->livery_class >= LC_GROUP_RAIL) {
634  GUIGroupList list;
635  VehicleType vtype = (VehicleType)(this->livery_class - LC_GROUP_RAIL);
636 
637  for (const Group *g : Group::Iterate()) {
638  if (g->owner == owner && g->vehicle_type == vtype) {
639  list.push_back(g);
640  }
641  }
642 
643  list.ForceResort();
644 
645  /* Sort the groups by their name */
646  const Group *last_group[2] = { nullptr, nullptr };
647  char last_name[2][64] = { "", "" };
648  list.Sort([&](const Group * const &a, const Group * const &b) -> bool {
649  if (a != last_group[0]) {
650  last_group[0] = a;
651  SetDParam(0, a->index);
652  GetString(last_name[0], STR_GROUP_NAME, lastof(last_name[0]));
653  }
654 
655  if (b != last_group[1]) {
656  last_group[1] = b;
657  SetDParam(0, b->index);
658  GetString(last_name[1], STR_GROUP_NAME, lastof(last_name[1]));
659  }
660 
661  int r = strnatcmp(last_name[0], last_name[1]); // Sort by name (natural sorting).
662  if (r == 0) return a->index < b->index;
663  return r < 0;
664  });
665 
666  AddChildren(&list, INVALID_GROUP, 0);
667  }
668 
669  this->groups.shrink_to_fit();
670  this->groups.RebuildDone();
671  }
672 
673  void SetRows()
674  {
675  if (this->livery_class < LC_GROUP_RAIL) {
676  this->rows = 0;
677  for (LiveryScheme scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
678  if (_livery_class[scheme] == this->livery_class && HasBit(_loaded_newgrf_features.used_liveries, scheme)) {
679  this->rows++;
680  }
681  }
682  } else {
683  this->rows = (uint)this->groups.size();
684  }
685 
686  this->vscroll->SetCount(this->rows);
687  }
688 
689 public:
690  SelectCompanyLiveryWindow(WindowDesc *desc, CompanyID company, GroupID group) : Window(desc)
691  {
692  this->CreateNestedTree();
693  this->vscroll = this->GetScrollbar(WID_SCL_MATRIX_SCROLLBAR);
694 
695  if (group == INVALID_GROUP) {
696  this->livery_class = LC_OTHER;
697  this->sel = 1;
699  this->BuildGroupList(company);
700  this->SetRows();
701  } else {
702  this->SetSelectedGroup(company, group);
703  }
704 
705  this->FinishInitNested(company);
706  this->owner = company;
707  this->InvalidateData(1);
708  }
709 
710  void SetSelectedGroup(CompanyID company, GroupID group)
711  {
712  this->RaiseWidget(this->livery_class + WID_SCL_CLASS_GENERAL);
713  const Group *g = Group::Get(group);
714  switch (g->vehicle_type) {
715  case VEH_TRAIN: this->livery_class = LC_GROUP_RAIL; break;
716  case VEH_ROAD: this->livery_class = LC_GROUP_ROAD; break;
717  case VEH_SHIP: this->livery_class = LC_GROUP_SHIP; break;
718  case VEH_AIRCRAFT: this->livery_class = LC_GROUP_AIRCRAFT; break;
719  default: NOT_REACHED();
720  }
721  this->sel = group;
722  this->LowerWidget(this->livery_class + WID_SCL_CLASS_GENERAL);
723 
724  this->groups.ForceRebuild();
725  this->BuildGroupList(company);
726  this->SetRows();
727 
728  /* Position scrollbar to selected group */
729  for (uint i = 0; i < this->rows; i++) {
730  if (this->groups[i]->index == sel) {
731  this->vscroll->SetPosition(Clamp(i - this->vscroll->GetCapacity() / 2, 0, std::max(this->vscroll->GetCount() - this->vscroll->GetCapacity(), 0)));
732  break;
733  }
734  }
735  }
736 
737  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
738  {
739  switch (widget) {
741  /* The matrix widget below needs enough room to print all the schemes. */
742  Dimension d = {0, 0};
743  for (LiveryScheme scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
744  d = maxdim(d, GetStringBoundingBox(STR_LIVERY_DEFAULT + scheme));
745  }
746 
747  /* And group names */
748  for (const Group *g : Group::Iterate()) {
749  if (g->owner == (CompanyID)this->window_number) {
750  SetDParam(0, g->index);
751  d = maxdim(d, GetStringBoundingBox(STR_GROUP_NAME));
752  }
753  }
754 
755  size->width = std::max(size->width, 5 + d.width + WD_FRAMERECT_RIGHT);
756  break;
757  }
758 
759  case WID_SCL_MATRIX: {
760  /* 11 items in the default rail class */
761  this->square = GetSpriteSize(SPR_SQUARE);
762  this->line_height = std::max(this->square.height, (uint)FONT_HEIGHT_NORMAL) + 4;
763 
764  size->height = 11 * this->line_height;
765  resize->width = 1;
766  resize->height = this->line_height;
767  break;
768  }
769 
772  size->width = 0;
773  break;
774  }
775  FALLTHROUGH;
776 
778  this->square = GetSpriteSize(SPR_SQUARE);
779  int string_padding = this->square.width + NWidgetScrollbar::GetVerticalDimension().width + 10;
780  for (const StringID *id = _colour_dropdown; id != endof(_colour_dropdown); id++) {
781  size->width = std::max(size->width, GetStringBoundingBox(*id).width + string_padding);
782  }
783  size->width = std::max(size->width, GetStringBoundingBox(STR_COLOUR_DEFAULT).width + string_padding);
784  break;
785  }
786  }
787  }
788 
789  void OnPaint() override
790  {
791  bool local = (CompanyID)this->window_number == _local_company;
792 
793  /* Disable dropdown controls if no scheme is selected */
794  bool disabled = this->livery_class < LC_GROUP_RAIL ? (this->sel == 0) : (this->sel == INVALID_GROUP);
795  this->SetWidgetDisabledState(WID_SCL_PRI_COL_DROPDOWN, !local || disabled);
796  this->SetWidgetDisabledState(WID_SCL_SEC_COL_DROPDOWN, !local || disabled);
797 
798  this->BuildGroupList((CompanyID)this->window_number);
799 
800  this->DrawWidgets();
801  }
802 
803  void SetStringParameters(int widget) const override
804  {
805  switch (widget) {
806  case WID_SCL_CAPTION:
807  SetDParam(0, (CompanyID)this->window_number);
808  break;
809 
812  const Company *c = Company::Get((CompanyID)this->window_number);
813  bool primary = widget == WID_SCL_PRI_COL_DROPDOWN;
814  StringID colour = STR_COLOUR_DEFAULT;
815 
816  if (this->livery_class < LC_GROUP_RAIL) {
817  if (this->sel != 0) {
818  LiveryScheme scheme = LS_DEFAULT;
819  for (scheme = LS_BEGIN; scheme < LS_END; scheme++) {
820  if (HasBit(this->sel, scheme)) break;
821  }
822  if (scheme == LS_END) scheme = LS_DEFAULT;
823  const Livery *livery = &c->livery[scheme];
824  if (scheme == LS_DEFAULT || HasBit(livery->in_use, primary ? 0 : 1)) {
825  colour = STR_COLOUR_DARK_BLUE + (primary ? livery->colour1 : livery->colour2);
826  }
827  }
828  } else {
829  if (this->sel != INVALID_GROUP) {
830  const Group *g = Group::Get(this->sel);
831  const Livery *livery = &g->livery;
832  if (HasBit(livery->in_use, primary ? 0 : 1)) {
833  colour = STR_COLOUR_DARK_BLUE + (primary ? livery->colour1 : livery->colour2);
834  }
835  }
836  }
837  SetDParam(0, colour);
838  break;
839  }
840  }
841  }
842 
843  void DrawWidget(const Rect &r, int widget) const override
844  {
845  if (widget != WID_SCL_MATRIX) return;
846 
847  bool rtl = _current_text_dir == TD_RTL;
848 
849  /* Horizontal coordinates of scheme name column. */
850  const NWidgetBase *nwi = this->GetWidget<NWidgetBase>(WID_SCL_SPACER_DROPDOWN);
851  int sch_left = nwi->pos_x;
852  int sch_right = sch_left + nwi->current_x - 1;
853  /* Horizontal coordinates of first dropdown. */
854  nwi = this->GetWidget<NWidgetBase>(WID_SCL_PRI_COL_DROPDOWN);
855  int pri_left = nwi->pos_x;
856  int pri_right = pri_left + nwi->current_x - 1;
857  /* Horizontal coordinates of second dropdown. */
858  nwi = this->GetWidget<NWidgetBase>(WID_SCL_SEC_COL_DROPDOWN);
859  int sec_left = nwi->pos_x;
860  int sec_right = sec_left + nwi->current_x - 1;
861 
862  int text_left = (rtl ? (uint)WD_FRAMERECT_LEFT : (this->square.width + 5));
863  int text_right = (rtl ? (this->square.width + 5) : (uint)WD_FRAMERECT_RIGHT);
864 
865  int square_offs = (this->line_height - this->square.height) / 2 + 1;
866  int text_offs = (this->line_height - FONT_HEIGHT_NORMAL) / 2 + 1;
867 
868  int y = r.top;
869 
870  /* Helper function to draw livery info. */
871  auto draw_livery = [&](StringID str, const Livery &liv, bool sel, bool def, int indent) {
872  /* Livery Label. */
873  DrawString(sch_left + WD_FRAMERECT_LEFT + (rtl ? 0 : indent), sch_right - WD_FRAMERECT_RIGHT - (rtl ? indent : 0), y + text_offs, str, sel ? TC_WHITE : TC_BLACK);
874 
875  /* Text below the first dropdown. */
876  DrawSprite(SPR_SQUARE, GENERAL_SPRITE_COLOUR(liv.colour1), (rtl ? pri_right - (this->square.width + 5) + WD_FRAMERECT_RIGHT : pri_left) + WD_FRAMERECT_LEFT, y + square_offs);
877  DrawString(pri_left + text_left, pri_right - text_right, y + text_offs, (def || HasBit(liv.in_use, 0)) ? STR_COLOUR_DARK_BLUE + liv.colour1 : STR_COLOUR_DEFAULT, sel ? TC_WHITE : TC_GOLD);
878 
879  /* Text below the second dropdown. */
880  if (sec_right > sec_left) { // Second dropdown has non-zero size.
881  DrawSprite(SPR_SQUARE, GENERAL_SPRITE_COLOUR(liv.colour2), (rtl ? sec_right - (this->square.width + 5) + WD_FRAMERECT_RIGHT : sec_left) + WD_FRAMERECT_LEFT, y + square_offs);
882  DrawString(sec_left + text_left, sec_right - text_right, y + text_offs, (def || HasBit(liv.in_use, 1)) ? STR_COLOUR_DARK_BLUE + liv.colour2 : STR_COLOUR_DEFAULT, sel ? TC_WHITE : TC_GOLD);
883  }
884 
885  y += this->line_height;
886  };
887 
888  if (livery_class < LC_GROUP_RAIL) {
889  int pos = this->vscroll->GetPosition();
890  const Company *c = Company::Get((CompanyID)this->window_number);
891  for (LiveryScheme scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
892  if (_livery_class[scheme] == this->livery_class && HasBit(_loaded_newgrf_features.used_liveries, scheme)) {
893  if (pos-- > 0) continue;
894  draw_livery(STR_LIVERY_DEFAULT + scheme, c->livery[scheme], HasBit(this->sel, scheme), scheme == LS_DEFAULT, 0);
895  }
896  }
897  } else {
898  uint max = static_cast<uint>(std::min<size_t>(this->vscroll->GetPosition() + this->vscroll->GetCapacity(), this->groups.size()));
899  for (uint i = this->vscroll->GetPosition(); i < max; ++i) {
900  const Group *g = this->groups[i];
901  SetDParam(0, g->index);
902  draw_livery(STR_GROUP_NAME, g->livery, this->sel == g->index, false, this->indents[i] * LEVEL_WIDTH);
903  }
904  }
905  }
906 
907  void OnClick(Point pt, int widget, int click_count) override
908  {
909  switch (widget) {
910  /* Livery Class buttons */
912  case WID_SCL_CLASS_RAIL:
913  case WID_SCL_CLASS_ROAD:
914  case WID_SCL_CLASS_SHIP:
916  case WID_SCL_GROUPS_RAIL:
917  case WID_SCL_GROUPS_ROAD:
918  case WID_SCL_GROUPS_SHIP:
920  this->RaiseWidget(this->livery_class + WID_SCL_CLASS_GENERAL);
921  this->livery_class = (LiveryClass)(widget - WID_SCL_CLASS_GENERAL);
922  this->LowerWidget(this->livery_class + WID_SCL_CLASS_GENERAL);
923 
924  /* Select the first item in the list */
925  if (this->livery_class < LC_GROUP_RAIL) {
926  this->sel = 0;
927  for (LiveryScheme scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
928  if (_livery_class[scheme] == this->livery_class && HasBit(_loaded_newgrf_features.used_liveries, scheme)) {
929  this->sel = 1 << scheme;
930  break;
931  }
932  }
933  } else {
934  this->sel = INVALID_GROUP;
935  this->groups.ForceRebuild();
936  this->BuildGroupList((CompanyID)this->window_number);
937 
938  if (this->groups.size() > 0) {
939  this->sel = this->groups[0]->index;
940  }
941  }
942 
943  this->SetRows();
944  this->SetDirty();
945  break;
946 
947  case WID_SCL_PRI_COL_DROPDOWN: // First colour dropdown
948  ShowColourDropDownMenu(WID_SCL_PRI_COL_DROPDOWN);
949  break;
950 
951  case WID_SCL_SEC_COL_DROPDOWN: // Second colour dropdown
952  ShowColourDropDownMenu(WID_SCL_SEC_COL_DROPDOWN);
953  break;
954 
955  case WID_SCL_MATRIX: {
956  uint row = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_SCL_MATRIX);
957  if (row >= this->rows) return;
958 
959  if (this->livery_class < LC_GROUP_RAIL) {
960  LiveryScheme j = (LiveryScheme)row;
961 
962  for (LiveryScheme scheme = LS_BEGIN; scheme <= j && scheme < LS_END; scheme++) {
963  if (_livery_class[scheme] != this->livery_class || !HasBit(_loaded_newgrf_features.used_liveries, scheme)) j++;
964  }
965  assert(j < LS_END);
966 
967  if (_ctrl_pressed) {
968  ToggleBit(this->sel, j);
969  } else {
970  this->sel = 1 << j;
971  }
972  } else {
973  this->sel = this->groups[row]->index;
974  }
975  this->SetDirty();
976  break;
977  }
978  }
979  }
980 
981  void OnResize() override
982  {
983  this->vscroll->SetCapacityFromWidget(this, WID_SCL_MATRIX);
984  }
985 
986  void OnDropdownSelect(int widget, int index) override
987  {
988  bool local = (CompanyID)this->window_number == _local_company;
989  if (!local) return;
990 
991  if (index >= COLOUR_END) index = INVALID_COLOUR;
992 
993  if (this->livery_class < LC_GROUP_RAIL) {
994  /* Set company colour livery */
995  for (LiveryScheme scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
996  /* Changed colour for the selected scheme, or all visible schemes if CTRL is pressed. */
997  if (HasBit(this->sel, scheme) || (_ctrl_pressed && _livery_class[scheme] == this->livery_class && HasBit(_loaded_newgrf_features.used_liveries, scheme))) {
998  DoCommandP(0, scheme | (widget == WID_SCL_PRI_COL_DROPDOWN ? 0 : 256), index, CMD_SET_COMPANY_COLOUR);
999  }
1000  }
1001  } else {
1002  /* Setting group livery */
1003  DoCommandP(0, this->sel, (widget == WID_SCL_PRI_COL_DROPDOWN ? 0 : 256) | (index << 16), CMD_SET_GROUP_LIVERY);
1004  }
1005  }
1006 
1012  void OnInvalidateData(int data = 0, bool gui_scope = true) override
1013  {
1014  if (!gui_scope) return;
1015 
1016  if (data != -1) {
1017  /* data contains a VehicleType, rebuild list if it displayed */
1018  if (this->livery_class == data + LC_GROUP_RAIL) {
1019  this->groups.ForceRebuild();
1020  this->BuildGroupList((CompanyID)this->window_number);
1021  this->SetRows();
1022 
1023  if (!Group::IsValidID(this->sel)) {
1024  this->sel = INVALID_GROUP;
1025  if (this->groups.size() > 0) this->sel = this->groups[0]->index;
1026  }
1027 
1028  this->SetDirty();
1029  }
1030  return;
1031  }
1032 
1034 
1035  bool current_class_valid = this->livery_class == LC_OTHER || this->livery_class >= LC_GROUP_RAIL;
1036  if (_settings_client.gui.liveries == LIT_ALL || (_settings_client.gui.liveries == LIT_COMPANY && this->window_number == _local_company)) {
1037  for (LiveryScheme scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
1039  if (_livery_class[scheme] == this->livery_class) current_class_valid = true;
1040  this->EnableWidget(WID_SCL_CLASS_GENERAL + _livery_class[scheme]);
1041  } else if (this->livery_class < LC_GROUP_RAIL) {
1042  ClrBit(this->sel, scheme);
1043  }
1044  }
1045  }
1046 
1047  if (!current_class_valid) {
1048  Point pt = {0, 0};
1049  this->OnClick(pt, WID_SCL_CLASS_GENERAL, 1);
1050  }
1051  }
1052 };
1053 
1054 static const NWidgetPart _nested_select_company_livery_widgets [] = {
1056  NWidget(WWT_CLOSEBOX, COLOUR_GREY),
1057  NWidget(WWT_CAPTION, COLOUR_GREY, WID_SCL_CAPTION), SetDataTip(STR_LIVERY_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1058  EndContainer(),
1060  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_SCL_CLASS_GENERAL), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_COMPANY_GENERAL, STR_LIVERY_GENERAL_TOOLTIP),
1061  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_SCL_CLASS_RAIL), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_TRAINLIST, STR_LIVERY_TRAIN_TOOLTIP),
1062  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_SCL_CLASS_ROAD), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_TRUCKLIST, STR_LIVERY_ROAD_VEHICLE_TOOLTIP),
1063  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_SCL_CLASS_SHIP), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_SHIPLIST, STR_LIVERY_SHIP_TOOLTIP),
1064  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_SCL_CLASS_AIRCRAFT), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_AIRPLANESLIST, STR_LIVERY_AIRCRAFT_TOOLTIP),
1065  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_SCL_GROUPS_RAIL), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_GROUP_LIVERY_TRAIN, STR_LIVERY_TRAIN_TOOLTIP),
1066  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_SCL_GROUPS_ROAD), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_GROUP_LIVERY_ROADVEH, STR_LIVERY_ROAD_VEHICLE_TOOLTIP),
1067  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_SCL_GROUPS_SHIP), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_GROUP_LIVERY_SHIP, STR_LIVERY_SHIP_TOOLTIP),
1068  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_SCL_GROUPS_AIRCRAFT), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_GROUP_LIVERY_AIRCRAFT, STR_LIVERY_AIRCRAFT_TOOLTIP),
1069  NWidget(WWT_PANEL, COLOUR_GREY), SetMinimalSize(90, 22), SetFill(1, 1), EndContainer(),
1070  EndContainer(),
1072  NWidget(WWT_PANEL, COLOUR_GREY, WID_SCL_SPACER_DROPDOWN), SetMinimalSize(150, 12), SetFill(1, 1), EndContainer(),
1073  NWidget(WWT_DROPDOWN, COLOUR_GREY, WID_SCL_PRI_COL_DROPDOWN), SetMinimalSize(125, 12), SetFill(0, 1), SetDataTip(STR_BLACK_STRING, STR_LIVERY_PRIMARY_TOOLTIP),
1074  NWidget(WWT_DROPDOWN, COLOUR_GREY, WID_SCL_SEC_COL_DROPDOWN), SetMinimalSize(125, 12), SetFill(0, 1),
1075  SetDataTip(STR_BLACK_STRING, STR_LIVERY_SECONDARY_TOOLTIP),
1076  EndContainer(),
1078  NWidget(WWT_MATRIX, COLOUR_GREY, WID_SCL_MATRIX), SetMinimalSize(275, 0), SetResize(1, 0), SetFill(1, 1), SetMatrixDataTip(1, 0, STR_LIVERY_PANEL_TOOLTIP), SetScrollbar(WID_SCL_MATRIX_SCROLLBAR),
1081  NWidget(WWT_RESIZEBOX, COLOUR_GREY),
1082  EndContainer(),
1083  EndContainer(),
1084 };
1085 
1086 static WindowDesc _select_company_livery_desc(
1087  WDP_AUTO, "company_livery", 0, 0,
1089  0,
1090  _nested_select_company_livery_widgets, lengthof(_nested_select_company_livery_widgets)
1091 );
1092 
1093 void ShowCompanyLiveryWindow(CompanyID company, GroupID group)
1094 {
1096  if (w == nullptr) {
1097  new SelectCompanyLiveryWindow(&_select_company_livery_desc, company, group);
1098  } else if (group != INVALID_GROUP) {
1099  w->SetSelectedGroup(company, group);
1100  }
1101 }
1102 
1110 void DrawCompanyManagerFace(CompanyManagerFace cmf, int colour, int x, int y)
1111 {
1113 
1114  bool has_moustache = !HasBit(ge, GENDER_FEMALE) && GetCompanyManagerFaceBits(cmf, CMFV_HAS_MOUSTACHE, ge) != 0;
1115  bool has_tie_earring = !HasBit(ge, GENDER_FEMALE) || GetCompanyManagerFaceBits(cmf, CMFV_HAS_TIE_EARRING, ge) != 0;
1116  bool has_glasses = GetCompanyManagerFaceBits(cmf, CMFV_HAS_GLASSES, ge) != 0;
1117  PaletteID pal;
1118 
1119  /* Modify eye colour palette only if 2 or more valid values exist */
1120  if (_cmf_info[CMFV_EYE_COLOUR].valid_values[ge] < 2) {
1121  pal = PAL_NONE;
1122  } else {
1123  switch (GetCompanyManagerFaceBits(cmf, CMFV_EYE_COLOUR, ge)) {
1124  default: NOT_REACHED();
1125  case 0: pal = PALETTE_TO_BROWN; break;
1126  case 1: pal = PALETTE_TO_BLUE; break;
1127  case 2: pal = PALETTE_TO_GREEN; break;
1128  }
1129  }
1130 
1131  /* Draw the gradient (background) */
1132  DrawSprite(SPR_GRADIENT, GENERAL_SPRITE_COLOUR(colour), x, y);
1133 
1134  for (CompanyManagerFaceVariable cmfv = CMFV_CHEEKS; cmfv < CMFV_END; cmfv++) {
1135  switch (cmfv) {
1136  case CMFV_MOUSTACHE: if (!has_moustache) continue; break;
1137  case CMFV_LIPS:
1138  case CMFV_NOSE: if (has_moustache) continue; break;
1139  case CMFV_TIE_EARRING: if (!has_tie_earring) continue; break;
1140  case CMFV_GLASSES: if (!has_glasses) continue; break;
1141  default: break;
1142  }
1143  DrawSprite(GetCompanyManagerFaceSprite(cmf, cmfv, ge), (cmfv == CMFV_EYEBROWS) ? pal : PAL_NONE, x, y);
1144  }
1145 }
1146 
1150  NWidget(WWT_CLOSEBOX, COLOUR_GREY),
1151  NWidget(WWT_CAPTION, COLOUR_GREY, WID_SCMF_CAPTION), SetDataTip(STR_FACE_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1152  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_SCMF_TOGGLE_LARGE_SMALL), SetDataTip(SPR_LARGE_SMALL_WINDOW, STR_FACE_ADVANCED_TOOLTIP),
1153  EndContainer(),
1154  NWidget(WWT_PANEL, COLOUR_GREY, WID_SCMF_SELECT_FACE),
1156  NWidget(NWID_HORIZONTAL), SetPIP(2, 2, 2),
1159  NWidget(NWID_SPACER), SetFill(1, 0),
1160  NWidget(WWT_EMPTY, COLOUR_GREY, WID_SCMF_FACE), SetMinimalSize(92, 119),
1161  NWidget(NWID_SPACER), SetFill(1, 0),
1162  EndContainer(),
1164  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_RANDOM_NEW_FACE), SetFill(1, 0), SetDataTip(STR_FACE_NEW_FACE_BUTTON, STR_FACE_NEW_FACE_TOOLTIP),
1165  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_SCMF_SEL_LOADSAVE), // Load/number/save buttons under the portrait in the advanced view.
1167  NWidget(NWID_SPACER), SetMinimalSize(0, 5), SetFill(0, 1),
1168  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_LOAD), SetFill(1, 0), SetDataTip(STR_FACE_LOAD, STR_FACE_LOAD_TOOLTIP),
1169  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_FACECODE), SetFill(1, 0), SetDataTip(STR_FACE_FACECODE, STR_FACE_FACECODE_TOOLTIP),
1170  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_SAVE), SetFill(1, 0), SetDataTip(STR_FACE_SAVE, STR_FACE_SAVE_TOOLTIP),
1171  NWidget(NWID_SPACER), SetMinimalSize(0, 5), SetFill(0, 1),
1172  EndContainer(),
1173  EndContainer(),
1174  EndContainer(),
1176  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_TOGGLE_LARGE_SMALL_BUTTON), SetFill(1, 0), SetDataTip(STR_FACE_ADVANCED, STR_FACE_ADVANCED_TOOLTIP),
1178  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_SCMF_SEL_MALEFEMALE), // Simple male/female face setting.
1180  NWidget(NWID_SPACER), SetFill(0, 1),
1181  NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_SCMF_MALE), SetFill(1, 0), SetDataTip(STR_FACE_MALE_BUTTON, STR_FACE_MALE_TOOLTIP),
1182  NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_SCMF_FEMALE), SetFill(1, 0), SetDataTip(STR_FACE_FEMALE_BUTTON, STR_FACE_FEMALE_TOOLTIP),
1183  NWidget(NWID_SPACER), SetFill(0, 1),
1184  EndContainer(),
1185  EndContainer(),
1186  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_SCMF_SEL_PARTS), // Advanced face parts setting.
1190  NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_SCMF_MALE2), SetFill(1, 0), SetDataTip(STR_FACE_MALE_BUTTON, STR_FACE_MALE_TOOLTIP),
1191  NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_SCMF_FEMALE2), SetFill(1, 0), SetDataTip(STR_FACE_FEMALE_BUTTON, STR_FACE_FEMALE_TOOLTIP),
1192  EndContainer(),
1195  NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_SCMF_ETHNICITY_EUR), SetFill(1, 0), SetDataTip(STR_FACE_EUROPEAN, STR_FACE_SELECT_EUROPEAN),
1196  NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_SCMF_ETHNICITY_AFR), SetFill(1, 0), SetDataTip(STR_FACE_AFRICAN, STR_FACE_SELECT_AFRICAN),
1197  EndContainer(),
1201  SetDataTip(STR_FACE_EYECOLOUR, STR_NULL), SetTextColour(TC_GOLD), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
1202  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_HAS_MOUSTACHE_EARRING), SetDataTip(STR_EMPTY, STR_FACE_MOUSTACHE_EARRING_TOOLTIP),
1203  EndContainer(),
1206  SetDataTip(STR_FACE_GLASSES, STR_NULL), SetTextColour(TC_GOLD), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
1207  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_HAS_GLASSES), SetDataTip(STR_EMPTY, STR_FACE_GLASSES_TOOLTIP),
1208  EndContainer(),
1209  NWidget(NWID_SPACER), SetMinimalSize(0, 2), SetFill(1, 0),
1212  SetDataTip(STR_FACE_HAIR, STR_NULL), SetTextColour(TC_GOLD), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
1213  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_HAIR_L), SetDataTip(AWV_DECREASE, STR_FACE_HAIR_TOOLTIP),
1214  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_HAIR), SetDataTip(STR_EMPTY, STR_FACE_HAIR_TOOLTIP),
1215  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_HAIR_R), SetDataTip(AWV_INCREASE, STR_FACE_HAIR_TOOLTIP),
1216  EndContainer(),
1219  SetDataTip(STR_FACE_EYEBROWS, STR_NULL), SetTextColour(TC_GOLD), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
1220  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_EYEBROWS_L), SetDataTip(AWV_DECREASE, STR_FACE_EYEBROWS_TOOLTIP),
1221  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_EYEBROWS), SetDataTip(STR_EMPTY, STR_FACE_EYEBROWS_TOOLTIP),
1222  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_EYEBROWS_R), SetDataTip(AWV_INCREASE, STR_FACE_EYEBROWS_TOOLTIP),
1223  EndContainer(),
1226  SetDataTip(STR_FACE_EYECOLOUR, STR_NULL), SetTextColour(TC_GOLD), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
1227  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_EYECOLOUR_L), SetDataTip(AWV_DECREASE, STR_FACE_EYECOLOUR_TOOLTIP),
1228  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_EYECOLOUR), SetDataTip(STR_EMPTY, STR_FACE_EYECOLOUR_TOOLTIP),
1229  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_EYECOLOUR_R), SetDataTip(AWV_INCREASE, STR_FACE_EYECOLOUR_TOOLTIP),
1230  EndContainer(),
1233  SetDataTip(STR_FACE_GLASSES, STR_NULL), SetTextColour(TC_GOLD), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
1234  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_GLASSES_L), SetDataTip(AWV_DECREASE, STR_FACE_GLASSES_TOOLTIP_2),
1235  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_GLASSES), SetDataTip(STR_EMPTY, STR_FACE_GLASSES_TOOLTIP_2),
1236  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_GLASSES_R), SetDataTip(AWV_INCREASE, STR_FACE_GLASSES_TOOLTIP_2),
1237  EndContainer(),
1240  SetDataTip(STR_FACE_NOSE, STR_NULL), SetTextColour(TC_GOLD), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
1241  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_NOSE_L), SetDataTip(AWV_DECREASE, STR_FACE_NOSE_TOOLTIP),
1242  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_NOSE), SetDataTip(STR_EMPTY, STR_FACE_NOSE_TOOLTIP),
1243  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_NOSE_R), SetDataTip(AWV_INCREASE, STR_FACE_NOSE_TOOLTIP),
1244  EndContainer(),
1247  SetDataTip(STR_FACE_MOUSTACHE, STR_NULL), SetTextColour(TC_GOLD), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
1248  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_LIPS_MOUSTACHE_L), SetDataTip(AWV_DECREASE, STR_FACE_LIPS_MOUSTACHE_TOOLTIP),
1249  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_LIPS_MOUSTACHE), SetDataTip(STR_EMPTY, STR_FACE_LIPS_MOUSTACHE_TOOLTIP),
1250  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_LIPS_MOUSTACHE_R), SetDataTip(AWV_INCREASE, STR_FACE_LIPS_MOUSTACHE_TOOLTIP),
1251  EndContainer(),
1254  SetDataTip(STR_FACE_CHIN, STR_NULL), SetTextColour(TC_GOLD), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
1255  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_CHIN_L), SetDataTip(AWV_DECREASE, STR_FACE_CHIN_TOOLTIP),
1256  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_CHIN), SetDataTip(STR_EMPTY, STR_FACE_CHIN_TOOLTIP),
1257  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_CHIN_R), SetDataTip(AWV_INCREASE, STR_FACE_CHIN_TOOLTIP),
1258  EndContainer(),
1261  SetDataTip(STR_FACE_JACKET, STR_NULL), SetTextColour(TC_GOLD), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
1262  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_JACKET_L), SetDataTip(AWV_DECREASE, STR_FACE_JACKET_TOOLTIP),
1263  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_JACKET), SetDataTip(STR_EMPTY, STR_FACE_JACKET_TOOLTIP),
1264  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_JACKET_R), SetDataTip(AWV_INCREASE, STR_FACE_JACKET_TOOLTIP),
1265  EndContainer(),
1268  SetDataTip(STR_FACE_COLLAR, STR_NULL), SetTextColour(TC_GOLD), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
1269  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_COLLAR_L), SetDataTip(AWV_DECREASE, STR_FACE_COLLAR_TOOLTIP),
1270  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_COLLAR), SetDataTip(STR_EMPTY, STR_FACE_COLLAR_TOOLTIP),
1271  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_COLLAR_R), SetDataTip(AWV_INCREASE, STR_FACE_COLLAR_TOOLTIP),
1272  EndContainer(),
1275  SetDataTip(STR_FACE_EARRING, STR_NULL), SetTextColour(TC_GOLD), SetAlignment(SA_VERT_CENTER | SA_RIGHT),
1276  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_TIE_EARRING_L), SetDataTip(AWV_DECREASE, STR_FACE_TIE_EARRING_TOOLTIP),
1277  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_TIE_EARRING), SetDataTip(STR_EMPTY, STR_FACE_TIE_EARRING_TOOLTIP),
1278  NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_SCMF_TIE_EARRING_R), SetDataTip(AWV_INCREASE, STR_FACE_TIE_EARRING_TOOLTIP),
1279  EndContainer(),
1280  NWidget(NWID_SPACER), SetFill(0, 1),
1281  EndContainer(),
1282  EndContainer(),
1283  EndContainer(),
1284  EndContainer(),
1286  EndContainer(),
1288  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_CANCEL), SetFill(1, 0), SetDataTip(STR_BUTTON_CANCEL, STR_FACE_CANCEL_TOOLTIP),
1289  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SCMF_ACCEPT), SetFill(1, 0), SetDataTip(STR_BUTTON_OK, STR_FACE_OK_TOOLTIP),
1290  EndContainer(),
1291 };
1292 
1295 {
1297  bool advanced;
1298 
1300  bool is_female;
1302 
1305 
1313  void DrawFaceStringLabel(byte widget_index, uint8 val, bool is_bool_widget) const
1314  {
1315  StringID str;
1316  const NWidgetCore *nwi_widget = this->GetWidget<NWidgetCore>(widget_index);
1317  if (!nwi_widget->IsDisabled()) {
1318  if (is_bool_widget) {
1319  /* if it a bool button write yes or no */
1320  str = (val != 0) ? STR_FACE_YES : STR_FACE_NO;
1321  } else {
1322  /* else write the value + 1 */
1323  SetDParam(0, val + 1);
1324  str = STR_JUST_INT;
1325  }
1326 
1327  /* Draw the value/bool in white (0xC). If the button clicked adds 1px to x and y text coordinates (IsWindowWidgetLowered()). */
1328  DrawString(nwi_widget->pos_x + nwi_widget->IsLowered(), nwi_widget->pos_x + nwi_widget->current_x - 1 - nwi_widget->IsLowered(),
1329  nwi_widget->pos_y + 1 + nwi_widget->IsLowered(), str, TC_WHITE, SA_HOR_CENTER);
1330  }
1331  }
1332 
1333  void UpdateData()
1334  {
1335  this->ge = (GenderEthnicity)GB(this->face, _cmf_info[CMFV_GEN_ETHN].offset, _cmf_info[CMFV_GEN_ETHN].length); // get the gender and ethnicity
1336  this->is_female = HasBit(this->ge, GENDER_FEMALE); // get the gender: 0 == male and 1 == female
1337  this->is_moust_male = !is_female && GetCompanyManagerFaceBits(this->face, CMFV_HAS_MOUSTACHE, this->ge) != 0; // is a male face with moustache
1338 
1339  this->GetWidget<NWidgetCore>(WID_SCMF_HAS_MOUSTACHE_EARRING_TEXT)->widget_data = this->is_female ? STR_FACE_EARRING : STR_FACE_MOUSTACHE;
1340  this->GetWidget<NWidgetCore>(WID_SCMF_TIE_EARRING_TEXT)->widget_data = this->is_female ? STR_FACE_EARRING : STR_FACE_TIE;
1341  this->GetWidget<NWidgetCore>(WID_SCMF_LIPS_MOUSTACHE_TEXT)->widget_data = this->is_moust_male ? STR_FACE_MOUSTACHE : STR_FACE_LIPS;
1342  }
1343 
1344 public:
1346  {
1347  this->advanced = false;
1348  this->CreateNestedTree();
1349  this->SelectDisplayPlanes(this->advanced);
1350  this->FinishInitNested(parent->window_number);
1351  this->parent = parent;
1352  this->owner = (Owner)this->window_number;
1353  this->face = Company::Get((CompanyID)this->window_number)->face;
1354 
1355  this->UpdateData();
1356  }
1357 
1363  {
1364  this->GetWidget<NWidgetStacked>(WID_SCMF_SEL_LOADSAVE)->SetDisplayedPlane(advanced ? 0 : SZSP_NONE);
1365  this->GetWidget<NWidgetStacked>(WID_SCMF_SEL_PARTS)->SetDisplayedPlane(advanced ? 0 : SZSP_NONE);
1366  this->GetWidget<NWidgetStacked>(WID_SCMF_SEL_MALEFEMALE)->SetDisplayedPlane(advanced ? SZSP_NONE : 0);
1367  this->GetWidget<NWidgetCore>(WID_SCMF_RANDOM_NEW_FACE)->widget_data = advanced ? STR_FACE_RANDOM : STR_FACE_NEW_FACE_BUTTON;
1368 
1369  NWidgetCore *wi = this->GetWidget<NWidgetCore>(WID_SCMF_TOGGLE_LARGE_SMALL_BUTTON);
1370  if (advanced) {
1371  wi->SetDataTip(STR_FACE_SIMPLE, STR_FACE_SIMPLE_TOOLTIP);
1372  } else {
1373  wi->SetDataTip(STR_FACE_ADVANCED, STR_FACE_ADVANCED_TOOLTIP);
1374  }
1375  }
1376 
1377  void OnInit() override
1378  {
1379  /* Size of the boolean yes/no button. */
1380  Dimension yesno_dim = maxdim(GetStringBoundingBox(STR_FACE_YES), GetStringBoundingBox(STR_FACE_NO));
1383  /* Size of the number button + arrows. */
1384  Dimension number_dim = {0, 0};
1385  for (int val = 1; val <= 12; val++) {
1386  SetDParam(0, val);
1388  }
1389  uint arrows_width = GetSpriteSize(SPR_ARROW_LEFT).width + GetSpriteSize(SPR_ARROW_RIGHT).width + 2 * (WD_IMGBTN_LEFT + WD_IMGBTN_RIGHT);
1390  number_dim.width += WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT + arrows_width;
1392  /* Compute width of both buttons. */
1393  yesno_dim.width = std::max(yesno_dim.width, number_dim.width);
1394  number_dim.width = yesno_dim.width - arrows_width;
1395 
1396  this->yesno_dim = yesno_dim;
1397  this->number_dim = number_dim;
1398  }
1399 
1400  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
1401  {
1402  switch (widget) {
1404  *size = maxdim(*size, GetStringBoundingBox(STR_FACE_EARRING));
1405  *size = maxdim(*size, GetStringBoundingBox(STR_FACE_MOUSTACHE));
1406  break;
1407 
1409  *size = maxdim(*size, GetStringBoundingBox(STR_FACE_EARRING));
1410  *size = maxdim(*size, GetStringBoundingBox(STR_FACE_TIE));
1411  break;
1412 
1414  *size = maxdim(*size, GetStringBoundingBox(STR_FACE_LIPS));
1415  *size = maxdim(*size, GetStringBoundingBox(STR_FACE_MOUSTACHE));
1416  break;
1417 
1418  case WID_SCMF_FACE: {
1419  Dimension face_size = GetSpriteSize(SPR_GRADIENT);
1420  size->width = std::max(size->width, face_size.width);
1421  size->height = std::max(size->height, face_size.height);
1422  break;
1423  }
1424 
1426  case WID_SCMF_HAS_GLASSES:
1427  *size = this->yesno_dim;
1428  break;
1429 
1430  case WID_SCMF_EYECOLOUR:
1431  case WID_SCMF_CHIN:
1432  case WID_SCMF_EYEBROWS:
1434  case WID_SCMF_NOSE:
1435  case WID_SCMF_HAIR:
1436  case WID_SCMF_JACKET:
1437  case WID_SCMF_COLLAR:
1438  case WID_SCMF_TIE_EARRING:
1439  case WID_SCMF_GLASSES:
1440  *size = this->number_dim;
1441  break;
1442  }
1443  }
1444 
1445  void OnPaint() override
1446  {
1447  /* lower the non-selected gender button */
1450 
1451  /* advanced company manager face selection window */
1452 
1453  /* lower the non-selected ethnicity button */
1456 
1457 
1458  /* Disable dynamically the widgets which CompanyManagerFaceVariable has less than 2 options
1459  * (or in other words you haven't any choice).
1460  * If the widgets depend on a HAS-variable and this is false the widgets will be disabled, too. */
1461 
1462  /* Eye colour buttons */
1463  this->SetWidgetsDisabledState(_cmf_info[CMFV_EYE_COLOUR].valid_values[this->ge] < 2,
1465 
1466  /* Chin buttons */
1467  this->SetWidgetsDisabledState(_cmf_info[CMFV_CHIN].valid_values[this->ge] < 2,
1469 
1470  /* Eyebrows buttons */
1471  this->SetWidgetsDisabledState(_cmf_info[CMFV_EYEBROWS].valid_values[this->ge] < 2,
1473 
1474  /* Lips or (if it a male face with a moustache) moustache buttons */
1475  this->SetWidgetsDisabledState(_cmf_info[this->is_moust_male ? CMFV_MOUSTACHE : CMFV_LIPS].valid_values[this->ge] < 2,
1477 
1478  /* Nose buttons | male faces with moustache haven't any nose options */
1479  this->SetWidgetsDisabledState(_cmf_info[CMFV_NOSE].valid_values[this->ge] < 2 || this->is_moust_male,
1481 
1482  /* Hair buttons */
1483  this->SetWidgetsDisabledState(_cmf_info[CMFV_HAIR].valid_values[this->ge] < 2,
1485 
1486  /* Jacket buttons */
1487  this->SetWidgetsDisabledState(_cmf_info[CMFV_JACKET].valid_values[this->ge] < 2,
1489 
1490  /* Collar buttons */
1491  this->SetWidgetsDisabledState(_cmf_info[CMFV_COLLAR].valid_values[this->ge] < 2,
1493 
1494  /* Tie/earring buttons | female faces without earring haven't any earring options */
1495  this->SetWidgetsDisabledState(_cmf_info[CMFV_TIE_EARRING].valid_values[this->ge] < 2 ||
1496  (this->is_female && GetCompanyManagerFaceBits(this->face, CMFV_HAS_TIE_EARRING, this->ge) == 0),
1498 
1499  /* Glasses buttons | faces without glasses haven't any glasses options */
1500  this->SetWidgetsDisabledState(_cmf_info[CMFV_GLASSES].valid_values[this->ge] < 2 || GetCompanyManagerFaceBits(this->face, CMFV_HAS_GLASSES, this->ge) == 0,
1502 
1503  this->DrawWidgets();
1504  }
1505 
1506  void DrawWidget(const Rect &r, int widget) const override
1507  {
1508  switch (widget) {
1510  if (this->is_female) { // Only for female faces
1511  this->DrawFaceStringLabel(WID_SCMF_HAS_MOUSTACHE_EARRING, GetCompanyManagerFaceBits(this->face, CMFV_HAS_TIE_EARRING, this->ge), true);
1512  } else { // Only for male faces
1513  this->DrawFaceStringLabel(WID_SCMF_HAS_MOUSTACHE_EARRING, GetCompanyManagerFaceBits(this->face, CMFV_HAS_MOUSTACHE, this->ge), true);
1514  }
1515  break;
1516 
1517  case WID_SCMF_TIE_EARRING:
1518  this->DrawFaceStringLabel(WID_SCMF_TIE_EARRING, GetCompanyManagerFaceBits(this->face, CMFV_TIE_EARRING, this->ge), false);
1519  break;
1520 
1522  if (this->is_moust_male) { // Only for male faces with moustache
1523  this->DrawFaceStringLabel(WID_SCMF_LIPS_MOUSTACHE, GetCompanyManagerFaceBits(this->face, CMFV_MOUSTACHE, this->ge), false);
1524  } else { // Only for female faces or male faces without moustache
1525  this->DrawFaceStringLabel(WID_SCMF_LIPS_MOUSTACHE, GetCompanyManagerFaceBits(this->face, CMFV_LIPS, this->ge), false);
1526  }
1527  break;
1528 
1529  case WID_SCMF_HAS_GLASSES:
1530  this->DrawFaceStringLabel(WID_SCMF_HAS_GLASSES, GetCompanyManagerFaceBits(this->face, CMFV_HAS_GLASSES, this->ge), true );
1531  break;
1532 
1533  case WID_SCMF_HAIR:
1534  this->DrawFaceStringLabel(WID_SCMF_HAIR, GetCompanyManagerFaceBits(this->face, CMFV_HAIR, this->ge), false);
1535  break;
1536 
1537  case WID_SCMF_EYEBROWS:
1538  this->DrawFaceStringLabel(WID_SCMF_EYEBROWS, GetCompanyManagerFaceBits(this->face, CMFV_EYEBROWS, this->ge), false);
1539  break;
1540 
1541  case WID_SCMF_EYECOLOUR:
1542  this->DrawFaceStringLabel(WID_SCMF_EYECOLOUR, GetCompanyManagerFaceBits(this->face, CMFV_EYE_COLOUR, this->ge), false);
1543  break;
1544 
1545  case WID_SCMF_GLASSES:
1546  this->DrawFaceStringLabel(WID_SCMF_GLASSES, GetCompanyManagerFaceBits(this->face, CMFV_GLASSES, this->ge), false);
1547  break;
1548 
1549  case WID_SCMF_NOSE:
1550  this->DrawFaceStringLabel(WID_SCMF_NOSE, GetCompanyManagerFaceBits(this->face, CMFV_NOSE, this->ge), false);
1551  break;
1552 
1553  case WID_SCMF_CHIN:
1554  this->DrawFaceStringLabel(WID_SCMF_CHIN, GetCompanyManagerFaceBits(this->face, CMFV_CHIN, this->ge), false);
1555  break;
1556 
1557  case WID_SCMF_JACKET:
1558  this->DrawFaceStringLabel(WID_SCMF_JACKET, GetCompanyManagerFaceBits(this->face, CMFV_JACKET, this->ge), false);
1559  break;
1560 
1561  case WID_SCMF_COLLAR:
1562  this->DrawFaceStringLabel(WID_SCMF_COLLAR, GetCompanyManagerFaceBits(this->face, CMFV_COLLAR, this->ge), false);
1563  break;
1564 
1565  case WID_SCMF_FACE:
1566  DrawCompanyManagerFace(this->face, Company::Get((CompanyID)this->window_number)->colour, r.left, r.top);
1567  break;
1568  }
1569  }
1570 
1571  void OnClick(Point pt, int widget, int click_count) override
1572  {
1573  switch (widget) {
1574  /* Toggle size, advanced/simple face selection */
1577  this->advanced = !this->advanced;
1578  this->SelectDisplayPlanes(this->advanced);
1579  this->ReInit();
1580  break;
1581 
1582  /* OK button */
1583  case WID_SCMF_ACCEPT:
1584  DoCommandP(0, 0, this->face, CMD_SET_COMPANY_MANAGER_FACE);
1585  FALLTHROUGH;
1586 
1587  /* Cancel button */
1588  case WID_SCMF_CANCEL:
1589  this->Close();
1590  break;
1591 
1592  /* Load button */
1593  case WID_SCMF_LOAD:
1594  this->face = _company_manager_face;
1595  ScaleAllCompanyManagerFaceBits(this->face);
1596  ShowErrorMessage(STR_FACE_LOAD_DONE, INVALID_STRING_ID, WL_INFO);
1597  this->UpdateData();
1598  this->SetDirty();
1599  break;
1600 
1601  /* 'Company manager face number' button, view and/or set company manager face number */
1602  case WID_SCMF_FACECODE:
1603  SetDParam(0, this->face);
1604  ShowQueryString(STR_JUST_INT, STR_FACE_FACECODE_CAPTION, 10 + 1, this, CS_NUMERAL, QSF_NONE);
1605  break;
1606 
1607  /* Save button */
1608  case WID_SCMF_SAVE:
1609  _company_manager_face = this->face;
1610  ShowErrorMessage(STR_FACE_SAVE_DONE, INVALID_STRING_ID, WL_INFO);
1611  break;
1612 
1613  /* Toggle gender (male/female) button */
1614  case WID_SCMF_MALE:
1615  case WID_SCMF_FEMALE:
1616  case WID_SCMF_MALE2:
1617  case WID_SCMF_FEMALE2:
1618  SetCompanyManagerFaceBits(this->face, CMFV_GENDER, this->ge, (widget == WID_SCMF_FEMALE || widget == WID_SCMF_FEMALE2));
1619  ScaleAllCompanyManagerFaceBits(this->face);
1620  this->UpdateData();
1621  this->SetDirty();
1622  break;
1623 
1624  /* Randomize face button */
1626  RandomCompanyManagerFaceBits(this->face, this->ge, this->advanced);
1627  this->UpdateData();
1628  this->SetDirty();
1629  break;
1630 
1631  /* Toggle ethnicity (european/african) button */
1634  SetCompanyManagerFaceBits(this->face, CMFV_ETHNICITY, this->ge, widget - WID_SCMF_ETHNICITY_EUR);
1635  ScaleAllCompanyManagerFaceBits(this->face);
1636  this->UpdateData();
1637  this->SetDirty();
1638  break;
1639 
1640  default:
1641  /* Here all buttons from WID_SCMF_HAS_MOUSTACHE_EARRING to WID_SCMF_GLASSES_R are handled.
1642  * First it checks which CompanyManagerFaceVariable is being changed, and then either
1643  * a: invert the value for boolean variables, or
1644  * b: it checks inside of IncreaseCompanyManagerFaceBits() if a left (_L) butten is pressed and then decrease else increase the variable */
1645  if (widget >= WID_SCMF_HAS_MOUSTACHE_EARRING && widget <= WID_SCMF_GLASSES_R) {
1646  CompanyManagerFaceVariable cmfv; // which CompanyManagerFaceVariable shall be edited
1647 
1648  if (widget < WID_SCMF_EYECOLOUR_L) { // Bool buttons
1649  switch (widget - WID_SCMF_HAS_MOUSTACHE_EARRING) {
1650  default: NOT_REACHED();
1651  case 0: cmfv = this->is_female ? CMFV_HAS_TIE_EARRING : CMFV_HAS_MOUSTACHE; break; // Has earring/moustache button
1652  case 1: cmfv = CMFV_HAS_GLASSES; break; // Has glasses button
1653  }
1654  SetCompanyManagerFaceBits(this->face, cmfv, this->ge, !GetCompanyManagerFaceBits(this->face, cmfv, this->ge));
1655  ScaleAllCompanyManagerFaceBits(this->face);
1656  } else { // Value buttons
1657  switch ((widget - WID_SCMF_EYECOLOUR_L) / 3) {
1658  default: NOT_REACHED();
1659  case 0: cmfv = CMFV_EYE_COLOUR; break; // Eye colour buttons
1660  case 1: cmfv = CMFV_CHIN; break; // Chin buttons
1661  case 2: cmfv = CMFV_EYEBROWS; break; // Eyebrows buttons
1662  case 3: cmfv = this->is_moust_male ? CMFV_MOUSTACHE : CMFV_LIPS; break; // Moustache or lips buttons
1663  case 4: cmfv = CMFV_NOSE; break; // Nose buttons
1664  case 5: cmfv = CMFV_HAIR; break; // Hair buttons
1665  case 6: cmfv = CMFV_JACKET; break; // Jacket buttons
1666  case 7: cmfv = CMFV_COLLAR; break; // Collar buttons
1667  case 8: cmfv = CMFV_TIE_EARRING; break; // Tie/earring buttons
1668  case 9: cmfv = CMFV_GLASSES; break; // Glasses buttons
1669  }
1670  /* 0 == left (_L), 1 == middle or 2 == right (_R) - button click */
1671  IncreaseCompanyManagerFaceBits(this->face, cmfv, this->ge, (((widget - WID_SCMF_EYECOLOUR_L) % 3) != 0) ? 1 : -1);
1672  }
1673  this->UpdateData();
1674  this->SetDirty();
1675  }
1676  break;
1677  }
1678  }
1679 
1680  void OnQueryTextFinished(char *str) override
1681  {
1682  if (str == nullptr) return;
1683  /* Set a new company manager face number */
1684  if (!StrEmpty(str)) {
1685  this->face = strtoul(str, nullptr, 10);
1686  ScaleAllCompanyManagerFaceBits(this->face);
1687  ShowErrorMessage(STR_FACE_FACECODE_SET, INVALID_STRING_ID, WL_INFO);
1688  this->UpdateData();
1689  this->SetDirty();
1690  } else {
1691  ShowErrorMessage(STR_FACE_FACECODE_ERR, INVALID_STRING_ID, WL_INFO);
1692  }
1693  }
1694 };
1695 
1698  WDP_AUTO, "company_face", 0, 0,
1702 );
1703 
1710 {
1711  if (!Company::IsValidID((CompanyID)parent->window_number)) return;
1712 
1715 }
1716 
1717 static const NWidgetPart _nested_company_infrastructure_widgets[] = {
1719  NWidget(WWT_CLOSEBOX, COLOUR_GREY),
1720  NWidget(WWT_CAPTION, COLOUR_GREY, WID_CI_CAPTION), SetDataTip(STR_COMPANY_INFRASTRUCTURE_VIEW_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1721  NWidget(WWT_SHADEBOX, COLOUR_GREY),
1722  NWidget(WWT_STICKYBOX, COLOUR_GREY),
1723  EndContainer(),
1724  NWidget(WWT_PANEL, COLOUR_GREY),
1726  NWidget(NWID_HORIZONTAL), SetPIP(2, 4, 2),
1727  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CI_RAIL_DESC), SetMinimalTextLines(2, 0), SetFill(1, 0),
1728  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CI_RAIL_COUNT), SetMinimalTextLines(2, 0), SetFill(0, 1),
1729  EndContainer(),
1730  NWidget(NWID_HORIZONTAL), SetPIP(2, 4, 2),
1731  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CI_ROAD_DESC), SetMinimalTextLines(2, 0), SetFill(1, 0),
1732  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CI_ROAD_COUNT), SetMinimalTextLines(2, 0), SetFill(0, 1),
1733  EndContainer(),
1734  NWidget(NWID_HORIZONTAL), SetPIP(2, 4, 2),
1735  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CI_TRAM_DESC), SetMinimalTextLines(2, 0), SetFill(1, 0),
1736  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CI_TRAM_COUNT), SetMinimalTextLines(2, 0), SetFill(0, 1),
1737  EndContainer(),
1738  NWidget(NWID_HORIZONTAL), SetPIP(2, 4, 2),
1739  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CI_WATER_DESC), SetMinimalTextLines(2, 0), SetFill(1, 0),
1740  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CI_WATER_COUNT), SetMinimalTextLines(2, 0), SetFill(0, 1),
1741  EndContainer(),
1742  NWidget(NWID_HORIZONTAL), SetPIP(2, 4, 2),
1743  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CI_STATION_DESC), SetMinimalTextLines(3, 0), SetFill(1, 0),
1744  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CI_STATION_COUNT), SetMinimalTextLines(3, 0), SetFill(0, 1),
1745  EndContainer(),
1746  NWidget(NWID_HORIZONTAL), SetPIP(2, 4, 2),
1747  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CI_TOTAL_DESC), SetFill(1, 0),
1748  NWidget(WWT_EMPTY, COLOUR_GREY, WID_CI_TOTAL), SetFill(0, 1),
1749  EndContainer(),
1750  EndContainer(),
1751  EndContainer(),
1752 };
1753 
1758 {
1761 
1763 
1765  {
1766  this->UpdateRailRoadTypes();
1767 
1768  this->InitNested(window_number);
1769  this->owner = (Owner)this->window_number;
1770  }
1771 
1772  void UpdateRailRoadTypes()
1773  {
1774  this->railtypes = RAILTYPES_NONE;
1775  this->roadtypes = ROADTYPES_NONE;
1776 
1777  /* Find the used railtypes. */
1778  for (const Engine *e : Engine::IterateType(VEH_TRAIN)) {
1779  if (!HasBit(e->info.climates, _settings_game.game_creation.landscape)) continue;
1780 
1781  this->railtypes |= GetRailTypeInfo(e->u.rail.railtype)->introduces_railtypes;
1782  }
1783 
1784  /* Get the date introduced railtypes as well. */
1785  this->railtypes = AddDateIntroducedRailTypes(this->railtypes, MAX_DAY);
1786 
1787  /* Find the used roadtypes. */
1788  for (const Engine *e : Engine::IterateType(VEH_ROAD)) {
1789  if (!HasBit(e->info.climates, _settings_game.game_creation.landscape)) continue;
1790 
1791  this->roadtypes |= GetRoadTypeInfo(e->u.road.roadtype)->introduces_roadtypes;
1792  }
1793 
1794  /* Get the date introduced roadtypes as well. */
1795  this->roadtypes = AddDateIntroducedRoadTypes(this->roadtypes, MAX_DAY);
1796  this->roadtypes &= ~_roadtypes_hidden_mask;
1797  }
1798 
1801  {
1802  const Company *c = Company::Get((CompanyID)this->window_number);
1803  Money total;
1804 
1805  uint32 rail_total = c->infrastructure.GetRailTotal();
1806  for (RailType rt = RAILTYPE_BEGIN; rt != RAILTYPE_END; rt++) {
1807  if (HasBit(this->railtypes, rt)) total += RailMaintenanceCost(rt, c->infrastructure.rail[rt], rail_total);
1808  }
1810 
1811  uint32 road_total = c->infrastructure.GetRoadTotal();
1812  uint32 tram_total = c->infrastructure.GetTramTotal();
1813  for (RoadType rt = ROADTYPE_BEGIN; rt != ROADTYPE_END; rt++) {
1814  if (HasBit(this->roadtypes, rt)) total += RoadMaintenanceCost(rt, c->infrastructure.road[rt], RoadTypeIsRoad(rt) ? road_total : tram_total);
1815  }
1816 
1819  total += AirportMaintenanceCost(c->index);
1820 
1821  return total;
1822  }
1823 
1824  void SetStringParameters(int widget) const override
1825  {
1826  switch (widget) {
1827  case WID_CI_CAPTION:
1828  SetDParam(0, (CompanyID)this->window_number);
1829  break;
1830  }
1831  }
1832 
1833  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
1834  {
1835  const Company *c = Company::Get((CompanyID)this->window_number);
1836 
1837  switch (widget) {
1838  case WID_CI_RAIL_DESC: {
1839  uint lines = 1; // Starts at 1 because a line is also required for the section title
1840 
1841  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_INFRASTRUCTURE_VIEW_RAIL_SECT).width);
1842 
1843  for (const auto &rt : _sorted_railtypes) {
1844  if (HasBit(this->railtypes, rt)) {
1845  lines++;
1846  SetDParam(0, GetRailTypeInfo(rt)->strings.name);
1847  size->width = std::max(size->width, GetStringBoundingBox(STR_WHITE_STRING).width + WD_FRAMERECT_LEFT);
1848  }
1849  }
1850  if (this->railtypes != RAILTYPES_NONE) {
1851  lines++;
1852  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_INFRASTRUCTURE_VIEW_SIGNALS).width + WD_FRAMERECT_LEFT);
1853  }
1854 
1855  size->height = std::max(size->height, lines * FONT_HEIGHT_NORMAL);
1856  break;
1857  }
1858 
1859  case WID_CI_ROAD_DESC:
1860  case WID_CI_TRAM_DESC: {
1861  uint lines = 1; // Starts at 1 because a line is also required for the section title
1862 
1863  size->width = std::max(size->width, GetStringBoundingBox(widget == WID_CI_ROAD_DESC ? STR_COMPANY_INFRASTRUCTURE_VIEW_ROAD_SECT : STR_COMPANY_INFRASTRUCTURE_VIEW_TRAM_SECT).width);
1864 
1865  for (const auto &rt : _sorted_roadtypes) {
1866  if (HasBit(this->roadtypes, rt) && RoadTypeIsRoad(rt) == (widget == WID_CI_ROAD_DESC)) {
1867  lines++;
1868  SetDParam(0, GetRoadTypeInfo(rt)->strings.name);
1869  size->width = std::max(size->width, GetStringBoundingBox(STR_WHITE_STRING).width + WD_FRAMERECT_LEFT);
1870  }
1871  }
1872 
1873  size->height = std::max(size->height, lines * FONT_HEIGHT_NORMAL);
1874  break;
1875  }
1876 
1877  case WID_CI_WATER_DESC:
1878  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_INFRASTRUCTURE_VIEW_WATER_SECT).width);
1879  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_INFRASTRUCTURE_VIEW_CANALS).width + WD_FRAMERECT_LEFT);
1880  break;
1881 
1882  case WID_CI_STATION_DESC:
1883  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_INFRASTRUCTURE_VIEW_STATION_SECT).width);
1884  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_INFRASTRUCTURE_VIEW_STATIONS).width + WD_FRAMERECT_LEFT);
1885  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_INFRASTRUCTURE_VIEW_AIRPORTS).width + WD_FRAMERECT_LEFT);
1886  break;
1887 
1888  case WID_CI_RAIL_COUNT:
1889  case WID_CI_ROAD_COUNT:
1890  case WID_CI_TRAM_COUNT:
1891  case WID_CI_WATER_COUNT:
1892  case WID_CI_STATION_COUNT:
1893  case WID_CI_TOTAL: {
1894  /* Find the maximum count that is displayed. */
1895  uint32 max_val = 1000; // Some random number to reserve enough space.
1896  Money max_cost = 10000; // Some random number to reserve enough space.
1897  uint32 rail_total = c->infrastructure.GetRailTotal();
1898  for (RailType rt = RAILTYPE_BEGIN; rt < RAILTYPE_END; rt++) {
1899  max_val = std::max(max_val, c->infrastructure.rail[rt]);
1900  max_cost = std::max(max_cost, RailMaintenanceCost(rt, c->infrastructure.rail[rt], rail_total));
1901  }
1902  max_val = std::max(max_val, c->infrastructure.signal);
1903  max_cost = std::max(max_cost, SignalMaintenanceCost(c->infrastructure.signal));
1904  uint32 road_total = c->infrastructure.GetRoadTotal();
1905  uint32 tram_total = c->infrastructure.GetTramTotal();
1906  for (RoadType rt = ROADTYPE_BEGIN; rt < ROADTYPE_END; rt++) {
1907  max_val = std::max(max_val, c->infrastructure.road[rt]);
1908  max_cost = std::max(max_cost, RoadMaintenanceCost(rt, c->infrastructure.road[rt], RoadTypeIsRoad(rt) ? road_total : tram_total));
1909 
1910  }
1911  max_val = std::max(max_val, c->infrastructure.water);
1912  max_cost = std::max(max_cost, CanalMaintenanceCost(c->infrastructure.water));
1913  max_val = std::max(max_val, c->infrastructure.station);
1914  max_cost = std::max(max_cost, StationMaintenanceCost(c->infrastructure.station));
1915  max_val = std::max(max_val, c->infrastructure.airport);
1916  max_cost = std::max(max_cost, AirportMaintenanceCost(c->index));
1917 
1918  SetDParamMaxValue(0, max_val);
1919  uint count_width = GetStringBoundingBox(STR_WHITE_COMMA).width + 20; // Reserve some wiggle room
1920 
1922  SetDParamMaxValue(0, this->GetTotalMaintenanceCost() * 12); // Convert to per year
1923  this->total_width = GetStringBoundingBox(STR_COMPANY_INFRASTRUCTURE_VIEW_TOTAL).width + 20;
1924  size->width = std::max(size->width, this->total_width);
1925 
1926  SetDParamMaxValue(0, max_cost * 12); // Convert to per year
1927  count_width += std::max(this->total_width, GetStringBoundingBox(STR_COMPANY_INFRASTRUCTURE_VIEW_TOTAL).width);
1928  }
1929 
1930  size->width = std::max(size->width, count_width);
1931 
1932  /* Set height of the total line. */
1933  if (widget == WID_CI_TOTAL) {
1934  size->height = _settings_game.economy.infrastructure_maintenance ? std::max(size->height, EXP_LINESPACE + FONT_HEIGHT_NORMAL) : 0;
1935  }
1936  break;
1937  }
1938  }
1939  }
1940 
1948  void DrawCountLine(const Rect &r, int &y, int count, Money monthly_cost) const
1949  {
1950  SetDParam(0, count);
1951  DrawString(r.left, r.right, y += FONT_HEIGHT_NORMAL, STR_WHITE_COMMA, TC_FROMSTRING, SA_RIGHT);
1952 
1954  SetDParam(0, monthly_cost * 12); // Convert to per year
1955  int left = _current_text_dir == TD_RTL ? r.right - this->total_width : r.left;
1956  DrawString(left, left + this->total_width, y, STR_COMPANY_INFRASTRUCTURE_VIEW_TOTAL, TC_FROMSTRING, SA_RIGHT);
1957  }
1958  }
1959 
1960  void DrawWidget(const Rect &r, int widget) const override
1961  {
1962  const Company *c = Company::Get((CompanyID)this->window_number);
1963  int y = r.top;
1964 
1965  int offs_left = _current_text_dir == TD_LTR ? WD_FRAMERECT_LEFT : 0;
1966  int offs_right = _current_text_dir == TD_LTR ? 0 : WD_FRAMERECT_LEFT;
1967 
1968  switch (widget) {
1969  case WID_CI_RAIL_DESC:
1970  DrawString(r.left, r.right, y, STR_COMPANY_INFRASTRUCTURE_VIEW_RAIL_SECT);
1971 
1972  if (this->railtypes != RAILTYPES_NONE) {
1973  /* Draw name of each valid railtype. */
1974  for (const auto &rt : _sorted_railtypes) {
1975  if (HasBit(this->railtypes, rt)) {
1976  SetDParam(0, GetRailTypeInfo(rt)->strings.name);
1977  DrawString(r.left + offs_left, r.right - offs_right, y += FONT_HEIGHT_NORMAL, STR_WHITE_STRING);
1978  }
1979  }
1980  DrawString(r.left + offs_left, r.right - offs_right, y += FONT_HEIGHT_NORMAL, STR_COMPANY_INFRASTRUCTURE_VIEW_SIGNALS);
1981  } else {
1982  /* No valid railtype. */
1983  DrawString(r.left + offs_left, r.right - offs_right, y += FONT_HEIGHT_NORMAL, STR_COMPANY_VIEW_INFRASTRUCTURE_NONE);
1984  }
1985 
1986  break;
1987 
1988  case WID_CI_RAIL_COUNT: {
1989  /* Draw infrastructure count for each valid railtype. */
1990  uint32 rail_total = c->infrastructure.GetRailTotal();
1991  for (const auto &rt : _sorted_railtypes) {
1992  if (HasBit(this->railtypes, rt)) {
1993  this->DrawCountLine(r, y, c->infrastructure.rail[rt], RailMaintenanceCost(rt, c->infrastructure.rail[rt], rail_total));
1994  }
1995  }
1996  if (this->railtypes != RAILTYPES_NONE) {
1998  }
1999  break;
2000  }
2001 
2002  case WID_CI_ROAD_DESC:
2003  case WID_CI_TRAM_DESC: {
2004  DrawString(r.left, r.right, y, widget == WID_CI_ROAD_DESC ? STR_COMPANY_INFRASTRUCTURE_VIEW_ROAD_SECT : STR_COMPANY_INFRASTRUCTURE_VIEW_TRAM_SECT);
2005 
2006  /* Draw name of each valid roadtype. */
2007  for (const auto &rt : _sorted_roadtypes) {
2008  if (HasBit(this->roadtypes, rt) && RoadTypeIsRoad(rt) == (widget == WID_CI_ROAD_DESC)) {
2009  SetDParam(0, GetRoadTypeInfo(rt)->strings.name);
2010  DrawString(r.left + offs_left, r.right - offs_right, y += FONT_HEIGHT_NORMAL, STR_WHITE_STRING);
2011  }
2012  }
2013 
2014  break;
2015  }
2016 
2017  case WID_CI_ROAD_COUNT:
2018  case WID_CI_TRAM_COUNT: {
2019  uint32 road_tram_total = widget == WID_CI_ROAD_COUNT ? c->infrastructure.GetRoadTotal() : c->infrastructure.GetTramTotal();
2020  for (const auto &rt : _sorted_roadtypes) {
2021  if (HasBit(this->roadtypes, rt) && RoadTypeIsRoad(rt) == (widget == WID_CI_ROAD_COUNT)) {
2022  this->DrawCountLine(r, y, c->infrastructure.road[rt], RoadMaintenanceCost(rt, c->infrastructure.road[rt], road_tram_total));
2023  }
2024  }
2025  break;
2026  }
2027 
2028  case WID_CI_WATER_DESC:
2029  DrawString(r.left, r.right, y, STR_COMPANY_INFRASTRUCTURE_VIEW_WATER_SECT);
2030  DrawString(r.left + offs_left, r.right - offs_right, y += FONT_HEIGHT_NORMAL, STR_COMPANY_INFRASTRUCTURE_VIEW_CANALS);
2031  break;
2032 
2033  case WID_CI_WATER_COUNT:
2035  break;
2036 
2037  case WID_CI_TOTAL:
2039  int left = _current_text_dir == TD_RTL ? r.right - this->total_width : r.left;
2040  GfxFillRect(left, y, left + this->total_width, y, PC_WHITE);
2041  y += EXP_LINESPACE;
2042  SetDParam(0, this->GetTotalMaintenanceCost() * 12); // Convert to per year
2043  DrawString(left, left + this->total_width, y, STR_COMPANY_INFRASTRUCTURE_VIEW_TOTAL, TC_FROMSTRING, SA_RIGHT);
2044  }
2045  break;
2046 
2047  case WID_CI_STATION_DESC:
2048  DrawString(r.left, r.right, y, STR_COMPANY_INFRASTRUCTURE_VIEW_STATION_SECT);
2049  DrawString(r.left + offs_left, r.right - offs_right, y += FONT_HEIGHT_NORMAL, STR_COMPANY_INFRASTRUCTURE_VIEW_STATIONS);
2050  DrawString(r.left + offs_left, r.right - offs_right, y += FONT_HEIGHT_NORMAL, STR_COMPANY_INFRASTRUCTURE_VIEW_AIRPORTS);
2051  break;
2052 
2053  case WID_CI_STATION_COUNT:
2056  break;
2057  }
2058  }
2059 
2065  void OnInvalidateData(int data = 0, bool gui_scope = true) override
2066  {
2067  if (!gui_scope) return;
2068 
2069  this->UpdateRailRoadTypes();
2070  this->ReInit();
2071  }
2072 };
2073 
2074 static WindowDesc _company_infrastructure_desc(
2075  WDP_AUTO, "company_infrastructure", 0, 0,
2077  0,
2078  _nested_company_infrastructure_widgets, lengthof(_nested_company_infrastructure_widgets)
2079 );
2080 
2086 {
2087  if (!Company::IsValidID(company)) return;
2088  AllocateWindowDescFront<CompanyInfrastructureWindow>(&_company_infrastructure_desc, company);
2089 }
2090 
2091 static const NWidgetPart _nested_company_widgets[] = {
2093  NWidget(WWT_CLOSEBOX, COLOUR_GREY),
2094  NWidget(WWT_CAPTION, COLOUR_GREY, WID_C_CAPTION), SetDataTip(STR_COMPANY_VIEW_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
2095  NWidget(WWT_SHADEBOX, COLOUR_GREY),
2096  NWidget(WWT_STICKYBOX, COLOUR_GREY),
2097  EndContainer(),
2098  NWidget(WWT_PANEL, COLOUR_GREY),
2099  NWidget(NWID_HORIZONTAL), SetPIP(4, 6, 4),
2100  NWidget(NWID_VERTICAL), SetPIP(4, 2, 4),
2101  NWidget(WWT_EMPTY, INVALID_COLOUR, WID_C_FACE), SetMinimalSize(92, 119), SetFill(1, 0),
2102  NWidget(WWT_EMPTY, INVALID_COLOUR, WID_C_FACE_TITLE), SetFill(1, 1), SetMinimalTextLines(2, 0),
2103  EndContainer(),
2106  NWidget(NWID_VERTICAL), SetPIP(4, 5, 5),
2107  NWidget(WWT_TEXT, COLOUR_GREY, WID_C_DESC_INAUGURATION), SetDataTip(STR_COMPANY_VIEW_INAUGURATED_TITLE, STR_NULL), SetFill(1, 0),
2108  NWidget(NWID_HORIZONTAL), SetPIP(0, 5, 0),
2109  NWidget(WWT_LABEL, COLOUR_GREY, WID_C_DESC_COLOUR_SCHEME), SetDataTip(STR_COMPANY_VIEW_COLOUR_SCHEME_TITLE, STR_NULL),
2110  NWidget(WWT_EMPTY, INVALID_COLOUR, WID_C_DESC_COLOUR_SCHEME_EXAMPLE), SetMinimalSize(30, 0), SetFill(0, 1),
2111  NWidget(NWID_SPACER), SetFill(1, 0),
2112  EndContainer(),
2113  NWidget(NWID_HORIZONTAL), SetPIP(0, 4, 0),
2115  NWidget(WWT_TEXT, COLOUR_GREY, WID_C_DESC_VEHICLE), SetDataTip(STR_COMPANY_VIEW_VEHICLES_TITLE, STR_NULL),
2116  NWidget(NWID_SPACER), SetFill(0, 1),
2117  EndContainer(),
2119  NWidget(NWID_SPACER), SetFill(1, 0),
2120  EndContainer(),
2121  EndContainer(),
2122  NWidget(NWID_VERTICAL), SetPIP(4, 2, 4),
2124  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_C_VIEW_HQ), SetDataTip(STR_COMPANY_VIEW_VIEW_HQ_BUTTON, STR_COMPANY_VIEW_VIEW_HQ_TOOLTIP),
2125  NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_C_BUILD_HQ), SetDataTip(STR_COMPANY_VIEW_BUILD_HQ_BUTTON, STR_COMPANY_VIEW_BUILD_HQ_TOOLTIP),
2126  EndContainer(),
2127  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_C_SELECT_RELOCATE),
2128  NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_C_RELOCATE_HQ), SetDataTip(STR_COMPANY_VIEW_RELOCATE_HQ, STR_COMPANY_VIEW_RELOCATE_COMPANY_HEADQUARTERS),
2130  EndContainer(),
2131  NWidget(NWID_SPACER), SetFill(0, 1),
2132  EndContainer(),
2133  EndContainer(),
2134  NWidget(WWT_TEXT, COLOUR_GREY, WID_C_DESC_COMPANY_VALUE), SetDataTip(STR_COMPANY_VIEW_COMPANY_VALUE, STR_NULL), SetFill(1, 0),
2135  NWidget(NWID_VERTICAL), SetPIP(4, 2, 4),
2136  NWidget(NWID_HORIZONTAL), SetPIP(0, 4, 0),
2138  NWidget(WWT_TEXT, COLOUR_GREY, WID_C_DESC_INFRASTRUCTURE), SetDataTip(STR_COMPANY_VIEW_INFRASTRUCTURE, STR_NULL),
2139  NWidget(NWID_SPACER), SetFill(0, 1),
2140  EndContainer(),
2143  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_C_VIEW_INFRASTRUCTURE), SetDataTip(STR_COMPANY_VIEW_INFRASTRUCTURE_BUTTON, STR_COMPANY_VIEW_INFRASTRUCTURE_TOOLTIP),
2145  EndContainer(),
2146  EndContainer(),
2147  EndContainer(),
2150  NWidget(NWID_VERTICAL), SetPIP(5, 5, 4),
2151  NWidget(WWT_EMPTY, INVALID_COLOUR, WID_C_DESC_OWNERS), SetMinimalTextLines(3, 0),
2152  NWidget(NWID_SPACER), SetFill(0, 1),
2153  EndContainer(),
2154  EndContainer(),
2155  /* Multi player buttons. */
2156  NWidget(NWID_VERTICAL), SetPIP(4, 2, 4),
2157  NWidget(NWID_SPACER), SetFill(0, 1),
2158  NWidget(NWID_HORIZONTAL), SetPIP(0, 4, 0),
2159  NWidget(NWID_SPACER), SetFill(1, 0),
2161  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_C_GIVE_MONEY), SetDataTip(STR_COMPANY_VIEW_GIVE_MONEY_BUTTON, STR_COMPANY_VIEW_GIVE_MONEY_TOOLTIP),
2162  EndContainer(),
2163  EndContainer(),
2164  NWidget(NWID_HORIZONTAL), SetPIP(0, 4, 0),
2165  NWidget(WWT_EMPTY, COLOUR_GREY, WID_C_HAS_PASSWORD),
2167  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_C_COMPANY_PASSWORD), SetDataTip(STR_COMPANY_VIEW_PASSWORD, STR_COMPANY_VIEW_PASSWORD_TOOLTIP),
2168  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_C_COMPANY_JOIN), SetDataTip(STR_COMPANY_VIEW_JOIN, STR_COMPANY_VIEW_JOIN_TOOLTIP),
2169  EndContainer(),
2170  EndContainer(),
2171  EndContainer(),
2172  EndContainer(),
2173  EndContainer(),
2174  EndContainer(),
2175  EndContainer(),
2176  /* Button bars at the bottom. */
2177  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_C_SELECT_BUTTONS),
2179  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_C_NEW_FACE), SetFill(1, 0), SetDataTip(STR_COMPANY_VIEW_NEW_FACE_BUTTON, STR_COMPANY_VIEW_NEW_FACE_TOOLTIP),
2180  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_C_COLOUR_SCHEME), SetFill(1, 0), SetDataTip(STR_COMPANY_VIEW_COLOUR_SCHEME_BUTTON, STR_COMPANY_VIEW_COLOUR_SCHEME_TOOLTIP),
2181  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_C_PRESIDENT_NAME), SetFill(1, 0), SetDataTip(STR_COMPANY_VIEW_PRESIDENT_NAME_BUTTON, STR_COMPANY_VIEW_PRESIDENT_NAME_TOOLTIP),
2182  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_C_COMPANY_NAME), SetFill(1, 0), SetDataTip(STR_COMPANY_VIEW_COMPANY_NAME_BUTTON, STR_COMPANY_VIEW_COMPANY_NAME_TOOLTIP),
2183  EndContainer(),
2185  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_C_BUY_SHARE), SetFill(1, 0), SetDataTip(STR_COMPANY_VIEW_BUY_SHARE_BUTTON, STR_COMPANY_VIEW_BUY_SHARE_TOOLTIP),
2186  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_C_SELL_SHARE), SetFill(1, 0), SetDataTip(STR_COMPANY_VIEW_SELL_SHARE_BUTTON, STR_COMPANY_VIEW_SELL_SHARE_TOOLTIP),
2187  EndContainer(),
2188  EndContainer(),
2189 };
2190 
2191 int GetAmountOwnedBy(const Company *c, Owner owner)
2192 {
2193  return (c->share_owners[0] == owner) +
2194  (c->share_owners[1] == owner) +
2195  (c->share_owners[2] == owner) +
2196  (c->share_owners[3] == owner);
2197 }
2198 
2201  STR_COMPANY_VIEW_TRAINS, STR_COMPANY_VIEW_ROAD_VEHICLES, STR_COMPANY_VIEW_SHIPS, STR_COMPANY_VIEW_AIRCRAFT
2202 };
2203 
2208 {
2209  CompanyWidgets query_widget;
2210 
2213  /* Display planes of the #WID_C_SELECT_MULTIPLAYER selection widget. */
2216 
2217  /* Display planes of the #WID_C_SELECT_VIEW_BUILD_HQ selection widget. */
2220 
2221  /* Display planes of the #WID_C_SELECT_RELOCATE selection widget. */
2224 
2225  /* Display planes of the #WID_C_SELECT_BUTTONS selection widget. */
2228  };
2229 
2231  {
2232  this->InitNested(window_number);
2233  this->owner = (Owner)this->window_number;
2234  this->OnInvalidateData();
2235  }
2236 
2237  void OnPaint() override
2238  {
2239  const Company *c = Company::Get((CompanyID)this->window_number);
2240  bool local = this->window_number == _local_company;
2241 
2242  if (!this->IsShaded()) {
2243  bool reinit = false;
2244 
2245  /* Button bar selection. */
2246  int plane = local ? CWP_BUTTONS_LOCAL : CWP_BUTTONS_OTHER;
2247  NWidgetStacked *wi = this->GetWidget<NWidgetStacked>(WID_C_SELECT_BUTTONS);
2248  if (plane != wi->shown_plane) {
2249  wi->SetDisplayedPlane(plane);
2250  this->InvalidateData();
2251  reinit = true;
2252  }
2253 
2254  /* Build HQ button handling. */
2255  plane = (local && c->location_of_HQ == INVALID_TILE) ? CWP_VB_BUILD : CWP_VB_VIEW;
2256  wi = this->GetWidget<NWidgetStacked>(WID_C_SELECT_VIEW_BUILD_HQ);
2257  if (plane != wi->shown_plane) {
2258  wi->SetDisplayedPlane(plane);
2259  reinit = true;
2260  }
2261 
2263 
2264  /* Enable/disable 'Relocate HQ' button. */
2265  plane = (!local || c->location_of_HQ == INVALID_TILE) ? CWP_RELOCATE_HIDE : CWP_RELOCATE_SHOW;
2266  wi = this->GetWidget<NWidgetStacked>(WID_C_SELECT_RELOCATE);
2267  if (plane != wi->shown_plane) {
2268  wi->SetDisplayedPlane(plane);
2269  reinit = true;
2270  }
2271 
2272  /* Owners of company */
2273  plane = SZSP_HORIZONTAL;
2274  for (uint i = 0; i < lengthof(c->share_owners); i++) {
2275  if (c->share_owners[i] != INVALID_COMPANY) {
2276  plane = 0;
2277  break;
2278  }
2279  }
2280  wi = this->GetWidget<NWidgetStacked>(WID_C_SELECT_DESC_OWNERS);
2281  if (plane != wi->shown_plane) {
2282  wi->SetDisplayedPlane(plane);
2283  reinit = true;
2284  }
2285 
2286  /* Enable/disable 'Give money' button. */
2287  plane = ((local || _local_company == COMPANY_SPECTATOR || !_settings_game.economy.give_money) ? SZSP_NONE : 0);
2288  wi = this->GetWidget<NWidgetStacked>(WID_C_SELECT_GIVE_MONEY);
2289  if (plane != wi->shown_plane) {
2290  wi->SetDisplayedPlane(plane);
2291  reinit = true;
2292  }
2293 
2294  /* Multiplayer buttons. */
2295  plane = ((!_networking) ? (int)SZSP_NONE : (int)(local ? CWP_MP_C_PWD : CWP_MP_C_JOIN));
2296  wi = this->GetWidget<NWidgetStacked>(WID_C_SELECT_MULTIPLAYER);
2297  if (plane != wi->shown_plane) {
2298  wi->SetDisplayedPlane(plane);
2299  reinit = true;
2300  }
2302 
2303  if (reinit) {
2304  this->ReInit();
2305  return;
2306  }
2307  }
2308 
2309  this->DrawWidgets();
2310  }
2311 
2312  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
2313  {
2314  switch (widget) {
2315  case WID_C_FACE: {
2316  Dimension face_size = GetSpriteSize(SPR_GRADIENT);
2317  size->width = std::max(size->width, face_size.width);
2318  size->height = std::max(size->height, face_size.height);
2319  break;
2320  }
2321 
2323  Point offset;
2324  Dimension d = GetSpriteSize(SPR_VEH_BUS_SW_VIEW, &offset);
2325  d.width -= offset.x;
2326  d.height -= offset.y;
2327  *size = maxdim(*size, d);
2328  break;
2329  }
2330 
2332  SetDParam(0, INT64_MAX); // Arguably the maximum company value
2333  size->width = GetStringBoundingBox(STR_COMPANY_VIEW_COMPANY_VALUE).width;
2334  break;
2335 
2337  SetDParamMaxValue(0, 5000); // Maximum number of vehicles
2338  for (uint i = 0; i < lengthof(_company_view_vehicle_count_strings); i++) {
2339  size->width = std::max(size->width, GetStringBoundingBox(_company_view_vehicle_count_strings[i]).width);
2340  }
2341  break;
2342 
2344  SetDParamMaxValue(0, UINT_MAX);
2345  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_INFRASTRUCTURE_RAIL).width);
2346  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_INFRASTRUCTURE_ROAD).width);
2347  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_INFRASTRUCTURE_WATER).width);
2348  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_INFRASTRUCTURE_STATION).width);
2349  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_INFRASTRUCTURE_AIRPORT).width);
2350  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_INFRASTRUCTURE_NONE).width);
2351  break;
2352 
2353  case WID_C_DESC_OWNERS: {
2354  for (const Company *c2 : Company::Iterate()) {
2355  SetDParamMaxValue(0, 75);
2356  SetDParam(1, c2->index);
2357 
2358  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_SHARES_OWNED_BY).width);
2359  }
2360  break;
2361  }
2362 
2363  case WID_C_VIEW_HQ:
2364  case WID_C_BUILD_HQ:
2365  case WID_C_RELOCATE_HQ:
2367  case WID_C_GIVE_MONEY:
2369  case WID_C_COMPANY_JOIN:
2370  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_VIEW_HQ_BUTTON).width);
2371  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_BUILD_HQ_BUTTON).width);
2372  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_RELOCATE_HQ).width);
2373  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_INFRASTRUCTURE_BUTTON).width);
2374  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_GIVE_MONEY_BUTTON).width);
2375  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_PASSWORD).width);
2376  size->width = std::max(size->width, GetStringBoundingBox(STR_COMPANY_VIEW_JOIN).width);
2377  break;
2378 
2379  case WID_C_HAS_PASSWORD:
2380  *size = maxdim(*size, GetSpriteSize(SPR_LOCK));
2381  break;
2382  }
2383  }
2384 
2385  void DrawWidget(const Rect &r, int widget) const override
2386  {
2387  const Company *c = Company::Get((CompanyID)this->window_number);
2388  switch (widget) {
2389  case WID_C_FACE:
2390  DrawCompanyManagerFace(c->face, c->colour, r.left, r.top);
2391  break;
2392 
2393  case WID_C_FACE_TITLE:
2394  SetDParam(0, c->index);
2395  DrawStringMultiLine(r.left, r.right, r.top, r.bottom, STR_COMPANY_VIEW_PRESIDENT_MANAGER_TITLE, TC_FROMSTRING, SA_HOR_CENTER);
2396  break;
2397 
2399  Point offset;
2400  Dimension d = GetSpriteSize(SPR_VEH_BUS_SW_VIEW, &offset);
2401  d.height -= offset.y;
2402  DrawSprite(SPR_VEH_BUS_SW_VIEW, COMPANY_SPRITE_COLOUR(c->index), r.left - offset.x, (r.top + r.bottom - d.height) / 2 - offset.y);
2403  break;
2404  }
2405 
2407  uint amounts[4];
2408  amounts[0] = c->group_all[VEH_TRAIN].num_vehicle;
2409  amounts[1] = c->group_all[VEH_ROAD].num_vehicle;
2410  amounts[2] = c->group_all[VEH_SHIP].num_vehicle;
2411  amounts[3] = c->group_all[VEH_AIRCRAFT].num_vehicle;
2412 
2413  int y = r.top;
2414  if (amounts[0] + amounts[1] + amounts[2] + amounts[3] == 0) {
2415  DrawString(r.left, r.right, y, STR_COMPANY_VIEW_VEHICLES_NONE);
2416  } else {
2417  static_assert(lengthof(amounts) == lengthof(_company_view_vehicle_count_strings));
2418 
2419  for (uint i = 0; i < lengthof(amounts); i++) {
2420  if (amounts[i] != 0) {
2421  SetDParam(0, amounts[i]);
2422  DrawString(r.left, r.right, y, _company_view_vehicle_count_strings[i]);
2423  y += FONT_HEIGHT_NORMAL;
2424  }
2425  }
2426  }
2427  break;
2428  }
2429 
2431  uint y = r.top;
2432 
2433  /* Collect rail and road counts. */
2434  uint rail_pieces = c->infrastructure.signal;
2435  uint road_pieces = 0;
2436  for (uint i = 0; i < lengthof(c->infrastructure.rail); i++) rail_pieces += c->infrastructure.rail[i];
2437  for (uint i = 0; i < lengthof(c->infrastructure.road); i++) road_pieces += c->infrastructure.road[i];
2438 
2439  if (rail_pieces == 0 && road_pieces == 0 && c->infrastructure.water == 0 && c->infrastructure.station == 0 && c->infrastructure.airport == 0) {
2440  DrawString(r.left, r.right, y, STR_COMPANY_VIEW_INFRASTRUCTURE_NONE);
2441  } else {
2442  if (rail_pieces != 0) {
2443  SetDParam(0, rail_pieces);
2444  DrawString(r.left, r.right, y, STR_COMPANY_VIEW_INFRASTRUCTURE_RAIL);
2445  y += FONT_HEIGHT_NORMAL;
2446  }
2447  if (road_pieces != 0) {
2448  SetDParam(0, road_pieces);
2449  DrawString(r.left, r.right, y, STR_COMPANY_VIEW_INFRASTRUCTURE_ROAD);
2450  y += FONT_HEIGHT_NORMAL;
2451  }
2452  if (c->infrastructure.water != 0) {
2454  DrawString(r.left, r.right, y, STR_COMPANY_VIEW_INFRASTRUCTURE_WATER);
2455  y += FONT_HEIGHT_NORMAL;
2456  }
2457  if (c->infrastructure.station != 0) {
2459  DrawString(r.left, r.right, y, STR_COMPANY_VIEW_INFRASTRUCTURE_STATION);
2460  y += FONT_HEIGHT_NORMAL;
2461  }
2462  if (c->infrastructure.airport != 0) {
2464  DrawString(r.left, r.right, y, STR_COMPANY_VIEW_INFRASTRUCTURE_AIRPORT);
2465  }
2466  }
2467 
2468  break;
2469  }
2470 
2471  case WID_C_DESC_OWNERS: {
2472  uint y = r.top;
2473 
2474  for (const Company *c2 : Company::Iterate()) {
2475  uint amt = GetAmountOwnedBy(c, c2->index);
2476  if (amt != 0) {
2477  SetDParam(0, amt * 25);
2478  SetDParam(1, c2->index);
2479 
2480  DrawString(r.left, r.right, y, STR_COMPANY_VIEW_SHARES_OWNED_BY);
2481  y += FONT_HEIGHT_NORMAL;
2482  }
2483  }
2484  break;
2485  }
2486 
2487  case WID_C_HAS_PASSWORD:
2489  DrawSprite(SPR_LOCK, PAL_NONE, r.left, r.top);
2490  }
2491  break;
2492  }
2493  }
2494 
2495  void SetStringParameters(int widget) const override
2496  {
2497  switch (widget) {
2498  case WID_C_CAPTION:
2499  SetDParam(0, (CompanyID)this->window_number);
2500  SetDParam(1, (CompanyID)this->window_number);
2501  break;
2502 
2504  SetDParam(0, Company::Get((CompanyID)this->window_number)->inaugurated_year);
2505  break;
2506 
2508  SetDParam(0, CalculateCompanyValue(Company::Get((CompanyID)this->window_number)));
2509  break;
2510  }
2511  }
2512 
2513  void OnClick(Point pt, int widget, int click_count) override
2514  {
2515  switch (widget) {
2516  case WID_C_NEW_FACE: DoSelectCompanyManagerFace(this); break;
2517 
2518  case WID_C_COLOUR_SCHEME:
2519  ShowCompanyLiveryWindow((CompanyID)this->window_number, INVALID_GROUP);
2520  break;
2521 
2522  case WID_C_PRESIDENT_NAME:
2523  this->query_widget = WID_C_PRESIDENT_NAME;
2524  SetDParam(0, this->window_number);
2525  ShowQueryString(STR_PRESIDENT_NAME, STR_COMPANY_VIEW_PRESIDENT_S_NAME_QUERY_CAPTION, MAX_LENGTH_PRESIDENT_NAME_CHARS, this, CS_ALPHANUMERAL, QSF_ENABLE_DEFAULT | QSF_LEN_IN_CHARS);
2526  break;
2527 
2528  case WID_C_COMPANY_NAME:
2529  this->query_widget = WID_C_COMPANY_NAME;
2530  SetDParam(0, this->window_number);
2531  ShowQueryString(STR_COMPANY_NAME, STR_COMPANY_VIEW_COMPANY_NAME_QUERY_CAPTION, MAX_LENGTH_COMPANY_NAME_CHARS, this, CS_ALPHANUMERAL, QSF_ENABLE_DEFAULT | QSF_LEN_IN_CHARS);
2532  break;
2533 
2534  case WID_C_VIEW_HQ: {
2535  TileIndex tile = Company::Get((CompanyID)this->window_number)->location_of_HQ;
2536  if (_ctrl_pressed) {
2538  } else {
2539  ScrollMainWindowToTile(tile);
2540  }
2541  break;
2542  }
2543 
2544  case WID_C_BUILD_HQ:
2545  if ((byte)this->window_number != _local_company) return;
2546  if (this->IsWidgetLowered(WID_C_BUILD_HQ)) {
2548  this->RaiseButtons();
2549  break;
2550  }
2551  SetObjectToPlaceWnd(SPR_CURSOR_HQ, PAL_NONE, HT_RECT, this);
2552  SetTileSelectSize(2, 2);
2553  this->LowerWidget(WID_C_BUILD_HQ);
2555  break;
2556 
2557  case WID_C_RELOCATE_HQ:
2558  if (this->IsWidgetLowered(WID_C_RELOCATE_HQ)) {
2560  this->RaiseButtons();
2561  break;
2562  }
2563  SetObjectToPlaceWnd(SPR_CURSOR_HQ, PAL_NONE, HT_RECT, this);
2564  SetTileSelectSize(2, 2);
2567  break;
2568 
2570  ShowCompanyInfrastructure((CompanyID)this->window_number);
2571  break;
2572 
2573  case WID_C_GIVE_MONEY:
2574  this->query_widget = WID_C_GIVE_MONEY;
2575  ShowQueryString(STR_EMPTY, STR_COMPANY_VIEW_GIVE_MONEY_QUERY_CAPTION, 30, this, CS_NUMERAL, QSF_NONE);
2576  break;
2577 
2578  case WID_C_BUY_SHARE:
2579  DoCommandP(0, this->window_number, 0, CMD_BUY_SHARE_IN_COMPANY | CMD_MSG(STR_ERROR_CAN_T_BUY_25_SHARE_IN_THIS));
2580  break;
2581 
2582  case WID_C_SELL_SHARE:
2583  DoCommandP(0, this->window_number, 0, CMD_SELL_SHARE_IN_COMPANY | CMD_MSG(STR_ERROR_CAN_T_SELL_25_SHARE_IN));
2584  break;
2585 
2587  if (this->window_number == _local_company) ShowNetworkCompanyPasswordWindow(this);
2588  break;
2589 
2590  case WID_C_COMPANY_JOIN: {
2591  this->query_widget = WID_C_COMPANY_JOIN;
2592  CompanyID company = (CompanyID)this->window_number;
2593  if (_network_server) {
2596  } else if (NetworkCompanyIsPassworded(company)) {
2597  /* ask for the password */
2598  ShowQueryString(STR_EMPTY, STR_NETWORK_NEED_COMPANY_PASSWORD_CAPTION, NETWORK_PASSWORD_LENGTH, this, CS_ALPHANUMERAL, QSF_PASSWORD);
2599  } else {
2600  /* just send the join command */
2601  NetworkClientRequestMove(company);
2602  }
2603  break;
2604  }
2605  }
2606  }
2607 
2608  void OnHundredthTick() override
2609  {
2610  /* redraw the window every now and then */
2611  this->SetDirty();
2612  }
2613 
2614  void OnPlaceObject(Point pt, TileIndex tile) override
2615  {
2616  if (DoCommandP(tile, OBJECT_HQ, 0, CMD_BUILD_OBJECT | CMD_MSG(STR_ERROR_CAN_T_BUILD_COMPANY_HEADQUARTERS)) && !_shift_pressed) {
2618  this->RaiseButtons();
2619  }
2620  }
2621 
2622  void OnPlaceObjectAbort() override
2623  {
2624  this->RaiseButtons();
2625  }
2626 
2627  void OnQueryTextFinished(char *str) override
2628  {
2629  if (str == nullptr) return;
2630 
2631  switch (this->query_widget) {
2632  default: NOT_REACHED();
2633 
2634  case WID_C_GIVE_MONEY: {
2635  Money money = (Money)(strtoull(str, nullptr, 10) / _currency->rate);
2636  uint32 money_c = Clamp(ClampToI32(money), 0, 20000000); // Clamp between 20 million and 0
2637 
2638  DoCommandP(0, money_c, this->window_number, CMD_GIVE_MONEY | CMD_MSG(STR_ERROR_CAN_T_GIVE_MONEY));
2639  break;
2640  }
2641 
2642  case WID_C_PRESIDENT_NAME:
2643  DoCommandP(0, 0, 0, CMD_RENAME_PRESIDENT | CMD_MSG(STR_ERROR_CAN_T_CHANGE_PRESIDENT), nullptr, str);
2644  break;
2645 
2646  case WID_C_COMPANY_NAME:
2647  DoCommandP(0, 0, 0, CMD_RENAME_COMPANY | CMD_MSG(STR_ERROR_CAN_T_CHANGE_COMPANY_NAME), nullptr, str);
2648  break;
2649 
2650  case WID_C_COMPANY_JOIN:
2652  break;
2653  }
2654  }
2655 
2656 
2662  void OnInvalidateData(int data = 0, bool gui_scope = true) override
2663  {
2664  if (this->window_number == _local_company) return;
2665 
2666  if (_settings_game.economy.allow_shares) { // Shares are allowed
2667  const Company *c = Company::Get(this->window_number);
2668 
2669  /* If all shares are owned by someone (none by nobody), disable buy button */
2670  this->SetWidgetDisabledState(WID_C_BUY_SHARE, GetAmountOwnedBy(c, INVALID_OWNER) == 0 ||
2671  /* Only 25% left to buy. If the company is human, disable buying it up.. TODO issues! */
2672  (GetAmountOwnedBy(c, INVALID_OWNER) == 1 && !c->is_ai) ||
2673  /* Spectators cannot do anything of course */
2675 
2676  /* If the company doesn't own any shares, disable sell button */
2677  this->SetWidgetDisabledState(WID_C_SELL_SHARE, (GetAmountOwnedBy(c, _local_company) == 0) ||
2678  /* Spectators cannot do anything of course */
2680  } else { // Shares are not allowed, disable buy/sell buttons
2683  }
2684  }
2685 };
2686 
2687 static WindowDesc _company_desc(
2688  WDP_AUTO, "company", 0, 0,
2690  0,
2691  _nested_company_widgets, lengthof(_nested_company_widgets)
2692 );
2693 
2698 void ShowCompany(CompanyID company)
2699 {
2700  if (!Company::IsValidID(company)) return;
2701 
2702  AllocateWindowDescFront<CompanyWindow>(&_company_desc, company);
2703 }
2704 
2710 {
2711  SetWindowDirty(WC_COMPANY, company);
2713 }
2714 
2717  {
2718  this->InitNested(window_number);
2719  }
2720 
2721  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
2722  {
2723  switch (widget) {
2724  case WID_BC_FACE:
2725  *size = GetSpriteSize(SPR_GRADIENT);
2726  break;
2727 
2728  case WID_BC_QUESTION:
2729  const Company *c = Company::Get((CompanyID)this->window_number);
2730  SetDParam(0, c->index);
2731  SetDParam(1, c->bankrupt_value);
2732  size->height = GetStringHeight(STR_BUY_COMPANY_MESSAGE, size->width);
2733  break;
2734  }
2735  }
2736 
2737  void SetStringParameters(int widget) const override
2738  {
2739  switch (widget) {
2740  case WID_BC_CAPTION:
2741  SetDParam(0, STR_COMPANY_NAME);
2742  SetDParam(1, Company::Get((CompanyID)this->window_number)->index);
2743  break;
2744  }
2745  }
2746 
2747  void DrawWidget(const Rect &r, int widget) const override
2748  {
2749  switch (widget) {
2750  case WID_BC_FACE: {
2751  const Company *c = Company::Get((CompanyID)this->window_number);
2752  DrawCompanyManagerFace(c->face, c->colour, r.left, r.top);
2753  break;
2754  }
2755 
2756  case WID_BC_QUESTION: {
2757  const Company *c = Company::Get((CompanyID)this->window_number);
2758  SetDParam(0, c->index);
2759  SetDParam(1, c->bankrupt_value);
2760  DrawStringMultiLine(r.left, r.right, r.top, r.bottom, STR_BUY_COMPANY_MESSAGE, TC_FROMSTRING, SA_CENTER);
2761  break;
2762  }
2763  }
2764  }
2765 
2766  void OnClick(Point pt, int widget, int click_count) override
2767  {
2768  switch (widget) {
2769  case WID_BC_NO:
2770  this->Close();
2771  break;
2772 
2773  case WID_BC_YES:
2774  DoCommandP(0, this->window_number, 0, CMD_BUY_COMPANY | CMD_MSG(STR_ERROR_CAN_T_BUY_COMPANY));
2775  break;
2776  }
2777  }
2778 };
2779 
2780 static const NWidgetPart _nested_buy_company_widgets[] = {
2782  NWidget(WWT_CLOSEBOX, COLOUR_LIGHT_BLUE),
2783  NWidget(WWT_CAPTION, COLOUR_LIGHT_BLUE, WID_BC_CAPTION), SetDataTip(STR_ERROR_MESSAGE_CAPTION_OTHER_COMPANY, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
2784  EndContainer(),
2785  NWidget(WWT_PANEL, COLOUR_LIGHT_BLUE),
2786  NWidget(NWID_VERTICAL), SetPIP(8, 8, 8),
2787  NWidget(NWID_HORIZONTAL), SetPIP(8, 10, 8),
2788  NWidget(WWT_EMPTY, INVALID_COLOUR, WID_BC_FACE), SetFill(0, 1),
2789  NWidget(WWT_EMPTY, INVALID_COLOUR, WID_BC_QUESTION), SetMinimalSize(240, 0), SetFill(1, 1),
2790  EndContainer(),
2791  NWidget(NWID_HORIZONTAL, NC_EQUALSIZE), SetPIP(100, 10, 100),
2792  NWidget(WWT_TEXTBTN, COLOUR_LIGHT_BLUE, WID_BC_NO), SetMinimalSize(60, 12), SetDataTip(STR_QUIT_NO, STR_NULL), SetFill(1, 0),
2793  NWidget(WWT_TEXTBTN, COLOUR_LIGHT_BLUE, WID_BC_YES), SetMinimalSize(60, 12), SetDataTip(STR_QUIT_YES, STR_NULL), SetFill(1, 0),
2794  EndContainer(),
2795  EndContainer(),
2796  EndContainer(),
2797 };
2798 
2799 static WindowDesc _buy_company_desc(
2800  WDP_AUTO, nullptr, 0, 0,
2803  _nested_buy_company_widgets, lengthof(_nested_buy_company_widgets)
2804 );
2805 
2811 {
2812  AllocateWindowDescFront<BuyCompanyWindow>(&_buy_company_desc, company);
2813 }
VEH_AIRCRAFT
@ VEH_AIRCRAFT
Aircraft vehicle type.
Definition: vehicle_type.h:27
SZSP_NONE
@ SZSP_NONE
Display plane with zero size in both directions (none filling and resizing).
Definition: widget_type.h:423
EconomySettings::give_money
bool give_money
allow giving other companies money
Definition: settings_type.h:509
WID_SCMF_EYEBROWS_TEXT
@ WID_SCMF_EYEBROWS_TEXT
Text about eyebrows.
Definition: company_widget.h:131
PC_WHITE
static const uint8 PC_WHITE
White palette colour.
Definition: gfx_func.h:193
SelectCompanyManagerFaceWindow::ge
GenderEthnicity ge
Gender and ethnicity.
Definition: company_gui.cpp:1299
DrawYearColumn
static void DrawYearColumn(const Rect &r, int year, const Money(*tbl)[EXPENSES_END])
Draw a column with prices.
Definition: company_gui.cpp:184
AddDateIntroducedRailTypes
RailTypes AddDateIntroducedRailTypes(RailTypes current, Date date)
Add the rail types that are to be introduced at the given date.
Definition: rail.cpp:218
SelectCompanyManagerFaceWindow::OnPaint
void OnPaint() override
The window must be repainted.
Definition: company_gui.cpp:1445
SetTileSelectSize
void SetTileSelectSize(int w, int h)
Highlight w by h tiles at the cursor.
Definition: viewport.cpp:2472
CompanyProperties::is_ai
bool is_ai
If true, the company is (also) controlled by the computer (a NoAI program).
Definition: company_base.h:94
CompanyWindow::CWP_RELOCATE_SHOW
@ CWP_RELOCATE_SHOW
Show the relocate HQ button.
Definition: company_gui.cpp:2222
WD_FRAMERECT_TOP
@ WD_FRAMERECT_TOP
Offset at top to draw the frame rectangular area.
Definition: window_gui.h:64
WID_SCMF_JACKET_TEXT
@ WID_SCMF_JACKET_TEXT
Text about jacket.
Definition: company_widget.h:136
WID_CI_WATER_DESC
@ WID_CI_WATER_DESC
Description of water.
Definition: company_widget.h:183
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
ExpensesList::GetCategoriesWidth
uint GetCategoriesWidth() const
Compute width of the expenses categories in pixels.
Definition: company_gui.cpp:107
SelectCompanyLiveryWindow::OnInvalidateData
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: company_gui.cpp:1012
ClampToI32
static int32 ClampToI32(const int64 a)
Reduce a signed 64-bit int to a signed 32-bit one.
Definition: math_func.hpp:141
CompanyWindow::CWP_BUTTONS_LOCAL
@ CWP_BUTTONS_LOCAL
Buttons of the local company.
Definition: company_gui.cpp:2226
EXPENSES_ROADVEH_RUN
@ EXPENSES_ROADVEH_RUN
Running costs road vehicles.
Definition: economy_type.h:161
CompanyInfrastructureWindow::SetStringParameters
void SetStringParameters(int widget) const override
Initialize string parameters for a widget.
Definition: company_gui.cpp:1824
WID_SCMF_CHIN_TEXT
@ WID_SCMF_CHIN_TEXT
Text about chin.
Definition: company_widget.h:135
NWidgetCore::IsDisabled
bool IsDisabled() const
Return whether the widget is disabled.
Definition: widget_type.h:390
WID_C_DESC_COLOUR_SCHEME
@ WID_C_DESC_COLOUR_SCHEME
Colour scheme.
Definition: company_widget.h:21
Engine::IterateType
static Pool::IterateWrapperFiltered< Engine, EngineTypeFilter > IterateType(VehicleType vt, size_t from=0)
Returns an iterable ensemble of all valid engines of the given type.
Definition: engine_base.h:161
INVALID_EXPENSES
@ INVALID_EXPENSES
Invalid expense type.
Definition: economy_type.h:172
Pool::PoolItem<&_company_pool >::Get
static Titem * Get(size_t index)
Returns Titem with given index.
Definition: pool_type.hpp:337
DropDownListItem::result
int result
Result code to return to window on selection.
Definition: dropdown_type.h:24
ScrollMainWindowToTile
bool ScrollMainWindowToTile(TileIndex tile, bool instant)
Scrolls the viewport of the main window to a given location.
Definition: viewport.cpp:2445
EXPENSES_END
@ EXPENSES_END
Number of expense types.
Definition: economy_type.h:171
SignalMaintenanceCost
static Money SignalMaintenanceCost(uint32 num)
Calculates the maintenance cost of a number of signals.
Definition: rail.h:438
WID_SCMF_HAIR
@ WID_SCMF_HAIR
Hair.
Definition: company_widget.h:158
DropDownListColourItem
Definition: company_gui.cpp:515
SetWindowDirty
void SetWindowDirty(WindowClass cls, WindowNumber number)
Mark window as dirty (in need of repainting)
Definition: window.cpp:3120
water.h
WID_C_DESC_INFRASTRUCTURE_COUNTS
@ WID_C_DESC_INFRASTRUCTURE_COUNTS
Infrastructure count.
Definition: company_widget.h:27
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
BuyCompanyWindow
Definition: company_gui.cpp:2715
WID_SCMF_FEMALE
@ WID_SCMF_FEMALE
Female button in the simple view.
Definition: company_widget.h:114
WID_SCMF_TIE_EARRING_L
@ WID_SCMF_TIE_EARRING_L
Tie / Earring left.
Definition: company_widget.h:166
EconomySettings::allow_shares
bool allow_shares
allow the buying/selling of shares
Definition: settings_type.h:502
Company::group_all
GroupStatistics group_all[VEH_COMPANY_END]
NOSAVE: Statistics for the ALL_GROUP group.
Definition: company_base.h:125
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
WID_SCMF_CHIN_L
@ WID_SCMF_CHIN_L
Chin left.
Definition: company_widget.h:145
QSF_PASSWORD
@ QSF_PASSWORD
password entry box, show warning about password security
Definition: textbuf_gui.h:23
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
WID_SCL_PRI_COL_DROPDOWN
@ WID_SCL_PRI_COL_DROPDOWN
Dropdown for primary colour.
Definition: company_widget.h:95
WID_SCMF_FACE
@ WID_SCMF_FACE
Current face.
Definition: company_widget.h:122
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
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
CompanyWindow::CWP_MP_C_JOIN
@ CWP_MP_C_JOIN
Display the join company button.
Definition: company_gui.cpp:2215
SelectCompanyManagerFaceWindow::advanced
bool advanced
advanced company manager face selection window
Definition: company_gui.cpp:1297
WID_C_SELECT_VIEW_BUILD_HQ
@ WID_C_SELECT_VIEW_BUILD_HQ
Panel about HQ.
Definition: company_widget.h:40
GameCreationSettings::landscape
byte landscape
the landscape we're currently in
Definition: settings_type.h:320
CompanyManagerFace
uint32 CompanyManagerFace
Company manager face bits, info see in company_manager_face.h.
Definition: company_type.h:51
_expenses_list_2
static ExpensesType _expenses_list_2[]
Grouped list of expenses.
Definition: company_gui.cpp:71
RoadTypeInfo::introduces_roadtypes
RoadTypes introduces_roadtypes
Bitmask of which other roadtypes are introduced when this roadtype is introduced.
Definition: road.h:174
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
CompanyWindow::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: company_gui.cpp:2513
_cur_year
Year _cur_year
Current year, starting at 0.
Definition: date.cpp:26
EXPENSES_OTHER
@ EXPENSES_OTHER
Other expenses.
Definition: economy_type.h:170
CMD_DECREASE_LOAN
@ CMD_DECREASE_LOAN
decrease the loan from the bank
Definition: command_type.h:239
CompanyFinancesWindow::SetupWidgets
void SetupWidgets()
Setup the widgets in the nested tree, such that the finances window is displayed properly.
Definition: company_gui.cpp:381
WID_SCMF_LIPS_MOUSTACHE_L
@ WID_SCMF_LIPS_MOUSTACHE_L
Lips / Moustache left.
Definition: company_widget.h:151
LOAN_INTERVAL
static const int LOAN_INTERVAL
The "steps" in loan size, in British Pounds!
Definition: economy_type.h:198
WC_COMPANY_COLOUR
@ WC_COMPANY_COLOUR
Company colour selection; Window numbers:
Definition: window_type.h:222
TD_LTR
@ TD_LTR
Text is written left-to-right by default.
Definition: strings_type.h:23
CompanyProperties::inaugurated_year
Year inaugurated_year
Year of starting the company.
Definition: company_base.h:79
SelectCompanyLiveryWindow::OnResize
void OnResize() override
Called after the window got resized.
Definition: company_gui.cpp:981
WWT_CAPTION
@ WWT_CAPTION
Window caption (window title between closebox and stickybox)
Definition: widget_type.h:59
currency.h
WID_SCMF_JACKET
@ WID_SCMF_JACKET
Jacket.
Definition: company_widget.h:161
NetworkClientRequestMove
void NetworkClientRequestMove(CompanyID company_id, const std::string &pass)
Notify the server of this client wanting to be moved to another company.
Definition: network_client.cpp:1208
WWT_IMGBTN
@ WWT_IMGBTN
(Toggle) Button with image
Definition: widget_type.h:50
GUIList< const Group * >
_network_server
bool _network_server
network-server is active
Definition: network.cpp:57
BuyCompanyWindow::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: company_gui.cpp:2766
WID_SCL_MATRIX_SCROLLBAR
@ WID_SCL_MATRIX_SCROLLBAR
Matrix scrollbar.
Definition: company_widget.h:98
WWT_LABEL
@ WWT_LABEL
Centered label.
Definition: widget_type.h:55
WID_C_SELECT_RELOCATE
@ WID_C_SELECT_RELOCATE
Panel about 'Relocate HQ'.
Definition: company_widget.h:44
GetCompanyManagerFaceSprite
static SpriteID GetCompanyManagerFaceSprite(CompanyManagerFace cmf, CompanyManagerFaceVariable cmfv, GenderEthnicity ge)
Gets the sprite to draw for the given company manager's face variable.
Definition: company_manager_face.h:234
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_CI_TRAM_COUNT
@ WID_CI_TRAM_COUNT
Count of tram.
Definition: company_widget.h:182
road_func.h
WID_CF_MAXLOAN_GAP
@ WID_CF_MAXLOAN_GAP
Gap above max loan widget.
Definition: company_widget.h:73
Window::CreateNestedTree
void CreateNestedTree(bool fill_nested=true)
Perform the first part of the initialization of a nested widget tree.
Definition: window.cpp:1760
SelectCompanyManagerFaceWindow::face
CompanyManagerFace face
company manager face bits
Definition: company_gui.cpp:1296
company_manager_face.h
WID_C_DESC_COMPANY_VALUE
@ WID_C_DESC_COMPANY_VALUE
Company value.
Definition: company_widget.h:25
Group::parent
GroupID parent
Parent group.
Definition: group.h:83
GenderEthnicity
GenderEthnicity
The gender/race combinations that we have faces for.
Definition: company_manager_face.h:19
CompanyInfrastructure::water
uint32 water
Count of company owned track bits for canals.
Definition: company_base.h:34
Pool::PoolItem::index
Tindex index
Index of this pool item.
Definition: pool_type.hpp:235
WID_CI_TOTAL_DESC
@ WID_CI_TOTAL_DESC
Description of total.
Definition: company_widget.h:187
NWID_HORIZONTAL
@ NWID_HORIZONTAL
Horizontal container.
Definition: widget_type.h:73
WID_SCMF_GLASSES
@ WID_SCMF_GLASSES
Glasses.
Definition: company_widget.h:170
WID_SCMF_GLASSES_TEXT
@ WID_SCMF_GLASSES_TEXT
Text about glasses.
Definition: company_widget.h:133
WC_COMPANY_MANAGER_FACE
@ WC_COMPANY_MANAGER_FACE
Alter company face window; Window numbers:
Definition: window_type.h:228
maxdim
Dimension maxdim(const Dimension &d1, const Dimension &d2)
Compute bounding box of both dimensions.
Definition: geometry_func.cpp:22
WID_CI_STATION_COUNT
@ WID_CI_STATION_COUNT
Count of station.
Definition: company_widget.h:186
WWT_MATRIX
@ WWT_MATRIX
Grid of rows and columns.
Definition: widget_type.h:57
HasBit
static bool HasBit(const T x, const uint8 y)
Checks if a bit in a value is set.
Definition: bitmath_func.hpp:103
CompanyInfrastructure::station
uint32 station
Count of company owned station tiles.
Definition: company_base.h:35
ClrBit
static T ClrBit(T &x, const uint8 y)
Clears a bit in a variable.
Definition: bitmath_func.hpp:151
WID_C_FACE
@ WID_C_FACE
View of the face.
Definition: company_widget.h:17
NetworkServerDoMove
void NetworkServerDoMove(ClientID client_id, CompanyID company_id)
Handle the tid-bits of moving a client from one company to another.
Definition: network_server.cpp:1868
WID_CI_CAPTION
@ WID_CI_CAPTION
Caption of window.
Definition: company_widget.h:176
Scrollbar::SetCount
void SetCount(int num)
Sets the number of elements in the list.
Definition: widget_type.h:710
CompanyFinancesWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: company_gui.cpp:352
WID_SCL_GROUPS_ROAD
@ WID_SCL_GROUPS_ROAD
Road groups.
Definition: company_widget.h:91
_ctrl_pressed
bool _ctrl_pressed
Is Ctrl pressed?
Definition: gfx.cpp:35
WID_SCMF_ACCEPT
@ WID_SCMF_ACCEPT
Accept.
Definition: company_widget.h:112
WID_SCMF_COLLAR_R
@ WID_SCMF_COLLAR_R
Collar right.
Definition: company_widget.h:165
EXPENSES_AIRCRAFT_RUN
@ EXPENSES_AIRCRAFT_RUN
Running costs aircraft.
Definition: economy_type.h:162
WID_SCMF_EYEBROWS
@ WID_SCMF_EYEBROWS
Eyebrows.
Definition: company_widget.h:149
SetResize
static NWidgetPart SetResize(int16 dx, int16 dy)
Widget part function for setting the resize step.
Definition: widget_type.h:993
WID_SCMF_CANCEL
@ WID_SCMF_CANCEL
Cancel.
Definition: company_widget.h:111
zoom_func.h
Group::livery
Livery livery
Custom colour scheme for vehicles in this group.
Definition: group.h:78
ROADTYPE_END
@ ROADTYPE_END
Used for iterations.
Definition: road_type.h:26
Window::RaiseButtons
void RaiseButtons(bool autoraise=false)
Raise the buttons of the window.
Definition: window.cpp:584
WID_CI_TOTAL
@ WID_CI_TOTAL
Count of total.
Definition: company_widget.h:188
Economy::max_loan
Money max_loan
NOSAVE: Maximum possible loan.
Definition: economy_type.h:29
SelectCompanyManagerFaceWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: company_gui.cpp:1506
DropDownListItem
Base list item class from which others are derived.
Definition: dropdown_type.h:22
SelectCompanyLiveryWindow
Company livery colour scheme window.
Definition: company_gui.cpp:554
WID_C_DESC_VEHICLE
@ WID_C_DESC_VEHICLE
Vehicles.
Definition: company_widget.h:23
_settings_client
ClientSettings _settings_client
The current settings for this game.
Definition: settings.cpp:52
WID_C_DESC_INAUGURATION
@ WID_C_DESC_INAUGURATION
Inauguration.
Definition: company_widget.h:20
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:642
WID_SCMF_SELECT_FACE
@ WID_SCMF_SELECT_FACE
Select face.
Definition: company_widget.h:110
SZSP_HORIZONTAL
@ SZSP_HORIZONTAL
Display plane with zero size vertically, and filling and resizing horizontally.
Definition: widget_type.h:422
AddDateIntroducedRoadTypes
RoadTypes AddDateIntroducedRoadTypes(RoadTypes current, Date date)
Add the road types that are to be introduced at the given date.
Definition: road.cpp:155
CMD_SET_COMPANY_COLOUR
@ CMD_SET_COMPANY_COLOUR
set the colour of the company
Definition: command_type.h:236
WWT_EMPTY
@ WWT_EMPTY
Empty widget, place holder to reserve space in widget array.
Definition: widget_type.h:46
Window::owner
Owner owner
The owner of the content shown in this window. Company colour is acquired from this variable.
Definition: window_gui.h:319
SelectCompanyLiveryWindow::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: company_gui.cpp:737
WWT_PUSHARROWBTN
@ WWT_PUSHARROWBTN
Normal push-button (no toggle button) with arrow caption.
Definition: widget_type.h:106
Company::infrastructure
CompanyInfrastructure infrastructure
NOSAVE: Counts of company owned infrastructure.
Definition: company_base.h:128
network_gui.h
WID_CI_ROAD_COUNT
@ WID_CI_ROAD_COUNT
Count of road.
Definition: company_widget.h:180
WindowNumber
int32 WindowNumber
Number to differentiate different windows of the same class.
Definition: window_type.h:711
WC_COMPANY
@ WC_COMPANY
Company view; Window numbers:
Definition: window_type.h:361
CompanyProperties::face
CompanyManagerFace face
Face description of the president.
Definition: company_base.h:64
GRFLoadedFeatures::used_liveries
uint64 used_liveries
Bitmask of LiveryScheme used by the defined engines.
Definition: newgrf.h:176
SA_RIGHT
@ SA_RIGHT
Right align the text (must be a single bit).
Definition: gfx_type.h:330
GUISettings::expenses_layout
bool expenses_layout
layout of expenses window
Definition: settings_type.h:163
Engine
Definition: engine_base.h:27
SA_VERT_CENTER
@ SA_VERT_CENTER
Vertically center the text.
Definition: gfx_type.h:334
MAX_DAY
#define MAX_DAY
The number of days till the last day.
Definition: date_type.h:98
VEH_ROAD
@ VEH_ROAD
Road vehicle type.
Definition: vehicle_type.h:25
WID_SCMF_COLLAR
@ WID_SCMF_COLLAR
Collar.
Definition: company_widget.h:164
WID_C_DESC_INFRASTRUCTURE
@ WID_C_DESC_INFRASTRUCTURE
Infrastructure.
Definition: company_widget.h:26
RAILTYPES_NONE
@ RAILTYPES_NONE
No rail types.
Definition: rail_type.h:47
WID_SCMF_LIPS_MOUSTACHE_TEXT
@ WID_SCMF_LIPS_MOUSTACHE_TEXT
Text about lips and moustache.
Definition: company_widget.h:128
ExpensesList::num_subtotals
const uint num_subtotals
Number of sub-totals in the list.
Definition: company_gui.cpp:94
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
Owner
Owner
Enum for all companies/owners.
Definition: company_type.h:18
CalculateCompanyValue
Money CalculateCompanyValue(const Company *c, bool including_loan=true)
Calculate the value of the company.
Definition: economy.cpp:111
Scrollbar
Scrollbar data structure.
Definition: widget_type.h:629
Group::vehicle_type
VehicleType vehicle_type
Vehicle type of the group.
Definition: group.h:75
SelectCompanyManagerFaceWindow
Management class for customizing the face of the company manager.
Definition: company_gui.cpp:1294
WID_CF_INCREASE_LOAN
@ WID_CF_INCREASE_LOAN
Increase loan.
Definition: company_widget.h:76
WID_SCMF_CHIN
@ WID_SCMF_CHIN
Chin.
Definition: company_widget.h:146
Window::Window
Window(WindowDesc *desc)
Empty constructor, initialization has been moved to InitNested() called from the constructor of the d...
Definition: window.cpp:1799
WID_SCMF_ETHNICITY_EUR
@ WID_SCMF_ETHNICITY_EUR
Text about ethnicity european.
Definition: company_widget.h:138
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
NWidgetPart
Partial widget specification to allow NWidgets to be written nested.
Definition: widget_type.h:971
WID_CF_REPAY_LOAN
@ WID_CF_REPAY_LOAN
Decrease loan..
Definition: company_widget.h:77
WID_SCMF_EYEBROWS_L
@ WID_SCMF_EYEBROWS_L
Eyebrows left.
Definition: company_widget.h:148
WID_SCMF_EYECOLOUR_L
@ WID_SCMF_EYECOLOUR_L
Eyecolour left.
Definition: company_widget.h:142
CompanyProperties::current_loan
Money current_loan
Amount of money borrowed from the bank.
Definition: company_base.h:68
WID_C_PRESIDENT_NAME
@ WID_C_PRESIDENT_NAME
Button to change president name.
Definition: company_widget.h:35
SetDataTip
static NWidgetPart SetDataTip(uint32 data, StringID tip)
Widget part function for setting the data and tooltip.
Definition: widget_type.h:1107
SelectCompanyLiveryWindow::OnDropdownSelect
void OnDropdownSelect(int widget, int index) override
A dropdown option associated to this window has been selected.
Definition: company_gui.cpp:986
WID_SCMF_NOSE
@ WID_SCMF_NOSE
Nose.
Definition: company_widget.h:155
BuyCompanyWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: company_gui.cpp:2747
CompanyWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: company_gui.cpp:2385
GetStringBoundingBox
Dimension GetStringBoundingBox(const char *str, FontSize start_fontsize)
Return the string dimension in pixels.
Definition: gfx.cpp:888
CompanyInfrastructure::GetRoadTotal
uint32 GetRoadTotal() const
Get total sum of all owned road bits.
Definition: company_cmd.cpp:1163
textbuf_gui.h
ExpensesList
Expense list container.
Definition: company_gui.cpp:91
GroupStatistics::num_vehicle
uint16 num_vehicle
Number of vehicles.
Definition: group.h:26
CompanyWindow::CWP_MP_C_PWD
@ CWP_MP_C_PWD
Display the company password button.
Definition: company_gui.cpp:2214
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:787
GameSettings::game_creation
GameCreationSettings game_creation
settings used during the creation of a game (map)
Definition: settings_type.h:576
QSF_LEN_IN_CHARS
@ QSF_LEN_IN_CHARS
the length of the string is counted in characters
Definition: textbuf_gui.h:22
MAX_LENGTH_COMPANY_NAME_CHARS
static const uint MAX_LENGTH_COMPANY_NAME_CHARS
The maximum length of a company name in characters including '\0'.
Definition: company_type.h:40
WID_SCMF_MALE
@ WID_SCMF_MALE
Male button in the simple view.
Definition: company_widget.h:113
GENDER_FEMALE
@ GENDER_FEMALE
This bit set means a female, otherwise male.
Definition: company_manager_face.h:20
WID_C_DESC_OWNERS
@ WID_C_DESC_OWNERS
Owner in Owners.
Definition: company_widget.h:30
GetCompanyManagerFaceBits
static uint GetCompanyManagerFaceBits(CompanyManagerFace cmf, CompanyManagerFaceVariable cmfv, GenderEthnicity ge)
Make sure the table's size is right.
Definition: company_manager_face.h:96
WindowDesc
High level window description.
Definition: window_gui.h:168
RailtypeInfo::name
StringID name
Name of this rail type.
Definition: rail.h:173
WID_SCMF_SAVE
@ WID_SCMF_SAVE
Save face.
Definition: company_widget.h:125
CompanyFinancesWindow::OnPaint
void OnPaint() override
The window must be repainted.
Definition: company_gui.cpp:392
GetRailTypeInfo
static const RailtypeInfo * GetRailTypeInfo(RailType railtype)
Returns a pointer to the Railtype information for a given railtype.
Definition: rail.h:304
Group
Group data.
Definition: group.h:72
window_gui.h
_nested_select_company_manager_face_widgets
static const NWidgetPart _nested_select_company_manager_face_widgets[]
Nested widget description for the company manager face selection dialog.
Definition: company_gui.cpp:1148
WID_CF_TOGGLE_SIZE
@ WID_CF_TOGGLE_SIZE
Toggle windows size.
Definition: company_widget.h:61
WID_BC_QUESTION
@ WID_BC_QUESTION
Question text.
Definition: company_widget.h:195
Window::SetShaded
void SetShaded(bool make_shaded)
Set the shaded state of the window to make_shaded.
Definition: window.cpp:1040
NC_EQUALSIZE
@ NC_EQUALSIZE
Value of the NCB_EQUALSIZE flag.
Definition: widget_type.h:463
ShowCompanyFinances
void ShowCompanyFinances(CompanyID company)
Open the finances window of a company.
Definition: company_gui.cpp:477
CompanyInfrastructureWindow::total_width
uint total_width
String width of the total cost line.
Definition: company_gui.cpp:1762
GRFLoadedFeatures::has_2CC
bool has_2CC
Set if any vehicle is loaded which uses 2cc (two company colours).
Definition: newgrf.h:175
WID_SCL_CLASS_SHIP
@ WID_SCL_CLASS_SHIP
Class ship.
Definition: company_widget.h:88
CompanyInfrastructureWindow::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: company_gui.cpp:1833
CompanyInfrastructure::GetTramTotal
uint32 GetTramTotal() const
Get total sum of all owned tram bits.
Definition: company_cmd.cpp:1176
WID_SCMF_NOSE_R
@ WID_SCMF_NOSE_R
Nose right.
Definition: company_widget.h:156
WID_C_BUY_SHARE
@ WID_C_BUY_SHARE
Button to buy a share.
Definition: company_widget.h:37
CMD_SET_GROUP_LIVERY
@ CMD_SET_GROUP_LIVERY
set the livery for a group
Definition: command_type.h:328
WID_SCL_CLASS_GENERAL
@ WID_SCL_CLASS_GENERAL
Class general.
Definition: company_widget.h:85
WID_SCL_GROUPS_AIRCRAFT
@ WID_SCL_GROUPS_AIRCRAFT
Aircraft groups.
Definition: company_widget.h:93
CompanyInfrastructureWindow::OnInvalidateData
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: company_gui.cpp:2065
WDP_AUTO
@ WDP_AUTO
Find a place automatically.
Definition: window_gui.h:156
WID_SCMF_EYECOLOUR_TEXT
@ WID_SCMF_EYECOLOUR_TEXT
Text about eyecolour.
Definition: company_widget.h:132
INVALID_GROUP
static const GroupID INVALID_GROUP
Sentinel for invalid groups.
Definition: group_type.h:18
EXPENSES_CONSTRUCTION
@ EXPENSES_CONSTRUCTION
Construction costs.
Definition: economy_type.h:158
CompanyProperties::colour
byte colour
Company colour.
Definition: company_base.h:70
RailType
RailType
Enumeration for all possible railtypes.
Definition: rail_type.h:27
WID_SCMF_MALE2
@ WID_SCMF_MALE2
Male button in the advanced view.
Definition: company_widget.h:115
Window::resize
ResizeInfo resize
Resize information.
Definition: window_gui.h:317
DrawCategories
static void DrawCategories(const Rect &r)
Draw the expenses categories.
Definition: company_gui.cpp:136
WID_SCMF_HAIR_L
@ WID_SCMF_HAIR_L
Hair left.
Definition: company_widget.h:157
MAX_LENGTH_PRESIDENT_NAME_CHARS
static const uint MAX_LENGTH_PRESIDENT_NAME_CHARS
The maximum length of a president name in characters including '\0'.
Definition: company_type.h:39
tilehighlight_func.h
WC_BUY_COMPANY
@ WC_BUY_COMPANY
Buyout company (merger); Window numbers:
Definition: window_type.h:575
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
Window::EnableWidget
void EnableWidget(byte widget_index)
Sets a widget to Enabled.
Definition: window_gui.h:405
Window::InitNested
void InitNested(WindowNumber number=0)
Perform complete initialization of the Window with nested widgets, to allow use.
Definition: window.cpp:1789
LIT_ALL
static const byte LIT_ALL
Show the liveries of all companies.
Definition: livery.h:17
DirtyCompanyInfrastructureWindows
void DirtyCompanyInfrastructureWindows(CompanyID company)
Redraw all windows with company infrastructure counts.
Definition: company_gui.cpp:2709
WID_SCMF_EYECOLOUR
@ WID_SCMF_EYECOLOUR
Eyecolour.
Definition: company_widget.h:143
DoSelectCompanyManagerFace
static void DoSelectCompanyManagerFace(Window *parent)
Open the simple/advanced company manager face selection window.
Definition: company_gui.cpp:1709
WID_C_VIEW_INFRASTRUCTURE
@ WID_C_VIEW_INFRASTRUCTURE
Panel about infrastructure.
Definition: company_widget.h:47
WID_SCMF_FACECODE
@ WID_SCMF_FACECODE
Get the face code.
Definition: company_widget.h:124
WID_C_SELL_SHARE
@ WID_C_SELL_SHARE
Button to sell a share.
Definition: company_widget.h:38
WID_SCMF_SEL_MALEFEMALE
@ WID_SCMF_SEL_MALEFEMALE
Selection to display the male/female buttons in the simple view.
Definition: company_widget.h:118
BuyCompanyWindow::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: company_gui.cpp:2721
WID_SCL_CLASS_AIRCRAFT
@ WID_SCL_CLASS_AIRCRAFT
Class aircraft.
Definition: company_widget.h:89
WID_SCMF_TIE_EARRING_R
@ WID_SCMF_TIE_EARRING_R
Tie / Earring right.
Definition: company_widget.h:168
Window::SetDirty
void SetDirty() const
Mark entire window as dirty (in need of re-paint)
Definition: window.cpp:993
WD_FRAMERECT_LEFT
@ WD_FRAMERECT_LEFT
Offset at left to draw the frame rectangular area.
Definition: window_gui.h:62
ShowCompanyInfrastructure
static void ShowCompanyInfrastructure(CompanyID company)
Open the infrastructure window of a company.
Definition: company_gui.cpp:2085
INVALID_OWNER
@ INVALID_OWNER
An invalid owner.
Definition: company_type.h:29
CompanyProperties::money
Money money
Money owned by the company.
Definition: company_base.h:66
EXPENSES_SHIP_INC
@ EXPENSES_SHIP_INC
Income from ships.
Definition: economy_type.h:168
WID_SCMF_HAS_MOUSTACHE_EARRING_TEXT
@ WID_SCMF_HAS_MOUSTACHE_EARRING_TEXT
Text about moustache and earring.
Definition: company_widget.h:126
WD_FRAMERECT_RIGHT
@ WD_FRAMERECT_RIGHT
Offset at right to draw the frame rectangular area.
Definition: window_gui.h:63
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
CompanyInfrastructureWindow::roadtypes
RoadTypes roadtypes
Valid roadtypes.
Definition: company_gui.cpp:1760
NWidgetBase
Baseclass for nested widgets.
Definition: widget_type.h:126
station_func.h
CompanyFinancesWindow::OnHundredthTick
void OnHundredthTick() override
Called once every 100 (game) ticks, or once every 3s, whichever comes last.
Definition: company_gui.cpp:451
CompanyFinancesWindow::small
bool small
Window is toggled to 'small'.
Definition: company_gui.cpp:275
WID_C_COMPANY_PASSWORD
@ WID_C_COMPANY_PASSWORD
Button to set company password.
Definition: company_widget.h:54
WD_FRAMETEXT_BOTTOM
@ WD_FRAMETEXT_BOTTOM
Bottom offset of the text of the frame.
Definition: window_gui.h:75
WID_C_SELECT_MULTIPLAYER
@ WID_C_SELECT_MULTIPLAYER
Multiplayer selection panel.
Definition: company_widget.h:53
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
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
CompanyWindow::SetStringParameters
void SetStringParameters(int widget) const override
Initialize string parameters for a widget.
Definition: company_gui.cpp:2495
RoadTypes
RoadTypes
The different roadtypes we support, but then a bitmask of them.
Definition: road_type.h:36
WID_CF_LOAN_VALUE
@ WID_CF_LOAN_VALUE
Loan.
Definition: company_widget.h:70
WID_CI_RAIL_DESC
@ WID_CI_RAIL_DESC
Description of rail.
Definition: company_widget.h:177
WID_SCMF_JACKET_R
@ WID_SCMF_JACKET_R
Jacket right.
Definition: company_widget.h:162
LIT_COMPANY
static const byte LIT_COMPANY
Show the liveries of your own company.
Definition: livery.h:16
dropdown_type.h
WID_CF_INFRASTRUCTURE
@ WID_CF_INFRASTRUCTURE
View company infrastructure.
Definition: company_widget.h:78
CMD_SELL_SHARE_IN_COMPANY
@ CMD_SELL_SHARE_IN_COMPANY
sell a share from a company
Definition: command_type.h:259
_settings_game
GameSettings _settings_game
Game settings of a running game or the scenario editor.
Definition: settings.cpp:53
Livery::in_use
byte in_use
Bit 0 set if this livery should override the default livery first colour, Bit 1 for the second colour...
Definition: livery.h:79
CompanyInfrastructureWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: company_gui.cpp:1960
WID_SCMF_COLLAR_TEXT
@ WID_SCMF_COLLAR_TEXT
Text about collar.
Definition: company_widget.h:137
ExpensesList::length
const uint length
Number of items in list.
Definition: company_gui.cpp:93
GameSettings::economy
EconomySettings economy
settings to change the economy
Definition: settings_type.h:585
Window::SetWidgetDisabledState
void SetWidgetDisabledState(byte widget_index, bool disab_stat)
Sets the enabled/disabled status of a widget.
Definition: window_gui.h:386
WID_SCL_CLASS_RAIL
@ WID_SCL_CLASS_RAIL
Class rail.
Definition: company_widget.h:86
WID_BC_FACE
@ WID_BC_FACE
Face button.
Definition: company_widget.h:194
Window::parent
Window * parent
Parent window.
Definition: window_gui.h:332
WL_INFO
@ WL_INFO
Used for DoCommand-like (and some non-fatal AI GUI) errors/information.
Definition: error.h:22
WID_SCL_GROUPS_SHIP
@ WID_SCL_GROUPS_SHIP
Ship groups.
Definition: company_widget.h:92
_local_company
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
Definition: company_cmd.cpp:46
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:1118
Window::left
int left
x position of left edge of the window
Definition: window_gui.h:312
CompanyWindow::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: company_gui.cpp:2312
WID_SCMF_CAPTION
@ WID_SCMF_CAPTION
Caption of window.
Definition: company_widget.h:108
RoadMaintenanceCost
static Money RoadMaintenanceCost(RoadType roadtype, uint32 num, uint32 total_num)
Calculates the maintenance cost of a number of road bits.
Definition: road_func.h:125
CLIENT_ID_SERVER
@ CLIENT_ID_SERVER
Servers always have this ID.
Definition: network_type.h:49
WID_SCMF_TOGGLE_LARGE_SMALL_BUTTON
@ WID_SCMF_TOGGLE_LARGE_SMALL_BUTTON
Toggle for large or small.
Definition: company_widget.h:121
WID_SCMF_NOSE_TEXT
@ WID_SCMF_NOSE_TEXT
Text about nose.
Definition: company_widget.h:134
StrEmpty
static bool StrEmpty(const char *s)
Check if a string buffer is empty.
Definition: string_func.h:64
CompanyFinancesWindow::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: company_gui.cpp:324
CompanyProperties::location_of_HQ
TileIndex location_of_HQ
Northern tile of HQ; INVALID_TILE when there is none.
Definition: company_base.h:74
CompanyWindow::OnQueryTextFinished
void OnQueryTextFinished(char *str) override
The query window opened from this window has closed.
Definition: company_gui.cpp:2627
_networking
bool _networking
are we in networking mode?
Definition: network.cpp:56
rail.h
WID_SCL_MATRIX
@ WID_SCL_MATRIX
Matrix.
Definition: company_widget.h:97
_shift_pressed
bool _shift_pressed
Is Shift pressed?
Definition: gfx.cpp:36
DrawSprite
void DrawSprite(SpriteID img, PaletteID pal, int x, int y, const SubSprite *sub, ZoomLevel zoom)
Draw a sprite, not in a viewport.
Definition: gfx.cpp:1041
CompanyFinancesWindow::max_money
static Money max_money
The maximum amount of money a company has had this 'run'.
Definition: company_gui.cpp:274
SelectCompanyManagerFaceWindow::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: company_gui.cpp:1400
road.h
AirportMaintenanceCost
Money AirportMaintenanceCost(Owner owner)
Calculates the maintenance cost of all airports of a company.
Definition: station.cpp:651
RailMaintenanceCost
static Money RailMaintenanceCost(RailType railtype, uint32 num, uint32 total_num)
Calculates the maintenance cost of a number of track bits.
Definition: rail.h:427
CompanyInfrastructure::road
uint32 road[ROADTYPE_END]
Count of company owned track bits for each road type.
Definition: company_base.h:31
WID_SCL_CAPTION
@ WID_SCL_CAPTION
Caption of window.
Definition: company_widget.h:84
CompanyFinancesWindow::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: company_gui.cpp:422
CompanyInfrastructure::signal
uint32 signal
Count of company owned signals.
Definition: company_base.h:32
CompanyProperties::yearly_expenses
Money yearly_expenses[3][EXPENSES_END]
Expenses of the company for the last three years, in every ExpensesType category.
Definition: company_base.h:96
Point
Coordinates of a point in 2D.
Definition: geometry_type.hpp:21
RoadTypeInfo::name
StringID name
Name of this rail type.
Definition: road.h:100
error.h
NWidgetCore::IsLowered
bool IsLowered() const
Return whether the widget is lowered.
Definition: widget_type.h:375
WID_SCMF_HAS_GLASSES
@ WID_SCMF_HAS_GLASSES
Has glasses.
Definition: company_widget.h:141
WID_C_DESC_VEHICLE_COUNTS
@ WID_C_DESC_VEHICLE_COUNTS
Vehicle count.
Definition: company_widget.h:24
_loaded_newgrf_features
GRFLoadedFeatures _loaded_newgrf_features
Indicates which are the newgrf features currently loaded ingame.
Definition: newgrf.cpp:80
StationMaintenanceCost
static Money StationMaintenanceCost(uint32 num)
Calculates the maintenance cost of a number of station tiles.
Definition: station_func.h:64
CompanyProperties::share_owners
Owner share_owners[4]
Owners of the 4 shares of the company. INVALID_OWNER if nobody has bought them yet.
Definition: company_base.h:77
ROADTYPE_BEGIN
@ ROADTYPE_BEGIN
Used for iterations.
Definition: road_type.h:23
WID_C_HAS_PASSWORD
@ WID_C_HAS_PASSWORD
Has company password lock.
Definition: company_widget.h:52
WID_SCMF_EYEBROWS_R
@ WID_SCMF_EYEBROWS_R
Eyebrows right.
Definition: company_widget.h:150
date_func.h
CompanyFinancesWindow::SetStringParameters
void SetStringParameters(int widget) const override
Initialize string parameters for a widget.
Definition: company_gui.cpp:287
ShowBuyCompanyDialog
void ShowBuyCompanyDialog(CompanyID company)
Show the query to buy another company.
Definition: company_gui.cpp:2810
stdafx.h
SelectCompanyManagerFaceWindow::OnQueryTextFinished
void OnQueryTextFinished(char *str) override
The query window opened from this window has closed.
Definition: company_gui.cpp:1680
PC_BLACK
static const uint8 PC_BLACK
Black palette colour.
Definition: gfx_func.h:190
EXPENSES_AIRCRAFT_INC
@ EXPENSES_AIRCRAFT_INC
Income from aircraft.
Definition: economy_type.h:167
Window::window_number
WindowNumber window_number
Window number within the window class.
Definition: window_gui.h:307
RoadType
RoadType
The different roadtypes we support.
Definition: road_type.h:22
VehicleType
VehicleType
Available vehicle types.
Definition: vehicle_type.h:21
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:116
EXPENSES_LOAN_INT
@ EXPENSES_LOAN_INT
Interest payments over the loan.
Definition: economy_type.h:169
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:3158
NWidgetStacked::SetDisplayedPlane
void SetDisplayedPlane(int plane)
Select which plane to show (for NWID_SELECTION only).
Definition: widget.cpp:1195
CS_ALPHANUMERAL
@ CS_ALPHANUMERAL
Both numeric and alphabetic and spaces and stuff.
Definition: string_type.h:27
viewport_func.h
NetworkCompanyIsPassworded
bool NetworkCompanyIsPassworded(CompanyID company_id)
Check if the company we want to join requires a password.
Definition: network.cpp:211
EXP_LINESPACE
static const uint EXP_LINESPACE
Company GUI constants.
Definition: company_gui.cpp:47
NWidgetStacked
Stacked widgets, widgets all occupying the same space in the window.
Definition: widget_type.h:438
WC_NONE
@ WC_NONE
No window, redirects to WC_MAIN_WINDOW.
Definition: window_type.h:37
SA_HOR_CENTER
@ SA_HOR_CENTER
Horizontally center the text.
Definition: gfx_type.h:329
WID_SCMF_COLLAR_L
@ WID_SCMF_COLLAR_L
Collar left.
Definition: company_widget.h:163
WID_C_BUILD_HQ
@ WID_C_BUILD_HQ
Button to build the HQ.
Definition: company_widget.h:42
NETWORK_PASSWORD_LENGTH
static const uint NETWORK_PASSWORD_LENGTH
The maximum length of the password, in bytes including '\0' (must be >= NETWORK_SERVER_ID_LENGTH)
Definition: config.h:61
NWID_VERTICAL
@ NWID_VERTICAL
Vertical container.
Definition: widget_type.h:75
GetStringHeight
int GetStringHeight(const char *str, int maxw, FontSize fontsize)
Calculates height of string (in pixels).
Definition: gfx.cpp:713
GetSpriteSize
Dimension GetSpriteSize(SpriteID sprid, Point *offset, ZoomLevel zoom)
Get the size of a sprite.
Definition: gfx.cpp:976
ExpensesList::et
const ExpensesType * et
Expenses items.
Definition: company_gui.cpp:92
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
GUIList::NeedRebuild
bool NeedRebuild() const
Check if a rebuild is needed.
Definition: sortlist_type.h:362
WID_CF_SEL_PANEL
@ WID_CF_SEL_PANEL
Select panel or nothing.
Definition: company_widget.h:62
WID_C_CAPTION
@ WID_C_CAPTION
Caption of the window.
Definition: company_widget.h:15
IncreaseCompanyManagerFaceBits
static void IncreaseCompanyManagerFaceBits(CompanyManagerFace &cmf, CompanyManagerFaceVariable cmfv, GenderEthnicity ge, int8 amount)
Increase/Decrease the company manager's face variable by the given amount.
Definition: company_manager_face.h:130
WID_C_RELOCATE_HQ
@ WID_C_RELOCATE_HQ
Button to relocate the HQ.
Definition: company_widget.h:45
EconomySettings::infrastructure_maintenance
bool infrastructure_maintenance
enable monthly maintenance fee for owner infrastructure
Definition: settings_type.h:522
WID_SCL_SEC_COL_DROPDOWN
@ WID_SCL_SEC_COL_DROPDOWN
Dropdown for secondary colour.
Definition: company_widget.h:96
WID_SCMF_SEL_LOADSAVE
@ WID_SCMF_SEL_LOADSAVE
Selection to display the load/save/number buttons in the advanced view.
Definition: company_widget.h:117
WID_SCMF_SEL_PARTS
@ WID_SCMF_SEL_PARTS
Selection to display the buttons for setting each part of the face in the advanced view.
Definition: company_widget.h:119
StringID
uint32 StringID
Numeric value that represents a string, independent of the selected language.
Definition: strings_type.h:16
WID_SCMF_EYECOLOUR_R
@ WID_SCMF_EYECOLOUR_R
Eyecolour right.
Definition: company_widget.h:144
CompanyWidgets
CompanyWidgets
Widgets of the CompanyWindow class.
Definition: company_widget.h:14
WID_C_COMPANY_JOIN
@ WID_C_COMPANY_JOIN
Button to join company.
Definition: company_widget.h:55
PALETTE_RECOLOUR_START
static const PaletteID PALETTE_RECOLOUR_START
First recolour sprite for company colours.
Definition: sprites.h:1569
WID_CF_EXPS_CATEGORY
@ WID_CF_EXPS_CATEGORY
Column for expenses category strings.
Definition: company_widget.h:63
EndContainer
static NWidgetPart EndContainer()
Widget part function for denoting the end of a container (horizontal, vertical, WWT_FRAME,...
Definition: widget_type.h:1092
WID_CI_ROAD_DESC
@ WID_CI_ROAD_DESC
Description of road.
Definition: company_widget.h:179
_select_company_manager_face_desc
static WindowDesc _select_company_manager_face_desc(WDP_AUTO, "company_face", 0, 0, WC_COMPANY_MANAGER_FACE, WC_NONE, WDF_CONSTRUCTION, _nested_select_company_manager_face_widgets, lengthof(_nested_select_company_manager_face_widgets))
Company manager face selection window description.
Clamp
static T Clamp(const T a, const T min, const T max)
Clamp a value between an interval.
Definition: math_func.hpp:77
WID_CF_EXPS_PRICE3
@ WID_CF_EXPS_PRICE3
Column for year Y expenses.
Definition: company_widget.h:66
Pool::PoolItem<&_company_pool >::Iterate
static Pool::IterateWrapper< Titem > Iterate(size_t from=0)
Returns an iterable ensemble of all valid Titem.
Definition: pool_type.hpp:386
strings_func.h
NWID_VSCROLLBAR
@ NWID_VSCROLLBAR
Vertical scrollbar.
Definition: widget_type.h:82
WID_SCMF_RANDOM_NEW_FACE
@ WID_SCMF_RANDOM_NEW_FACE
Create random new face.
Definition: company_widget.h:120
WID_C_SELECT_GIVE_MONEY
@ WID_C_SELECT_GIVE_MONEY
Selection widget for the give money button.
Definition: company_widget.h:49
NWidgetCore::SetDataTip
void SetDataTip(uint32 widget_data, StringID tool_tip)
Set data and tool tip of the nested widget.
Definition: widget.cpp:962
GroupID
uint16 GroupID
Type for all group identifiers.
Definition: group_type.h:13
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
CompanyWindow::OnInvalidateData
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: company_gui.cpp:2662
WID_C_VIEW_HQ
@ WID_C_VIEW_HQ
Button to view the HQ.
Definition: company_widget.h:41
WID_C_NEW_FACE
@ WID_C_NEW_FACE
Button to make new face.
Definition: company_widget.h:33
WID_SCMF_CHIN_R
@ WID_SCMF_CHIN_R
Chin right.
Definition: company_widget.h:147
WID_C_SELECT_BUTTONS
@ WID_C_SELECT_BUTTONS
Selection widget for the button bar.
Definition: company_widget.h:32
WID_C_FACE_TITLE
@ WID_C_FACE_TITLE
Title for the face.
Definition: company_widget.h:18
WIDGET_LIST_END
static const int WIDGET_LIST_END
indicate the end of widgets' list for vararg functions
Definition: widget_type.h:20
SelectCompanyLiveryWindow::OnPaint
void OnPaint() override
The window must be repainted.
Definition: company_gui.cpp:789
CMD_INCREASE_LOAN
@ CMD_INCREASE_LOAN
increase the loan from the bank
Definition: command_type.h:238
SelectCompanyManagerFaceWindow::OnInit
void OnInit() override
Notification that the nested widget tree gets initialized.
Definition: company_gui.cpp:1377
WWT_TEXT
@ WWT_TEXT
Pure simple text.
Definition: widget_type.h:56
CMD_RENAME_COMPANY
@ CMD_RENAME_COMPANY
change the company name
Definition: command_type.h:246
WID_SCL_CLASS_ROAD
@ WID_SCL_CLASS_ROAD
Class road.
Definition: company_widget.h:87
CompanyFinancesWindow
Window class displaying the company finances.
Definition: company_gui.cpp:273
company_widget.h
Window::SetWidgetsLoweredState
void CDECL SetWidgetsLoweredState(bool lowered_stat, int widgets,...)
Sets the lowered/raised status of a list of widgets.
Definition: window.cpp:566
_company_manager_face
CompanyManagerFace _company_manager_face
for company manager face storage in openttd.cfg
Definition: company_cmd.cpp:49
FONT_HEIGHT_NORMAL
#define FONT_HEIGHT_NORMAL
Height of characters in the normal (FS_NORMAL) font.
Definition: gfx_func.h:165
ScaleGUITrad
static int ScaleGUITrad(int value)
Scale traditional pixel dimensions to GUI zoom level.
Definition: zoom_func.h:76
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
COMPANY_SPECTATOR
@ COMPANY_SPECTATOR
The client is spectating.
Definition: company_type.h:35
RAILTYPE_END
@ RAILTYPE_END
Used for iterations.
Definition: rail_type.h:33
CompanyWindow::CompanyWindowPlanes
CompanyWindowPlanes
Display planes in the company window.
Definition: company_gui.cpp:2212
geometry_func.hpp
WID_C_COMPANY_NAME
@ WID_C_COMPANY_NAME
Button to change company name.
Definition: company_widget.h:36
WID_SCMF_TOGGLE_LARGE_SMALL
@ WID_SCMF_TOGGLE_LARGE_SMALL
Toggle for large or small.
Definition: company_widget.h:109
PaletteID
uint32 PaletteID
The number of the palette.
Definition: gfx_type.h:18
endof
#define endof(x)
Get the end element of an fixed size array.
Definition: stdafx.h:386
WID_SCMF_TIE_EARRING_TEXT
@ WID_SCMF_TIE_EARRING_TEXT
Text about tie and earring.
Definition: company_widget.h:127
SetDParamMaxValue
void SetDParamMaxValue(uint n, uint64 max_value, uint min_count, FontSize size)
Set DParam n to some number that is suitable for string size computations.
Definition: strings.cpp:94
WID_CF_BALANCE_VALUE
@ WID_CF_BALANCE_VALUE
Bank balance value.
Definition: company_widget.h:69
CanalMaintenanceCost
static Money CanalMaintenanceCost(uint32 num)
Calculates the maintenance cost of a number of canal tiles.
Definition: water.h:51
SetMinimalSize
static NWidgetPart SetMinimalSize(int16 x, int16 y)
Widget part function for setting the minimal size.
Definition: widget_type.h:1010
SelectCompanyManagerFaceWindow::DrawFaceStringLabel
void DrawFaceStringLabel(byte widget_index, uint8 val, bool is_bool_widget) const
Draw dynamic a label to the left of the button and a value in the button.
Definition: company_gui.cpp:1313
WID_C_COLOUR_SCHEME
@ WID_C_COLOUR_SCHEME
Button to change colour scheme.
Definition: company_widget.h:34
WWT_PANEL
@ WWT_PANEL
Simple depressed panel.
Definition: widget_type.h:48
WID_SCMF_GLASSES_L
@ WID_SCMF_GLASSES_L
Glasses left.
Definition: company_widget.h:169
WID_SCMF_FEMALE2
@ WID_SCMF_FEMALE2
Female button in the advanced view.
Definition: company_widget.h:116
SelectCompanyManagerFaceWindow::is_moust_male
bool is_moust_male
Male face with a moustache.
Definition: company_gui.cpp:1301
DrawCompanyManagerFace
void DrawCompanyManagerFace(CompanyManagerFace cmf, int colour, int x, int y)
Draws the face of a company manager's face.
Definition: company_gui.cpp:1110
Window::SetWidgetsDisabledState
void CDECL SetWidgetsDisabledState(bool disab_stat, int widgets,...)
Sets the enabled/disabled status of a list of widgets.
Definition: window.cpp:547
CompanyInfrastructure::rail
uint32 rail[RAILTYPE_END]
Count of company owned track bits for each rail type.
Definition: company_base.h:33
CompanyWindow::OnPaint
void OnPaint() override
The window must be repainted.
Definition: company_gui.cpp:2237
CMD_BUY_SHARE_IN_COMPANY
@ CMD_BUY_SHARE_IN_COMPANY
buy a share from a company
Definition: command_type.h:258
newgrf.h
Window::IsWidgetLowered
bool IsWidgetLowered(byte widget_index) const
Gets the lowered state of a widget.
Definition: window_gui.h:487
CompanyInfrastructure::airport
uint32 airport
Count of company owned airports.
Definition: company_base.h:36
WC_COMPANY_INFRASTRUCTURE
@ WC_COMPANY_INFRASTRUCTURE
Company infrastructure overview; Window numbers:
Definition: window_type.h:568
HT_RECT
@ HT_RECT
rectangle (stations, depots, ...)
Definition: tilehighlight_type.h:21
WID_CF_SEL_BUTTONS
@ WID_CF_SEL_BUTTONS
Selection of buttons.
Definition: company_widget.h:75
CMD_BUILD_OBJECT
@ CMD_BUILD_OBJECT
build an object
Definition: command_type.h:187
Scrollbar::GetPosition
uint16 GetPosition() const
Gets the position of the first visible element in the list.
Definition: widget_type.h:671
GetRoadTypeInfo
static const RoadTypeInfo * GetRoadTypeInfo(RoadType roadtype)
Returns a pointer to the Roadtype information for a given roadtype.
Definition: road.h:224
Window::FinishInitNested
void FinishInitNested(WindowNumber window_number=0)
Perform the second part of the initialization of a nested widget tree.
Definition: window.cpp:1776
SelectCompanyManagerFaceWindow::is_female
bool is_female
Female face.
Definition: company_gui.cpp:1300
EXPENSES_PROPERTY
@ EXPENSES_PROPERTY
Property costs.
Definition: economy_type.h:164
CompanyWindow::OnPlaceObjectAbort
void OnPlaceObjectAbort() override
The user cancelled a tile highlight mode that has been set.
Definition: company_gui.cpp:2622
NWID_SPACER
@ NWID_SPACER
Invisible widget that takes some space.
Definition: widget_type.h:77
WID_SCMF_HAIR_TEXT
@ WID_SCMF_HAIR_TEXT
Text about hair.
Definition: company_widget.h:130
company_func.h
SetAlignment
static NWidgetPart SetAlignment(StringAlignment align)
Widget part function for setting the alignment of text/images.
Definition: widget_type.h:1060
WID_CI_RAIL_COUNT
@ WID_CI_RAIL_COUNT
Count of rail.
Definition: company_widget.h:178
BuyCompanyWindow::SetStringParameters
void SetStringParameters(int widget) const override
Initialize string parameters for a widget.
Definition: company_gui.cpp:2737
WID_CF_MAXLOAN_VALUE
@ WID_CF_MAXLOAN_VALUE
Max loan widget.
Definition: company_widget.h:74
EXPENSES_NEW_VEHICLES
@ EXPENSES_NEW_VEHICLES
New vehicles.
Definition: economy_type.h:159
GUIList::ForceResort
void ForceResort()
Force a resort next Sort call Reset the resort timer if used too.
Definition: sortlist_type.h:213
SelectCompanyLiveryWindow::SetStringParameters
void SetStringParameters(int widget) const override
Initialize string parameters for a widget.
Definition: company_gui.cpp:803
WID_CF_EXPS_PRICE2
@ WID_CF_EXPS_PRICE2
Column for year Y-1 expenses.
Definition: company_widget.h:65
network.h
WID_SCMF_LIPS_MOUSTACHE
@ WID_SCMF_LIPS_MOUSTACHE
Lips / Moustache.
Definition: company_widget.h:152
window_func.h
GUIList::ForceRebuild
void ForceRebuild()
Force that a rebuild is needed.
Definition: sortlist_type.h:370
SA_CENTER
@ SA_CENTER
Center both horizontally and vertically.
Definition: gfx_type.h:338
ToggleBit
static T ToggleBit(T &x, const uint8 y)
Toggles a bit in a variable.
Definition: bitmath_func.hpp:181
SetBit
static T SetBit(T &x, const uint8 y)
Set a bit in a variable.
Definition: bitmath_func.hpp:121
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
MarkWholeScreenDirty
void MarkWholeScreenDirty()
This function mark the whole screen as dirty.
Definition: gfx.cpp:1689
EXPENSES_TRAIN_RUN
@ EXPENSES_TRAIN_RUN
Running costs trains.
Definition: economy_type.h:160
WID_CF_LOAN_LINE
@ WID_CF_LOAN_LINE
Line for summing bank balance and loan.
Definition: company_widget.h:71
SetPIP
static NWidgetPart SetPIP(uint8 pre, uint8 inter, uint8 post)
Widget part function for setting a pre/inter/post spaces.
Definition: widget_type.h:1169
OverflowSafeInt< int64 >
_company_view_vehicle_count_strings
static const StringID _company_view_vehicle_count_strings[]
Strings for the company vehicle counts.
Definition: company_gui.cpp:2200
CompanyWindow::CWP_VB_BUILD
@ CWP_VB_BUILD
Display the build button.
Definition: company_gui.cpp:2219
WID_CF_CAPTION
@ WID_CF_CAPTION
Caption of the window.
Definition: company_widget.h:60
NWidgetBase::pos_y
int pos_y
Vertical position of top-left corner of the widget in the window.
Definition: widget_type.h:190
SelectCompanyManagerFaceWindow::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: company_gui.cpp:1571
WID_C_SELECT_DESC_OWNERS
@ WID_C_SELECT_DESC_OWNERS
Owners.
Definition: company_widget.h:29
INVALID_TILE
static const TileIndex INVALID_TILE
The very nice invalid tile marker.
Definition: tile_type.h:88
SetObjectToPlaceWnd
void SetObjectToPlaceWnd(CursorID icon, PaletteID pal, HighLightStyle mode, Window *w)
Change the cursor and mouse click/drag handling to a mode for performing special operations like tile...
Definition: viewport.cpp:3360
CompanyWindow::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: company_gui.cpp:2614
WID_SCMF_HAS_GLASSES_TEXT
@ WID_SCMF_HAS_GLASSES_TEXT
Text about glasses.
Definition: company_widget.h:129
INVALID_COMPANY
@ INVALID_COMPANY
An invalid company.
Definition: company_type.h:30
engine_base.h
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
WID_CI_TRAM_DESC
@ WID_CI_TRAM_DESC
Description of tram.
Definition: company_widget.h:181
LiveryScheme
LiveryScheme
List of different livery schemes.
Definition: livery.h:20
LiveryClass
LiveryClass
List of different livery classes, used only by the livery GUI.
Definition: livery.h:64
WID_SCMF_GLASSES_R
@ WID_SCMF_GLASSES_R
Glasses right.
Definition: company_widget.h:171
SelectCompanyManagerFaceWindow::yesno_dim
Dimension yesno_dim
Dimension of a yes/no button of a part in the advanced face window.
Definition: company_gui.cpp:1303
SetFill
static NWidgetPart SetFill(uint fill_x, uint fill_y)
Widget part function for setting filling.
Definition: widget_type.h:1076
LEVEL_WIDTH
static const int LEVEL_WIDTH
Indenting width of a sub-group in pixels.
Definition: company_gui.cpp:549
gui.h
WID_CF_EXPS_PRICE1
@ WID_CF_EXPS_PRICE1
Column for year Y-2 expenses.
Definition: company_widget.h:64
CompanyInfrastructureWindow::DrawCountLine
void DrawCountLine(const Rect &r, int &y, int count, Money monthly_cost) const
Helper for drawing the counts line.
Definition: company_gui.cpp:1948
SetCompanyManagerFaceBits
static void SetCompanyManagerFaceBits(CompanyManagerFace &cmf, CompanyManagerFaceVariable cmfv, GenderEthnicity ge, uint val)
Sets the company manager's face bits for the given company manager's face variable.
Definition: company_manager_face.h:111
WID_C_GIVE_MONEY
@ WID_C_GIVE_MONEY
Button to give money.
Definition: company_widget.h:50
WID_CI_STATION_DESC
@ WID_CI_STATION_DESC
Description of station.
Definition: company_widget.h:185
SetTextColour
static NWidgetPart SetTextColour(TextColour colour)
Widget part function for setting the text colour.
Definition: widget_type.h:1045
WID_SCMF_JACKET_L
@ WID_SCMF_JACKET_L
Jacket left.
Definition: company_widget.h:160
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
WID_BC_NO
@ WID_BC_NO
No button.
Definition: company_widget.h:196
WID_SCMF_NOSE_L
@ WID_SCMF_NOSE_L
Nose left.
Definition: company_widget.h:154
VEH_TRAIN
@ VEH_TRAIN
Train vehicle type.
Definition: vehicle_type.h:24
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
GE_WM
@ GE_WM
A male of Caucasian origin (white)
Definition: company_manager_face.h:23
WID_CI_WATER_COUNT
@ WID_CI_WATER_COUNT
Count of water.
Definition: company_widget.h:184
Window::DrawWidgets
void DrawWidgets() const
Paint all widgets of a window.
Definition: widget.cpp:636
CompanyWindow::CWP_BUTTONS_OTHER
@ CWP_BUTTONS_OTHER
Buttons of the other companies.
Definition: company_gui.cpp:2227
ScaleAllCompanyManagerFaceBits
static void ScaleAllCompanyManagerFaceBits(CompanyManagerFace &cmf)
Scales all company manager's face bits to the correct scope.
Definition: company_manager_face.h:176
CompanyInfrastructureWindow::GetTotalMaintenanceCost
Money GetTotalMaintenanceCost() const
Get total infrastructure maintenance cost.
Definition: company_gui.cpp:1800
WC_FINANCES
@ WC_FINANCES
Finances of a company; Window numbers:
Definition: window_type.h:514
CMD_SET_COMPANY_MANAGER_FACE
@ CMD_SET_COMPANY_MANAGER_FACE
set the manager's face of the company
Definition: command_type.h:235
WD_IMGBTN_LEFT
@ WD_IMGBTN_LEFT
Left offset of the image in the button.
Definition: window_gui.h:40
WID_CF_SEL_MAXLOAN
@ WID_CF_SEL_MAXLOAN
Selection of maxloan column.
Definition: company_widget.h:68
CompanyInfrastructureWindow
Window with detailed information about the company's infrastructure.
Definition: company_gui.cpp:1757
NWID_SELECTION
@ NWID_SELECTION
Stacked widgets, only one visible at a time (eg in a panel with tabs).
Definition: widget_type.h:78
ExpensesType
ExpensesType
Types of expenses.
Definition: economy_type.h:157
WID_SCL_GROUPS_RAIL
@ WID_SCL_GROUPS_RAIL
Rail groups.
Definition: company_widget.h:90
NWidgetCore
Base class for a 'real' widget.
Definition: widget_type.h:311
OBJECT_HQ
static const ObjectType OBJECT_HQ
HeadQuarter of a player.
Definition: object_type.h:20
SelectCompanyManagerFaceWindow::number_dim
Dimension number_dim
Dimension of a number widget of a part in the advanced face window.
Definition: company_gui.cpp:1304
Window::SetWidgetDirty
void SetWidgetDirty(byte widget_index) const
Invalidate a widget, i.e.
Definition: window.cpp:608
ShowCompany
void ShowCompany(CompanyID company)
Show the window with the overview of the company.
Definition: company_gui.cpp:2698
SelectCompanyLiveryWindow::DrawWidget
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
Definition: company_gui.cpp:843
GUISettings::liveries
byte liveries
options for displaying company liveries, 0=none, 1=self, 2=all
Definition: settings_type.h:120
EXPENSES_ROADVEH_INC
@ EXPENSES_ROADVEH_INC
Income from road vehicles.
Definition: economy_type.h:166
VEH_SHIP
@ VEH_SHIP
Ship vehicle type.
Definition: vehicle_type.h:26
ROADTYPES_NONE
@ ROADTYPES_NONE
No roadtypes.
Definition: road_type.h:37
Rect
Specification of a rectangle with absolute coordinates of all edges.
Definition: geometry_type.hpp:47
Window::LowerWidget
void LowerWidget(byte widget_index)
Marks a widget as lowered.
Definition: window_gui.h:468
Company
Definition: company_base.h:115
RailTypes
RailTypes
The different railtypes we support, but then a bitmask of them.
Definition: rail_type.h:46
BringWindowToFrontById
Window * BringWindowToFrontById(WindowClass cls, WindowNumber number)
Find a window and make it the relative top-window on the screen.
Definition: window.cpp:1259
EXP_BLOCKSPACE
static const uint EXP_BLOCKSPACE
Amount of vertical space between two blocks of numbers.
Definition: company_gui.cpp:48
WID_SCMF_LOAD
@ WID_SCMF_LOAD
Load face.
Definition: company_widget.h:123
WID_CF_TOTAL_VALUE
@ WID_CF_TOTAL_VALUE
Total.
Definition: company_widget.h:72
WID_SCMF_ETHNICITY_AFR
@ WID_SCMF_ETHNICITY_AFR
Text about ethnicity african.
Definition: company_widget.h:139
SelectCompanyManagerFaceWindow::SelectDisplayPlanes
void SelectDisplayPlanes(bool advanced)
Select planes to display to the user with the NWID_SELECTION widgets WID_SCMF_SEL_LOADSAVE,...
Definition: company_gui.cpp:1362
WID_SCMF_LIPS_MOUSTACHE_R
@ WID_SCMF_LIPS_MOUSTACHE_R
Lips / Moustache right.
Definition: company_widget.h:153
_cmf_info
static const CompanyManagerFaceBitsInfo _cmf_info[]
Lookup table for indices into the CompanyManagerFace, valid ranges and sprites.
Definition: company_manager_face.h:64
AWV_INCREASE
@ AWV_INCREASE
Arrow to the right or in case of RTL to the left.
Definition: widget_type.h:36
CMD_RENAME_PRESIDENT
@ CMD_RENAME_PRESIDENT
change the president name
Definition: command_type.h:247
QSF_ENABLE_DEFAULT
@ QSF_ENABLE_DEFAULT
enable the 'Default' button ("\0" is returned)
Definition: textbuf_gui.h:21
Window::DisableWidget
void DisableWidget(byte widget_index)
Sets a widget to disabled.
Definition: window_gui.h:396
ETHNICITY_BLACK
@ ETHNICITY_BLACK
This bit set means black, otherwise white.
Definition: company_manager_face.h:21
NWidgetBase::current_x
uint current_x
Current horizontal size (after resizing).
Definition: widget_type.h:186
CompanyWindow::OnHundredthTick
void OnHundredthTick() override
Called once every 100 (game) ticks, or once every 3s, whichever comes last.
Definition: company_gui.cpp:2608
lastof
#define lastof(x)
Get the last element of an fixed size array.
Definition: stdafx.h:394
NWidgetStacked::shown_plane
int shown_plane
Plane being displayed (for NWID_SELECTION only).
Definition: widget_type.h:454
WID_C_DESC_COLOUR_SCHEME_EXAMPLE
@ WID_C_DESC_COLOUR_SCHEME_EXAMPLE
Colour scheme example.
Definition: company_widget.h:22
DropDownListItem::masked
bool masked
Masked and unselectable item.
Definition: dropdown_type.h:25
ResetObjectToPlace
void ResetObjectToPlace()
Reset the cursor and mouse mode handling back to default (normal cursor, only clicking in windows).
Definition: viewport.cpp:3423
Livery
Information about a particular livery.
Definition: livery.h:78
WID_SCMF_TIE_EARRING
@ WID_SCMF_TIE_EARRING
Tie / Earring.
Definition: company_widget.h:167
WD_IMGBTN_RIGHT
@ WD_IMGBTN_RIGHT
Right offset of the image in the button.
Definition: window_gui.h:41
Window::SetWidgetLoweredState
void SetWidgetLoweredState(byte widget_index, bool lowered_stat)
Sets the lowered/raised status of a widget.
Definition: window_gui.h:447
TD_RTL
@ TD_RTL
Text is written right-to-left by default.
Definition: strings_type.h:24
network_func.h
CMD_GIVE_MONEY
@ CMD_GIVE_MONEY
give money to another company
Definition: command_type.h:308
_current_text_dir
TextDirection _current_text_dir
Text direction of the currently selected language.
Definition: strings.cpp:48
CMD_BUY_COMPANY
@ CMD_BUY_COMPANY
buy a company which is bankrupt
Definition: command_type.h:260
CS_NUMERAL
@ CS_NUMERAL
Only numeric ones.
Definition: string_type.h:28
EXPENSES_SHIP_RUN
@ EXPENSES_SHIP_RUN
Running costs ships.
Definition: economy_type.h:163
WID_BC_CAPTION
@ WID_BC_CAPTION
Caption of window.
Definition: company_widget.h:193
CompanyWindow::CWP_VB_VIEW
@ CWP_VB_VIEW
Display the view button.
Definition: company_gui.cpp:2218
CompanyInfrastructure::GetRailTotal
uint32 GetRailTotal() const
Get total sum of all owned track bits.
Definition: company_base.h:39
EXPENSES_TRAIN_INC
@ EXPENSES_TRAIN_INC
Income from trains.
Definition: economy_type.h:165
object_type.h
_expenses_list_1
static ExpensesType _expenses_list_1[]
Standard unsorted list of expenses.
Definition: company_gui.cpp:54
CompanyInfrastructureWindow::railtypes
RailTypes railtypes
Valid railtypes.
Definition: company_gui.cpp:1759
RandomCompanyManagerFaceBits
static void RandomCompanyManagerFaceBits(CompanyManagerFace &cmf, GenderEthnicity ge, bool adv, bool interactive=true)
Make a random new face.
Definition: company_manager_face.h:206
WWT_TEXTBTN
@ WWT_TEXTBTN
(Toggle) Button with text
Definition: widget_type.h:53
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_SCL_SPACER_DROPDOWN
@ WID_SCL_SPACER_DROPDOWN
Spacer for dropdown.
Definition: company_widget.h:94
ClientSettings::gui
GUISettings gui
settings related to the GUI
Definition: settings_type.h:593
WID_SCMF_HAIR_R
@ WID_SCMF_HAIR_R
Hair right.
Definition: company_widget.h:159
Scrollbar::SetPosition
bool SetPosition(int position)
Sets the position of the first visible element.
Definition: widget_type.h:742
AWV_DECREASE
@ AWV_DECREASE
Arrow to the left or in case of RTL to the right.
Definition: widget_type.h:35
SetMinimalTextLines
static NWidgetPart SetMinimalTextLines(uint8 lines, uint8 spacing, FontSize size=FS_NORMAL)
Widget part function for setting the minimal text lines.
Definition: widget_type.h:1028
WWT_DROPDOWN
@ WWT_DROPDOWN
Drop down list.
Definition: widget_type.h:68
WID_SCMF_HAS_MOUSTACHE_EARRING
@ WID_SCMF_HAS_MOUSTACHE_EARRING
Has moustache or earring.
Definition: company_widget.h:140
WID_BC_YES
@ WID_BC_YES
Yes button.
Definition: company_widget.h:197
SelectCompanyLiveryWindow::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: company_gui.cpp:907
DrawPrice
static void DrawPrice(Money amount, int left, int right, int top)
Draw an amount of money.
Definition: company_gui.cpp:166
Livery::colour2
byte colour2
Second colour, for vehicles with 2CC support.
Definition: livery.h:81
Livery::colour1
byte colour1
First colour, for all vehicles.
Definition: livery.h:80
RailtypeInfo::introduces_railtypes
RailTypes introduces_railtypes
Bitmask of which other railtypes are introduced when this railtype is introduced.
Definition: rail.h:263
WWT_SHADEBOX
@ WWT_SHADEBOX
Shade box (at top-right of a window, between WWT_DEBUGBOX and WWT_DEFSIZEBOX)
Definition: widget_type.h:62
Window::Close
virtual void Close()
Hide the window and all its child windows, and mark them for a later deletion.
Definition: window.cpp:1092
RAILTYPE_BEGIN
@ RAILTYPE_BEGIN
Used for iterations.
Definition: rail_type.h:28
CompanyWindow::CWP_RELOCATE_HIDE
@ CWP_RELOCATE_HIDE
Hide the relocate HQ button.
Definition: company_gui.cpp:2223
CompanyWindow
Window with general information about a company.
Definition: company_gui.cpp:2207