1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-14 10:13:13 +02:00
RedMew/map_gen/Diggy/Scanner.lua
2018-10-02 10:09:03 +02:00

41 lines
1.2 KiB
Lua

-- dependencies
-- this
local Scanner = {}
--[[--
returns a list with all direct positions that contain out-of-map.
@param surface LuaSurface
@param position Position
@param tile_search string name of the tile to search for
@return table with 0~4 directions of which have the tile searched for adjacent
]]
function Scanner.scan_around_position(surface, position, tile_search)
local out_of_map_found = {}
-- north
if (tile_search == surface.get_tile(position.x, position.y - 1).name) then
table.insert(out_of_map_found, {x = position.x, y = position.y - 1})
end
-- east
if (tile_search == surface.get_tile(position.x + 1, position.y).name) then
table.insert(out_of_map_found, {x = position.x + 1, y = position.y})
end
-- south
if (tile_search == surface.get_tile(position.x, position.y + 1).name) then
table.insert(out_of_map_found, {x = position.x, y = position.y + 1})
end
-- west
if (tile_search == surface.get_tile(position.x - 1, position.y).name) then
table.insert(out_of_map_found, {x = position.x - 1, y = position.y})
end
return out_of_map_found;
end
return Scanner