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/>.
|
|
|
|
*/
|
|
|
|
|
2007-12-05 17:08:10 +00:00
|
|
|
/** @file station_gui.h Contains enums and function declarations connected with stations GUI */
|
|
|
|
|
|
|
|
#ifndef STATION_GUI_H
|
|
|
|
#define STATION_GUI_H
|
|
|
|
|
2009-01-08 16:35:45 +00:00
|
|
|
#include "command_type.h"
|
2010-01-15 16:41:15 +00:00
|
|
|
#include "tilearea_type.h"
|
|
|
|
#include "window_type.h"
|
2021-10-28 22:56:07 +00:00
|
|
|
#include "station_type.h"
|
|
|
|
#include <functional>
|
2009-01-08 16:35:45 +00:00
|
|
|
|
2007-12-05 17:08:10 +00:00
|
|
|
|
2009-12-19 15:04:24 +00:00
|
|
|
/** Types of cargo to display for station coverage. */
|
2007-12-19 20:45:46 +00:00
|
|
|
enum StationCoverageType {
|
2011-12-15 21:56:00 +00:00
|
|
|
SCT_PASSENGERS_ONLY, ///< Draw only passenger class cargoes.
|
|
|
|
SCT_NON_PASSENGERS_ONLY, ///< Draw all non-passenger class cargoes.
|
|
|
|
SCT_ALL, ///< Draw all cargoes.
|
2007-12-19 20:45:46 +00:00
|
|
|
};
|
|
|
|
|
2009-07-10 22:03:09 +00:00
|
|
|
int DrawStationCoverageAreaText(int left, int right, int top, StationCoverageType sct, int rad, bool supplies);
|
2007-12-19 20:45:46 +00:00
|
|
|
void CheckRedrawStationCoverage(const Window *w);
|
|
|
|
|
2021-10-28 22:56:07 +00:00
|
|
|
using StationPickerCmdProc = std::function<bool(bool test, StationID to_join)>;
|
|
|
|
|
|
|
|
void ShowSelectStationIfNeeded(TileArea ta, StationPickerCmdProc proc);
|
|
|
|
void ShowSelectWaypointIfNeeded(TileArea ta, StationPickerCmdProc proc);
|
2009-01-08 16:35:45 +00:00
|
|
|
|
2007-12-05 17:08:10 +00:00
|
|
|
#endif /* STATION_GUI_H */
|