Mercurial > hg > openttd
view src/depot.cpp @ 10831:31f766ee053b draft
(svn r15166) -Codechange: reduce number of includes in afterload.cpp
author | smatz <smatz@openttd.org> |
---|---|
date | Tue, 20 Jan 2009 13:56:35 +0000 |
parents | b6779abf2e96 |
children | a4e5b5d2837c |
line wrap: on
line source
/* $Id$ */ /** @file depot.cpp Handling of depots. */ #include "stdafx.h" #include "depot_base.h" #include "landscape.h" #include "order_func.h" #include "window_func.h" #include "oldpool_func.h" #include "table/strings.h" DEFINE_OLD_POOL_GENERIC(Depot, Depot) /** * Gets a depot from a tile * * @return Returns the depot if the tile had a depot, else it returns NULL */ Depot *GetDepotByTile(TileIndex tile) { Depot *depot; FOR_ALL_DEPOTS(depot) { if (depot->xy == tile) return depot; } return NULL; } /** * Clean up a depot */ Depot::~Depot() { if (CleaningPool()) return; /* Clear the depot from all order-lists */ RemoveOrderFromAllVehicles(OT_GOTO_DEPOT, this->index); /* Delete the depot-window */ DeleteWindowById(WC_VEHICLE_DEPOT, this->xy); this->xy = INVALID_TILE; } void InitializeDepots() { _Depot_pool.CleanPool(); _Depot_pool.AddBlockToPool(); }