src/ai/api/ai_road.hpp
author truelight
Sun, 25 Mar 2007 16:32:02 +0000
branchnoai
changeset 9530 5b93bc87cc5e
parent 9529 5f26f4bc574b
child 9532 539c48d64eea
permissions -rw-r--r--
(svn r9451) [NoAI] -Add: allow static and non-static members for SQ
/* $Id$ */

/** @file ai_map.hpp Everything to query and build roads */

#ifndef AI_ROAD_HPP
#define AI_ROAD_HPP

#include "ai_object.hpp"

/**
 * Class that handles all road related functions.
 *
 * Roads are always build from tile center to tile center.
 * Furthermore stations and depots need to be build on tiles
 * that already have road on them. For depots and non-drive
 * through stations that means that only one roadbit may be
 * built at the location. The advantage of this method is
 * that the AI does not need to think about pointing the
 * exit of the depots and roadstations towards the correct
 * direction. For drive-through roadstops this works about
 * the same, though they have to be built on straight roads.
 */
class AIRoad : public AIObject {
public:
	/**
	 * The name of the class, needed by several sub-processes.
	 */
	static const char *GetClassName() { return "AIRoad"; }

	/**
	 * Checks whether the given tile is actually a tile with road.
	 * @param tile the tile to check.
	 * @pre tile is always positive and smaller than AIMap::GetMapSize().
	 * @return true if and only if the tile has road.
	 */
	bool IsRoadTile(TileIndex tile);

	/**
	 * Builds a road from the center of tile start to the
	 * center of tile end.
	 * @param start the start tile of the road.
	 * @param end   the end tile of the road.
	 * @pre start is not equal to end
	 * @pre start is always positive and smaller than AIMap::GetMapSize().
	 * @pre end is always positive and smaller than AIMap::GetMapSize().
	 * @pre start and end are in a straight line, i.e.
	 *  AIMap::GetTileX(start) == AIMap::GetTileX(end) or
	 *  AIMap::GetTileY(start) == AIMap::GetTileY(end).
	 * @return whether the road has been/can be build or not.
	 */
	bool BuildRoad(TileIndex start, TileIndex end);

	/**
	 * Builds a road depot.
	 * @param tile  place to build the depot.
	 * @param front the tile exactly in front of the depot
	 * @pre tile is always positive and smaller than AIMap::GetMapSize().
	 * @pre front is always positive and smaller than AIMap::GetMapSize().
	 * @pre tile is not equal to front
	 * @return whether the road depot has been/can be build or not.
	 */
	bool BuildRoadDepot(TileIndex tile, TileIndex front);

	/**
	 * Builds a road bus or truck station.
	 * @param tile  place to build the depot.
	 * @param front the tile exactly in front of the station.
	 *   For drive-through stations either entrance side can be used.
	 * @param truck whether to build a truck (true) or bus (false) station.
	 * @param drive_through whether to make the station drive through or not.
	 * @pre tile is always positive and smaller than AIMap::GetMapSize().
	 * @pre front is always positive and smaller than AIMap::GetMapSize().
	 * @pre tile is not equal to front
	 * @return whether the station has been/can be build or not.
	 */
	bool BuildRoadStation(TileIndex tile, TileIndex front, bool truck, bool drive_through);

	/**
	 * Removes a road from the center of tile start to the
	 * center of tile end.
	 * @param start the start tile of the road.
	 * @param end   the end tile of the road.
	 * @pre start is always positive and smaller than AIMap::GetMapSize().
	 * @pre end is always positive and smaller than AIMap::GetMapSize().
	 * @pre start and end are in a straight line, i.e.
	 *  AIMap::GetTileX(start) == AIMap::GetTileX(end) or
	 *  AIMap::GetTileY(start) == AIMap::GetTileY(end).
	 * @return whether the road has been/can be removed or not.
	 */
	bool RemoveRoad(TileIndex start, TileIndex end);

	/**
	 * Removes a road depot.
	 * @param tile place to remove the depot from.
	 * @pre tile is always positive and smaller than AIMap::GetMapSize().
	 * @pre tile is a road depot.
	 * @return whether the road depot has been/can be removed or not.
	 */
	bool RemoveRoadDepot(TileIndex tile);

	/**
	 * Removes a road bus or truck station.
	 * @param tile place to remove the station from.
	 * @pre tile is always positive and smaller than AIMap::GetMapSize().
	 * @pre tile is a road station.
	 * @return whether the station has been/can be removed or not.
	 */
	bool RemoveRoadStation(TileIndex tile);
};

#ifdef DEFINE_SQUIRREL_CLASS
namespace SQConvert {
	/* Allow AIRoad to be used as Squirrel parameter */
	template <> AIRoad *GetParam(ForceType<AIRoad *>, HSQUIRRELVM vm, int index) { SQUserPointer instance; sq_getinstanceup(vm, index, &instance, 0); return (AIRoad *)instance; }
}; // namespace SQConvert

void SQAIRoadRegister(Squirrel *engine) {
	DefSQClass <AIRoad> SQAIRoad("AIRoad");
	SQAIRoad.PreRegister(engine);
	SQAIRoad.AddConstructor(engine);

	SQAIRoad.DefSQMethod(engine, &AIRoad::IsRoadTile,        "IsRoadTile");
	SQAIRoad.DefSQMethod(engine, &AIRoad::BuildRoad,         "BuildRoad");
	SQAIRoad.DefSQMethod(engine, &AIRoad::BuildRoadDepot,    "BuildRoadDepot");
	SQAIRoad.DefSQMethod(engine, &AIRoad::BuildRoadStation,  "BuildRoadStation");
	SQAIRoad.DefSQMethod(engine, &AIRoad::RemoveRoad,        "RemoveRoad");
	SQAIRoad.DefSQMethod(engine, &AIRoad::RemoveRoadDepot,   "RemoveRoadDepot");
	SQAIRoad.DefSQMethod(engine, &AIRoad::RemoveRoadStation, "RemoveRoadStation");

	SQAIRoad.PostRegister(engine);
}
#endif /* DEFINE_SQUIRREL_CLASS */

#endif /* AI_ROAD_HPP */