summaryrefslogtreecommitdiff
path: root/src/unmovable_cmd.cpp
AgeCommit message (Collapse)Author
2010-08-08(svn r20411) -Codechange: rename unmovables as quite a lot of them are ↵rubidium
actually movable; e.g. HQ and owned land are pretty movable.
2010-08-03(svn r20345) -Codechange: unify removing of objects a bit morerubidium
2010-08-03(svn r20343) -Fix (r20342): don't start svn commit too early... it won't see ↵rubidium
the later changes
2010-08-03(svn r20342) -Codechange: unify the construction of objectsrubidium
2010-08-03(svn r20341) -Codechange: pass the tile of the HQ instead of the company to ↵rubidium
UpdateCompanyHQ
2010-08-03(svn r20340) -Codechange: introduce some flags for objects and use them in ↵rubidium
some places
2010-08-03(svn r20339) -Codechange: reorder the HQ drawing data so it's in a slightly ↵rubidium
more logical order from the map array's point of view.
2010-08-03(svn r20338) -Codechange: unify the unmovable tile drawingrubidium
2010-08-03(svn r20337) -Codechange: unify the construction of objects on the maprubidium
2010-08-03(svn r20336) -Codechange: rework the HQ updatingrubidium
2010-08-03(svn r20335) -Codechange: change the name of some unmovable map accessorsrubidium
2010-08-03(svn r20334) -Codechange: reorder the unmovable bits a bit for futher extensionrubidium
2010-08-02(svn r20330) -Codechange: unify the removal of unmovables a bitrubidium
2010-08-02(svn r20328) -Codechange: unify the unmovable related commands and make ↵rubidium
building lighthouses/transmitters actually happen via a command
2010-08-02(svn r20327) -Change: don't let building e.g. road remove light houses and ↵rubidium
transmitters in the scenario editor
2010-08-02(svn r20326) -Codechange: move UnmovableType to its own filerubidium
2010-08-02(svn r20321) -Codechange: rename GetUnmovableSpec to UnmovableSpec::Get and ↵rubidium
add+use a ::GetByTile
2010-08-02(svn r20316) -Document: some members/structs and functions and rename some ↵rubidium
slightly to better catch their meaning
2010-08-01(svn r20286) -Codechange: Unify end of doxygen comments.frosch
2010-08-01(svn r20283) -Codechange: Unify start of doygen comments.frosch
2010-07-24(svn r20211) -Codechange: Indented code should have curly braces around it.alberth
2010-03-20(svn r19494) -Codechange: Remove _error_message.alberth
2010-03-14(svn r19415) -Codechange: Forward CommandCost with an error back to the caller.alberth
2010-03-07(svn r19372) -Codechange: CheckTileOwnership() returns a CommandCost.alberth
2010-03-05(svn r19319) -Codechange: EnsureNoVehicleOnGround() returns a CommandCost.alberth
2010-02-20(svn r19171) -Codechange: Split CheckFlatLandBelow into different functions.terkhen
2010-02-20(svn r19170) -Codechange: Make CheckFlatLandBelow use TileArea.terkhen
2010-02-14(svn r19128) -Codechange: CommandCost cost methods return void instead of a ↵alberth
copy of *this.
2010-02-10(svn r19084) -Codechange: minor coding-style fixupssmatz
2010-01-31(svn r18976) -Fix: Estimating the cost of removing statues could clear the ↵frosch
presence flag in the town.
2010-01-22(svn r18890) -Codechange: Unify drawing of foundations for MP_UNMOVABLE.frosch
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 r18715) -Codechange: make StationFinder a subclass of TileArearubidium
2009-11-28(svn r18330) -Cleanup: remove some unneeded includesrubidium
2009-11-24(svn r18283) -Feature: [NewGRF] Add new price bases for removing industries, ↵frosch
building/removing unmovables (new objects), building/removing rail-waypoints/buoys, interacting with town-authority, building foundations, funding primary industries (when not prospecting) and towns. If a GRF does not set price multipliers for these new prices, but for the previously used ones, the old modifiers will be propagated to the new bases.
2009-11-15(svn r18110) -Codechange [FS#3316]: search for stations nearby only once per ↵smatz
producer (instead of once pre produced cargo type) (fonsinchen)
2009-11-07(svn r18005) -Codechange: Convert the Prices struct into an array and an enum.frosch
2009-10-04(svn r17693) -Cleanup: remove some unneeded includesrubidium
2009-09-20(svn r17589) -Codechange: rename town_acc to always_acceptedsmatz
2009-09-18(svn r17567) -Fix: some doxygen warningsrubidium
2009-09-13(svn r17532) -Codechange: Rename several Invalidate functions to SetDirty ↵frosch
for more consistency and distinguishability.
2009-09-07(svn r17460) -Feature: allow building rail stations over existing rail ↵rubidium
without signals but will upgrade normal rail to electrified rail if necessary (based on patch by laurijh)
2009-09-07(svn r17439) -Fix (r17436): you weren't paid for cargo delivered to houses ↵smatz
and headquarters anymore
2009-08-21(svn r17248) -Fix: add GPL license notice where appropriaterubidium
2009-08-08(svn r17113) -Change [FS#265][FS#2094][FS#2589]: apply the subsidy when ↵smatz
subsidy's destination is in station's catchment area and cargo packets originate from subsidy's source -Change [FS#1134]: subsidies aren't bound to stations after awarding anymore, they still apply to town or industry, no matter what station is used for loading and unloading. Awarded subsidies from older savegames are lost -Change [NoAI]: due to these changes, AISubsidy::GetSource and AISubsidy::GetDestination now return STATION_INVALID for awarded subsidies
2009-07-26(svn r16966) -Codechange: BEGIN_TILE_LOOP and END_TILE_LOOP reworked into ↵rubidium
TILE_LOOP, which means no more duplication of parameters between BEGIN_TILE_LOOP and END_TILE_LOOP
2009-06-27(svn r16678) -Codechange: Turn CargoArray into a class, so one does not have ↵frosch
to deal with sizeof() wrt. typedef-ed arrays.
2009-06-27(svn r16676) -Codechange: Rename AcceptedCargo to CargoArray and its ↵frosch
instances to more meaningful names.