2009-01-12 17:11:45 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2011-11-29 23:07:38 +00:00
|
|
|
/** @file script_stationlist.hpp List all the stations (you own). */
|
2009-01-12 17:11:45 +00:00
|
|
|
|
2011-11-29 23:07:38 +00:00
|
|
|
#ifndef SCRIPT_STATIONLIST_HPP
|
|
|
|
#define SCRIPT_STATIONLIST_HPP
|
2009-01-12 17:11:45 +00:00
|
|
|
|
2011-11-29 23:07:38 +00:00
|
|
|
#include "script_list.hpp"
|
|
|
|
#include "script_station.hpp"
|
2009-01-12 17:11:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a list of stations of which you are the owner.
|
2011-12-19 20:57:34 +00:00
|
|
|
* @api ai game
|
2011-11-29 23:15:35 +00:00
|
|
|
* @ingroup ScriptList
|
2009-01-12 17:11:45 +00:00
|
|
|
*/
|
2011-11-29 23:15:35 +00:00
|
|
|
class ScriptStationList : public ScriptList {
|
2009-01-12 17:11:45 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @param station_type The type of station to make a list of stations for.
|
|
|
|
*/
|
2011-11-29 23:15:35 +00:00
|
|
|
ScriptStationList(ScriptStation::StationType station_type);
|
2009-01-12 17:11:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a list of stations which the vehicle has in its orders.
|
2011-12-19 20:57:34 +00:00
|
|
|
* @api ai game
|
2011-11-29 23:15:35 +00:00
|
|
|
* @ingroup ScriptList
|
2009-01-12 17:11:45 +00:00
|
|
|
*/
|
2011-11-29 23:15:35 +00:00
|
|
|
class ScriptStationList_Vehicle : public ScriptList {
|
2009-01-12 17:11:45 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @param vehicle_id The vehicle to get the list of stations he has in its orders from.
|
|
|
|
*/
|
2011-11-29 23:15:35 +00:00
|
|
|
ScriptStationList_Vehicle(VehicleID vehicle_id);
|
2009-01-12 17:11:45 +00:00
|
|
|
};
|
|
|
|
|
2011-11-29 23:07:38 +00:00
|
|
|
#endif /* SCRIPT_STATIONLIST_HPP */
|