2018-01-24 21:52:40 +02:00
|
|
|
-- Size of the logo.
|
|
|
|
local scale_factor = 6
|
|
|
|
|
|
|
|
-- Distance between islands.
|
|
|
|
local island_distance_x = 256
|
|
|
|
local island_distance_y = 128
|
|
|
|
|
2018-05-08 22:23:07 +02:00
|
|
|
local b = require "map_gen.shared.builders"
|
|
|
|
|
2018-01-24 21:52:40 +02:00
|
|
|
local pic = require "map_gen.data.presets.factorio_logo"
|
2018-05-08 22:23:07 +02:00
|
|
|
local pic = b.decompress(pic)
|
2018-01-24 21:52:40 +02:00
|
|
|
|
2018-05-08 22:23:07 +02:00
|
|
|
local shape = b.picture(pic)
|
|
|
|
shape = b.scale(shape, scale_factor, scale_factor)
|
2018-01-24 21:52:40 +02:00
|
|
|
|
|
|
|
local pattern_width = scale_factor * pic.width + island_distance_x
|
|
|
|
local pattern_height = scale_factor * pic.height + island_distance_y
|
2018-05-08 22:23:07 +02:00
|
|
|
shape = b.single_pattern(shape, pattern_width, pattern_height)
|
2018-01-24 21:52:40 +02:00
|
|
|
|
2018-05-08 22:23:07 +02:00
|
|
|
shape = b.change_tile(shape, false, "deepwater")
|
2018-01-24 21:52:40 +02:00
|
|
|
|
|
|
|
return shape
|