1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-03-03 14:53:01 +02:00
RedMew/map_gen/presets/mobius_strip.lua

115 lines
3.3 KiB
Lua
Raw Normal View History

2018-04-06 20:58:50 +01:00
local Event = require "utils.event"
2018-05-08 21:23:07 +01:00
local b = require "map_gen.shared.builders"
2017-08-25 06:27:50 +01:00
2018-05-08 21:23:07 +01:00
local inner_circle = b.invert(b.circle(48))
local outer_circle = b.circle(64)
local square = b.invert(b.rectangle(1000, 1000))
square = b.rotate(square, degrees(45))
square = b.translate(square, math.sqrt(2) * 500, 0)
2017-08-25 06:27:50 +01:00
2018-05-08 21:23:07 +01:00
local circle = b.all({inner_circle, outer_circle, square})
2017-08-25 06:27:50 +01:00
2018-05-08 21:23:07 +01:00
local line1 = b.rectangle(77, 16)
line1 = b.rotate(line1, degrees(45))
line1 = b.translate(line1, 66.5, 12.6875)
2017-08-25 06:27:50 +01:00
2018-05-08 21:23:07 +01:00
local line2 = b.rectangle(45, 16)
local line2 = b.rotate(line2, degrees(-45))
line2 = b.translate(line2, 55.5, -23.6875)
2017-08-25 06:27:50 +01:00
2018-05-08 21:23:07 +01:00
--line2 =b.change_tile(line2, true, "water")
local half = b.any({line2, line1, circle})
2017-08-25 06:27:50 +01:00
2018-05-08 21:23:07 +01:00
half = b.translate(half, -79.1875, 0)
local map = b.any({half, b.flip_xy(half)})
map = b.scale(map, 11, 11)
2017-08-25 06:27:50 +01:00
2017-08-25 15:35:53 +01:00
local function research_finished(event)
local tech = event.research.name
if tech == "rocket-silo" then
game.forces["player"].recipes["rocket-silo"].enabled = false
end
end
2018-04-06 20:58:50 +01:00
Event.add(defines.events.on_research_finished, research_finished)
2017-08-25 15:35:53 +01:00
local function max_axis_distance(world_x, world_y, target_x, target_y)
local x = math.abs(world_x - target_x)
local y = math.abs(world_y - target_y)
2018-02-23 12:18:32 +00:00
2017-08-25 15:35:53 +01:00
return math.max(x, y)
end
local function distance(world_x, world_y, target_x, target_y)
return math.abs(world_x - target_x) + math.abs(world_y - target_y)
end
local init = false
local safe_distance = 480
2018-05-08 17:47:34 +01:00
local function effect(x, y, world, tile)
2018-02-23 12:18:32 +00:00
2017-08-25 15:35:53 +01:00
if not init then
init = true
2018-05-08 17:47:34 +01:00
game.forces["player"].chart(world.surface, {{-32, -32}, {31, 31}})
2017-08-25 15:35:53 +01:00
end
2018-02-23 12:18:32 +00:00
2018-05-08 17:47:34 +01:00
if world.x == 0 and world.y == 0 then
for _, e in ipairs(world.surface.find_entities({{-5, -5}, {5, 5}})) do
2017-08-25 15:35:53 +01:00
e.destroy()
2018-02-23 12:18:32 +00:00
end
2017-08-25 15:35:53 +01:00
2018-05-08 17:47:34 +01:00
local e = world.surface.create_entity({name = "rocket-silo", position = {0, 0}, force = "player"})
2017-08-25 15:35:53 +01:00
e.destructible = false
e.minable = false
end
2018-02-23 12:18:32 +00:00
--[[
if max_axis_distance(world_x, world_y, -2144, 0) < safe_distance then
for _, e in ipairs(surface.find_entities_filtered({ force = "enemy", position = { world_x, world_y } } )) do
e.destroy()
end
2017-08-25 15:35:53 +01:00
elseif max_axis_distance(world_x, world_y, 2144, 0) < safe_distance then
2018-02-23 12:18:32 +00:00
for _, e in ipairs(surface.find_entities_filtered({ force = "enemy", position = { world_x, world_y } } )) do
e.destroy()
2017-08-25 15:35:53 +01:00
end
2018-02-23 12:18:32 +00:00
end
2017-08-25 15:35:53 +01:00
for _, e in ipairs(surface.find_entities_filtered({ type = "resource", area = {{world_x, world_y }, {world_x + 1, world_y + 1 } } })) do -- I want to use position but for some reason it doesn't seem to work for ores.
2018-02-23 12:18:32 +00:00
local dist1 = distance(world_x, world_y, -2144, 0)
local dist2 = distance(world_x, world_y, 2144, 0)
local amount = math.min(dist1, dist2)
local name = e.name
if name == "iron-ore" then
amount = 800 + 0.4 * amount
elseif name == "copper-ore" then
amount = 700 + 0.35 * amount
elseif name == "coal" then
amount = 600 + 0.3 * amount
elseif name == "stone" then
amount = 400 + 0.2 * amount
elseif name == "uranium-ore" then
amount = 300 + 0.15 * amount
elseif name == "crude-oil" then
amount = 50000 + 50 * amount
2017-08-25 15:35:53 +01:00
end
2018-02-23 12:18:32 +00:00
e.amount = amount
end
--]]
return tile
2017-08-25 15:35:53 +01:00
end
2018-05-08 21:23:07 +01:00
map = b.apply_effect(map, effect)
2017-08-25 15:35:53 +01:00
2017-08-28 07:09:15 +01:00
require "spawn_control"
add_spawn("left", -88, -88)
add_spawn("right", 88, 88)
2017-08-25 15:35:53 +01:00
2017-08-25 06:27:50 +01:00
return map