1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-07-15 01:24:37 +02:00

mv x_map.lua x_shape.lua

mv x_infinite.lua lattice.lua
rm cross.lua
This commit is contained in:
Valansch
2017-07-31 00:37:02 +02:00
parent 221964a75a
commit 6884d80495
4 changed files with 3 additions and 33 deletions

View File

@ -1,29 +0,0 @@
--X shape map script --by Neko_Baron
--edit this
local tiles_wide = 172
---dont edit these
local tiles_half = tiles_wide * 0.5
function run_shape_module(event)
local area = event.area
local surface = event.surface
local tiles = {}
top_left = area.left_top --make a more direct reference
for x = top_left.x-1, top_left.x + 32 do
for y = top_left.y-1, top_left.y + 32 do
local abs_x = math.abs(x)
local abs_y = math.abs(y)
if abs_x < abs_y - tiles_half or abs_x > abs_y + tiles_half then
table.insert(tiles, {name = "out-of-map", position = {x,y}})
end
end
end
surface.set_tiles(tiles)
return true
end

View File

@ -15,10 +15,9 @@ in this file and your run_*type*_module(event) function will be called.
--require "locale.gen_shape.spiral2"
--require "locale.gen_shape.donut"
--require "locale.gen_shape.rectangular_spiral"
--require "locale.gen_shape.x_map"
--require "locale.gen_shape.cross"
--require "locale.gen_shape.infinite_mazes"
--require "locale.gen_shape.x_infinite"
--require "locale.gen_shape.lattice"
require "locale.gen_shape.infinite_mazes"
--require "locale.gen_shape.x_shape"
--terrain--