Compare commits

..

No commits in common. "54cb4f056863dbb47cb4e331db0fbc585a9dd578" and "ae38826a2e06138c60ec5746a5038983dbd3e0cb" have entirely different histories.

View file

@ -80,13 +80,6 @@ function util.initialize(them)
util.me = me
end
function util.get_setting(name)
if settings.startup[name] == nil then
return nil
end
return settings.startup[name].value
end
function util.item(item, quantity, probability)
if not quantity then
quantity = 1
@ -124,13 +117,13 @@ end
allbypass = {}
if get_setting("bz-recipe-bypass") then
for recipe in string.gmatch(util.get_setting("bz-recipe-bypass"), '[^",%s]+') do
for recipe in string.gmatch(me.get_setting("bz-recipe-bypass"), '[^",%s]+') do
allbypass[recipe] = true
end
end
function util.is_foundry()
return util.bz.foundry and not util.get_setting("bzfoundry-minimal")
return util.bz.foundry and not me.get_setting("bzfoundry-minimal")
end
function should_force(options)
@ -138,7 +131,7 @@ function should_force(options)
end
function bypass(recipe_name)
if me and me.bypass[recipe_name] then
if me.bypass[recipe_name] then
return true
end
if allbypass[recipe_name] then
@ -423,7 +416,7 @@ function util.add_gleba_rock(resource, amount_min, amount_max)
})
local probability = data.raw["simple-entity"]["gleba-rock"].autoplace.probability_expression
-- A lot more common near starting point when aps gleba
local factor = (mods["any-planet-start"] and util.get_setting("aps-planet") == "gleba" and 20) or 1
local factor = (mods["any-planet-start"] and me.get_setting("aps-planet") == "gleba" and 20) or 1
data.raw["simple-entity"]["gleba-rock"].autoplace.probability_expression = probability .. [[*
if(distance_from_nearest_point{x = x, y = y, points = starting_positions} < 200, ]] .. factor .. [[,
if(distance_from_nearest_point{x = x, y = y, points = starting_positions} < 700,
@ -432,8 +425,8 @@ function util.add_gleba_rock(resource, amount_min, amount_max)
end
if data.raw.item[resource] then
amount_min = (amount_min or 10) * ((mods["any-planet-start"] and util.get_setting("aps-planet") == "gleba" and 4) or 1)
amount_max = (amount_max or 20) * ((mods["any-planet-start"] and util.get_setting("aps-planet") == "gleba" and 4) or 1)
amount_min = (amount_min or 10) * ((mods["any-planet-start"] and me.get_setting("aps-planet") == "gleba" and 4) or 1)
amount_max = (amount_max or 20) * ((mods["any-planet-start"] and me.get_setting("aps-planet") == "gleba" and 4) or 1)
util.add_minable_result(
"simple-entity", "gleba-rock",
{ type = "item", name = resource, amount_min = amount_min, amount_max = amount_max })
@ -967,7 +960,7 @@ function util.add_ingredient(recipe_name, ingredient, quantity, options)
end
local is_fluid = not not data.raw.fluid[ingredient]
if data.raw.recipe[recipe_name] and (util.get_item(ingredient) or is_fluid) then
if me then me.add_modified(recipe_name) end
me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
add_ingredient(data.raw.recipe[recipe_name], ingredient, quantity, is_fluid)
end
@ -1130,7 +1123,7 @@ function util.replace_ingredient(recipe_name, old, new, amount, multiply, option
return
end
if data.raw.recipe[recipe_name] and (data.raw.item[new] or data.raw.fluid[new]) and (data.raw.item[old] or data.raw.fluid[old]) then
if me then me.add_modified(recipe_name) end
me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
replace_ingredient(data.raw.recipe[recipe_name], old, new, amount, multiply)
end
@ -1164,7 +1157,7 @@ function util.remove_ingredient(recipe_name, old, options)
return
end
if data.raw.recipe[recipe_name] then
if me then me.add_modified(recipe_name) end
me.add_modified(recipe_name)
prepare_redo_recycling(recipe_name)
remove_ingredient(data.raw.recipe[recipe_name], old)
end
@ -1967,10 +1960,6 @@ function util.sum_products(recipe_name)
return 0
end
function util.add_productivity(recipe)
data.raw.recipe[recipe].allow_productivity = true
end
function util.set_vtk_dcm_ingredients()
if mods["vtk-deep-core-mining"] then
local sum = util.sum_products("vtk-deepcore-mining-ore-chunk-refining")