87 const std::initializer_list<ExpensesType> &
items;
93 uint GetHeight()
const
166 DrawString(tr, STR_FINANCES_SECTION_CONSTRUCTION + et);
190 y += list.GetHeight();
218 StringID str = STR_FINANCES_NEGATIVE_INCOME;
220 str = STR_FINANCES_ZERO_INCOME;
221 }
else if (amount < 0) {
223 str = STR_FINANCES_POSITIVE_INCOME;
239 Money cost = tbl[et];
241 if (cost != 0)
DrawPrice(cost, r.left, r.right, y, TC_BLACK);
248 if (sum != 0)
DrawPrice(sum, r.left, r.right, y, TC_WHITE);
283 DrawPrice(sum, r.left, r.right, y, TC_WHITE);
286 static constexpr
NWidgetPart _nested_company_finances_widgets[] = {
349 void SetStringParameters(
WidgetID widget)
const override
419 void DrawWidget(
const Rect &r,
WidgetID widget)
const override
432 if (wid_offset <= age) {
451 this->GetWidget<NWidgetStacked>(
WID_CF_SEL_PANEL)->SetDisplayedPlane(plane);
488 void OnClick([[maybe_unused]]
Point pt,
WidgetID widget, [[maybe_unused]]
int click_count)
override
492 this->small = !this->
small;
538 _nested_company_finances_widgets
557 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,
560 LC_AIRCRAFT, LC_AIRCRAFT, LC_AIRCRAFT,
568 template <SpriteID TSprite = SPR_SQUARE>
587 void ShowColourDropDownMenu(uint32_t widget)
589 uint32_t used_colours = 0;
590 const Livery *livery, *default_livery =
nullptr;
592 uint8_t default_col = 0;
595 if (this->livery_class < LC_GROUP_RAIL &&
HasBit(this->sel, LS_DEFAULT) && primary) {
603 if (this->livery_class < LC_GROUP_RAIL) {
606 for (scheme = LS_BEGIN; scheme < LS_END; scheme++) {
607 if (
HasBit(this->sel, scheme))
break;
609 if (scheme == LS_END) scheme = LS_DEFAULT;
610 livery = &c->livery[scheme];
611 if (scheme != LS_DEFAULT) default_livery = &c->livery[LS_DEFAULT];
616 default_livery = &c->livery[LS_DEFAULT];
619 default_livery = &pg->
livery;
624 if (default_livery !=
nullptr) {
626 default_col = (primary ? default_livery->
colour1 : default_livery->
colour2) + COLOUR_END;
629 for (Colours colour = COLOUR_BEGIN; colour != COLOUR_END; colour++) {
634 if (default_livery ==
nullptr ||
HasBit(livery->
in_use, primary ? 0 : 1)) {
646 this->groups.clear();
648 if (this->livery_class >= LC_GROUP_RAIL) {
658 if (this->livery_class < LC_GROUP_RAIL) {
660 for (
LiveryScheme scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
666 this->rows = (uint)this->groups.size();
669 this->vscroll->
SetCount(this->rows);
679 this->livery_class = LC_OTHER;
682 this->BuildGroupList(company);
685 this->SetSelectedGroup(company, group);
689 this->owner = company;
698 case VEH_TRAIN: this->livery_class = LC_GROUP_RAIL;
break;
699 case VEH_ROAD: this->livery_class = LC_GROUP_ROAD;
break;
700 case VEH_SHIP: this->livery_class = LC_GROUP_SHIP;
break;
701 case VEH_AIRCRAFT: this->livery_class = LC_GROUP_AIRCRAFT;
break;
702 default: NOT_REACHED();
708 this->BuildGroupList(company);
712 for (uint i = 0; i < this->rows; i++) {
713 if (this->groups[i].group->index == sel) {
726 for (
LiveryScheme scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
732 if (g->owner == (
CompanyID)this->window_number) {
738 size.width = std::max(size.width, 5 + d.width + padding.width);
747 size.height = 5 * this->line_height;
749 resize.height = this->line_height;
763 for (Colours colour = COLOUR_BEGIN; colour != COLOUR_END; colour++) {
777 bool disabled = this->livery_class < LC_GROUP_RAIL ? (this->sel == 0) : (this->sel ==
INVALID_GROUP);
786 void SetStringParameters(
WidgetID widget)
const override
797 StringID colour = STR_COLOUR_DEFAULT;
799 if (this->livery_class < LC_GROUP_RAIL) {
800 if (this->sel != 0) {
802 for (scheme = LS_BEGIN; scheme < LS_END; scheme++) {
803 if (
HasBit(this->sel, scheme))
break;
805 if (scheme == LS_END) scheme = LS_DEFAULT;
806 const Livery *livery = &c->livery[scheme];
807 if (scheme == LS_DEFAULT ||
HasBit(livery->
in_use, primary ? 0 : 1)) {
808 colour = STR_COLOUR_DARK_BLUE + (primary ? livery->
colour1 : livery->
colour2);
816 colour = STR_COLOUR_DARK_BLUE + (primary ? livery->
colour1 : livery->
colour2);
826 void DrawWidget(
const Rect &r,
WidgetID widget)
const override
849 int square_offs = (ir.
Height() - this->square.height) / 2;
855 auto draw_livery = [&](
StringID str,
const Livery &livery,
bool is_selected,
bool is_default_scheme,
int indent) {
857 DrawString(sch.left + (rtl ? 0 : indent), sch.right - (rtl ? indent : 0), y + text_offs, str, is_selected ? TC_WHITE : TC_BLACK);
860 DrawSprite(SPR_SQUARE, GENERAL_SPRITE_COLOUR(livery.colour1), pri_squ.left, y + square_offs);
861 DrawString(pri.left, pri.right, y + text_offs, (is_default_scheme ||
HasBit(livery.in_use, 0)) ? STR_COLOUR_DARK_BLUE + livery.colour1 : STR_COLOUR_DEFAULT, is_selected ? TC_WHITE : TC_GOLD);
864 if (sec.right > sec.left) {
865 DrawSprite(SPR_SQUARE, GENERAL_SPRITE_COLOUR(livery.colour2), sec_squ.left, y + square_offs);
866 DrawString(sec.left, sec.right, y + text_offs, (is_default_scheme ||
HasBit(livery.in_use, 1)) ? STR_COLOUR_DARK_BLUE + livery.colour2 : STR_COLOUR_DEFAULT, is_selected ? TC_WHITE : TC_GOLD);
869 y += this->line_height;
874 if (livery_class < LC_GROUP_RAIL) {
876 for (
LiveryScheme scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
878 if (pos-- > 0)
continue;
879 draw_livery(STR_LIVERY_DEFAULT + scheme, c->livery[scheme],
HasBit(this->sel, scheme), scheme == LS_DEFAULT, 0);
884 for (
auto it = first; it != last; ++it) {
885 const Group *g = it->group;
890 if (this->vscroll->
GetCount() == 0) {
891 const StringID empty_labels[] = { STR_LIVERY_TRAIN_GROUP_EMPTY, STR_LIVERY_ROAD_VEHICLE_GROUP_EMPTY, STR_LIVERY_SHIP_GROUP_EMPTY, STR_LIVERY_AIRCRAFT_GROUP_EMPTY };
893 DrawString(ir.left, ir.right, y + text_offs, empty_labels[vtype], TC_BLACK);
898 void OnClick([[maybe_unused]]
Point pt,
WidgetID widget, [[maybe_unused]]
int click_count)
override
916 if (this->livery_class < LC_GROUP_RAIL) {
918 for (
LiveryScheme scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
920 this->sel = 1 << scheme;
929 if (!this->groups.empty()) {
930 this->sel = this->groups[0].group->index;
947 if (this->livery_class < LC_GROUP_RAIL) {
949 if (row >= this->rows)
return;
953 for (
LiveryScheme scheme = LS_BEGIN; scheme <= j && scheme < LS_END; scheme++) {
965 if (it == std::end(this->groups))
return;
967 this->sel = it->group->index;
980 void OnDropdownSelect(
WidgetID widget,
int index)
override
985 Colours colour =
static_cast<Colours
>(index);
986 if (colour >= COLOUR_END) colour = INVALID_COLOUR;
988 if (this->livery_class < LC_GROUP_RAIL) {
990 for (
LiveryScheme scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
1007 void OnInvalidateData([[maybe_unused]]
int data = 0, [[maybe_unused]]
bool gui_scope =
true)
override
1009 if (!gui_scope)
return;
1013 if (this->livery_class == data + LC_GROUP_RAIL) {
1020 if (!this->groups.empty()) this->sel = this->groups[0].group->index;
1030 bool current_class_valid = this->livery_class == LC_OTHER || this->livery_class >= LC_GROUP_RAIL;
1032 for (
LiveryScheme scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
1034 if (_livery_class[scheme] == this->livery_class) current_class_valid =
true;
1036 }
else if (this->livery_class < LC_GROUP_RAIL) {
1037 ClrBit(this->sel, scheme);
1042 if (!current_class_valid) {
1049 static constexpr
NWidgetPart _nested_select_company_livery_widgets[] = {
1070 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 static WindowDesc _select_company_livery_desc(
1082 WDP_AUTO,
"company_color_scheme", 0, 0,
1085 _nested_select_company_livery_widgets
1094 w->SetSelectedGroup(company, group);
1119 if (
_cmf_info[CMFV_EYE_COLOUR].valid_values[ge] < 2) {
1123 default: NOT_REACHED();
1124 case 0: pal = PALETTE_TO_BROWN;
break;
1125 case 1: pal = PALETTE_TO_BLUE;
break;
1126 case 2: pal = PALETTE_TO_GREEN;
break;
1131 DrawSprite(SPR_GRADIENT, GENERAL_SPRITE_COLOUR(colour), x, y);
1133 for (CompanyManagerFaceVariable cmfv = CMFV_CHEEKS; cmfv < CMFV_END; cmfv++) {
1135 case CMFV_MOUSTACHE:
if (!has_moustache)
continue;
break;
1137 case CMFV_NOSE:
if (has_moustache)
continue;
break;
1138 case CMFV_TIE_EARRING:
if (!has_tie_earring)
continue;
break;
1139 case CMFV_GLASSES:
if (!has_glasses)
continue;
break;
1325 const NWidgetCore *nwi_widget = this->GetWidget<NWidgetCore>(widget_index);
1329 if (is_bool_widget) {
1331 SetDParam(0, (val != 0) ? STR_FACE_YES : STR_FACE_NO);
1347 this->GetWidget<NWidgetCore>(
WID_SCMF_TIE_EARRING_TEXT)->widget_data = this->is_female ? STR_FACE_EARRING : STR_FACE_TIE;
1354 this->advanced =
false;
1378 wi->
SetDataTip(STR_FACE_SIMPLE, STR_FACE_SIMPLE_TOOLTIP);
1380 wi->
SetDataTip(STR_FACE_ADVANCED, STR_FACE_ADVANCED_TOOLTIP);
1392 for (
int val = 1; val <= 12; val++) {
1510 void SetStringParameters(
WidgetID widget)
const override
1514 if (this->is_female) {
1526 if (this->is_moust_male) {
1571 void DrawWidget(
const Rect &r,
WidgetID widget)
const override
1580 void OnClick([[maybe_unused]]
Point pt,
WidgetID widget, [[maybe_unused]]
int click_count)
override
1655 CompanyManagerFaceVariable cmfv;
1659 default: NOT_REACHED();
1660 case 0: cmfv = this->is_female ? CMFV_HAS_TIE_EARRING : CMFV_HAS_MOUSTACHE;
break;
1661 case 1: cmfv = CMFV_HAS_GLASSES;
break;
1667 default: NOT_REACHED();
1668 case 0: cmfv = CMFV_EYE_COLOUR;
break;
1669 case 1: cmfv = CMFV_CHIN;
break;
1670 case 2: cmfv = CMFV_EYEBROWS;
break;
1671 case 3: cmfv = this->is_moust_male ? CMFV_MOUSTACHE : CMFV_LIPS;
break;
1672 case 4: cmfv = CMFV_NOSE;
break;
1673 case 5: cmfv = CMFV_HAIR;
break;
1674 case 6: cmfv = CMFV_JACKET;
break;
1675 case 7: cmfv = CMFV_COLLAR;
break;
1676 case 8: cmfv = CMFV_TIE_EARRING;
break;
1677 case 9: cmfv = CMFV_GLASSES;
break;
1689 void OnQueryTextFinished(std::optional<std::string> str)
override
1691 if (!str.has_value())
return;
1693 if (!str->empty()) {
1694 this->face = std::strtoul(str->c_str(),
nullptr, 10);
1726 static constexpr
NWidgetPart _nested_company_infrastructure_widgets[] = {
1775 this->UpdateRailRoadTypes();
1778 this->owner = (
Owner)this->window_number;
1781 void UpdateRailRoadTypes()
1805 this->roadtypes &= ~_roadtypes_hidden_mask;
1833 void SetStringParameters(
WidgetID widget)
const override
1850 size.width = std::max(size.width,
GetStringBoundingBox(STR_COMPANY_INFRASTRUCTURE_VIEW_RAIL_SECT).
width + padding.width);
1852 for (
const auto &rt : _sorted_railtypes) {
1853 if (
HasBit(this->railtypes, rt)) {
1873 for (
const auto &rt : _sorted_roadtypes) {
1885 size.width = std::max(size.width,
GetStringBoundingBox(STR_COMPANY_INFRASTRUCTURE_VIEW_WATER_SECT).
width + padding.width);
1890 size.width = std::max(size.width,
GetStringBoundingBox(STR_COMPANY_INFRASTRUCTURE_VIEW_STATION_SECT).
width + padding.width);
1902 uint32_t max_val = 1000;
1903 Money max_cost = 10000;
1932 size.width = std::max(size.width, this->total_width);
1938 size.width = std::max(size.width, count_width);
1970 void DrawWidget(
const Rect &r,
WidgetID widget)
const override
1979 DrawString(r.left, r.right, y, STR_COMPANY_INFRASTRUCTURE_VIEW_RAIL_SECT);
1983 for (
const auto &rt : _sorted_railtypes) {
1984 if (
HasBit(this->railtypes, rt)) {
1999 for (
const auto &rt : _sorted_railtypes) {
2000 if (
HasBit(this->railtypes, rt)) {
2012 DrawString(r.left, r.right, y, widget ==
WID_CI_ROAD_DESC ? STR_COMPANY_INFRASTRUCTURE_VIEW_ROAD_SECT : STR_COMPANY_INFRASTRUCTURE_VIEW_TRAM_SECT);
2015 for (
const auto &rt : _sorted_roadtypes) {
2027 for (
const auto &rt : _sorted_roadtypes) {
2036 DrawString(r.left, r.right, y, STR_COMPANY_INFRASTRUCTURE_VIEW_WATER_SECT);
2057 DrawString(r.left, r.right, y, STR_COMPANY_INFRASTRUCTURE_VIEW_STATION_SECT);
2074 void OnInvalidateData([[maybe_unused]]
int data = 0, [[maybe_unused]]
bool gui_scope =
true)
override
2076 if (!gui_scope)
return;
2078 this->UpdateRailRoadTypes();
2083 static WindowDesc _company_infrastructure_desc(
2084 WDP_AUTO,
"company_infrastructure", 0, 0,
2087 _nested_company_infrastructure_widgets
2097 AllocateWindowDescFront<CompanyInfrastructureWindow>(_company_infrastructure_desc, company);
2100 static constexpr
NWidgetPart _nested_company_widgets[] = {
2178 STR_COMPANY_VIEW_TRAINS, STR_COMPANY_VIEW_ROAD_VEHICLES, STR_COMPANY_VIEW_SHIPS, STR_COMPANY_VIEW_AIRCRAFT
2202 this->owner = (
Owner)this->window_number;
2212 bool reinit =
false;
2253 d.width -= offset.x;
2254 d.height -= offset.y;
2279 size.width += padding.width;
2296 size.width += padding.width;
2301 void DrawVehicleCountsWidget(
const Rect &r,
const Company *c)
const
2317 DrawString(r.left, r.right, y, STR_COMPANY_VIEW_VEHICLES_NONE);
2321 void DrawInfrastructureCountsWidget(
const Rect &r,
const Company *c)
const
2326 if (rail_pieces != 0) {
2328 DrawString(r.left, r.right, y, STR_COMPANY_VIEW_INFRASTRUCTURE_RAIL);
2334 if (road_pieces != 0) {
2336 DrawString(r.left, r.right, y, STR_COMPANY_VIEW_INFRASTRUCTURE_ROAD);
2342 DrawString(r.left, r.right, y, STR_COMPANY_VIEW_INFRASTRUCTURE_WATER);
2348 DrawString(r.left, r.right, y, STR_COMPANY_VIEW_INFRASTRUCTURE_STATION);
2354 DrawString(r.left, r.right, y, STR_COMPANY_VIEW_INFRASTRUCTURE_AIRPORT);
2360 DrawString(r.left, r.right, y, STR_COMPANY_VIEW_INFRASTRUCTURE_NONE);
2364 void DrawWidget(
const Rect &r,
WidgetID widget)
const override
2380 d.height -= offset.y;
2381 DrawSprite(SPR_VEH_BUS_SW_VIEW, COMPANY_SPRITE_COLOUR(c->
index), r.left - offset.x,
CenterBounds(r.top, r.bottom, d.height) - offset.y);
2386 DrawVehicleCountsWidget(r, c);
2390 DrawInfrastructureCountsWidget(r, c);
2395 void SetStringParameters(
WidgetID widget)
const override
2405 SetDParam(0, STR_COMPANY_VIEW_INAUGURATED_TITLE_WALLCLOCK);
2409 SetDParam(0, STR_COMPANY_VIEW_INAUGURATED_TITLE);
2428 void OnClick([[maybe_unused]]
Point pt,
WidgetID widget, [[maybe_unused]]
int click_count)
override
2517 void OnPlaceObject([[maybe_unused]]
Point pt,
TileIndex tile)
override
2530 void OnQueryTextFinished(std::optional<std::string> str)
override
2532 if (!str.has_value())
return;
2534 switch (this->query_widget) {
2535 default: NOT_REACHED();
2553 void OnInvalidateData([[maybe_unused]]
int data = 0, [[maybe_unused]]
bool gui_scope =
true)
override
2555 if (gui_scope && data == 1) {
2566 _nested_company_widgets
2577 AllocateWindowDescFront<CompanyWindow>(_company_desc, company);
2610 size.height =
GetStringHeight(this->hostile_takeover ? STR_BUY_COMPANY_HOSTILE_TAKEOVER : STR_BUY_COMPANY_MESSAGE, size.width);
2615 void SetStringParameters(
WidgetID widget)
const override
2625 void DrawWidget(
const Rect &r,
WidgetID widget)
const override
2638 DrawStringMultiLine(r.left, r.right, r.top, r.bottom, this->hostile_takeover ? STR_BUY_COMPANY_HOSTILE_TAKEOVER : STR_BUY_COMPANY_MESSAGE, TC_FROMSTRING,
SA_CENTER);
2644 void OnClick([[maybe_unused]]
Point pt,
WidgetID widget, [[maybe_unused]]
int click_count)
override
2662 if (!this->hostile_takeover)
return;
2677 static constexpr
NWidgetPart _nested_buy_company_widgets[] = {
2700 _nested_buy_company_widgets
2711 if (window ==
nullptr) {
constexpr debug_inline bool HasBit(const T x, const uint8_t y)
Checks if a bit in a value is set.
constexpr T SetBit(T &x, const uint8_t y)
Set a bit in a variable.
constexpr static debug_inline uint GB(const T x, const uint8_t s, const uint8_t n)
Fetch n bits from x, started at bit s.
constexpr T ToggleBit(T &x, const uint8_t y)
Toggles a bit in a variable.
constexpr T ClrBit(T &x, const uint8_t y)
Clears a bit in a variable.
Drop down icon component.
Colour selection list item, with icon and string components.
void RebuildDone()
Notify the sortlist that the rebuild is done.
bool NeedRebuild() const
Check if a rebuild is needed.
void ForceRebuild()
Force that a rebuild is needed.
RailTypes introduces_railtypes
Bitmask of which other railtypes are introduced when this railtype is introduced.
StringID name
Name of this rail type.
RoadTypes introduces_roadtypes
Bitmask of which other roadtypes are introduced when this roadtype is introduced.
StringID name
Name of this rail type.
Management class for customizing the face of the company manager.
void SelectDisplayPlanes(bool advanced)
Select planes to display to the user with the NWID_SELECTION widgets WID_SCMF_SEL_LOADSAVE,...
bool is_female
Female face.
bool advanced
advanced company manager face selection window
bool is_moust_male
Male face with a moustache.
GenderEthnicity ge
Gender and ethnicity.
void SetFaceStringParameters(WidgetID widget_index, uint8_t val, bool is_bool_widget) const
Set parameters for value of face control buttons.
Dimension yesno_dim
Dimension of a yes/no button of a part in the advanced face window.
CompanyManagerFace face
company manager face bits
void OnInit() override
Notification that the nested widget tree gets initialized.
void OnPaint() override
The window must be repainted.
Dimension number_dim
Dimension of a number widget of a part in the advanced face window.
static constexpr TimerGame< struct Calendar >::Date MAX_DATE
The date of the last day of the max year.
static Year year
Current year, starting at 0.
static bool UsingWallclockUnits(bool newgame=false)
Check if we are using wallclock units.
Functions related to commands.
Definition of stuff that is very close to a company, like the company struct itself.
Money CalculateHostileTakeoverValue(const Company *c)
Calculate what you have to pay to take over a company.
Money CalculateCompanyValue(const Company *c, bool including_loan=true)
Calculate the value of the company.
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
CompanyManagerFace _company_manager_face
for company manager face storage in openttd.cfg
Command definitions related to companies.
Functions related to companies.
void ShowCompanyFinances(CompanyID company)
Open the finances window of a company.
static Money DrawYearCategory(const Rect &r, int start_y, const ExpensesList &list, const Expenses &tbl)
Draw a category of expenses/revenues in the year column.
static uint GetMaxCategoriesWidth()
Get the required width of the "categories" column, equal to the widest element.
static void DrawYearColumn(const Rect &r, TimerGameEconomy::Year year, const Expenses &tbl)
Draw a column with prices.
static const std::initializer_list< ExpensesType > _expenses_list_capital_costs
List of capital expenses.
void ShowBuyCompanyDialog(CompanyID company, bool hostile_takeover)
Show the query to buy another company.
static const StringID _company_view_vehicle_count_strings[]
Strings for the company vehicle counts.
static const std::initializer_list< ExpensesList > _expenses_list_types
Types of expense lists.
static void DrawPrice(Money amount, int left, int right, int top, TextColour colour)
Draw an amount of money.
static WindowDesc _select_company_manager_face_desc(WDP_AUTO, nullptr, 0, 0, WC_COMPANY_MANAGER_FACE, WC_NONE, WDF_CONSTRUCTION, _nested_select_company_manager_face_widgets)
Company manager face selection window description.
static void ShowCompanyInfrastructure(CompanyID company)
Open the infrastructure window of a company.
static void DrawCategories(const Rect &r)
Draw the expenses categories.
static void DoSelectCompanyManagerFace(Window *parent)
Company GUI constants.
void ShowCompany(CompanyID company)
Show the window with the overview of the company.
static constexpr NWidgetPart _nested_select_company_manager_face_widgets[]
Nested widget description for the company manager face selection dialog.
static const std::initializer_list< ExpensesType > _expenses_list_operating_costs
List of operating expenses.
static uint GetTotalCategoriesHeight()
Get the total height of the "categories" column.
static const std::initializer_list< ExpensesType > _expenses_list_revenue
List of revenues.
void DirtyCompanyInfrastructureWindows(CompanyID company)
Redraw all windows with company infrastructure counts.
void DrawCompanyManagerFace(CompanyManagerFace cmf, Colours colour, const Rect &r)
Draws the face of a company manager's face.
static void DrawCategory(const Rect &r, int start_y, const ExpensesList &list)
Draw a category of expenses (revenue, operating expenses, capital expenses).
Functionality related to the company manager's face.
GenderEthnicity
The gender/race combinations that we have faces for.
@ GE_WM
A male of Caucasian origin (white)
@ ETHNICITY_BLACK
This bit set means black, otherwise white.
@ GENDER_FEMALE
This bit set means a female, otherwise male.
void RandomCompanyManagerFaceBits(CompanyManagerFace &cmf, GenderEthnicity ge, bool adv, Randomizer &randomizer)
Make a random new face.
void ScaleAllCompanyManagerFaceBits(CompanyManagerFace &cmf)
Scales all company manager's face bits to the correct scope.
uint GetCompanyManagerFaceBits(CompanyManagerFace cmf, CompanyManagerFaceVariable cmfv, [[maybe_unused]] GenderEthnicity ge)
Make sure the table's size is right.
static const CompanyManagerFaceBitsInfo _cmf_info[]
Lookup table for indices into the CompanyManagerFace, valid ranges and sprites.
void SetCompanyManagerFaceBits(CompanyManagerFace &cmf, CompanyManagerFaceVariable cmfv, [[maybe_unused]] GenderEthnicity ge, uint val)
Sets the company manager's face bits for the given company manager's face variable.
void IncreaseCompanyManagerFaceBits(CompanyManagerFace &cmf, CompanyManagerFaceVariable cmfv, GenderEthnicity ge, int8_t amount)
Increase/Decrease the company manager's face variable by the given amount.
SpriteID GetCompanyManagerFaceSprite(CompanyManagerFace cmf, CompanyManagerFaceVariable cmfv, GenderEthnicity ge)
Gets the sprite to draw for the given company manager's face variable.
static const uint MAX_LENGTH_PRESIDENT_NAME_CHARS
The maximum length of a president name in characters including '\0'.
static const uint MAX_LENGTH_COMPANY_NAME_CHARS
The maximum length of a company name in characters including '\0'.
uint32_t CompanyManagerFace
Company manager face bits, info see in company_manager_face.h.
Owner
Enum for all companies/owners.
@ COMPANY_SPECTATOR
The client is spectating.
Functions to handle different currencies.
const CurrencySpec & GetCurrency()
Get the currently selected currency.
void ShowDropDownList(Window *w, DropDownList &&list, int selected, WidgetID button, uint width, bool instant_close, bool persist)
Show a drop down list.
Common drop down list components.
Types related to the drop down widget.
std::vector< std::unique_ptr< const DropDownListItem > > DropDownList
A drop down list is a collection of drop down list items.
Command definitions related to the economy.
std::array< Money, EXPENSES_END > Expenses
Data type for storage of Money for each ExpensesType category.
ExpensesType
Types of expenses.
@ EXPENSES_ROADVEH_RUN
Running costs road vehicles.
@ EXPENSES_TRAIN_RUN
Running costs trains.
@ EXPENSES_AIRCRAFT_REVENUE
Revenue from aircraft.
@ EXPENSES_CONSTRUCTION
Construction costs.
@ EXPENSES_AIRCRAFT_RUN
Running costs aircraft.
@ EXPENSES_ROADVEH_REVENUE
Revenue from road vehicles.
@ EXPENSES_PROPERTY
Property costs.
@ EXPENSES_OTHER
Other expenses.
@ EXPENSES_SHIP_REVENUE
Revenue from ships.
@ EXPENSES_LOAN_INTEREST
Interest payments over the loan.
@ EXPENSES_TRAIN_REVENUE
Revenue from trains.
@ EXPENSES_SHIP_RUN
Running costs ships.
@ EXPENSES_NEW_VEHICLES
New vehicles.
static const int LOAN_INTERVAL
The "steps" in loan size, in British Pounds!
Functions related to errors.
void ShowErrorMessage(StringID summary_msg, int x, int y, CommandCost cc)
Display an error message in a window.
@ WL_INFO
Used for DoCommand-like (and some non-fatal AI GUI) errors/information.
int GetCharacterHeight(FontSize size)
Get height of a character for a given font size.
Dimension maxdim(const Dimension &d1, const Dimension &d2)
Compute bounding box of both dimensions.
int GetStringHeight(std::string_view str, int maxw, FontSize fontsize)
Calculates height of string (in pixels).
Dimension GetSpriteSize(SpriteID sprid, Point *offset, ZoomLevel zoom)
Get the size of a sprite.
bool _shift_pressed
Is Shift pressed?
Dimension GetStringBoundingBox(std::string_view str, FontSize start_fontsize)
Return the string dimension in pixels.
int DrawString(int left, int right, int top, std::string_view str, TextColour colour, StringAlignment align, bool underline, FontSize fontsize)
Draw string, possibly truncated to make it fit in its allocated space.
bool _ctrl_pressed
Is Ctrl pressed?
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.
void DrawSprite(SpriteID img, PaletteID pal, int x, int y, const SubSprite *sub, ZoomLevel zoom)
Draw a sprite, not in a viewport.
int DrawStringMultiLine(int left, int right, int top, int bottom, std::string_view str, TextColour colour, StringAlignment align, bool underline, FontSize fontsize)
Draw string, possibly over multiple lines.
Dimension GetScaledSpriteSize(SpriteID sprid)
Scale sprite size for GUI.
int CenterBounds(int min, int max, int size)
Determine where to draw a centred object inside a widget.
@ SA_TOP
Top align the text.
@ SA_LEFT
Left align the text.
@ SA_RIGHT
Right align the text (must be a single bit).
@ SA_HOR_CENTER
Horizontally center the text.
@ SA_CENTER
Center both horizontally and vertically.
@ SA_VERT_CENTER
Vertically center the text.
@ FS_NORMAL
Index of the normal font in the font tables.
uint32_t PaletteID
The number of the palette.
TextColour
Colour of the strings, see _string_colourmap in table/string_colours.h or docs/ottd-colourtext-palett...
Command definitions related to engine groups.
void SetDirty() const
Mark entire window as dirty (in need of re-paint)
void MarkWholeScreenDirty()
This function mark the whole screen as dirty.
void BuildGuiGroupList(GUIGroupList &dst, bool fold, Owner owner, VehicleType veh_type)
Build GUI group list, a sorted hierarchical list of groups for owner and vehicle type.
Functions/definitions that have something to do with groups.
uint16_t GroupID
Type for all group identifiers.
static const GroupID INVALID_GROUP
Sentinel for invalid groups.
GUI functions that shouldn't be here.
void ShowExtraViewportWindow(TileIndex tile=INVALID_TILE)
Show a new Extra Viewport window.
static const uint8_t LIT_ALL
Show the liveries of all companies.
LiveryScheme
List of different livery schemes.
static const uint8_t LIT_COMPANY
Show the liveries of your own company.
LiveryClass
List of different livery classes, used only by the livery GUI.
Miscellaneous command definitions.
void ShowQueryString(StringID str, StringID caption, uint maxsize, Window *parent, CharSetFilter afilter, QueryStringFlags flags)
Show a query popup window with a textbox in it.
bool _networking
are we in networking mode?
bool _network_server
network-server is active
bool NetworkCanJoinCompany(CompanyID company_id)
Returns whether the given company can be joined by this client.
Basic functions/variables used all over the place.
void NetworkClientRequestMove(CompanyID company_id)
Notify the server of this client wanting to be moved to another company.
Network functions used by other parts of OpenTTD.
void NetworkServerDoMove(ClientID client_id, CompanyID company_id)
Handle the tid-bits of moving a client from one company to another.
GUIs related to networking.
@ CLIENT_ID_SERVER
Servers always have this ID.
GRFLoadedFeatures _loaded_newgrf_features
Indicates which are the newgrf features currently loaded ingame.
Base for the NewGRF implementation.
Command definitions related to objects.
Types related to object tiles.
static const ObjectType OBJECT_HQ
HeadQuarter of a player.
static const uint8_t PC_WHITE
White palette colour.
static const uint8_t PC_BLACK
Black palette colour.
RailTypes AddDateIntroducedRailTypes(RailTypes current, TimerGameCalendar::Date date)
Add the rail types that are to be introduced at the given date.
const RailTypeInfo * GetRailTypeInfo(RailType railtype)
Returns a pointer to the Railtype information for a given railtype.
Money RailMaintenanceCost(RailType railtype, uint32_t num, uint32_t total_num)
Calculates the maintenance cost of a number of track bits.
Money SignalMaintenanceCost(uint32_t num)
Calculates the maintenance cost of a number of signals.
RailTypes
Allow incrementing of Track variables.
@ RAILTYPES_NONE
No rail types.
RailType
Enumeration for all possible railtypes.
@ RAILTYPE_BEGIN
Used for iterations.
@ RAILTYPE_END
Used for iterations.
Randomizer _interactive_random
Random used everywhere else, where it does not (directly) influence the game state.
RoadTypes AddDateIntroducedRoadTypes(RoadTypes current, TimerGameCalendar::Date date)
Add the road types that are to be introduced at the given date.
const RoadTypeInfo * GetRoadTypeInfo(RoadType roadtype)
Returns a pointer to the Roadtype information for a given roadtype.
Functions related to roads.
Money RoadMaintenanceCost(RoadType roadtype, uint32_t num, uint32_t total_num)
Calculates the maintenance cost of a number of road bits.
RoadTypes
The different roadtypes we support, but then a bitmask of them.
@ ROADTYPES_NONE
No roadtypes.
RoadType
The different roadtypes we support.
@ ROADTYPE_END
Used for iterations.
@ ROADTYPE_BEGIN
Used for iterations.
A number of safeguards to prevent using unsafe methods.
GameSettings _settings_game
Game settings of a running game or the scenario editor.
ClientSettings _settings_client
The current settings for this game.
Base types for having sorted lists in GUIs.
Money AirportMaintenanceCost(Owner owner)
Calculates the maintenance cost of all airports of a company.
Functions related to stations.
Money StationMaintenanceCost(uint32_t num)
Calculates the maintenance cost of a number of station tiles.
Definition of base types and functions in a cross-platform compatible way.
#define lengthof(array)
Return the length of an fixed size array.
@ CS_NUMERAL
Only numeric ones.
@ CS_ALPHANUMERAL
Both numeric and alphabetic and spaces and stuff.
void SetDParamMaxValue(size_t n, uint64_t max_value, uint min_count, FontSize size)
Set DParam n to some number that is suitable for string size computations.
void SetDParam(size_t n, uint64_t v)
Set a string parameter v at index n in the global string parameter array.
TextDirection _current_text_dir
Text direction of the currently selected language.
Functions related to OTTD's strings.
@ TD_RTL
Text is written right-to-left by default.
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
static const StringID INVALID_STRING_ID
Constant representing an invalid string (16bit in case it is used in savegames)
Money company_value
The value of the company for which the user can buy it.
IntervalTimer< TimerWindow > rescale_interval
Check on a regular interval if the company value has changed.
bool hostile_takeover
Whether the window is showing a hostile takeover.
GUISettings gui
settings related to the GUI
Window class displaying the company finances.
bool small
Window is toggled to 'small'.
static Money max_money
The maximum amount of money a company has had this 'run'.
void SetupWidgets()
Setup the widgets in the nested tree, such that the finances window is displayed properly.
IntervalTimer< TimerWindow > rescale_interval
Check on a regular interval if the maximum amount of money has changed.
void OnPaint() override
The window must be repainted.
Window with detailed information about the company's infrastructure.
Money GetTotalMaintenanceCost() const
Get total infrastructure maintenance cost.
void DrawCountLine(const Rect &r, int &y, int count, Money monthly_cost) const
Helper for drawing the counts line.
RoadTypes roadtypes
Valid roadtypes.
uint total_width
String width of the total cost line.
RailTypes railtypes
Valid railtypes.
void OnInvalidateData([[maybe_unused]] int data=0, [[maybe_unused]] bool gui_scope=true) override
Some data on this window has become invalid.
std::array< uint32_t, ROADTYPE_END > road
Count of company owned track bits for each road type.
uint32_t GetRailTotal() const
Get total sum of all owned track bits.
uint32_t GetRoadTotal() const
Get total sum of all owned road bits.
uint32_t station
Count of company owned station tiles.
uint32_t signal
Count of company owned signals.
std::array< uint32_t, RAILTYPE_END > rail
Count of company owned track bits for each rail type.
uint32_t GetTramTotal() const
Get total sum of all owned tram bits.
uint32_t airport
Count of company owned airports.
uint32_t water
Count of company owned track bits for canals.
TileIndex location_of_HQ
Northern tile of HQ; INVALID_TILE when there is none.
bool is_ai
If true, the company is (also) controlled by the computer (a NoAI program).
Money current_loan
Amount of money borrowed from the bank.
TimerGameEconomy::Year inaugurated_year
Economy year of starting the company.
Colours colour
Company colour.
CompanyManagerFace face
Face description of the president.
std::array< Expenses, 3 > yearly_expenses
Expenses of the company for the last three years.
Money money
Money owned by the company.
Window with general information about a company.
void OnResize() override
Called after the window got resized.
IntervalTimer< TimerWindow > redraw_interval
Redraw the window on a regular interval.
CompanyWindowPlanes
Display planes in the company window.
@ CWP_RELOCATE_SHOW
Show the relocate HQ button.
@ CWP_RELOCATE_HIDE
Hide the relocate HQ button.
@ CWP_VB_BUILD
Display the build button.
@ CWP_VB_VIEW
Display the view button.
void OnPlaceObjectAbort() override
The user cancelled a tile highlight mode that has been set.
void OnPaint() override
The window must be repainted.
void OnInvalidateData([[maybe_unused]] int data=0, [[maybe_unused]] bool gui_scope=true) override
Some data on this window has become invalid.
Money GetMaxLoan() const
Calculate the max allowed loan for this company.
CompanyInfrastructure infrastructure
NOSAVE: Counts of company owned infrastructure.
GroupStatistics group_all[VEH_COMPANY_END]
NOSAVE: Statistics for the ALL_GROUP group.
uint16_t rate
The conversion rate compared to the base currency.
uint8_t initial_interest
amount of interest (to pay over the loan)
Dimensions (a width and height) of a rectangle in 2D.
bool infrastructure_maintenance
enable monthly maintenance fee for owner infrastructure
bool give_money
allow giving other companies money
static Pool::IterateWrapperFiltered< Engine, EngineTypeFilter > IterateType(VehicleType vt, size_t from=0)
Returns an iterable ensemble of all valid engines of the given type.
uint GetListWidth() const
Compute width of the expenses categories in pixels.
const std::initializer_list< ExpensesType > & items
List of expenses types.
const StringID title
StringID of list title.
bool has_2CC
Set if any vehicle is loaded which uses 2cc (two company colours).
uint64_t used_liveries
Bitmask of LiveryScheme used by the defined engines.
uint8_t liveries
options for displaying company liveries, 0=none, 1=self, 2=all
uint8_t landscape
the landscape we're currently in
EconomySettings economy
settings to change the economy
DifficultySettings difficulty
settings related to the difficulty
GameCreationSettings game_creation
settings used during the creation of a game (map)
uint16_t num_vehicle
Number of vehicles.
Livery livery
Custom colour scheme for vehicles in this group.
GroupID parent
Parent group.
VehicleType vehicle_type
Vehicle type of the group.
Information about a particular livery.
Colours colour2
Second colour, for vehicles with 2CC support.
Colours colour1
First colour, for all vehicles.
uint8_t in_use
Bit 0 set if this livery should override the default livery first colour, Bit 1 for the second colour...
Coordinates of a point in 2D.
Tindex index
Index of this pool item.
static Titem * Get(size_t index)
Returns Titem with given index.
static bool IsValidID(size_t index)
Tests whether given index can be used to get valid (non-nullptr) Titem.
static Pool::IterateWrapper< Titem > Iterate(size_t from=0)
Returns an iterable ensemble of all valid Titem.
constexpr uint Horizontal() const
Get total horizontal padding of RectPadding.
constexpr uint Vertical() const
Get total vertical padding of RectPadding.
Specification of a rectangle with absolute coordinates of all edges.
Rect WithWidth(int width, bool end) const
Copy Rect and set its width.
Rect Shrink(int s) const
Copy and shrink Rect by s pixels.
Rect WithHeight(int height, bool end=false) const
Copy Rect and set its height.
Rect Indent(int indent, bool end) const
Copy Rect and indent it from its position.
int Height() const
Get height of Rect.
Company livery colour scheme window.
void OnInvalidateData([[maybe_unused]] int data=0, [[maybe_unused]] bool gui_scope=true) override
Some data on this window has become invalid.
void OnPaint() override
The window must be repainted.
void OnResize() override
Called after the window got resized.
High level window description.
Data structure for an opened window.
void ReInit(int rx=0, int ry=0, bool reposition=false)
Re-initialize a window, and optionally change its size.
virtual void Close(int data=0)
Hide the window and all its child windows, and mark them for a later deletion.
void FinishInitNested(WindowNumber window_number=0)
Perform the second part of the initialization of a nested widget tree.
void DrawWidgets() const
Paint all widgets of a window.
void InvalidateData(int data=0, bool gui_scope=true)
Mark this window's data as invalid (in need of re-computing)
Window * parent
Parent window.
void RaiseWidget(WidgetID widget_index)
Marks a widget as raised.
void SetWidgetDirty(WidgetID widget_index) const
Invalidate a widget, i.e.
ResizeInfo resize
Resize information.
void SetShaded(bool make_shaded)
Set the shaded state of the window to make_shaded.
void SetWidgetsDisabledState(bool disab_stat, Args... widgets)
Sets the enabled/disabled status of a list of widgets.
void CreateNestedTree()
Perform the first part of the initialization of a nested widget tree.
bool IsWidgetLowered(WidgetID widget_index) const
Gets the lowered state of a widget.
void RaiseButtons(bool autoraise=false)
Raise the buttons of the window.
void SetWidgetsLoweredState(bool lowered_stat, Args... widgets)
Sets the lowered/raised status of a list of widgets.
Owner owner
The owner of the content shown in this window. Company colour is acquired from this variable.
void SetWidgetLoweredState(WidgetID widget_index, bool lowered_stat)
Sets the lowered/raised status of a widget.
void EnableWidget(WidgetID widget_index)
Sets a widget to Enabled.
bool IsShaded() const
Is window shaded currently?
Window(WindowDesc &desc)
Empty constructor, initialization has been moved to InitNested() called from the constructor of the d...
void LowerWidget(WidgetID widget_index)
Marks a widget as lowered.
void InitNested(WindowNumber number=0)
Perform complete initialization of the Window with nested widgets, to allow use.
const Scrollbar * GetScrollbar(WidgetID widnum) const
Return the Scrollbar to a widget index.
void SetWidgetDisabledState(WidgetID widget_index, bool disab_stat)
Sets the enabled/disabled status of a widget.
int width
width of the window (number of pixels to the right in x direction)
WindowNumber window_number
Window number within the window class.
Stuff related to the text buffer GUI.
@ QSF_ENABLE_DEFAULT
enable the 'Default' button ("\0" is returned)
@ QSF_LEN_IN_CHARS
the length of the string is counted in characters
constexpr TileIndex INVALID_TILE
The very nice invalid tile marker.
Functions related to tile highlights.
void ResetObjectToPlace()
Reset the cursor and mouse mode handling back to default (normal cursor, only clicking in windows).
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...
@ HT_RECT
rectangle (stations, depots, ...)
Definition of Interval and OneShot timers.
Definition of the game-economy-timer.
Definition of the Window system.
VehicleType
Available vehicle types.
@ VEH_ROAD
Road vehicle type.
@ VEH_AIRCRAFT
Aircraft vehicle type.
@ VEH_SHIP
Ship vehicle type.
@ VEH_TRAIN
Train vehicle type.
@ VEH_COMPANY_END
Last company-ownable type.
void SetTileSelectSize(int w, int h)
Highlight w by h tiles at the cursor.
bool ScrollMainWindowToTile(TileIndex tile, bool instant)
Scrolls the viewport of the main window to a given location.
Functions related to (drawing on) viewports.
Functions related to water (management)
Money CanalMaintenanceCost(uint32_t num)
Calculates the maintenance cost of a number of canal tiles.
Window * BringWindowToFrontById(WindowClass cls, WindowNumber number)
Find a window and make it the relative top-window on the screen.
void SetWindowDirty(WindowClass cls, WindowNumber number)
Mark window as dirty (in need of repainting)
Window functions not directly related to making/drawing windows.
Functions, definitions and such used only by the GUI.
@ WDF_CONSTRUCTION
This window is used for construction; close it whenever changing company.
@ WDP_AUTO
Find a place automatically.
int32_t WindowNumber
Number to differentiate different windows of the same class.
@ WC_BUY_COMPANY
Buyout company (merger); Window numbers:
@ WC_COMPANY_INFRASTRUCTURE
Company infrastructure overview; Window numbers:
@ WC_COMPANY_COLOUR
Company colour selection; Window numbers:
@ WC_NONE
No window, redirects to WC_MAIN_WINDOW.
@ WC_FINANCES
Finances of a company; Window numbers:
@ WC_COMPANY_MANAGER_FACE
Alter company face window; Window numbers:
@ WC_COMPANY
Company view; Window numbers:
Functions related to zooming.