OpenTTD Source
20241108-master-g80f628063a
|
Types related to companies. More...
#include "core/enum_type.hpp"
Go to the source code of this file.
Typedefs | |
typedef Owner | CompanyID |
typedef uint16_t | CompanyMask |
typedef uint32_t | CompanyManagerFace |
Company manager face bits, info see in company_manager_face.h. | |
Enumerations | |
enum | Owner : uint8_t { OWNER_BEGIN = 0x00 , COMPANY_FIRST = 0x00 , MAX_COMPANIES = 0x0F , OWNER_TOWN = 0x0F , OWNER_NONE = 0x10 , OWNER_WATER = 0x11 , OWNER_DEITY = 0x12 , OWNER_END , INVALID_OWNER = 0xFF , INVALID_COMPANY = 0xFF , COMPANY_INACTIVE_CLIENT = 253 , COMPANY_NEW_COMPANY = 254 , COMPANY_SPECTATOR = 255 } |
Enum for all companies/owners. More... | |
enum | CompanyRemoveReason : uint8_t { CRR_MANUAL , CRR_AUTOCLEAN , CRR_BANKRUPT , CRR_END , CRR_NONE = CRR_MANUAL } |
The reason why the company was removed. More... | |
enum | CompanyCtrlAction : uint8_t { CCA_NEW , CCA_NEW_AI , CCA_DELETE , CCA_END } |
The action to do with CMD_COMPANY_CTRL. More... | |
enum | CompanyAllowListCtrlAction : uint8_t { CALCA_ADD , CALCA_REMOVE , CALCA_END } |
The action to do with CMD_COMPANY_ALLOW_LIST_CTRL. More... | |
Variables | |
static const uint | MAX_LENGTH_PRESIDENT_NAME_CHARS = 32 |
The maximum length of a president name in characters including '\0'. | |
static const uint | MAX_LENGTH_COMPANY_NAME_CHARS = 32 |
The maximum length of a company name in characters including '\0'. | |
static const uint | MAX_HISTORY_QUARTERS = 24 |
The maximum number of quarters kept as performance's history. | |
static const uint | MIN_COMPETITORS_INTERVAL = 0 |
The minimum interval (in minutes) between competitors. | |
static const uint | MAX_COMPETITORS_INTERVAL = 500 |
The maximum interval (in minutes) between competitors. | |
Types related to companies.
Definition in file company_type.h.
enum CompanyAllowListCtrlAction : uint8_t |
The action to do with CMD_COMPANY_ALLOW_LIST_CTRL.
Enumerator | |
---|---|
CALCA_ADD | Create a public key. |
CALCA_REMOVE | Remove a public key. |
CALCA_END | Sentinel for end. |
Definition at line 76 of file company_type.h.
enum CompanyCtrlAction : uint8_t |
The action to do with CMD_COMPANY_CTRL.
Enumerator | |
---|---|
CCA_NEW | Create a new company. |
CCA_NEW_AI | Create a new AI company. |
CCA_DELETE | Delete a company. |
CCA_END | Sentinel for end. |
Definition at line 67 of file company_type.h.
enum CompanyRemoveReason : uint8_t |
The reason why the company was removed.
Definition at line 56 of file company_type.h.
enum Owner : uint8_t |
Enum for all companies/owners.
Definition at line 18 of file company_type.h.