Fix: Stopped ships shouldn't block depots (#8578)
[openttd-github.git] / src / object_cmd.cpp
blob7a2ff26524ee278efcecb7571ee700bdd5647c87
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 */
8 /** @file object_cmd.cpp Handling of object tiles. */
10 #include "stdafx.h"
11 #include "landscape.h"
12 #include "command_func.h"
13 #include "viewport_func.h"
14 #include "company_base.h"
15 #include "town.h"
16 #include "bridge_map.h"
17 #include "genworld.h"
18 #include "autoslope.h"
19 #include "clear_func.h"
20 #include "water.h"
21 #include "window_func.h"
22 #include "company_gui.h"
23 #include "cheat_type.h"
24 #include "object.h"
25 #include "cargopacket.h"
26 #include "core/random_func.hpp"
27 #include "core/pool_func.hpp"
28 #include "object_map.h"
29 #include "object_base.h"
30 #include "newgrf_config.h"
31 #include "newgrf_object.h"
32 #include "date_func.h"
33 #include "newgrf_debug.h"
34 #include "vehicle_func.h"
36 #include "table/strings.h"
37 #include "table/object_land.h"
39 #include "safeguards.h"
41 ObjectPool _object_pool("Object");
42 INSTANTIATE_POOL_METHODS(Object)
43 uint16 Object::counts[NUM_OBJECTS];
45 /**
46 * Get the object associated with a tile.
47 * @param tile The tile to fetch the object for.
48 * @return The object.
50 /* static */ Object *Object::GetByTile(TileIndex tile)
52 return Object::Get(GetObjectIndex(tile));
55 /**
56 * Gets the ObjectType of the given object tile
57 * @param t the tile to get the type from.
58 * @pre IsTileType(t, MP_OBJECT)
59 * @return the type.
61 ObjectType GetObjectType(TileIndex t)
63 assert(IsTileType(t, MP_OBJECT));
64 return Object::GetByTile(t)->type;
67 /** Initialize/reset the objects. */
68 void InitializeObjects()
70 Object::ResetTypeCounts();
73 /**
74 * Actually build the object.
75 * @param type The type of object to build.
76 * @param tile The tile to build the northern tile of the object on.
77 * @param owner The owner of the object.
78 * @param town Town the tile is related with.
79 * @param view The view for the object.
80 * @pre All preconditions for building the object at that location
81 * are met, e.g. slope and clearness of tiles are checked.
83 void BuildObject(ObjectType type, TileIndex tile, CompanyID owner, Town *town, uint8 view)
85 const ObjectSpec *spec = ObjectSpec::Get(type);
87 TileArea ta(tile, GB(spec->size, HasBit(view, 0) ? 4 : 0, 4), GB(spec->size, HasBit(view, 0) ? 0 : 4, 4));
88 Object *o = new Object();
89 o->type = type;
90 o->location = ta;
91 o->town = town == nullptr ? CalcClosestTownFromTile(tile) : town;
92 o->build_date = _date;
93 o->view = view;
95 /* If nothing owns the object, the colour will be random. Otherwise
96 * get the colour from the company's livery settings. */
97 if (owner == OWNER_NONE) {
98 o->colour = Random();
99 } else {
100 const Livery *l = Company::Get(owner)->livery;
101 o->colour = l->colour1 + l->colour2 * 16;
104 /* If the object wants only one colour, then give it that colour. */
105 if ((spec->flags & OBJECT_FLAG_2CC_COLOUR) == 0) o->colour &= 0xF;
107 if (HasBit(spec->callback_mask, CBM_OBJ_COLOUR)) {
108 uint16 res = GetObjectCallback(CBID_OBJECT_COLOUR, o->colour, 0, spec, o, tile);
109 if (res != CALLBACK_FAILED) {
110 if (res >= 0x100) ErrorUnknownCallbackResult(spec->grf_prop.grffile->grfid, CBID_OBJECT_COLOUR, res);
111 o->colour = GB(res, 0, 8);
115 assert(o->town != nullptr);
117 TILE_AREA_LOOP(t, ta) {
118 WaterClass wc = (IsWaterTile(t) ? GetWaterClass(t) : WATER_CLASS_INVALID);
119 /* Update company infrastructure counts for objects build on canals owned by nobody. */
120 if (wc == WATER_CLASS_CANAL && owner != OWNER_NONE && (IsTileOwner(tile, OWNER_NONE) || IsTileOwner(tile, OWNER_WATER))) {
121 Company::Get(owner)->infrastructure.water++;
122 DirtyCompanyInfrastructureWindows(owner);
124 MakeObject(t, owner, o->index, wc, Random());
125 MarkTileDirtyByTile(t);
128 Object::IncTypeCount(type);
129 if (spec->flags & OBJECT_FLAG_ANIMATION) TriggerObjectAnimation(o, OAT_BUILT, spec);
133 * Increase the animation stage of a whole structure.
134 * @param tile The tile of the structure.
136 static void IncreaseAnimationStage(TileIndex tile)
138 TileArea ta = Object::GetByTile(tile)->location;
139 TILE_AREA_LOOP(t, ta) {
140 SetAnimationFrame(t, GetAnimationFrame(t) + 1);
141 MarkTileDirtyByTile(t);
145 /** We encode the company HQ size in the animation stage. */
146 #define GetCompanyHQSize GetAnimationFrame
147 /** We encode the company HQ size in the animation stage. */
148 #define IncreaseCompanyHQSize IncreaseAnimationStage
151 * Update the CompanyHQ to the state associated with the given score
152 * @param tile The (northern) tile of the company HQ, or INVALID_TILE.
153 * @param score The current (performance) score of the company.
155 void UpdateCompanyHQ(TileIndex tile, uint score)
157 if (tile == INVALID_TILE) return;
159 byte val = 0;
160 if (score >= 170) val++;
161 if (score >= 350) val++;
162 if (score >= 520) val++;
163 if (score >= 720) val++;
165 while (GetCompanyHQSize(tile) < val) {
166 IncreaseCompanyHQSize(tile);
171 * Updates the colour of the object whenever a company changes.
172 * @param c The company the company colour changed of.
174 void UpdateObjectColours(const Company *c)
176 for (Object *obj : Object::Iterate()) {
177 Owner owner = GetTileOwner(obj->location.tile);
178 /* Not the current owner, so colour doesn't change. */
179 if (owner != c->index) continue;
181 const ObjectSpec *spec = ObjectSpec::GetByTile(obj->location.tile);
182 /* Using the object colour callback, so not using company colour. */
183 if (HasBit(spec->callback_mask, CBM_OBJ_COLOUR)) continue;
185 const Livery *l = c->livery;
186 obj->colour = ((spec->flags & OBJECT_FLAG_2CC_COLOUR) ? (l->colour2 * 16) : 0) + l->colour1;
190 extern CommandCost CheckBuildableTile(TileIndex tile, uint invalid_dirs, int &allowed_z, bool allow_steep, bool check_bridge);
191 static CommandCost ClearTile_Object(TileIndex tile, DoCommandFlag flags);
194 * Build an object object
195 * @param tile tile where the object will be located
196 * @param flags type of operation
197 * @param p1 the object type to build
198 * @param p2 the view for the object
199 * @param text unused
200 * @return the cost of this operation or an error
202 CommandCost CmdBuildObject(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text)
204 CommandCost cost(EXPENSES_PROPERTY);
206 ObjectType type = (ObjectType)GB(p1, 0, 16);
207 if (type >= NUM_OBJECTS) return CMD_ERROR;
208 uint8 view = GB(p2, 0, 2);
209 const ObjectSpec *spec = ObjectSpec::Get(type);
210 if (_game_mode == GM_NORMAL && !spec->IsAvailable() && !_generating_world) return CMD_ERROR;
211 if ((_game_mode == GM_EDITOR || _generating_world) && !spec->WasEverAvailable()) return CMD_ERROR;
213 if ((spec->flags & OBJECT_FLAG_ONLY_IN_SCENEDIT) != 0 && ((!_generating_world && _game_mode != GM_EDITOR) || _current_company != OWNER_NONE)) return CMD_ERROR;
214 if ((spec->flags & OBJECT_FLAG_ONLY_IN_GAME) != 0 && (_generating_world || _game_mode != GM_NORMAL || _current_company > MAX_COMPANIES)) return CMD_ERROR;
215 if (view >= spec->views) return CMD_ERROR;
217 if (!Object::CanAllocateItem()) return_cmd_error(STR_ERROR_TOO_MANY_OBJECTS);
218 if (Town::GetNumItems() == 0) return_cmd_error(STR_ERROR_MUST_FOUND_TOWN_FIRST);
220 int size_x = GB(spec->size, HasBit(view, 0) ? 4 : 0, 4);
221 int size_y = GB(spec->size, HasBit(view, 0) ? 0 : 4, 4);
222 TileArea ta(tile, size_x, size_y);
224 if (type == OBJECT_OWNED_LAND) {
225 /* Owned land is special as it can be placed on any slope. */
226 cost.AddCost(DoCommand(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR));
227 } else {
228 /* Check the surface to build on. At this time we can't actually execute the
229 * the CLEAR_TILE commands since the newgrf callback later on can check
230 * some information about the tiles. */
231 bool allow_water = (spec->flags & (OBJECT_FLAG_BUILT_ON_WATER | OBJECT_FLAG_NOT_ON_LAND)) != 0;
232 bool allow_ground = (spec->flags & OBJECT_FLAG_NOT_ON_LAND) == 0;
233 TILE_AREA_LOOP(t, ta) {
234 if (HasTileWaterGround(t)) {
235 if (!allow_water) return_cmd_error(STR_ERROR_CAN_T_BUILD_ON_WATER);
236 if (!IsWaterTile(t)) {
237 /* Normal water tiles don't have to be cleared. For all other tile types clear
238 * the tile but leave the water. */
239 cost.AddCost(DoCommand(t, 0, 0, flags & ~DC_NO_WATER & ~DC_EXEC, CMD_LANDSCAPE_CLEAR));
240 } else {
241 /* Can't build on water owned by another company. */
242 Owner o = GetTileOwner(t);
243 if (o != OWNER_NONE && o != OWNER_WATER) cost.AddCost(CheckOwnership(o, t));
245 /* However, the tile has to be clear of vehicles. */
246 cost.AddCost(EnsureNoVehicleOnGround(t));
248 } else {
249 if (!allow_ground) return_cmd_error(STR_ERROR_MUST_BE_BUILT_ON_WATER);
250 /* For non-water tiles, we'll have to clear it before building. */
252 /* When relocating HQ, allow it to be relocated (partial) on itself. */
253 if (!(type == OBJECT_HQ &&
254 IsTileType(t, MP_OBJECT) &&
255 IsTileOwner(t, _current_company) &&
256 IsObjectType(t, OBJECT_HQ))) {
257 cost.AddCost(DoCommand(t, 0, 0, flags & ~DC_EXEC, CMD_LANDSCAPE_CLEAR));
262 /* So, now the surface is checked... check the slope of said surface. */
263 int allowed_z;
264 if (GetTileSlope(tile, &allowed_z) != SLOPE_FLAT) allowed_z++;
266 TILE_AREA_LOOP(t, ta) {
267 uint16 callback = CALLBACK_FAILED;
268 if (HasBit(spec->callback_mask, CBM_OBJ_SLOPE_CHECK)) {
269 TileIndex diff = t - tile;
270 callback = GetObjectCallback(CBID_OBJECT_LAND_SLOPE_CHECK, GetTileSlope(t), TileY(diff) << 4 | TileX(diff), spec, nullptr, t, view);
273 if (callback == CALLBACK_FAILED) {
274 cost.AddCost(CheckBuildableTile(t, 0, allowed_z, false, false));
275 } else {
276 /* The meaning of bit 10 is inverted for a grf version < 8. */
277 if (spec->grf_prop.grffile->grf_version < 8) ToggleBit(callback, 10);
278 CommandCost ret = GetErrorMessageFromLocationCallbackResult(callback, spec->grf_prop.grffile, STR_ERROR_LAND_SLOPED_IN_WRONG_DIRECTION);
279 if (ret.Failed()) return ret;
283 if (flags & DC_EXEC) {
284 /* This is basically a copy of the loop above with the exception that we now
285 * execute the commands and don't check for errors, since that's already done. */
286 TILE_AREA_LOOP(t, ta) {
287 if (HasTileWaterGround(t)) {
288 if (!IsWaterTile(t)) {
289 DoCommand(t, 0, 0, (flags & ~DC_NO_WATER) | DC_NO_MODIFY_TOWN_RATING, CMD_LANDSCAPE_CLEAR);
291 } else {
292 DoCommand(t, 0, 0, flags | DC_NO_MODIFY_TOWN_RATING, CMD_LANDSCAPE_CLEAR);
297 if (cost.Failed()) return cost;
299 /* Finally do a check for bridges. */
300 TILE_AREA_LOOP(t, ta) {
301 if (IsBridgeAbove(t) && (
302 !(spec->flags & OBJECT_FLAG_ALLOW_UNDER_BRIDGE) ||
303 (GetTileMaxZ(t) + spec->height >= GetBridgeHeight(GetSouthernBridgeEnd(t))))) {
304 return_cmd_error(STR_ERROR_MUST_DEMOLISH_BRIDGE_FIRST);
308 int hq_score = 0;
309 switch (type) {
310 case OBJECT_TRANSMITTER:
311 case OBJECT_LIGHTHOUSE:
312 if (!IsTileFlat(tile)) return_cmd_error(STR_ERROR_FLAT_LAND_REQUIRED);
313 break;
315 case OBJECT_OWNED_LAND:
316 if (IsTileType(tile, MP_OBJECT) &&
317 IsTileOwner(tile, _current_company) &&
318 IsObjectType(tile, OBJECT_OWNED_LAND)) {
319 return_cmd_error(STR_ERROR_YOU_ALREADY_OWN_IT);
321 break;
323 case OBJECT_HQ: {
324 Company *c = Company::Get(_current_company);
325 if (c->location_of_HQ != INVALID_TILE) {
326 /* We need to persuade a bit harder to remove the old HQ. */
327 _current_company = OWNER_WATER;
328 cost.AddCost(ClearTile_Object(c->location_of_HQ, flags));
329 _current_company = c->index;
332 if (flags & DC_EXEC) {
333 hq_score = UpdateCompanyRatingAndValue(c, false);
334 c->location_of_HQ = tile;
335 SetWindowDirty(WC_COMPANY, c->index);
337 break;
340 case OBJECT_STATUE:
341 /* This may never be constructed using this method. */
342 return CMD_ERROR;
344 default: // i.e. NewGRF provided.
345 break;
348 if (flags & DC_EXEC) {
349 BuildObject(type, tile, _current_company, nullptr, view);
351 /* Make sure the HQ starts at the right size. */
352 if (type == OBJECT_HQ) UpdateCompanyHQ(tile, hq_score);
355 cost.AddCost(ObjectSpec::Get(type)->GetBuildCost() * size_x * size_y);
356 return cost;
360 static Foundation GetFoundation_Object(TileIndex tile, Slope tileh);
362 static void DrawTile_Object(TileInfo *ti)
364 ObjectType type = GetObjectType(ti->tile);
365 const ObjectSpec *spec = ObjectSpec::Get(type);
367 /* Fall back for when the object doesn't exist anymore. */
368 if (!spec->enabled) type = OBJECT_TRANSMITTER;
370 if ((spec->flags & OBJECT_FLAG_HAS_NO_FOUNDATION) == 0) DrawFoundation(ti, GetFoundation_Object(ti->tile, ti->tileh));
372 if (type < NEW_OBJECT_OFFSET) {
373 const DrawTileSprites *dts = nullptr;
374 Owner to = GetTileOwner(ti->tile);
375 PaletteID palette = to == OWNER_NONE ? PAL_NONE : COMPANY_SPRITE_COLOUR(to);
377 if (type == OBJECT_HQ) {
378 TileIndex diff = ti->tile - Object::GetByTile(ti->tile)->location.tile;
379 dts = &_object_hq[GetCompanyHQSize(ti->tile) << 2 | TileY(diff) << 1 | TileX(diff)];
380 } else {
381 dts = &_objects[type];
384 if (spec->flags & OBJECT_FLAG_HAS_NO_FOUNDATION) {
385 /* If an object has no foundation, but tries to draw a (flat) ground
386 * type... we have to be nice and convert that for them. */
387 switch (dts->ground.sprite) {
388 case SPR_FLAT_BARE_LAND: DrawClearLandTile(ti, 0); break;
389 case SPR_FLAT_1_THIRD_GRASS_TILE: DrawClearLandTile(ti, 1); break;
390 case SPR_FLAT_2_THIRD_GRASS_TILE: DrawClearLandTile(ti, 2); break;
391 case SPR_FLAT_GRASS_TILE: DrawClearLandTile(ti, 3); break;
392 default: DrawGroundSprite(dts->ground.sprite, palette); break;
394 } else {
395 DrawGroundSprite(dts->ground.sprite, palette);
398 if (!IsInvisibilitySet(TO_STRUCTURES)) {
399 const DrawTileSeqStruct *dtss;
400 foreach_draw_tile_seq(dtss, dts->seq) {
401 AddSortableSpriteToDraw(
402 dtss->image.sprite, palette,
403 ti->x + dtss->delta_x, ti->y + dtss->delta_y,
404 dtss->size_x, dtss->size_y,
405 dtss->size_z, ti->z + dtss->delta_z,
406 IsTransparencySet(TO_STRUCTURES)
410 } else {
411 DrawNewObjectTile(ti, spec);
414 DrawBridgeMiddle(ti);
417 static int GetSlopePixelZ_Object(TileIndex tile, uint x, uint y)
419 if (IsObjectType(tile, OBJECT_OWNED_LAND)) {
420 int z;
421 Slope tileh = GetTilePixelSlope(tile, &z);
423 return z + GetPartialPixelZ(x & 0xF, y & 0xF, tileh);
424 } else {
425 return GetTileMaxPixelZ(tile);
429 static Foundation GetFoundation_Object(TileIndex tile, Slope tileh)
431 return IsObjectType(tile, OBJECT_OWNED_LAND) ? FOUNDATION_NONE : FlatteningFoundation(tileh);
435 * Perform the actual removal of the object from the map.
436 * @param o The object to really clear.
438 static void ReallyClearObjectTile(Object *o)
440 Object::DecTypeCount(o->type);
441 TILE_AREA_LOOP(tile_cur, o->location) {
442 DeleteNewGRFInspectWindow(GSF_OBJECTS, tile_cur);
444 MakeWaterKeepingClass(tile_cur, GetTileOwner(tile_cur));
446 delete o;
449 std::vector<ClearedObjectArea> _cleared_object_areas;
452 * Find the entry in _cleared_object_areas which occupies a certain tile.
453 * @param tile Tile of interest
454 * @return Occupying entry, or nullptr if none
456 ClearedObjectArea *FindClearedObject(TileIndex tile)
458 TileArea ta = TileArea(tile, 1, 1);
460 for (ClearedObjectArea &coa : _cleared_object_areas) {
461 if (coa.area.Intersects(ta)) return &coa;
464 return nullptr;
467 static CommandCost ClearTile_Object(TileIndex tile, DoCommandFlag flags)
469 /* Get to the northern most tile. */
470 Object *o = Object::GetByTile(tile);
471 TileArea ta = o->location;
473 ObjectType type = o->type;
474 const ObjectSpec *spec = ObjectSpec::Get(type);
476 CommandCost cost(EXPENSES_CONSTRUCTION, spec->GetClearCost() * ta.w * ta.h / 5);
477 if (spec->flags & OBJECT_FLAG_CLEAR_INCOME) cost.MultiplyCost(-1); // They get an income!
479 /* Towns can't remove any objects. */
480 if (_current_company == OWNER_TOWN) return CMD_ERROR;
482 /* Water can remove everything! */
483 if (_current_company != OWNER_WATER) {
484 if ((flags & DC_NO_WATER) && IsTileOnWater(tile)) {
485 /* There is water under the object, treat it as water tile. */
486 return_cmd_error(STR_ERROR_CAN_T_BUILD_ON_WATER);
487 } else if (!(spec->flags & OBJECT_FLAG_AUTOREMOVE) && (flags & DC_AUTO)) {
488 /* No automatic removal by overbuilding stuff. */
489 return_cmd_error(type == OBJECT_HQ ? STR_ERROR_COMPANY_HEADQUARTERS_IN : STR_ERROR_OBJECT_IN_THE_WAY);
490 } else if (_game_mode == GM_EDITOR) {
491 /* No further limitations for the editor. */
492 } else if (GetTileOwner(tile) == OWNER_NONE) {
493 /* Owned by nobody and unremovable, so we can only remove it with brute force! */
494 if (!_cheats.magic_bulldozer.value && (spec->flags & OBJECT_FLAG_CANNOT_REMOVE) != 0) return CMD_ERROR;
495 } else if (CheckTileOwnership(tile).Failed()) {
496 /* We don't own it!. */
497 return_cmd_error(STR_ERROR_OWNED_BY);
498 } else if ((spec->flags & OBJECT_FLAG_CANNOT_REMOVE) != 0 && (spec->flags & OBJECT_FLAG_AUTOREMOVE) == 0) {
499 /* In the game editor or with cheats we can remove, otherwise we can't. */
500 if (!_cheats.magic_bulldozer.value) {
501 if (type == OBJECT_HQ) return_cmd_error(STR_ERROR_COMPANY_HEADQUARTERS_IN);
502 return CMD_ERROR;
505 /* Removing with the cheat costs more in TTDPatch / the specs. */
506 cost.MultiplyCost(25);
508 } else if ((spec->flags & (OBJECT_FLAG_BUILT_ON_WATER | OBJECT_FLAG_NOT_ON_LAND)) != 0) {
509 /* Water can't remove objects that are buildable on water. */
510 return CMD_ERROR;
513 switch (type) {
514 case OBJECT_HQ: {
515 Company *c = Company::Get(GetTileOwner(tile));
516 if (flags & DC_EXEC) {
517 c->location_of_HQ = INVALID_TILE; // reset HQ position
518 SetWindowDirty(WC_COMPANY, c->index);
519 CargoPacket::InvalidateAllFrom(ST_HEADQUARTERS, c->index);
522 /* cost of relocating company is 1% of company value */
523 cost = CommandCost(EXPENSES_PROPERTY, CalculateCompanyValue(c) / 100);
524 break;
527 case OBJECT_STATUE:
528 if (flags & DC_EXEC) {
529 Town *town = o->town;
530 ClrBit(town->statues, GetTileOwner(tile));
531 SetWindowDirty(WC_TOWN_AUTHORITY, town->index);
533 break;
535 default:
536 break;
539 _cleared_object_areas.push_back({tile, ta});
541 if (flags & DC_EXEC) ReallyClearObjectTile(o);
543 return cost;
546 static void AddAcceptedCargo_Object(TileIndex tile, CargoArray &acceptance, CargoTypes *always_accepted)
548 if (!IsObjectType(tile, OBJECT_HQ)) return;
550 /* HQ accepts passenger and mail; but we have to divide the values
551 * between 4 tiles it occupies! */
553 /* HQ level (depends on company performance) in the range 1..5. */
554 uint level = GetCompanyHQSize(tile) + 1;
556 /* Top town building generates 10, so to make HQ interesting, the top
557 * type makes 20. */
558 acceptance[CT_PASSENGERS] += std::max(1U, level);
559 SetBit(*always_accepted, CT_PASSENGERS);
561 /* Top town building generates 4, HQ can make up to 8. The
562 * proportion passengers:mail is different because such a huge
563 * commercial building generates unusually high amount of mail
564 * correspondence per physical visitor. */
565 acceptance[CT_MAIL] += std::max(1U, level / 2);
566 SetBit(*always_accepted, CT_MAIL);
569 static void AddProducedCargo_Object(TileIndex tile, CargoArray &produced)
571 if (!IsObjectType(tile, OBJECT_HQ)) return;
573 produced[CT_PASSENGERS]++;
574 produced[CT_MAIL]++;
578 static void GetTileDesc_Object(TileIndex tile, TileDesc *td)
580 const ObjectSpec *spec = ObjectSpec::GetByTile(tile);
581 td->str = spec->name;
582 td->owner[0] = GetTileOwner(tile);
583 td->build_date = Object::GetByTile(tile)->build_date;
585 if (spec->grf_prop.grffile != nullptr) {
586 td->grf = GetGRFConfig(spec->grf_prop.grffile->grfid)->GetName();
590 static void TileLoop_Object(TileIndex tile)
592 const ObjectSpec *spec = ObjectSpec::GetByTile(tile);
593 if (spec->flags & OBJECT_FLAG_ANIMATION) {
594 Object *o = Object::GetByTile(tile);
595 TriggerObjectTileAnimation(o, tile, OAT_TILELOOP, spec);
596 if (o->location.tile == tile) TriggerObjectAnimation(o, OAT_256_TICKS, spec);
599 if (IsTileOnWater(tile)) TileLoop_Water(tile);
601 if (!IsObjectType(tile, OBJECT_HQ)) return;
603 /* HQ accepts passenger and mail; but we have to divide the values
604 * between 4 tiles it occupies! */
606 /* HQ level (depends on company performance) in the range 1..5. */
607 uint level = GetCompanyHQSize(tile) + 1;
608 assert(level < 6);
610 StationFinder stations(TileArea(tile, 2, 2));
612 uint r = Random();
613 /* Top town buildings generate 250, so the top HQ type makes 256. */
614 if (GB(r, 0, 8) < (256 / 4 / (6 - level))) {
615 uint amt = GB(r, 0, 8) / 8 / 4 + 1;
616 if (EconomyIsInRecession()) amt = (amt + 1) >> 1;
617 MoveGoodsToStation(CT_PASSENGERS, amt, ST_HEADQUARTERS, GetTileOwner(tile), stations.GetStations());
620 /* Top town building generates 90, HQ can make up to 196. The
621 * proportion passengers:mail is about the same as in the acceptance
622 * equations. */
623 if (GB(r, 8, 8) < (196 / 4 / (6 - level))) {
624 uint amt = GB(r, 8, 8) / 8 / 4 + 1;
625 if (EconomyIsInRecession()) amt = (amt + 1) >> 1;
626 MoveGoodsToStation(CT_MAIL, amt, ST_HEADQUARTERS, GetTileOwner(tile), stations.GetStations());
631 static TrackStatus GetTileTrackStatus_Object(TileIndex tile, TransportType mode, uint sub_mode, DiagDirection side)
633 return 0;
636 static bool ClickTile_Object(TileIndex tile)
638 if (!IsObjectType(tile, OBJECT_HQ)) return false;
640 ShowCompany(GetTileOwner(tile));
641 return true;
644 static void AnimateTile_Object(TileIndex tile)
646 AnimateNewObjectTile(tile);
650 * Helper function for \c CircularTileSearch.
651 * @param tile The tile to check.
652 * @param user Ignored.
653 * @return True iff the tile has a radio tower.
655 static bool HasTransmitter(TileIndex tile, void *user)
657 return IsObjectTypeTile(tile, OBJECT_TRANSMITTER);
661 * Try to build a lighthouse.
662 * @return True iff building a lighthouse succeeded.
664 static bool TryBuildLightHouse()
666 uint maxx = MapMaxX();
667 uint maxy = MapMaxY();
668 uint r = Random();
670 /* Scatter the lighthouses more evenly around the perimeter */
671 int perimeter = (GB(r, 16, 16) % (2 * (maxx + maxy))) - maxy;
672 DiagDirection dir;
673 for (dir = DIAGDIR_NE; perimeter > 0; dir++) {
674 perimeter -= (DiagDirToAxis(dir) == AXIS_X) ? maxx : maxy;
677 TileIndex tile;
678 switch (dir) {
679 default:
680 case DIAGDIR_NE: tile = TileXY(maxx - 1, r % maxy); break;
681 case DIAGDIR_SE: tile = TileXY(r % maxx, 1); break;
682 case DIAGDIR_SW: tile = TileXY(1, r % maxy); break;
683 case DIAGDIR_NW: tile = TileXY(r % maxx, maxy - 1); break;
686 /* Only build lighthouses at tiles where the border is sea. */
687 if (!IsTileType(tile, MP_WATER)) return false;
689 for (int j = 0; j < 19; j++) {
690 int h;
691 if (IsTileType(tile, MP_CLEAR) && IsTileFlat(tile, &h) && h <= 2 && !IsBridgeAbove(tile)) {
692 BuildObject(OBJECT_LIGHTHOUSE, tile);
693 assert(tile < MapSize());
694 return true;
696 tile += TileOffsByDiagDir(dir);
697 if (!IsValidTile(tile)) return false;
699 return false;
703 * Try to build a transmitter.
704 * @return True iff a transmitter was built.
706 static bool TryBuildTransmitter()
708 TileIndex tile = RandomTile();
709 int h;
710 if (IsTileType(tile, MP_CLEAR) && IsTileFlat(tile, &h) && h >= 4 && !IsBridgeAbove(tile)) {
711 TileIndex t = tile;
712 if (CircularTileSearch(&t, 9, HasTransmitter, nullptr)) return false;
714 BuildObject(OBJECT_TRANSMITTER, tile);
715 return true;
717 return false;
720 void GenerateObjects()
722 /* Set a guestimate on how much we progress */
723 SetGeneratingWorldProgress(GWP_OBJECT, NUM_OBJECTS);
725 /* Determine number of water tiles at map border needed for freeform_edges */
726 uint num_water_tiles = 0;
727 if (_settings_game.construction.freeform_edges) {
728 for (uint x = 0; x < MapMaxX(); x++) {
729 if (IsTileType(TileXY(x, 1), MP_WATER)) num_water_tiles++;
730 if (IsTileType(TileXY(x, MapMaxY() - 1), MP_WATER)) num_water_tiles++;
732 for (uint y = 1; y < MapMaxY() - 1; y++) {
733 if (IsTileType(TileXY(1, y), MP_WATER)) num_water_tiles++;
734 if (IsTileType(TileXY(MapMaxX() - 1, y), MP_WATER)) num_water_tiles++;
738 /* Iterate over all possible object types */
739 for (uint i = 0; i < NUM_OBJECTS; i++) {
740 const ObjectSpec *spec = ObjectSpec::Get(i);
742 /* Continue, if the object was never available till now or shall not be placed */
743 if (!spec->WasEverAvailable() || spec->generate_amount == 0) continue;
745 uint16 amount = spec->generate_amount;
747 /* Scale by map size */
748 if ((spec->flags & OBJECT_FLAG_SCALE_BY_WATER) && _settings_game.construction.freeform_edges) {
749 /* Scale the amount of lighthouses with the amount of land at the borders.
750 * The -6 is because the top borders are MP_VOID (-2) and all corners
751 * are counted twice (-4). */
752 amount = ScaleByMapSize1D(amount * num_water_tiles) / (2 * MapMaxY() + 2 * MapMaxX() - 6);
753 } else if (spec->flags & OBJECT_FLAG_SCALE_BY_WATER) {
754 amount = ScaleByMapSize1D(amount);
755 } else {
756 amount = ScaleByMapSize(amount);
759 /* Now try to place the requested amount of this object */
760 for (uint j = ScaleByMapSize(1000); j != 0 && amount != 0 && Object::CanAllocateItem(); j--) {
761 switch (i) {
762 case OBJECT_TRANSMITTER:
763 if (TryBuildTransmitter()) amount--;
764 break;
766 case OBJECT_LIGHTHOUSE:
767 if (TryBuildLightHouse()) amount--;
768 break;
770 default:
771 uint8 view = RandomRange(spec->views);
772 if (CmdBuildObject(RandomTile(), DC_EXEC | DC_AUTO | DC_NO_TEST_TOWN_RATING | DC_NO_MODIFY_TOWN_RATING, i, view, nullptr).Succeeded()) amount--;
773 break;
776 IncreaseGeneratingWorldProgress(GWP_OBJECT);
780 static void ChangeTileOwner_Object(TileIndex tile, Owner old_owner, Owner new_owner)
782 if (!IsTileOwner(tile, old_owner)) return;
784 bool do_clear = false;
786 ObjectType type = GetObjectType(tile);
787 if ((type == OBJECT_OWNED_LAND || type >= NEW_OBJECT_OFFSET) && new_owner != INVALID_OWNER) {
788 SetTileOwner(tile, new_owner);
789 } else if (type == OBJECT_STATUE) {
790 Town *t = Object::GetByTile(tile)->town;
791 ClrBit(t->statues, old_owner);
792 if (new_owner != INVALID_OWNER && !HasBit(t->statues, new_owner)) {
793 /* Transfer ownership to the new company */
794 SetBit(t->statues, new_owner);
795 SetTileOwner(tile, new_owner);
796 } else {
797 do_clear = true;
800 SetWindowDirty(WC_TOWN_AUTHORITY, t->index);
801 } else {
802 do_clear = true;
805 if (do_clear) {
806 ReallyClearObjectTile(Object::GetByTile(tile));
807 /* When clearing objects, they may turn into canal, which may require transferring ownership. */
808 ChangeTileOwner(tile, old_owner, new_owner);
812 static CommandCost TerraformTile_Object(TileIndex tile, DoCommandFlag flags, int z_new, Slope tileh_new)
814 ObjectType type = GetObjectType(tile);
816 if (type == OBJECT_OWNED_LAND) {
817 /* Owned land remains unsold */
818 CommandCost ret = CheckTileOwnership(tile);
819 if (ret.Succeeded()) return CommandCost();
820 } else if (AutoslopeEnabled() && type != OBJECT_TRANSMITTER && type != OBJECT_LIGHTHOUSE) {
821 /* Behaviour:
822 * - Both new and old slope must not be steep.
823 * - TileMaxZ must not be changed.
824 * - Allow autoslope by default.
825 * - Disallow autoslope if callback succeeds and returns non-zero.
827 Slope tileh_old = GetTileSlope(tile);
828 /* TileMaxZ must not be changed. Slopes must not be steep. */
829 if (!IsSteepSlope(tileh_old) && !IsSteepSlope(tileh_new) && (GetTileMaxZ(tile) == z_new + GetSlopeMaxZ(tileh_new))) {
830 const ObjectSpec *spec = ObjectSpec::Get(type);
832 /* Call callback 'disable autosloping for objects'. */
833 if (HasBit(spec->callback_mask, CBM_OBJ_AUTOSLOPE)) {
834 /* If the callback fails, allow autoslope. */
835 uint16 res = GetObjectCallback(CBID_OBJECT_AUTOSLOPE, 0, 0, spec, Object::GetByTile(tile), tile);
836 if (res == CALLBACK_FAILED || !ConvertBooleanCallback(spec->grf_prop.grffile, CBID_OBJECT_AUTOSLOPE, res)) return CommandCost(EXPENSES_CONSTRUCTION, _price[PR_BUILD_FOUNDATION]);
837 } else if (spec->enabled) {
838 /* allow autoslope */
839 return CommandCost(EXPENSES_CONSTRUCTION, _price[PR_BUILD_FOUNDATION]);
844 return DoCommand(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
847 extern const TileTypeProcs _tile_type_object_procs = {
848 DrawTile_Object, // draw_tile_proc
849 GetSlopePixelZ_Object, // get_slope_z_proc
850 ClearTile_Object, // clear_tile_proc
851 AddAcceptedCargo_Object, // add_accepted_cargo_proc
852 GetTileDesc_Object, // get_tile_desc_proc
853 GetTileTrackStatus_Object, // get_tile_track_status_proc
854 ClickTile_Object, // click_tile_proc
855 AnimateTile_Object, // animate_tile_proc
856 TileLoop_Object, // tile_loop_proc
857 ChangeTileOwner_Object, // change_tile_owner_proc
858 AddProducedCargo_Object, // add_produced_cargo_proc
859 nullptr, // vehicle_enter_tile_proc
860 GetFoundation_Object, // get_foundation_proc
861 TerraformTile_Object, // terraform_tile_proc