mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-11 13:10:45 +00:00
b7ddd486cf
# Conflicts: # cmake/CompileFlags.cmake # src/aircraft_cmd.cpp # src/blitter/32bpp_anim.cpp # src/cargopacket.cpp # src/cheat_gui.cpp # src/company_cmd.cpp # src/company_gui.cpp # src/core/pool_func.hpp # src/date.cpp # src/economy.cpp # src/error_gui.cpp # src/ground_vehicle.cpp # src/ground_vehicle.hpp # src/group_gui.cpp # src/industry_cmd.cpp # src/lang/dutch.txt # src/lang/french.txt # src/lang/german.txt # src/linkgraph/linkgraph_gui.cpp # src/linkgraph/mcf.cpp # src/network/network_content.cpp # src/network/network_server.cpp # src/network/network_udp.cpp # src/newgrf_engine.cpp # src/newgrf_station.cpp # src/order_cmd.cpp # src/order_gui.cpp # src/pathfinder/follow_track.hpp # src/pathfinder/yapf/yapf_common.hpp # src/saveload/saveload.cpp # src/settings_gui.cpp # src/station_cmd.cpp # src/station_kdtree.h # src/string_func.h # src/table/settings.ini # src/tgp.cpp # src/timetable_cmd.cpp # src/timetable_gui.cpp # src/toolbar_gui.cpp # src/town_cmd.cpp # src/train_cmd.cpp # src/train_gui.cpp # src/tree_gui.cpp # src/tunnelbridge_cmd.cpp # src/vehicle.cpp # src/vehicle_gui.cpp # src/video/sdl2_v.cpp # src/video/sdl_v.cpp # src/video/win32_v.cpp # src/viewport.cpp # src/viewport_sprite_sorter_sse4.cpp # src/window.cpp
43 lines
1.8 KiB
C++
43 lines
1.8 KiB
C++
/*
|
|
* 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 station_kdtree.h Declarations for accessing the k-d tree of stations */
|
|
|
|
#ifndef STATION_KDTREE_H
|
|
#define STATION_KDTREE_H
|
|
|
|
#include "core/kdtree.hpp"
|
|
#include "core/math_func.hpp"
|
|
#include "station_base.h"
|
|
#include "map_func.h"
|
|
|
|
inline uint32 Kdtree_StationXYFunc(StationID stid, int dim) { return (dim == 0) ? TileX(BaseStation::Get(stid)->xy) : TileY(BaseStation::Get(stid)->xy); }
|
|
typedef Kdtree<StationID, decltype(&Kdtree_StationXYFunc), uint32, int> StationKdtree;
|
|
extern StationKdtree _station_kdtree;
|
|
|
|
/**
|
|
* Call a function on all stations whose sign is within a radius of a center tile.
|
|
* @param center Central tile to search around.
|
|
* @param radius Distance in both X and Y to search within.
|
|
* @param func The function to call, must take a single parameter which is Station*.
|
|
*/
|
|
template <typename Func>
|
|
void ForAllStationsRadius(TileIndex center, uint radius, Func func)
|
|
{
|
|
uint32 x1, y1, x2, y2;
|
|
x1 = (uint32)std::max<int>(0, TileX(center) - radius);
|
|
x2 = (uint32)std::min<int>(TileX(center) + radius + 1, MapSizeX());
|
|
y1 = (uint32)std::max<int>(0, TileY(center) - radius);
|
|
y2 = (uint32)std::min<int>(TileY(center) + radius + 1, MapSizeY());
|
|
|
|
_station_kdtree.FindContained(x1, y1, x2, y2, [&](StationID id) {
|
|
func(Station::Get(id));
|
|
});
|
|
}
|
|
|
|
#endif
|