OpenTTD
newgrf_industries.h
Go to the documentation of this file.
1 /* $Id: newgrf_industries.h 26085 2013-11-24 14:41:19Z frosch $ */
2 
3 /*
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/>.
8  */
9 
12 #ifndef NEWGRF_INDUSTRIES_H
13 #define NEWGRF_INDUSTRIES_H
14 
15 #include "newgrf_town.h"
16 
21  IndustryType type;
22  uint32 random_bits;
23 
25 
26  /* virtual */ uint32 GetRandomBits() const;
27  /* virtual */ uint32 GetVariable(byte variable, uint32 parameter, bool *available) const;
28  /* virtual */ uint32 GetTriggers() const;
29  /* virtual */ void SetTriggers(int triggers) const;
30  /* virtual */ void StorePSA(uint pos, int32 value);
31 };
32 
37 
38  IndustriesResolverObject(TileIndex tile, Industry *indus, IndustryType type, uint32 random_bits = 0,
41 
43 
44  /* virtual */ ScopeResolver *GetScope(VarSpriteGroupScope scope = VSG_SCOPE_SELF, byte relative = 0)
45  {
46  switch (scope) {
47  case VSG_SCOPE_SELF: return &industries_scope;
48  case VSG_SCOPE_PARENT: {
49  TownScopeResolver *tsr = this->GetTown();
50  if (tsr != NULL) return tsr;
51  /* FALL-THROUGH */
52  }
53  default: return ResolverObject::GetScope(scope, relative);
54  }
55  }
56 };
57 
66 };
67 
74 };
75 
76 /* in newgrf_industry.cpp */
77 uint16 GetIndustryCallback(CallbackID callback, uint32 param1, uint32 param2, Industry *industry, IndustryType type, TileIndex tile);
78 uint32 GetIndustryIDAtOffset(TileIndex new_tile, const Industry *i, uint32 cur_grfid);
79 void IndustryProductionCallback(Industry *ind, int reason);
80 CommandCost CheckIfCallBackAllowsCreation(TileIndex tile, IndustryType type, uint layout, uint32 seed, uint16 initial_random_bits, Owner founder, IndustryAvailabilityCallType creation_type);
81 uint32 GetIndustryProbabilityCallback(IndustryType type, IndustryAvailabilityCallType creation_type, uint32 default_prob);
82 bool IndustryTemporarilyRefusesCargo(Industry *ind, CargoID cargo_type);
83 
84 IndustryType MapNewGRFIndustryType(IndustryType grf_type, uint32 grf_id);
85 
86 /* in newgrf_industrytiles.cpp*/
87 uint32 GetNearbyIndustryTileInformation(byte parameter, TileIndex tile, IndustryID index, bool signed_offsets, bool grf_version8);
88 
89 #endif /* NEWGRF_INDUSTRIES_H */