|
OpenTTD Source
14.0-beta3
|
#include "stdafx.h"#include "currency.h"#include "error.h"#include "gui.h"#include "window_gui.h"#include "textbuf_gui.h"#include "viewport_func.h"#include "company_func.h"#include "command_func.h"#include "network/network.h"#include "network/network_gui.h"#include "network/network_func.h"#include "newgrf.h"#include "company_manager_face.h"#include "strings_func.h"#include "timer/timer_game_economy.h"#include "widgets/dropdown_type.h"#include "tilehighlight_func.h"#include "company_base.h"#include "core/geometry_func.hpp"#include "object_type.h"#include "rail.h"#include "road.h"#include "engine_base.h"#include "window_func.h"#include "road_func.h"#include "water.h"#include "station_func.h"#include "zoom_func.h"#include "sortlist_type.h"#include "company_cmd.h"#include "economy_cmd.h"#include "group_cmd.h"#include "misc_cmd.h"#include "object_cmd.h"#include "timer/timer.h"#include "timer/timer_window.h"#include "widgets/company_widget.h"#include "safeguards.h"Go to the source code of this file.
Data Structures | |
| struct | ExpensesList |
| Expense list container. More... | |
| struct | CompanyFinancesWindow |
| Window class displaying the company finances. More... | |
| class | DropDownListColourItem< TSprite > |
| Colour selection list item, with icon and string components. More... | |
| struct | SelectCompanyLiveryWindow |
| Company livery colour scheme window. More... | |
| class | SelectCompanyManagerFaceWindow |
| Management class for customizing the face of the company manager. More... | |
| struct | CompanyInfrastructureWindow |
| Window with detailed information about the company's infrastructure. More... | |
| struct | CompanyWindow |
| Window with general information about a company. More... | |
| struct | BuyCompanyWindow |
Typedefs | |
| typedef GUIList< const Group * > | GUIGroupList |
Functions | |
| static void | DoSelectCompanyManagerFace (Window *parent) |
| Company GUI constants. More... | |
| static void | ShowCompanyInfrastructure (CompanyID company) |
| Open the infrastructure window of a company. More... | |
| static uint | GetTotalCategoriesHeight () |
| Get the total height of the "categories" column. More... | |
| static uint | GetMaxCategoriesWidth () |
| Get the required width of the "categories" column, equal to the widest element. More... | |
| static void | DrawCategory (const Rect &r, int start_y, const ExpensesList &list) |
| Draw a category of expenses (revenue, operating expenses, capital expenses). | |
| static void | DrawCategories (const Rect &r) |
| Draw the expenses categories. More... | |
| static void | DrawPrice (Money amount, int left, int right, int top, TextColour colour) |
| Draw an amount of money. More... | |
| 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. More... | |
| static void | DrawYearColumn (const Rect &r, TimerGameEconomy::Year year, const Expenses &tbl) |
| Draw a column with prices. More... | |
| void | ShowCompanyFinances (CompanyID company) |
| Open the finances window of a company. More... | |
| void | ShowCompanyLiveryWindow (CompanyID company, GroupID group) |
| void | DrawCompanyManagerFace (CompanyManagerFace cmf, Colours colour, const Rect &r) |
| Draws the face of a company manager's face. More... | |
| void | ShowCompany (CompanyID company) |
| Show the window with the overview of the company. More... | |
| void | DirtyCompanyInfrastructureWindows (CompanyID company) |
| Redraw all windows with company infrastructure counts. More... | |
| void | ShowBuyCompanyDialog (CompanyID company, bool hostile_takeover) |
| Show the query to buy another company. More... | |
Variables | |
| static const std::initializer_list< ExpensesType > | _expenses_list_revenue |
| List of revenues. More... | |
| static const std::initializer_list< ExpensesType > | _expenses_list_operating_costs |
| List of operating expenses. More... | |
| static const std::initializer_list< ExpensesType > | _expenses_list_capital_costs |
| List of capital expenses. More... | |
| static const std::initializer_list< ExpensesList > | _expenses_list_types |
| Types of expense lists. More... | |
| static constexpr NWidgetPart | _nested_company_finances_widgets [] |
| static WindowDesc | _company_finances_desc (__FILE__, __LINE__, WDP_AUTO, "company_finances", 0, 0, WC_FINANCES, WC_NONE, 0, std::begin(_nested_company_finances_widgets), std::end(_nested_company_finances_widgets)) |
| static const StringID | _colour_dropdown [] |
| static const LiveryClass | _livery_class [LS_END] |
| static constexpr NWidgetPart | _nested_select_company_livery_widgets [] |
| static WindowDesc | _select_company_livery_desc (__FILE__, __LINE__, WDP_AUTO, nullptr, 0, 0, WC_COMPANY_COLOUR, WC_NONE, 0, std::begin(_nested_select_company_livery_widgets), std::end(_nested_select_company_livery_widgets)) |
| static constexpr NWidgetPart | _nested_select_company_manager_face_widgets [] |
| Nested widget description for the company manager face selection dialog. | |
| static WindowDesc | _select_company_manager_face_desc (__FILE__, __LINE__, WDP_AUTO, nullptr, 0, 0, WC_COMPANY_MANAGER_FACE, WC_NONE, WDF_CONSTRUCTION, std::begin(_nested_select_company_manager_face_widgets), std::end(_nested_select_company_manager_face_widgets)) |
| Company manager face selection window description. | |
| static constexpr NWidgetPart | _nested_company_infrastructure_widgets [] |
| static WindowDesc | _company_infrastructure_desc (__FILE__, __LINE__, WDP_AUTO, "company_infrastructure", 0, 0, WC_COMPANY_INFRASTRUCTURE, WC_NONE, 0, std::begin(_nested_company_infrastructure_widgets), std::end(_nested_company_infrastructure_widgets)) |
| static constexpr NWidgetPart | _nested_company_widgets [] |
| static const StringID | _company_view_vehicle_count_strings [] |
| Strings for the company vehicle counts. More... | |
| static WindowDesc | _company_desc (__FILE__, __LINE__, WDP_AUTO, "company", 0, 0, WC_COMPANY, WC_NONE, 0, std::begin(_nested_company_widgets), std::end(_nested_company_widgets)) |
| static constexpr NWidgetPart | _nested_buy_company_widgets [] |
| static WindowDesc | _buy_company_desc (__FILE__, __LINE__, WDP_AUTO, nullptr, 0, 0, WC_BUY_COMPANY, WC_NONE, WDF_CONSTRUCTION, std::begin(_nested_buy_company_widgets), std::end(_nested_buy_company_widgets)) |
Company related GUIs.
Definition in file company_gui.cpp.
| void DirtyCompanyInfrastructureWindows | ( | CompanyID | company | ) |
Redraw all windows with company infrastructure counts.
| company | The company to redraw the windows of. |
Definition at line 2651 of file company_gui.cpp.
References SetWindowDirty(), WC_COMPANY, and WC_COMPANY_INFRASTRUCTURE.
Referenced by Station::AfterStationTileSetChange(), CmdConvertRail(), RemoveLock(), and UpdateCompanyRoadInfrastructure().
|
static |
Company GUI constants.
Open the simple/advanced company manager face selection window.
| parent | the parent company window |
Definition at line 1776 of file company_gui.cpp.
References _select_company_manager_face_desc, BringWindowToFrontById(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_company_pool >::IsValidID(), WC_COMPANY_MANAGER_FACE, and Window::window_number.
|
static |
Draw the expenses categories.
| r | Available space for drawing. |
Definition at line 174 of file company_gui.cpp.
| void DrawCompanyManagerFace | ( | CompanyManagerFace | cmf, |
| Colours | colour, | ||
| const Rect & | r | ||
| ) |
Draws the face of a company manager's face.
| cmf | the company manager's face |
| colour | the (background) colour of the gradient |
| r | position to draw the face |
Definition at line 1162 of file company_gui.cpp.
References GE_WM, GetCompanyManagerFaceBits(), and GetSpriteSize().
|
static |
Draw an amount of money.
| amount | Amount of money to draw, |
| left | Left coordinate of the space to draw in. |
| right | Right coordinate of the space to draw in. |
| top | Top coordinate of the space to draw in. |
| colour | The TextColour of the string. |
Definition at line 214 of file company_gui.cpp.
References DrawString(), SA_RIGHT, and SetDParam().
|
static |
Draw a category of expenses/revenues in the year column.
Definition at line 231 of file company_gui.cpp.
|
static |
Draw a column with prices.
| r | Available space for drawing. |
| year | Year being drawn. |
| tbl | Reference to table of amounts for year. |
Definition at line 260 of file company_gui.cpp.
|
static |
Get the required width of the "categories" column, equal to the widest element.
Definition at line 139 of file company_gui.cpp.
References _expenses_list_types, GetStringBoundingBox(), WidgetDimensions::hsep_indent, WidgetDimensions::scaled, and TimerGameEconomy::UsingWallclockUnits().
|
static |
Get the total height of the "categories" column.
Definition at line 119 of file company_gui.cpp.
References _expenses_list_types, FS_NORMAL, GetCharacterHeight(), WidgetDimensions::scaled, WidgetDimensions::vsep_normal, and WidgetDimensions::vsep_wide.
Referenced by CompanyFinancesWindow::OnPaint().
| void ShowBuyCompanyDialog | ( | CompanyID | company, |
| bool | hostile_takeover | ||
| ) |
Show the query to buy another company.
| company | The company to buy. |
| hostile_takeover | Whether this is a hostile takeover. |
Definition at line 2775 of file company_gui.cpp.
References BringWindowToFrontById(), and WC_BUY_COMPANY.
Referenced by HandleBankruptcyTakeover().
| void ShowCompany | ( | CompanyID | company | ) |
Show the window with the overview of the company.
| company | The company to show the window for. |
Definition at line 2640 of file company_gui.cpp.
Referenced by GoalListWindow::HandleClick().
| void ShowCompanyFinances | ( | CompanyID | company | ) |
Open the finances window of a company.
| company | Company to show finances of. |
Definition at line 544 of file company_gui.cpp.
References BringWindowToFrontById(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_company_pool >::IsValidID(), and WC_FINANCES.
Referenced by MenuClickFinances().
|
static |
Open the infrastructure window of a company.
| company | Company to show infrastructure of. |
Definition at line 2152 of file company_gui.cpp.
|
static |
Definition at line 553 of file company_gui.cpp.
|
static |
Strings for the company vehicle counts.
Definition at line 2239 of file company_gui.cpp.
|
static |
List of capital expenses.
Definition at line 76 of file company_gui.cpp.
|
static |
|
static |
|
static |
Types of expense lists.
Definition at line 109 of file company_gui.cpp.
Referenced by GetMaxCategoriesWidth(), and GetTotalCategoriesHeight().
|
static |
Definition at line 573 of file company_gui.cpp.
|
staticconstexpr |
Definition at line 2744 of file company_gui.cpp.
|
staticconstexpr |
Definition at line 1110 of file company_gui.cpp.