index
:
Erich/openttd
chunnel
master
signaltunnel
sloped-stations
sloped-stations-original
underground
underground-plus-others-original
underground-save-load
underground-station-construction
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
ai
/
api
Age
Commit message (
Expand
)
Author
2009-05-18
(svn r16354) -Codechange: use 'new' pool accessors and methods for Engine too
smatz
2009-05-18
(svn r16352) -Codechange: use PoolItem::GetIfValid() instead of PoolItem::IsV...
smatz
2009-05-18
(svn r16349) -Codechange: rename IsPlainRailTile() to IsPlainRail(), introduc...
smatz
2009-05-17
(svn r16332) -Codechange: replace some -1 + 1 with 'nothing' or <= .. - 1 wit...
rubidium
2009-05-17
(svn r16327) -Codechange: replace IsValidPoolItemID(index) by PoolItem::IsVal...
smatz
2009-05-16
(svn r16325) -Codechange: replace GetPoolItem(index) by PoolItem::Get(index)
smatz
2009-05-15
(svn r16315) -Codechange: move the autorenew settings to a new CompanySetting...
yexo
2009-05-15
(svn r16311) -Fix: (Get|Set)TrackBits() is only valid for RAIL_TILE_NORMAL an...
frosch
2009-05-10
(svn r16267) -Documentation: [NoAI] Explain how to deal with IDs of various o...
frosch
2009-05-10
(svn r16266) -Documentation: [NoAI] Add details to AITile::(Raise|Lower)Tile ...
frosch
2009-05-10
(svn r16264) -Change/Fix (r16262): [NoAI] Change SLOPE_INVALID to 0xFFFF so t...
frosch
2009-05-09
(svn r16262) -Fix [NoAI]: Check slopes passed to the API better for validity
yexo
2009-05-07
(svn r16253) -Add [NoAI]: AIController::GetVersion, this returns the newgrf-v...
yexo
2009-05-07
(svn r16252) -Add [NoAI]: AIAirport::GetPrice, returning the building cost of...
yexo
2009-05-07
(svn r16249) -Fix [NoAI]: Enable parameter checking for AIController::* funct...
yexo
2009-05-06
(svn r16244) -Fix [NoAI]: Make sure AITunnel::BuildTunnel returns what the do...
yexo
2009-05-06
(svn r16243) -Fix [FS#2875]: CmdBuildTunnel could be called with invalid para...
yexo
2009-05-06
(svn r16239) -Fix (r16199): Use the stop/non-stop intermediate orderflags AIs...
yexo
2009-05-02
(svn r16199) -Codechange: Pass OrderNonStopFlags also to MakeGoToDepotOrder().
frosch
2009-04-26
(svn r16172) -Fix (r16171): typo (thanks SmatZ)
yexo
2009-04-26
(svn r16171) -Add [NoAI]: two new error codes to AITile: ERR_AREA_ALREADY_FLA...
yexo
2009-04-26
(svn r16166) -Add [NoAI]: AITile::Get(Min|Max|Corner)Height
frosch
2009-04-26
(svn r16165) -Add [FS#2801] [NoAI]: several functions to AIOrder to check the...
yexo
2009-04-26
(svn r16158) -Codechange: fix the string alignment in all .hpp.sq files
yexo
2009-04-25
(svn r16151) -Codechange: move some includes around to prevent including half...
yexo
2009-04-25
(svn r16150) -Fix [NoAI]: Change WAYPOINT_INVALID to 0xFFFF from -1 as that's...
yexo
2009-04-21
(svn r16118) -Change/cleanup: remove the hexadecimal 'in TTD the string had t...
rubidium
2009-04-21
(svn r16114) -Cleanup: unify some more strings and remove some more unused st...
rubidium
2009-04-21
(svn r16109) -Fix [NoAI]: Make sure AIOrder::GetDestination always returns a ...
yexo
2009-04-21
(svn r16108) -Fix [NoAI]: When giving an aircraft a goto-hangar order don't l...
yexo
2009-04-20
(svn r16107) -Add [NoAI]: AIOF_STOP_IN_DEPOT to the orderflags in AIOrder to ...
yexo
2009-04-20
(svn r16106) -Fix [NoAI]: AIOrder::SetOrderFlags always removed "Service if n...
yexo
2009-04-19
(svn r16091) -Change [FS#2778]: Reverse the order of the lines in the AI debu...
yexo
2009-04-15
(svn r16062) -Fix (r16037): AIOrder::InsertOrder was broken. Default all AI o...
frosch
2009-04-01
(svn r15910) -Fix [FS#2777]: Clarify that TILE_INVALID is part of AIMap make ...
yexo
2009-03-30
(svn r15901) -Add: AIIndustryType::IsBuiltOnWater(), HasHeliport() and HasDoc...
frosch
2009-03-28
(svn r15881) -Fix (r15875): add an explicit cast so some compilers stop compl...
yexo
2009-03-28
(svn r15875) -Add: AIBridge::GetBridgeID() so AIs can get the type of bridge ...
yexo
2009-03-26
(svn r15860) -Add: AIRoad::GetRoadVehicleTypeForCargo() to tell whether a cer...
frosch
2009-03-26
(svn r15859) -Documentation: Meaning of AICargo::CC_PASSENGERS wrt. bus- and ...
frosch
2009-03-21
(svn r15789) -Codechange: Add DiagdirBetweenTiles() and use it.
frosch
2009-03-18
(svn r15763) -Codechange/Fix: Add Engine::GetDisplayDefaultCapacity() and use...
frosch
2009-03-16
(svn r15743) -Codechange: move the definitions of some fake squirrel types to...
yexo
2009-03-14
(svn r15711) -Codechange: lots of whitespace cleanup/fixes
rubidium
2009-03-13
(svn r15705) -Fix: Do not show passenger-/mail-capacity if the aircraft carri...
frosch
2009-03-12
(svn r15684) -Add [NoAI]: AIOrder::SkipToOrder().
yexo
2009-03-09
(svn r15658) -Fix [NoAI]: Rewrite AIAbstractList::Valuate to make it more rea...
yexo
2009-03-04
(svn r15616) -Change [API CHANGE]: Rename AIOrder::ChangeOrder() to AIOrder::...
yexo
2009-03-04
(svn r15614) -Add [NoAI]: AIVehicleList_Group(group_id) and AIVehicleList_Def...
yexo
2009-02-26
(svn r15587) -Fix (r15345): I should really test even those simple api functi...
yexo
[prev]
[next]