OpenTTD Source  1.11.2
house.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 HOUSE_H
11 #define HOUSE_H
12 
13 #include "cargo_type.h"
14 #include "date_type.h"
15 #include "house_type.h"
16 #include "newgrf_animation_type.h"
17 #include "newgrf_commons.h"
18 
23 static const byte TOWN_HOUSE_COMPLETED = 3;
24 
25 static const HouseID NUM_HOUSES_PER_GRF = 255;
26 
27 static const uint HOUSE_NO_CLASS = 0;
28 static const HouseID NEW_HOUSE_OFFSET = 110;
29 static const HouseID NUM_HOUSES = 512;
30 static const HouseID INVALID_HOUSE_ID = 0xFFFF;
31 
32 static const uint HOUSE_NUM_ACCEPTS = 16;
33 
38 static const uint HOUSE_CLASS_MAX = NUM_HOUSES - NEW_HOUSE_OFFSET + 1;
39 
40 enum BuildingFlags {
41  TILE_NO_FLAG = 0,
42  TILE_SIZE_1x1 = 1U << 0,
43  TILE_NOT_SLOPED = 1U << 1,
44  TILE_SIZE_2x1 = 1U << 2,
45  TILE_SIZE_1x2 = 1U << 3,
46  TILE_SIZE_2x2 = 1U << 4,
47  BUILDING_IS_ANIMATED = 1U << 5,
48  BUILDING_IS_CHURCH = 1U << 6,
49  BUILDING_IS_STADIUM = 1U << 7,
50  BUILDING_HAS_1_TILE = TILE_SIZE_1x1 | TILE_SIZE_2x1 | TILE_SIZE_1x2 | TILE_SIZE_2x2,
51  BUILDING_HAS_2_TILES = TILE_SIZE_2x1 | TILE_SIZE_1x2 | TILE_SIZE_2x2,
52  BUILDING_2_TILES_X = TILE_SIZE_2x1 | TILE_SIZE_2x2,
53  BUILDING_2_TILES_Y = TILE_SIZE_1x2 | TILE_SIZE_2x2,
54  BUILDING_HAS_4_TILES = TILE_SIZE_2x2,
55 };
56 DECLARE_ENUM_AS_BIT_SET(BuildingFlags)
57 
58 enum HouseZonesBits {
59  HZB_BEGIN = 0,
60  HZB_TOWN_EDGE = 0,
61  HZB_TOWN_OUTSKIRT,
62  HZB_TOWN_OUTER_SUBURB,
63  HZB_TOWN_INNER_SUBURB,
64  HZB_TOWN_CENTRE,
65  HZB_END,
66 };
67 static_assert(HZB_END == 5);
68 
69 DECLARE_POSTFIX_INCREMENT(HouseZonesBits)
70 
71 enum HouseZones {
72  HZ_NOZNS = 0x0000,
73  HZ_ZON1 = 1U << HZB_TOWN_EDGE,
74  HZ_ZON2 = 1U << HZB_TOWN_OUTSKIRT,
75  HZ_ZON3 = 1U << HZB_TOWN_OUTER_SUBURB,
76  HZ_ZON4 = 1U << HZB_TOWN_INNER_SUBURB,
77  HZ_ZON5 = 1U << HZB_TOWN_CENTRE,
78  HZ_ZONALL = 0x001F,
79  HZ_SUBARTC_ABOVE = 0x0800,
80  HZ_TEMP = 0x1000,
81  HZ_SUBARTC_BELOW = 0x2000,
82  HZ_SUBTROPIC = 0x4000,
83  HZ_TOYLND = 0x8000,
84  HZ_CLIMALL = 0xF800,
85 };
87 
89  NO_EXTRA_FLAG = 0,
94 };
95 
97 
98 struct HouseSpec {
99  /* Standard properties */
102  byte population;
107  byte cargo_acceptance[HOUSE_NUM_ACCEPTS];
108  CargoID accepts_cargo[HOUSE_NUM_ACCEPTS];
109  BuildingFlags building_flags;
111  bool enabled;
112 
113  /* NewHouses properties */
115  uint16 callback_mask;
116  byte random_colour[4];
117  byte probability;
123  CargoTypes watched_cargoes;
124 
125  Money GetRemovalCost() const;
126 
127  static inline HouseSpec *Get(size_t house_id)
128  {
129  assert(house_id < NUM_HOUSES);
130  extern HouseSpec _house_specs[];
131  return &_house_specs[house_id];
132  }
133 };
134 
141 {
142  const HouseSpec *hs = HouseSpec::Get(hid);
143  return hs->grf_prop.override == INVALID_HOUSE_ID ? hid : hs->grf_prop.override;
144 }
145 
146 #endif /* HOUSE_H */
house_type.h
HouseSpec::removal_cost
byte removal_cost
cost multiplier for removing it
Definition: house.h:103
GRFFileProps::override
uint16 override
id of the entity been replaced by
Definition: newgrf_commons.h:333
newgrf_commons.h
HZ_SUBTROPIC
@ HZ_SUBTROPIC
14 4000 can appear in subtropical climate
Definition: house.h:82
HouseExtraFlags
HouseExtraFlags
Definition: house.h:88
HouseSpec::enabled
bool enabled
the house is available to build (true by default, but can be disabled by newgrf)
Definition: house.h:111
AnimationInfo
Information about animation.
Definition: newgrf_animation_type.h:18
CALLBACK_1A_RANDOM_BITS
@ CALLBACK_1A_RANDOM_BITS
callback 1A needs random bits
Definition: house.h:93
Year
int32 Year
Type for the year, note: 0 based, i.e. starts at the year 0.
Definition: date_type.h:18
HouseSpec::building_name
StringID building_name
building name
Definition: house.h:104
HouseSpec::max_year
Year max_year
last year it can be built
Definition: house.h:101
HOUSE_CLASS_MAX
static const uint HOUSE_CLASS_MAX
There can only be as many classes as there are new houses, plus one for NO_CLASS, as the original hou...
Definition: house.h:38
NUM_HOUSES_PER_GRF
static const HouseID NUM_HOUSES_PER_GRF
Number of supported houses per NewGRF; limited to 255 to allow extending Action3 with an extended byt...
Definition: house.h:25
HouseSpec::extra_flags
HouseExtraFlags extra_flags
some more flags
Definition: house.h:118
HouseSpec::probability
byte probability
Relative probability of appearing (16 is the standard value)
Definition: house.h:117
DECLARE_POSTFIX_INCREMENT
#define DECLARE_POSTFIX_INCREMENT(enum_type)
Some enums need to have allowed incrementing (i.e.
Definition: enum_type.hpp:14
NUM_HOUSES
static const HouseID NUM_HOUSES
Total number of houses.
Definition: house.h:29
NEW_HOUSE_OFFSET
static const HouseID NEW_HOUSE_OFFSET
Offset for new houses.
Definition: house.h:28
HouseSpec::building_flags
BuildingFlags building_flags
some flags that describe the house (size, stadium etc...)
Definition: house.h:109
HZ_NOZNS
@ HZ_NOZNS
Bit Value Meaning.
Definition: house.h:72
HZ_TEMP
@ HZ_TEMP
12 1000 can appear in temperate climate
Definition: house.h:80
cargo_type.h
GRFFileProps
Data related to the handling of grf files.
Definition: newgrf_commons.h:325
HZ_ZONALL
@ HZ_ZONALL
1F This is just to englobe all above types at once
Definition: house.h:78
HouseSpec::animation
AnimationInfo animation
information about the animation.
Definition: house.h:120
HOUSE_NUM_ACCEPTS
static const uint HOUSE_NUM_ACCEPTS
Max number of cargoes accepted by a tile.
Definition: house.h:32
HouseSpec::callback_mask
uint16 callback_mask
Bitmask of house callbacks that have to be called.
Definition: house.h:115
HouseSpec::minimum_life
byte minimum_life
The minimum number of years this house will survive before the town rebuilds it.
Definition: house.h:122
HZ_ZON5
@ HZ_ZON5
center of town
Definition: house.h:77
HouseSpec::mail_generation
byte mail_generation
mail generation multiplier (tile based, as the acceptances below)
Definition: house.h:106
HouseSpec::population
byte population
population (Zero on other tiles in multi tile house.)
Definition: house.h:102
date_type.h
BUILDING_IS_PROTECTED
@ BUILDING_IS_PROTECTED
towns and AI will not remove this house, while human players will be able to
Definition: house.h:91
StringID
uint32 StringID
Numeric value that represents a string, independent of the selected language.
Definition: strings_type.h:16
HouseID
uint16 HouseID
OpenTTD ID of house types.
Definition: house_type.h:13
SYNCHRONISED_CALLBACK_1B
@ SYNCHRONISED_CALLBACK_1B
synchronized callback 1B will be performed, on multi tile houses
Definition: house.h:92
HZ_SUBARTC_ABOVE
@ HZ_SUBARTC_ABOVE
11 800 can appear in sub-arctic climate above the snow line
Definition: house.h:79
HouseSpec::watched_cargoes
CargoTypes watched_cargoes
Cargo types watched for acceptance.
Definition: house.h:123
HouseSpec::class_id
HouseClassID class_id
defines the class this house has (not grf file based)
Definition: house.h:119
HouseSpec::building_availability
HouseZones building_availability
where can it be built (climates, zones)
Definition: house.h:110
GetTranslatedHouseID
static HouseID GetTranslatedHouseID(HouseID hid)
Do HouseID translation for NewGRFs.
Definition: house.h:140
HZ_CLIMALL
@ HZ_CLIMALL
Bitmask of all climate bits.
Definition: house.h:84
HouseSpec::processing_time
byte processing_time
Periodic refresh multiplier.
Definition: house.h:121
HouseClassID
uint16 HouseClassID
Classes of houses.
Definition: house_type.h:14
DECLARE_ENUM_AS_BIT_SET
DECLARE_ENUM_AS_BIT_SET(GenderEthnicity) enum CompanyManagerFaceVariable
Bitgroups of the CompanyManagerFace variable.
Definition: company_manager_face.h:29
HouseSpec::min_year
Year min_year
introduction year of the house
Definition: house.h:100
HZ_TOYLND
@ HZ_TOYLND
15 8000 can appear in toyland climate
Definition: house.h:83
OverflowSafeInt< int64, INT64_MAX, INT64_MIN >
CargoID
byte CargoID
Cargo slots to indicate a cargo type within a game.
Definition: cargo_type.h:20
HouseSpec
Definition: house.h:98
HouseZones
HouseZones
Definition: house.h:71
BUILDING_IS_HISTORICAL
@ BUILDING_IS_HISTORICAL
this house will only appear during town generation in random games, thus the historical
Definition: house.h:90
TOWN_HOUSE_COMPLETED
static const byte TOWN_HOUSE_COMPLETED
Simple value that indicates the house has reached the final stage of construction.
Definition: house.h:23
newgrf_animation_type.h
HouseSpec::remove_rating_decrease
uint16 remove_rating_decrease
rating decrease if removed
Definition: house.h:105
HZ_SUBARTC_BELOW
@ HZ_SUBARTC_BELOW
13 2000 can appear in sub-arctic climate below the snow line
Definition: house.h:81
HZ_ZON1
@ HZ_ZON1
0..4 1,2,4,8,10 which town zones the building can be built in, Zone1 been the further suburb
Definition: house.h:73
HouseSpec::grf_prop
GRFFileProps grf_prop
Properties related the the grf file.
Definition: house.h:114