summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_tilelist.hpp
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2011-11-29 23:07:38 +0000
committertruebrain <truebrain@openttd.org>2011-11-29 23:07:38 +0000
commitafdb67a3534f85b4efbd3327ece8137211042d7b (patch)
treeb62375a3846c2089e1c6904331e8f5a3d44851ba /src/ai/api/ai_tilelist.hpp
parent5f6dc2466318b1275e8b654a260a6c565a0ecc5c (diff)
downloadopenttd-afdb67a3534f85b4efbd3327ece8137211042d7b.tar.xz
(svn r23354) -Codechange: move all src/ai/api/ai_*.[hc]pp files to src/script/api/script_* (Rubidium)
Diffstat (limited to 'src/ai/api/ai_tilelist.hpp')
-rw-r--r--src/ai/api/ai_tilelist.hpp103
1 files changed, 0 insertions, 103 deletions
diff --git a/src/ai/api/ai_tilelist.hpp b/src/ai/api/ai_tilelist.hpp
deleted file mode 100644
index 803429a60..000000000
--- a/src/ai/api/ai_tilelist.hpp
+++ /dev/null
@@ -1,103 +0,0 @@
-/* $Id$ */
-
-/*
- * This file is part of OpenTTD.
- * 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.
- * 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.
- * 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/>.
- */
-
-/** @file ai_tilelist.hpp List tiles. */
-
-#ifndef AI_TILELIST_HPP
-#define AI_TILELIST_HPP
-
-#include "ai_station.hpp"
-#include "ai_list.hpp"
-
-/**
- * Creates an empty list, in which you can add tiles.
- * @ingroup AIList
- */
-class AITileList : public AIList {
-public:
- /**
- * Adds the rectangle between tile_from and tile_to to the to-be-evaluated tiles.
- * @param tile_from One corner of the tiles to add.
- * @param tile_to The other corner of the tiles to add.
- * @pre AIMap::IsValidTile(tile_from).
- * @pre AIMap::IsValidTile(tile_to).
- */
- void AddRectangle(TileIndex tile_from, TileIndex tile_to);
-
- /**
- * Add a tile to the to-be-evaluated tiles.
- * @param tile The tile to add.
- * @pre AIMap::IsValidTile(tile).
- */
- void AddTile(TileIndex tile);
-
- /**
- * Remove the tiles inside the rectangle between tile_from and tile_to form the list.
- * @param tile_from One corner of the tiles to remove.
- * @param tile_to The other corner of the files to remove.
- * @pre AIMap::IsValidTile(tile_from).
- * @pre AIMap::IsValidTile(tile_to).
- */
- void RemoveRectangle(TileIndex tile_from, TileIndex tile_to);
-
- /**
- * Remove a tile from the list.
- * @param tile The tile to remove.
- * @pre AIMap::IsValidTile(tile).
- */
- void RemoveTile(TileIndex tile);
-};
-
-/**
- * Creates a list of tiles that will accept cargo for the given industry.
- * @note If a simular industry is close, it might happen that this industry receives the cargo.
- * @ingroup AIList
- */
-class AITileList_IndustryAccepting : public AITileList {
-public:
- /**
- * @param industry_id The industry to create the AITileList around.
- * @param radius The radius of the station you will be using.
- * @pre AIIndustry::IsValidIndustry(industry_id).
- * @pre radius > 0.
- */
- AITileList_IndustryAccepting(IndustryID industry_id, int radius);
-};
-
-/**
- * Creates a list of tiles which the industry checks to see if a station is
- * there to receive cargo produced by this industry.
- * @ingroup AIList
- */
-class AITileList_IndustryProducing : public AITileList {
-public:
- /**
- * @param industry_id The industry to create the AITileList around.
- * @param radius The radius of the station you will be using.
- * @pre AIIndustry::IsValidIndustry(industry_id).
- * @pre radius > 0.
- */
- AITileList_IndustryProducing(IndustryID industry_id, int radius);
-};
-
-/**
- * Creates a list of tiles which have the requested StationType of the
- * StationID.
- * @ingroup AIList
- */
-class AITileList_StationType : public AITileList {
-public:
- /**
- * @param station_id The station to create the AITileList for.
- * @param station_type The StationType to create the AIList for.
- */
- AITileList_StationType(StationID station_id, AIStation::StationType station_type);
-};
-
-#endif /* AI_TILELIST_HPP */