mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-04 09:42:30 +02:00
Add danger-ore-patches-beltboxes-ore-only. (#1270)
This commit is contained in:
parent
15001b9e6b
commit
3250ce4e55
44
map_gen/maps/danger_ores/config/deadlock_beltboxes_coal.lua
Normal file
44
map_gen/maps/danger_ores/config/deadlock_beltboxes_coal.lua
Normal file
@ -0,0 +1,44 @@
|
||||
local b = require 'map_gen.shared.builders'
|
||||
local start_value = b.euclidean_value(50, 0)
|
||||
local value = b.exponential_value(0, 0.04, 1.5)
|
||||
|
||||
local tiles = {
|
||||
[1] = 'dirt-1',
|
||||
[2] = 'dirt-2',
|
||||
[3] = 'dirt-3',
|
||||
[4] = 'dirt-4',
|
||||
[5] = 'dirt-5',
|
||||
[6] = 'dirt-6',
|
||||
[7] = 'dirt-7'
|
||||
}
|
||||
|
||||
return {
|
||||
{
|
||||
name = 'coal',
|
||||
['tiles'] = tiles,
|
||||
['start'] = start_value,
|
||||
['weight'] = 1,
|
||||
['ratios'] = {{resource = b.resource(b.full_shape, 'coal', value), weight = 1}}
|
||||
},
|
||||
{
|
||||
name = 'copper-ore',
|
||||
['tiles'] = tiles,
|
||||
['start'] = start_value,
|
||||
['weight'] = 1,
|
||||
['ratios'] = {{resource = b.resource(b.full_shape, 'coal', value), weight = 1}}
|
||||
},
|
||||
{
|
||||
name = 'iron-ore',
|
||||
['tiles'] = tiles,
|
||||
['start'] = start_value,
|
||||
['weight'] = 1,
|
||||
['ratios'] = {{resource = b.resource(b.full_shape, 'coal', value), weight = 1}}
|
||||
},
|
||||
{
|
||||
name = 'stone',
|
||||
['tiles'] = tiles,
|
||||
['start'] = start_value,
|
||||
['weight'] = 1,
|
||||
['ratios'] = {{resource = b.resource(b.full_shape, 'coal', value), weight = 1}}
|
||||
}
|
||||
}
|
@ -0,0 +1,46 @@
|
||||
local b = require 'map_gen.shared.builders'
|
||||
local math = require 'utils.math'
|
||||
local table = require 'utils.table'
|
||||
|
||||
local random = math.random
|
||||
local bnot = bit32.bnot
|
||||
local binary_search = table.binary_search
|
||||
|
||||
local ratio_value = b.exponential_value(0, 1.5, 1.5)
|
||||
|
||||
local iron_ratios = {
|
||||
{resource = b.resource(b.full_shape, 'iron-ore', ratio_value), weight = 80},
|
||||
{resource = b.resource(b.full_shape, 'copper-ore', ratio_value), weight = 13},
|
||||
{resource = b.resource(b.full_shape, 'stone', ratio_value), weight = 7}
|
||||
}
|
||||
|
||||
local copper_ratios = {
|
||||
{resource = b.resource(b.full_shape, 'iron-ore', ratio_value), weight = 15},
|
||||
{resource = b.resource(b.full_shape, 'copper-ore', ratio_value), weight = 75},
|
||||
{resource = b.resource(b.full_shape, 'stone', ratio_value), weight = 10}
|
||||
}
|
||||
|
||||
local function build_ratio_patches(ratios)
|
||||
return function(x, y, world)
|
||||
local weighted = b.prepare_weighted_array(ratios)
|
||||
local total = weighted.total
|
||||
|
||||
local i = random() * total
|
||||
local index = binary_search(weighted, i)
|
||||
if index < 0 then
|
||||
index = bnot(index)
|
||||
end
|
||||
|
||||
local resource = ratios[index].resource
|
||||
local entity = resource(x, y, world)
|
||||
|
||||
entity.enable_tree_removal = false
|
||||
|
||||
return entity
|
||||
end
|
||||
end
|
||||
|
||||
return {
|
||||
{scale = 1 / 24, threshold = 0.5, resource = build_ratio_patches(iron_ratios)},
|
||||
{scale = 1 / 24, threshold = 0.5, resource = build_ratio_patches(copper_ratios)}
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
return {
|
||||
--'transport-belt',
|
||||
--'fast-transport-belt',
|
||||
'express-transport-belt',
|
||||
--'underground-belt',
|
||||
--'fast-underground-belt',
|
||||
'express-underground-belt',
|
||||
--'small-electric-pole',
|
||||
--'medium-electric-pole',
|
||||
--'big-electric-pole',
|
||||
--'substation',
|
||||
'electric-mining-drill',
|
||||
'electric-mining-drill-2',
|
||||
'electric-mining-drill-3',
|
||||
'burner-mining-drill',
|
||||
'pumpjack',
|
||||
'car',
|
||||
'tank',
|
||||
'spidertron',
|
||||
'straight-rail',
|
||||
'curved-rail',
|
||||
'rail-signal',
|
||||
'rail-chain-signal',
|
||||
'train-stop',
|
||||
'locomotive',
|
||||
'cargo-wagon',
|
||||
'fluid-wagon',
|
||||
'artillery-wagon'
|
||||
}
|
@ -3,7 +3,7 @@ local RestrictEntities = require 'map_gen.shared.entity_placement_restriction'
|
||||
local Event = require 'utils.event'
|
||||
local Token = require 'utils.token'
|
||||
|
||||
return function(allowed_entities)
|
||||
return function(allowed_entities, message)
|
||||
--- Items explicitly allowed on ores
|
||||
RestrictEntities.add_allowed(allowed_entities)
|
||||
|
||||
@ -29,7 +29,7 @@ return function(allowed_entities)
|
||||
local function on_destroy(event)
|
||||
local p = event.player
|
||||
if p and p.valid then
|
||||
p.print('You cannot build that on top of ores, only belts, mining drills, and power poles are allowed.')
|
||||
p.print(message or 'You cannot build that on top of ores, only belts, mining drills, and power poles are allowed.')
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -0,0 +1,161 @@
|
||||
local RS = require 'map_gen.shared.redmew_surface'
|
||||
local MGSP = require 'resources.map_gen_settings'
|
||||
local Event = require 'utils.event'
|
||||
local b = require 'map_gen.shared.builders'
|
||||
local Config = require 'config'
|
||||
|
||||
local ScenarioInfo = require 'features.gui.info'
|
||||
ScenarioInfo.set_map_name('Danger Ore Patches Beltboxes (ore only)')
|
||||
ScenarioInfo.set_map_description([[
|
||||
Clear the ore to expand the base,
|
||||
focus mining efforts on specific sectors to ensure
|
||||
proper material ratios, expand the map with pollution!
|
||||
]])
|
||||
ScenarioInfo.add_map_extra_info([[
|
||||
This map is covered in [item=coal] with mixed dense patches containing [item=iron-ore] [item=copper-ore] [item=stone].
|
||||
The patches alternate between [item=iron-ore] and [item=copper-ore] as the main resource.
|
||||
|
||||
You may not build the factory on ore patches. Exceptions:
|
||||
[item=burner-mining-drill] [item=electric-mining-drill] [item=pumpjack] [item=car] [item=tank] [item=spidertron] [item=locomotive] [item=cargo-wagon] [item=fluid-wagon] [item=artillery-wagon]
|
||||
[item=express-transport-belt] [item=express-underground-belt] [item=rail] [item=rail-signal] [item=rail-chain-signal] [item=train-stop]
|
||||
|
||||
The map size is restricted to the pollution generated. A significant amount of
|
||||
pollution must affect a section of the map before it is revealed. Pollution
|
||||
does not affect biter evolution.]])
|
||||
|
||||
ScenarioInfo.set_new_info([[
|
||||
2019-04-24:
|
||||
- Stone ore density reduced by 1/2
|
||||
- Ore quadrants randomized
|
||||
- Increased time factor of biter evolution from 5 to 7
|
||||
- Added win conditions (+5% evolution every 5 rockets until 100%, +100 rockets until biters are wiped)
|
||||
|
||||
2019-03-30:
|
||||
- Uranium ore patch threshold increased slightly
|
||||
- Bug fix: Cars and tanks can now be placed onto ore!
|
||||
- Starting minimum pollution to expand map set to 650
|
||||
View current pollution via Debug Settings [F4] show-pollution-values,
|
||||
then open map and turn on pollution via the red box.
|
||||
- Starting water at spawn increased from radius 8 to radius 16 circle.
|
||||
|
||||
2019-03-27:
|
||||
- Ore arranged into quadrants to allow for more controlled resource gathering.
|
||||
|
||||
2020-09-02:
|
||||
- Destroyed chests dump their content as coal ore.
|
||||
|
||||
2020-12-28:
|
||||
- Changed win condition. First satellite kills all biters, launch 500 to win the map.
|
||||
|
||||
2021-04-06:
|
||||
- Rail signals and train stations now allowed on ore.
|
||||
]])
|
||||
|
||||
global.config.redmew_qol.loaders = false
|
||||
|
||||
local map = require 'map_gen.maps.danger_ores.modules.map'
|
||||
local main_ores_config = require 'map_gen.maps.danger_ores.config.deadlock_beltboxes_coal'
|
||||
local resource_patches = require 'map_gen.maps.danger_ores.modules.resource_patches'
|
||||
local resource_patches_config = require 'map_gen.maps.danger_ores.config.deadlock_beltboxes_resource_patches'
|
||||
local main_ore_resource_patches_config = require 'map_gen.maps.danger_ores.config.deadlock_beltboxes_main_ore_resource_patches'
|
||||
local water = require 'map_gen.maps.danger_ores.modules.water'
|
||||
local trees = require 'map_gen.maps.danger_ores.modules.trees'
|
||||
local enemy = require 'map_gen.maps.danger_ores.modules.enemy'
|
||||
-- local dense_patches = require 'map_gen.maps.danger_ores.modules.dense_patches'
|
||||
|
||||
local banned_entities = require 'map_gen.maps.danger_ores.modules.banned_entities'
|
||||
local allowed_entities = require 'map_gen.maps.danger_ores.config.patches_deadlock_betlboxes_allowed_entities'
|
||||
banned_entities(allowed_entities, 'You cannot build that on top of ores, only express belts and mining drills are allowed.')
|
||||
|
||||
RS.set_map_gen_settings({
|
||||
MGSP.grass_only,
|
||||
MGSP.enable_water,
|
||||
{terrain_segmentation = 'normal', water = 'normal'},
|
||||
MGSP.starting_area_very_low,
|
||||
MGSP.ore_oil_none,
|
||||
MGSP.enemy_none,
|
||||
MGSP.cliff_none,
|
||||
MGSP.tree_none
|
||||
})
|
||||
|
||||
Config.market.enabled = false
|
||||
Config.player_rewards.enabled = false
|
||||
Config.player_create.starting_items = {}
|
||||
Config.dump_offline_inventories = {
|
||||
enabled = true,
|
||||
offline_timout_mins = 30 -- time after which a player logs off that their inventory is provided to the team
|
||||
}
|
||||
Config.paint.enabled = false
|
||||
|
||||
Event.on_init(function()
|
||||
game.draw_resource_selection = false
|
||||
game.forces.player.technologies['mining-productivity-1'].enabled = false
|
||||
game.forces.player.technologies['mining-productivity-2'].enabled = false
|
||||
game.forces.player.technologies['mining-productivity-3'].enabled = false
|
||||
game.forces.player.technologies['mining-productivity-4'].enabled = false
|
||||
|
||||
game.difficulty_settings.technology_price_multiplier = 35
|
||||
game.forces.player.technologies.logistics.researched = true
|
||||
game.forces.player.technologies.automation.researched = true
|
||||
|
||||
game.map_settings.enemy_evolution.time_factor = 0.000007 -- default 0.000004
|
||||
game.map_settings.enemy_evolution.destroy_factor = 0.000010 -- default 0.002
|
||||
game.map_settings.enemy_evolution.pollution_factor = 0.000000 -- Pollution has no affect on evolution default 0.0000009
|
||||
|
||||
game.forces.player.manual_mining_speed_modifier = 1
|
||||
|
||||
RS.get_surface().always_day = true
|
||||
RS.get_surface().peaceful_mode = true
|
||||
end)
|
||||
|
||||
local terraforming = require 'map_gen.maps.danger_ores.modules.terraforming'
|
||||
terraforming({start_size = 8 * 32, min_pollution = 400, max_pollution = 16000, pollution_increment = 6})
|
||||
|
||||
local rocket_launched = require 'map_gen.maps.danger_ores.modules.rocket_launched_simple'
|
||||
rocket_launched({win_satellite_count = 750})
|
||||
|
||||
local restart_command = require 'map_gen.maps.danger_ores.modules.restart_command'
|
||||
restart_command({scenario_name = 'danger-ore-patches-beltboxes-ore-only'})
|
||||
|
||||
local container_dump = require 'map_gen.maps.danger_ores.modules.container_dump'
|
||||
container_dump({entity_name = 'coal'})
|
||||
|
||||
local concrete_on_landfill = require 'map_gen.maps.danger_ores.modules.concrete_on_landfill'
|
||||
concrete_on_landfill({tile = 'blue-refined-concrete'})
|
||||
|
||||
local remove_non_ore_stacked_recipes = require 'map_gen.maps.danger_ores.modules.remove_non_ore_stacked_recipes'
|
||||
remove_non_ore_stacked_recipes()
|
||||
|
||||
local main_ores_builder = require 'map_gen.maps.danger_ores.modules.main_ores_patches'
|
||||
|
||||
local config = {
|
||||
spawn_shape = b.circle(36),
|
||||
start_ore_shape = b.circle(44),
|
||||
no_resource_patch_shape = b.circle(80),
|
||||
main_ores_builder = main_ores_builder,
|
||||
main_ores = main_ores_config,
|
||||
main_ores_shuffle_order = true,
|
||||
-- main_ores_rotate = 0,
|
||||
resource_patches = resource_patches,
|
||||
resource_patches_config = resource_patches_config,
|
||||
main_ore_resource_patches_config = main_ore_resource_patches_config,
|
||||
water = water,
|
||||
water_scale = 1 / 96,
|
||||
water_threshold = 0.4,
|
||||
deepwater_threshold = 0.45,
|
||||
trees = trees,
|
||||
trees_scale = 1 / 64,
|
||||
trees_threshold = 0.4,
|
||||
trees_chance = 0.875,
|
||||
enemy = enemy,
|
||||
enemy_factor = 10 / (768 * 32),
|
||||
enemy_max_chance = 1 / 6,
|
||||
enemy_scale_factor = 32,
|
||||
fish_spawn_rate = 0.025,
|
||||
-- dense_patches = dense_patches,
|
||||
dense_patches_scale = 1 / 48,
|
||||
dense_patches_threshold = 0.55,
|
||||
dense_patches_multiplier = 25
|
||||
}
|
||||
|
||||
return map(config)
|
@ -0,0 +1 @@
|
||||
return require 'map_gen.maps.danger_ores.presets.danger_ore_patches_beltboxes_ore_only'
|
Loading…
Reference in New Issue
Block a user