summaryrefslogtreecommitdiff
path: root/src/industry_cmd.cpp
AgeCommit message (Collapse)Author
2010-05-30(svn r19907) -Fix: [NewGRF] Call callbacks 14A, 14B and 14C after all ↵frosch
industry variables have been assigned, so more variables are valid during the callbacks.
2010-05-29(svn r19901) -Add: [NewGRF] Access to industry founder (var A7) during ↵frosch
callbacks 28 and 2F. (yexo)
2010-05-13(svn r19814) -Codechange: give some more unnamed enums a name, in case they ↵rubidium
consisted of unrelated values use static const (u)int
2010-05-01(svn r19744) -Add [FS#3477]: [NewGRF] Access to random bits of houses and ↵frosch
industries from construction callbacks 17, 28 and 2F. That is: The randombits the house/industry will start with, if construction succeeds.
2010-04-24(svn r19709) -Feature: NewGRF debugging/inspecting of (primarily) enabled ↵rubidium
callbacks and values of variables
2010-04-23(svn r19701) -Fix [FS#3787]: Check for industry availability more thoroughly ↵frosch
and cancel object placement when selecting not available industries.
2010-04-18(svn r19670) -Codechange: Add CeilDiv() and RoundDiv() to simplify integer ↵frosch
divisions with rounding.
2010-04-17(svn r19652) -Fix: RandomRange() is used for bigger ranges in many cases, so ↵frosch
generally extent it to handle 32 bits.
2010-04-16(svn r19643) -Fix (r19120): Industry generation failed for large maps and ↵frosch
lots of industry types.
2010-04-05(svn r19565) -Fix: some NewGRF callbacks were named incorrectlyrubidium
2010-03-21(svn r19499) -Remove: same_industry_close setting did not do what it said ↵frosch
and caused NewGRF trouble.
2010-03-20(svn r19494) -Codechange: Remove _error_message.alberth
2010-03-20(svn r19481) -Codechange: Turn _industry_counts into a static member of ↵frosch
Industry.
2010-03-19(svn r19476) -Codechange: simplify the 'is conflicting industry nearby' ↵yexo
check a bit
2010-03-17(svn r19443) -Fix [FS#3701]: Mark industry windows dirty more often.frosch
2010-03-07(svn r19362) -Fix [FS#3667] (r19270): Failure to prospect an industry should ↵alberth
not cause a crash.
2010-03-05(svn r19319) -Codechange: EnsureNoVehicleOnGround() returns a CommandCost.alberth
2010-03-01(svn r19297) -Codechange: Variable scope and documentation of ↵frosch
DoCreateNewIndustry().
2010-02-28(svn r19295) -Codechange: introduce wrapper functions for GRFConfig::name/infoyexo
2010-02-28(svn r19287) -Fix [FS#3650] (r19263): Don't store a boolean in a CommandCost.alberth
2010-02-27(svn r19270) -Codechange: Forward CommandCost results through ↵alberth
CreateNewIndustryHelper().
2010-02-27(svn r19269) -Codechange: PerformIndustryTileSlopeCheck() returns a ↵alberth
succeeded or failed command.
2010-02-26(svn r19265) -Fix [FS#3618]: "Can't build <industry> here... <industry> in ↵rubidium
the way" showed the to-be-built industry twice, instead of the to-be-built industry and the industry that's in the way
2010-02-26(svn r19263) -Fix (r19184): some specific industry creation errors got ↵rubidium
replaced by 'site unsuitable'.
2010-02-21(svn r19185) -Codechange: Return succeeded or failed CommandCost from ↵alberth
CheckIfCallBackAllowsCreation().
2010-02-21(svn r19184) -Codechange: Return succeeded/failed command from ↵alberth
CheckIfIndustryTilesAreFree().
2010-02-21(svn r19183) -Codechange: Return CommandCost from FindTownForIndustry().alberth
2010-02-21(svn r19182) -Codechange: Use CommandCost return value in ↵alberth
CheckIfIndustryIsAllowed() and CheckIfFarEnoughFromIndustry().
2010-02-20(svn r19167) -Fix [FS#3631](r19120): Industry 0 could be choosen even if not ↵frosch
available.
2010-02-16(svn r19146) -Codechange: Use CommandCost in industry checking routines.alberth
2010-02-15(svn r19138) -Codechange: Rename CheckMultipleIndustryInTown() to ↵alberth
FindTownForIndustry().
2010-02-15(svn r19137) -Add: Report a more useful error when failing to build a bubble ↵alberth
generator.
2010-02-15(svn r19136) -Doc: Added Doxygen comments for industry checking procedures.alberth
2010-02-14(svn r19126) -Codechange: Silence a warning.frosch
2010-02-13(svn r19120) -Fix: [NewGRF] Industry property 0x17 was interpreted ↵frosch
incorrectly and in some cases circumvented the density difficulty setting. -Change: Do not scale the number of industry creations during map creation with the number of available industry types. -Feature: [NewGRF] Implement special industry flag 0x10000.
2010-02-06(svn r19051) -Codechange: Variable scope.frosch
2010-02-06(svn r19050) -Fix: Don't call callbacks for disabled industrytypes.frosch
2010-02-06(svn r19049) -Codechange: Deduplicate computing number of initial industries.frosch
2010-01-28(svn r18938) -Fix: Industrylayout's special water tile check did not ↵frosch
properly check for crossing north border of map. Also don't consider MP_VOID tiles as water.
2010-01-22(svn r18889) -Codechange: Use (GroundSprite|SpriteLayout)PaletteTransform() ↵frosch
also for drawing of default industries. They are compatible since the bubblegenerator is also randomly recoloured.
2010-01-21(svn r18872) -Codechange: introduce PaletteID and use itrubidium
2010-01-18(svn r18866) -Codechange: remove the CmdFailed(ret)/CmdSucceeded(ret) ↵rubidium
wrapper functions
2010-01-15(svn r18809) -Codechange/Cleanup: remove unneeded headers from some files, ↵rubidium
if a header require a header make it include that header
2010-01-04(svn r18726) -Fix [FS#3463]: with non-uniform industries the 'supplies' text ↵rubidium
when building a station could be incorrect (missing a cargo) -Change [NoAI]: AITile::GetCargoProduction now returns the number of producers and not the number of tiles of producers. -Fix [NoAI]: AITileList_IndustryProducing would omit some tiles for at which a station would get cargo.
2010-01-04(svn r18718) -Codechange: make a wrapper macro for looping TileAreasrubidium
2010-01-04(svn r18717) -Codechange: use TileArea in industry instead of three separate ↵rubidium
variables. Also make use of TileArea functions for determining the 'width' and 'height' of an industry.
2010-01-04(svn r18716) -Codechange: pass a TileArea to FindStationsAroundTilesrubidium
2010-01-04(svn r18715) -Codechange: make StationFinder a subclass of TileArearubidium
2010-01-03(svn r18701) -Fix (r18700): always compile before making a commityexo
2010-01-03(svn r18700) -Fix: when deleting an industry on water (oil rigs) the tiles ↵yexo
on water were not marked dirty