4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
10 /** @file newgrf_industrytiles.cpp NewGRF handling of industry tiles. */
14 #include "landscape.h"
15 #include "newgrf_industrytiles.h"
16 #include "newgrf_sound.h"
19 #include "command_func.h"
21 #include "newgrf_animation_base.h"
22 #include "map/slope.h"
24 #include "table/strings.h"
27 * Based on newhouses equivalent, but adapted for newindustries
28 * @param parameter from callback. It's in fact a pair of coordinates
29 * @param tile TileIndex from which the callback was initiated
30 * @param index of the industry been queried for
31 * @param signed_offsets Are the x and y offset encoded in parameter signed?
32 * @param grf_version8 True, if we are dealing with a new NewGRF which uses GRF version >= 8.
33 * @return a construction of bits obeying the newgrf format
35 uint32
GetNearbyIndustryTileInformation(byte parameter
, TileIndex tile
, IndustryID index
, bool signed_offsets
, bool grf_version8
)
37 if (parameter
!= 0) tile
= GetNearbyTile(parameter
, tile
, signed_offsets
); // only perform if it is required
38 bool is_same_industry
= (IsIndustryTile(tile
) && GetIndustryIndex(tile
) == index
);
40 return GetNearbyTileInformation(tile
, grf_version8
) | (is_same_industry
? 1 : 0) << 8;
44 * This is the position of the tile relative to the northernmost tile of the industry.
47 * x the x offset from the northernmost tile
48 * XX same, but stored in a byte instead of a nibble
49 * y the y offset from the northernmost tile
50 * YY same, but stored in a byte instead of a nibble
51 * @param tile TileIndex of the tile to evaluate
52 * @param ind_tile northernmost tile of the industry
54 uint32
GetRelativePosition(TileIndex tile
, TileIndex ind_tile
)
56 byte x
= TileX(tile
) - TileX(ind_tile
);
57 byte y
= TileY(tile
) - TileY(ind_tile
);
59 return ((y
& 0xF) << 20) | ((x
& 0xF) << 16) | (y
<< 8) | x
;
62 /* virtual */ uint32
IndustryTileScopeResolver::GetVariable(byte variable
, uint32 parameter
, bool *available
) const
65 /* Construction state of the tile: a value between 0 and 3 */
66 case 0x40: return (IsIndustryTile(this->tile
)) ? GetIndustryConstructionStage(this->tile
) : 0;
69 case 0x41: return GetTerrainType(this->tile
);
71 /* Current town zone of the tile in the nearest town */
72 case 0x42: return GetTownRadiusGroup(ClosestTownFromTile(this->tile
), this->tile
);
74 /* Relative position */
75 case 0x43: return GetRelativePosition(this->tile
, this->industry
->location
.tile
);
77 /* Animation frame. Like house variable 46 but can contain anything 0..FF. */
78 case 0x44: return IsIndustryTile(this->tile
) ? GetAnimationFrame(this->tile
) : 0;
80 /* Land info of nearby tiles */
81 case 0x60: return GetNearbyIndustryTileInformation(parameter
, this->tile
,
82 this->industry
== NULL
? (IndustryID
)INVALID_INDUSTRY
: this->industry
->index
, true, this->ro
.grffile
->grf_version
>= 8);
84 /* Animation stage of nearby tiles */
86 TileIndex tile
= GetNearbyTile(parameter
, this->tile
);
87 if (IsIndustryTile(tile
) && Industry::GetByTile(tile
) == this->industry
) {
88 return GetAnimationFrame(tile
);
93 /* Get industry tile ID at offset */
94 case 0x62: return GetIndustryIDAtOffset(GetNearbyTile(parameter
, this->tile
), this->industry
, this->ro
.grffile
->grfid
);
97 DEBUG(grf
, 1, "Unhandled industry tile variable 0x%X", variable
);
103 /* virtual */ uint32
IndustryTileScopeResolver::GetRandomBits() const
105 assert(this->industry
!= NULL
&& IsValidTile(this->tile
));
106 assert(this->industry
->index
== INVALID_INDUSTRY
|| IsIndustryTile(this->tile
));
108 return (this->industry
->index
!= INVALID_INDUSTRY
) ? GetIndustryRandomBits(this->tile
) : 0;
111 /* virtual */ uint32
IndustryTileScopeResolver::GetTriggers() const
113 assert(this->industry
!= NULL
&& IsValidTile(this->tile
));
114 assert(this->industry
->index
== INVALID_INDUSTRY
|| IsIndustryTile(this->tile
));
115 if (this->industry
->index
== INVALID_INDUSTRY
) return 0;
116 return GetIndustryTriggers(this->tile
);
119 /* virtual */ void IndustryTileScopeResolver::SetTriggers(int triggers
) const
121 assert(this->industry
!= NULL
&& this->industry
->index
!= INVALID_INDUSTRY
&& IsValidTile(this->tile
) && IsIndustryTile(this->tile
));
122 SetIndustryTriggers(this->tile
, triggers
);
126 * Get the associated NewGRF file from the industry graphics.
127 * @param gfx Graphics to query.
128 * @return Grf file associated with the graphics, if any.
130 static const GRFFile
*GetIndTileGrffile(IndustryGfx gfx
)
132 const IndustryTileSpec
*its
= GetIndustryTileSpec(gfx
);
133 return (its
!= NULL
) ? its
->grf_prop
.grffile
: NULL
;
137 * Constructor of the industry tiles scope resolver.
138 * @param gfx Graphics of the industry.
139 * @param tile %Tile of the industry.
140 * @param indus %Industry owning the tile.
141 * @param callback Callback ID.
142 * @param callback_param1 First parameter (var 10) of the callback.
143 * @param callback_param2 Second parameter (var 18) of the callback.
145 IndustryTileResolverObject::IndustryTileResolverObject(IndustryGfx gfx
, TileIndex tile
, Industry
*indus
,
146 CallbackID callback
, uint32 callback_param1
, uint32 callback_param2
)
147 : ResolverObject(GetIndTileGrffile(gfx
), callback
, callback_param1
, callback_param2
),
148 indtile_scope(*this, indus
, tile
),
149 ind_scope(*this, tile
, indus
, indus
->type
)
151 this->root_spritegroup
= GetIndustryTileSpec(gfx
)->grf_prop
.spritegroup
[0];
155 * Constructor of the scope resolver for the industry tile.
156 * @param ro Surrounding resolver.
157 * @param industry %Industry owning the tile.
158 * @param tile %Tile of the industry.
160 IndustryTileScopeResolver::IndustryTileScopeResolver(ResolverObject
&ro
, Industry
*industry
, TileIndex tile
) : ScopeResolver(ro
)
162 this->industry
= industry
;
166 static void IndustryDrawTileLayout(const TileInfo
*ti
, const TileLayoutSpriteGroup
*group
, byte rnd_colour
, byte stage
, IndustryGfx gfx
)
168 const DrawTileSprites
*dts
= group
->ProcessRegisters(&stage
);
170 SpriteID image
= dts
->ground
.sprite
;
171 PaletteID pal
= dts
->ground
.pal
;
173 if (HasBit(image
, SPRITE_MODIFIER_CUSTOM_SPRITE
)) image
+= stage
;
174 if (HasBit(pal
, SPRITE_MODIFIER_CUSTOM_SPRITE
)) pal
+= stage
;
176 if (GB(image
, 0, SPRITE_WIDTH
) != 0) {
177 /* If the ground sprite is the default flat water sprite, draw also canal/river borders
178 * Do not do this if the tile's WaterClass is 'land'. */
179 if (image
== SPR_FLAT_WATER_TILE
&& IsTileOnWater(ti
->tile
)) {
180 DrawWaterClassGround(ti
);
182 DrawGroundSprite(image
, GroundSpritePaletteTransform(image
, pal
, GENERAL_SPRITE_COLOUR(rnd_colour
)));
186 DrawNewGRFTileSeq(ti
, dts
, TO_INDUSTRIES
, stage
, GENERAL_SPRITE_COLOUR(rnd_colour
));
189 uint16
GetIndustryTileCallback(CallbackID callback
, uint32 param1
, uint32 param2
, IndustryGfx gfx_id
, Industry
*industry
, TileIndex tile
)
191 assert(industry
!= NULL
&& IsValidTile(tile
));
192 assert(industry
->index
== INVALID_INDUSTRY
|| IsIndustryTile(tile
));
194 IndustryTileResolverObject
object(gfx_id
, tile
, industry
, callback
, param1
, param2
);
195 return object
.ResolveCallback();
198 bool DrawNewIndustryTile(TileInfo
*ti
, Industry
*i
, IndustryGfx gfx
, const IndustryTileSpec
*inds
)
200 if (ti
->tileh
!= SLOPE_FLAT
) {
201 bool draw_old_one
= true;
202 if (HasBit(inds
->callback_mask
, CBM_INDT_DRAW_FOUNDATIONS
)) {
203 /* Called to determine the type (if any) of foundation to draw for industry tile */
204 uint32 callback_res
= GetIndustryTileCallback(CBID_INDTILE_DRAW_FOUNDATIONS
, 0, 0, gfx
, i
, ti
->tile
);
205 if (callback_res
!= CALLBACK_FAILED
) draw_old_one
= ConvertBooleanCallback(inds
->grf_prop
.grffile
, CBID_INDTILE_DRAW_FOUNDATIONS
, callback_res
);
208 if (draw_old_one
) DrawFoundation(ti
, FOUNDATION_LEVELED
);
211 IndustryTileResolverObject
object(gfx
, ti
->tile
, i
);
213 const SpriteGroup
*group
= object
.Resolve();
214 if (group
== NULL
|| group
->type
!= SGT_TILELAYOUT
) return false;
216 /* Limit the building stage to the number of stages supplied. */
217 const TileLayoutSpriteGroup
*tlgroup
= (const TileLayoutSpriteGroup
*)group
;
218 byte stage
= GetIndustryConstructionStage(ti
->tile
);
219 IndustryDrawTileLayout(ti
, tlgroup
, i
->random_colour
, stage
, gfx
);
223 extern bool IsSlopeRefused(Slope current
, Slope refused
);
226 * Check the slope of a tile of a new industry.
227 * @param ind_base_tile Base tile of the industry.
228 * @param ind_tile Tile to check.
229 * @param its Tile specification.
230 * @param type Industry type.
231 * @param gfx Gfx of the tile.
232 * @param itspec_index Layout.
233 * @param initial_random_bits Random bits of industry after construction
234 * @param founder Industry founder
235 * @param creation_type The circumstances the industry is created under.
236 * @return Succeeded or failed command.
238 CommandCost
PerformIndustryTileSlopeCheck(TileIndex ind_base_tile
, TileIndex ind_tile
, const IndustryTileSpec
*its
, IndustryType type
, IndustryGfx gfx
, uint itspec_index
, uint16 initial_random_bits
, Owner founder
, IndustryAvailabilityCallType creation_type
)
241 ind
.index
= INVALID_INDUSTRY
;
242 ind
.location
.tile
= ind_base_tile
;
245 ind
.random
= initial_random_bits
;
246 ind
.founder
= founder
;
248 uint16 callback_res
= GetIndustryTileCallback(CBID_INDTILE_SHAPE_CHECK
, 0, creation_type
<< 8 | itspec_index
, gfx
, &ind
, ind_tile
);
249 if (callback_res
== CALLBACK_FAILED
) {
250 if (!IsSlopeRefused(GetTileSlope(ind_tile
), its
->slopes_refused
)) return CommandCost();
251 return_cmd_error(STR_ERROR_SITE_UNSUITABLE
);
253 if (its
->grf_prop
.grffile
->grf_version
< 7) {
254 if (callback_res
!= 0) return CommandCost();
255 return_cmd_error(STR_ERROR_SITE_UNSUITABLE
);
258 return GetErrorMessageFromLocationCallbackResult(callback_res
, its
->grf_prop
.grffile
, STR_ERROR_SITE_UNSUITABLE
);
261 /* Simple wrapper for GetHouseCallback to keep the animation unified. */
262 uint16
GetSimpleIndustryCallback(CallbackID callback
, uint32 param1
, uint32 param2
, const IndustryTileSpec
*spec
, Industry
*ind
, TileIndex tile
, int extra_data
)
264 return GetIndustryTileCallback(callback
, param1
, param2
, spec
- GetIndustryTileSpec(0), ind
, tile
);
267 /** Helper class for animation control. */
268 struct IndustryAnimationBase
: public AnimationBase
<IndustryAnimationBase
, IndustryTileSpec
, Industry
, int, GetSimpleIndustryCallback
> {
269 static const CallbackID cb_animation_speed
= CBID_INDTILE_ANIMATION_SPEED
;
270 static const CallbackID cb_animation_next_frame
= CBID_INDTILE_ANIM_NEXT_FRAME
;
272 static const IndustryTileCallbackMask cbm_animation_speed
= CBM_INDT_ANIM_SPEED
;
273 static const IndustryTileCallbackMask cbm_animation_next_frame
= CBM_INDT_ANIM_NEXT_FRAME
;
276 void AnimateNewIndustryTile(TileIndex tile
)
278 const IndustryTileSpec
*itspec
= GetIndustryTileSpec(GetIndustryGfx(tile
));
279 if (itspec
== NULL
) return;
281 IndustryAnimationBase::AnimateTile(itspec
, Industry::GetByTile(tile
), tile
, (itspec
->special_flags
& INDTILE_SPECIAL_NEXTFRAME_RANDOMBITS
) != 0);
284 bool StartStopIndustryTileAnimation(TileIndex tile
, IndustryAnimationTrigger iat
, uint32 random
)
286 const IndustryTileSpec
*itspec
= GetIndustryTileSpec(GetIndustryGfx(tile
));
288 if (!HasBit(itspec
->animation
.triggers
, iat
)) return false;
290 IndustryAnimationBase::ChangeAnimationFrame(CBID_INDTILE_ANIM_START_STOP
, itspec
, Industry::GetByTile(tile
), tile
, random
, iat
);
294 bool StartStopIndustryTileAnimation(const Industry
*ind
, IndustryAnimationTrigger iat
)
297 uint32 random
= Random();
298 TILE_AREA_LOOP(tile
, ind
->location
) {
299 if (ind
->TileBelongsToIndustry(tile
)) {
300 if (StartStopIndustryTileAnimation(tile
, iat
, random
)) {
301 SB(random
, 0, 16, Random());
312 * Trigger random triggers for an industry tile and reseed its random bits.
313 * @param tile Industry tile to trigger.
314 * @param trigger Trigger to trigger.
315 * @param ind Industry of the tile.
316 * @param [in,out] reseed_industry Collects bits to reseed for the industry.
318 static void DoTriggerIndustryTile(TileIndex tile
, IndustryTileTrigger trigger
, Industry
*ind
, uint32
&reseed_industry
)
320 assert(IsValidTile(tile
) && IsIndustryTile(tile
));
322 IndustryGfx gfx
= GetIndustryGfx(tile
);
323 const IndustryTileSpec
*itspec
= GetIndustryTileSpec(gfx
);
325 if (itspec
->grf_prop
.spritegroup
[0] == NULL
) return;
327 IndustryTileResolverObject
object(gfx
, tile
, ind
, CBID_RANDOM_TRIGGER
);
328 object
.trigger
= trigger
;
330 const SpriteGroup
*group
= object
.Resolve();
331 if (group
== NULL
) return;
333 byte new_random_bits
= Random();
334 byte random_bits
= GetIndustryRandomBits(tile
);
335 random_bits
&= ~object
.reseed
[VSG_SCOPE_SELF
];
336 random_bits
|= new_random_bits
& object
.reseed
[VSG_SCOPE_SELF
];
337 SetIndustryRandomBits(tile
, random_bits
);
338 MarkTileDirtyByTile(tile
);
340 reseed_industry
|= object
.reseed
[VSG_SCOPE_PARENT
];
344 * Reseeds the random bits of an industry.
345 * @param ind Industry.
346 * @param reseed Bits to reseed.
348 static void DoReseedIndustry(Industry
*ind
, uint32 reseed
)
350 if (reseed
== 0 || ind
== NULL
) return;
352 uint16 random_bits
= Random();
353 ind
->random
&= reseed
;
354 ind
->random
|= random_bits
& reseed
;
358 * Trigger a random trigger for a single industry tile.
359 * @param tile Industry tile to trigger.
360 * @param trigger Trigger to trigger.
362 void TriggerIndustryTile(TileIndex tile
, IndustryTileTrigger trigger
)
364 uint32 reseed_industry
= 0;
365 Industry
*ind
= Industry::GetByTile(tile
);
366 DoTriggerIndustryTile(tile
, trigger
, ind
, reseed_industry
);
367 DoReseedIndustry(ind
, reseed_industry
);
371 * Trigger a random trigger for all industry tiles.
372 * @param ind Industry to trigger.
373 * @param trigger Trigger to trigger.
375 void TriggerIndustry(Industry
*ind
, IndustryTileTrigger trigger
)
377 uint32 reseed_industry
= 0;
378 TILE_AREA_LOOP(tile
, ind
->location
) {
379 if (ind
->TileBelongsToIndustry(tile
)) {
380 DoTriggerIndustryTile(tile
, trigger
, ind
, reseed_industry
);
383 DoReseedIndustry(ind
, reseed_industry
);