|
OpenTTD Source
14.0-beta1
|
#include "stdafx.h"#include "error.h"#include "gui.h"#include "settings_gui.h"#include "sound_func.h"#include "window_func.h"#include "textbuf_gui.h"#include "command_func.h"#include "viewport_func.h"#include "industry.h"#include "town.h"#include "cheat_type.h"#include "newgrf_industries.h"#include "newgrf_text.h"#include "newgrf_debug.h"#include "network/network.h"#include "strings_func.h"#include "company_func.h"#include "tilehighlight_func.h"#include "string_func.h"#include "sortlist_type.h"#include "widgets/dropdown_func.h"#include "company_base.h"#include "core/geometry_func.hpp"#include "core/random_func.hpp"#include "core/backup_type.hpp"#include "genworld.h"#include "smallmap_gui.h"#include "widgets/dropdown_type.h"#include "widgets/industry_widget.h"#include "clear_map.h"#include "zoom_func.h"#include "industry_cmd.h"#include "querystring_gui.h"#include "stringfilter_type.h"#include "timer/timer.h"#include "timer/timer_window.h"#include "hotkeys.h"#include "table/strings.h"#include <bitset>#include "safeguards.h"Go to the source code of this file.
Data Structures | |
| struct | CargoSuffix |
| Transfer storage of cargo suffix information. More... | |
| class | BuildIndustryWindow |
| Build (fund or prospect) a new industry,. More... | |
| class | IndustryViewWindow |
| class | IndustryDirectoryWindow |
| The list of industries. More... | |
| struct | CargoesField |
| Data about a single field in the IndustryCargoesWindow panel. More... | |
| struct | CargoesRow |
| A single row of CargoesField. More... | |
| struct | IndustryCargoesWindow |
| Window displaying the cargo connections around an industry (or cargo). More... | |
Typedefs | |
| typedef GUIList< const Industry *, const CargoID &, const std::pair< CargoID, CargoID > & > | GUIIndustryList |
Enumerations | |
| enum | CargoSuffixType { CST_FUND, CST_VIEW, CST_DIR } |
| Cargo suffix type (for which window is it requested) More... | |
| enum | CargoSuffixDisplay { CSD_CARGO, CSD_CARGO_AMOUNT, CSD_CARGO_TEXT, CSD_CARGO_AMOUNT_TEXT } |
| Ways of displaying the cargo. More... | |
| enum | CargoSuffixInOut { CARGOSUFFIX_OUT = 0, CARGOSUFFIX_IN = 1 } |
| enum | IndustryDirectoryHotkeys { IDHK_FOCUS_FILTER_BOX } |
| Enum referring to the Hotkeys in the industry directory window. More... | |
| enum | CargoesFieldType { CFT_EMPTY, CFT_SMALL_EMPTY, CFT_INDUSTRY, CFT_CARGO, CFT_CARGO_LABEL, CFT_HEADER } |
| Available types of field. More... | |
Functions | |
| void | GenerateIndustries () |
| This function will create random industries during game creation. More... | |
| static void | ShowIndustryCargoesWindow (IndustryType id) |
| Open the industry and cargoes window. More... | |
| static void | GetCargoSuffix (uint cargo, CargoSuffixType cst, const Industry *ind, IndustryType ind_type, const IndustrySpec *indspec, CargoSuffix &suffix) |
| Gets the string to display after the cargo name (using callback 37) More... | |
| template<typename TC , typename TS > | |
| static void | GetAllCargoSuffixes (CargoSuffixInOut use_input, CargoSuffixType cst, const Industry *ind, IndustryType ind_type, const IndustrySpec *indspec, const TC &cargoes, TS &suffixes) |
| Gets all strings to display after the cargoes of industries (using callback 37) More... | |
| void | GetCargoSuffix (CargoSuffixInOut use_input, CargoSuffixType cst, const Industry *ind, IndustryType ind_type, const IndustrySpec *indspec, CargoID cargo, uint8_t slot, CargoSuffix &suffix) |
| Gets the strings to display after the cargo of industries (using callback 37) More... | |
| static bool | IndustryTypeNameSorter (const IndustryType &a, const IndustryType &b) |
| Sort industry types by their name. | |
| void | SortIndustryTypes () |
| Initialize the list of sorted industry types. | |
| void | CcBuildIndustry (Commands, const CommandCost &result, TileIndex tile, IndustryType indtype, uint32_t, bool, uint32_t) |
| Command callback. More... | |
| void | ShowBuildIndustryWindow () |
| static void | UpdateIndustryProduction (Industry *i) |
| static bool | IsProductionAlterable (const Industry *i) |
| void | ShowIndustryViewWindow (int industry) |
| static bool CDECL | CargoFilter (const Industry *const *industry, const std::pair< CargoID, CargoID > &cargoes) |
| Cargo filter functions. More... | |
| void | ShowIndustryDirectory () |
| void | ShowIndustryCargoesWindow () |
| Open the industry and cargoes window with an industry. | |
Variables | |
| bool | _ignore_restrictions |
| std::bitset< NUM_INDUSTRYTYPES > | _displayed_industries |
| Communication from the industry chain window to the smallmap window about what industries to display. | |
| std::array< IndustryType, NUM_INDUSTRYTYPES > | _sorted_industry_types |
| Industry types sorted by name. | |
| static constexpr NWidgetPart | _nested_build_industry_widgets [] |
| static WindowDesc | _build_industry_desc (__FILE__, __LINE__, WDP_AUTO, "build_industry", 170, 212, WC_BUILD_INDUSTRY, WC_NONE, WDF_CONSTRUCTION, std::begin(_nested_build_industry_widgets), std::end(_nested_build_industry_widgets)) |
| Window definition of the dynamic place industries gui. | |
| static constexpr NWidgetPart | _nested_industry_view_widgets [] |
| Widget definition of the view industry gui. More... | |
| static WindowDesc | _industry_view_desc (__FILE__, __LINE__, WDP_AUTO, "view_industry", 260, 120, WC_INDUSTRY_VIEW, WC_NONE, 0, std::begin(_nested_industry_view_widgets), std::end(_nested_industry_view_widgets)) |
| Window definition of the view industry gui. | |
| static constexpr NWidgetPart | _nested_industry_directory_widgets [] |
| Widget definition of the industry directory gui. More... | |
| static GUIIndustryList::FilterFunction *const | _filter_funcs [] = { &CargoFilter } |
| static WindowDesc | _industry_directory_desc (__FILE__, __LINE__, WDP_AUTO, "list_industries", 428, 190, WC_INDUSTRY_DIRECTORY, WC_NONE, 0, std::begin(_nested_industry_directory_widgets), std::end(_nested_industry_directory_widgets), &IndustryDirectoryWindow::hotkeys) |
| Window definition of the industry directory gui. | |
| static constexpr NWidgetPart | _nested_industry_cargoes_widgets [] |
| Widgets of the industry cargoes window. More... | |
| static WindowDesc | _industry_cargoes_desc (__FILE__, __LINE__, WDP_AUTO, "industry_cargoes", 300, 210, WC_INDUSTRY_CARGOES, WC_NONE, 0, std::begin(_nested_industry_cargoes_widgets), std::end(_nested_industry_cargoes_widgets)) |
| Window description for the industry cargoes window. | |
| static const uint | MAX_CARGOES = 16 |
| Maximum number of cargoes carried in a CFT_CARGO field in CargoesField. | |
GUIs related to industries.
Definition in file industry_gui.cpp.
| enum CargoesFieldType |
Available types of field.
Definition at line 1954 of file industry_gui.cpp.
| enum CargoSuffixDisplay |
Ways of displaying the cargo.
Definition at line 66 of file industry_gui.cpp.
| enum CargoSuffixType |
Cargo suffix type (for which window is it requested)
| Enumerator | |
|---|---|
| CST_FUND | Fund-industry window. |
| CST_VIEW | View-industry window. |
| CST_DIR | Industry-directory window. |
Definition at line 59 of file industry_gui.cpp.
Enum referring to the Hotkeys in the industry directory window.
| Enumerator | |
|---|---|
| IDHK_FOCUS_FILTER_BOX | Focus the filter box. |
Definition at line 1298 of file industry_gui.cpp.
|
static |
Cargo filter functions.
Check whether an industry accepts and produces a certain cargo pair.
| industry | The industry whose cargoes will being checked. |
| cargoes | The accepted and produced cargo pair to look for. |
Definition at line 1255 of file industry_gui.cpp.
References CargoFilterCriteria::CF_ANY, and CargoFilterCriteria::CF_NONE.
| void CcBuildIndustry | ( | Commands | , |
| const CommandCost & | result, | ||
| TileIndex | tile, | ||
| IndustryType | indtype, | ||
| uint32_t | , | ||
| bool | , | ||
| uint32_t | |||
| ) |
Command callback.
In case of failure to build an industry, show an error message.
| result | Result of the command. |
| tile | Tile where the industry is placed. |
| indtype | Industry type. |
Definition at line 251 of file industry_gui.cpp.
| void GenerateIndustries | ( | ) |
This function will create random industries during game creation.
It will scale the amount of industries by mapsize and difficulty level.
Definition at line 2439 of file industry_cmd.cpp.
|
inlinestatic |
Gets all strings to display after the cargoes of industries (using callback 37)
| use_input | get suffixes for output cargoes or input cargoes? |
| cst | the cargo suffix type (for which window is it requested). |
| ind | the industry (nullptr if in fund window) |
| ind_type | the industry type |
| indspec | the industry spec |
| cargoes | array with cargotypes. for INVALID_CARGO no suffix will be determined |
| suffixes | is filled with the suffixes |
Definition at line 155 of file industry_gui.cpp.
References IndustrySpec::behaviour, GRFFile::cargo_map, CSD_CARGO, GetCargoSuffix(), IndustrySpec::grf_prop, GRFFilePropsBase< Tcnt >::grffile, INDUSTRYBEH_CARGOTYPES_UNLIMITED, IsValidCargoID(), and lengthof.
| void GetCargoSuffix | ( | CargoSuffixInOut | use_input, |
| CargoSuffixType | cst, | ||
| const Industry * | ind, | ||
| IndustryType | ind_type, | ||
| const IndustrySpec * | indspec, | ||
| CargoID | cargo, | ||
| uint8_t | slot, | ||
| CargoSuffix & | suffix | ||
| ) |
Gets the strings to display after the cargo of industries (using callback 37)
| use_input | get suffixes for output cargo or input cargo? |
| cst | the cargo suffix type (for which window is it requested). |
| ind | the industry (nullptr if in fund window) |
| ind_type | the industry type |
| indspec | the industry spec |
| cargo | cargotype. for INVALID_CARGO no suffix will be determined |
| slot | accepts/produced slot number, used for old-style 3-in/2-out industries. |
| suffix | is filled with the suffix |
Definition at line 204 of file industry_gui.cpp.
References IndustrySpec::behaviour, GRFFile::cargo_map, CSD_CARGO, CargoSuffix::display, GetCargoSuffix(), IndustrySpec::grf_prop, GRFFilePropsBase< Tcnt >::grffile, INDUSTRYBEH_CARGOTYPES_UNLIMITED, IsValidCargoID(), and CargoSuffix::text.
|
static |
Gets the string to display after the cargo name (using callback 37)
| cargo | the cargo for which the suffix is requested, meaning depends on presence of flag 18 in prop 1A |
| cst | the cargo suffix type (for which window is it requested). |
| ind | the industry (nullptr if in fund window) |
| ind_type | the industry type |
| indspec | the industry spec |
| suffix | is filled with the string to display |
Definition at line 91 of file industry_gui.cpp.
References IndustrySpec::callback_mask, CBM_IND_CARGO_SUFFIX, CSD_CARGO_AMOUNT, CST_FUND, CargoSuffix::display, HasBit(), INVALID_TILE, Industry::location, CargoSuffix::text, and OrthogonalTileArea::tile.
Referenced by IndustryViewWindow::DrawInfo(), GetAllCargoSuffixes(), and GetCargoSuffix().
|
static |
Open the industry and cargoes window.
| id | Industry type to display, NUM_INDUSTRYTYPES selects a default industry type. |
Definition at line 3200 of file industry_gui.cpp.
References _sorted_industry_types, BringWindowToFrontById(), IndustrySpec::enabled, GetIndustrySpec(), Window::InvalidateData(), NUM_INDUSTRYTYPES, and WC_INDUSTRY_CARGOES.
Referenced by ShowIndustryCargoesWindow().
|
staticconstexpr |
Definition at line 264 of file industry_gui.cpp.
|
staticconstexpr |
Widgets of the industry cargoes window.
Definition at line 1921 of file industry_gui.cpp.
|
staticconstexpr |
Widget definition of the industry directory gui.
Definition at line 1215 of file industry_gui.cpp.
|
staticconstexpr |
Widget definition of the view industry gui.
Definition at line 1178 of file industry_gui.cpp.