OpenTTD Source  20240917-master-g9ab0a47812
industry_type.h
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 #ifndef INDUSTRY_TYPE_H
11 #define INDUSTRY_TYPE_H
12 
13 typedef uint16_t IndustryID;
14 typedef uint16_t IndustryGfx;
15 typedef uint8_t IndustryType;
16 struct Industry;
17 
18 struct IndustrySpec;
19 struct IndustryTileSpec;
20 
21 static const IndustryID INVALID_INDUSTRY = 0xFFFF;
22 
23 static const IndustryType NUM_INDUSTRYTYPES_PER_GRF = 128;
24 
25 static const IndustryType NEW_INDUSTRYOFFSET = 37;
26 static const IndustryType NUM_INDUSTRYTYPES = 240;
27 static const IndustryType INVALID_INDUSTRYTYPE = NUM_INDUSTRYTYPES;
28 
29 static const IndustryGfx NUM_INDUSTRYTILES_PER_GRF = 255;
30 
31 static const IndustryGfx INDUSTRYTILE_NOANIM = 0xFF;
32 static const IndustryGfx NEW_INDUSTRYTILEOFFSET = 175;
33 static const IndustryGfx NUM_INDUSTRYTILES = 512;
34 static const IndustryGfx INVALID_INDUSTRYTILE = NUM_INDUSTRYTILES;
35 
36 static const int INDUSTRY_COMPLETED = 3;
37 
38 static const int INDUSTRY_NUM_INPUTS = 16;
39 static const int INDUSTRY_NUM_OUTPUTS = 16;
40 static const int INDUSTRY_ORIGINAL_NUM_INPUTS = 3;
41 static const int INDUSTRY_ORIGINAL_NUM_OUTPUTS = 2;
42 
43 
44 void CheckIndustries();
45 
46 #endif /* INDUSTRY_TYPE_H */
NUM_INDUSTRYTYPES
static const IndustryType NUM_INDUSTRYTYPES
total number of industry types, new and old; limited to 240 because we need some special ids like INV...
Definition: industry_type.h:26
INDUSTRY_NUM_OUTPUTS
static const int INDUSTRY_NUM_OUTPUTS
Number of cargo types an industry can produce.
Definition: industry_type.h:39
NUM_INDUSTRYTYPES_PER_GRF
static const IndustryType NUM_INDUSTRYTYPES_PER_GRF
maximum number of industry types per NewGRF; limited to 128 because bit 7 has a special meaning in so...
Definition: industry_type.h:23
INDUSTRY_NUM_INPUTS
static const int INDUSTRY_NUM_INPUTS
Number of cargo types an industry can accept.
Definition: industry_type.h:38
Industry
Defines the internal data of a functional industry.
Definition: industry.h:68
INDUSTRY_COMPLETED
static const int INDUSTRY_COMPLETED
final stage of industry construction.
Definition: industry_type.h:36
NEW_INDUSTRYOFFSET
static const IndustryType NEW_INDUSTRYOFFSET
original number of industry types
Definition: industry_type.h:25
INDUSTRYTILE_NOANIM
static const IndustryGfx INDUSTRYTILE_NOANIM
flag to mark industry tiles as having no animation
Definition: industry_type.h:31
INVALID_INDUSTRYTILE
static const IndustryGfx INVALID_INDUSTRYTILE
one above amount is considered invalid
Definition: industry_type.h:34
NUM_INDUSTRYTILES_PER_GRF
static const IndustryGfx NUM_INDUSTRYTILES_PER_GRF
Maximum number of industry tiles per NewGRF; limited to 255 to allow extending Action3 with an extend...
Definition: industry_type.h:29
CheckIndustries
void CheckIndustries()
Verify whether the generated industries are complete, and warn the user if not.
Definition: industry_cmd.cpp:3102
NUM_INDUSTRYTILES
static const IndustryGfx NUM_INDUSTRYTILES
total number of industry tiles, new and old
Definition: industry_type.h:33
IndustrySpec
Defines the data structure for constructing industry.
Definition: industrytype.h:101
INVALID_INDUSTRYTYPE
static const IndustryType INVALID_INDUSTRYTYPE
one above amount is considered invalid
Definition: industry_type.h:27
INDUSTRY_ORIGINAL_NUM_OUTPUTS
static const int INDUSTRY_ORIGINAL_NUM_OUTPUTS
Original number of produced cargo types.
Definition: industry_type.h:41
INDUSTRY_ORIGINAL_NUM_INPUTS
static const int INDUSTRY_ORIGINAL_NUM_INPUTS
Original number of accepted cargo types.
Definition: industry_type.h:40
NEW_INDUSTRYTILEOFFSET
static const IndustryGfx NEW_INDUSTRYTILEOFFSET
original number of tiles
Definition: industry_type.h:32
IndustryTileSpec
Defines the data structure of each individual tile of an industry.
Definition: industrytype.h:148