Decaychains and stonecutter now work
This commit is contained in:
parent
72b84587aa
commit
40cf7088da
|
@ -11,6 +11,7 @@ read_globals = {
|
||||||
"mcl_burning",
|
"mcl_burning",
|
||||||
"mcl_util",
|
"mcl_util",
|
||||||
"mcl_formspec",
|
"mcl_formspec",
|
||||||
|
"mcl_copper",
|
||||||
"mcl_item_id",
|
"mcl_item_id",
|
||||||
"mcl_enchanting",
|
"mcl_enchanting",
|
||||||
"mcl_hunger",
|
"mcl_hunger",
|
||||||
|
|
|
@ -3,7 +3,9 @@
|
||||||
-- Gets lists of energy values
|
-- Gets lists of energy values
|
||||||
dofile(minetest.get_modpath("_exchangeclone_energy").."/energy_values.lua")
|
dofile(minetest.get_modpath("_exchangeclone_energy").."/energy_values.lua")
|
||||||
|
|
||||||
local function get_cheapest_recipe(recipes, log)
|
local function get_cheapest_recipe(itemstring, log)
|
||||||
|
itemstring = ItemStack(itemstring):get_name()
|
||||||
|
local recipes = exchangeclone.recipes[itemstring]
|
||||||
if not recipes then return end
|
if not recipes then return end
|
||||||
local cheapest
|
local cheapest
|
||||||
for _, recipe in ipairs(recipes) do
|
for _, recipe in ipairs(recipes) do
|
||||||
|
@ -16,7 +18,7 @@ local function get_cheapest_recipe(recipes, log)
|
||||||
for _, item in ipairs(row) do
|
for _, item in ipairs(row) do
|
||||||
if item ~= "" then
|
if item ~= "" then
|
||||||
if item == output_name then
|
if item == output_name then
|
||||||
output_count = output_count - 1
|
output_count = math.max(0, output_count - 1)
|
||||||
else
|
else
|
||||||
local cost = exchangeclone.get_item_energy(item)
|
local cost = exchangeclone.get_item_energy(item)
|
||||||
if (not cost) or cost == 0 then
|
if (not cost) or cost == 0 then
|
||||||
|
@ -28,10 +30,10 @@ local function get_cheapest_recipe(recipes, log)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
elseif (recipe.type == "shapeless") or (recipe.type == "technic") then
|
elseif (recipe.type == "shapeless") or (recipe.type == "technic") or recipe.type == "preserving" then
|
||||||
for _, item in ipairs(recipe.recipe) do
|
for _, item in ipairs(recipe.recipe) do
|
||||||
if item == output_name then
|
if item == output_name then
|
||||||
output_count = output_count - 1
|
output_count = math.max(0, output_count - 1)
|
||||||
else
|
else
|
||||||
local cost = exchangeclone.get_item_energy(item)
|
local cost = exchangeclone.get_item_energy(item)
|
||||||
if (not cost) or cost == 0 then
|
if (not cost) or cost == 0 then
|
||||||
|
@ -41,10 +43,11 @@ local function get_cheapest_recipe(recipes, log)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
elseif recipe.type == "cooking" or recipe.type == "stonecutting" then
|
elseif recipe.type == "cooking" or recipe.type == "stonecutting" or recipe.type == "decaychain" then
|
||||||
local cost = exchangeclone.get_item_energy(recipe.recipe)
|
local cost = exchangeclone.get_item_energy(recipe.recipe)
|
||||||
if (not cost) or cost == 0 then
|
if (not cost) or cost == 0 then
|
||||||
skip = recipe.recipe
|
skip = recipe.recipe
|
||||||
|
if recipe.recipe == "mcl_core:cobble" then minetest.log(dump({recipe, cost})) end
|
||||||
else
|
else
|
||||||
ingredient_cost = cost
|
ingredient_cost = cost
|
||||||
end
|
end
|
||||||
|
@ -59,10 +62,11 @@ local function get_cheapest_recipe(recipes, log)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
if output_count < 1 then skip = true end
|
||||||
if not skip then
|
if not skip then
|
||||||
ingredient_cost = math.floor(ingredient_cost*20/output_count)/20 -- allow .05, won't work with huge numbers
|
local total_cost = math.floor(ingredient_cost*20/math.max(1, output_count))/20 -- allow .05, won't work with huge numbers
|
||||||
if (not cheapest) or (cheapest[1] > ingredient_cost) then
|
if (not cheapest) or (cheapest[1] > total_cost) then
|
||||||
cheapest = {ingredient_cost, recipe}
|
cheapest = {total_cost, recipe}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if log then minetest.log(dump({
|
if log then minetest.log(dump({
|
||||||
|
@ -137,14 +141,19 @@ local function add_potion_energy(info)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Wait until all mods are loaded (to make sure all nodes have been registered)
|
-- Wait until all mods are loaded (to make sure all items have been registered)
|
||||||
-- This is much easier than making it depend on every single mod.
|
|
||||||
-- Actually, I'm kind of surprised that override_item still works...
|
|
||||||
minetest.register_on_mods_loaded(function()
|
minetest.register_on_mods_loaded(function()
|
||||||
minetest.log("action", "ExchangeClone: Registering energy values")
|
minetest.log("action", "ExchangeClone: Registering energy values")
|
||||||
<<<<<<< HEAD
|
|
||||||
local auto = {}
|
local auto = {}
|
||||||
|
|
||||||
|
-- handle aliases in exchangeclone.recipes
|
||||||
|
for itemstring, recipes in pairs(exchangeclone.recipes) do
|
||||||
|
local new_name = ItemStack(itemstring):get_name()
|
||||||
|
if new_name and new_name ~= "" and new_name ~= itemstring then
|
||||||
|
exchangeclone.recipes[new_name] = recipes
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- Register group energy values
|
-- Register group energy values
|
||||||
local groupnames = {}
|
local groupnames = {}
|
||||||
for index, group in ipairs(exchangeclone.group_values) do
|
for index, group in ipairs(exchangeclone.group_values) do
|
||||||
|
@ -157,82 +166,49 @@ minetest.register_on_mods_loaded(function()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Register energy aliases
|
|
||||||
if exchangeclone.mcl then
|
|
||||||
for i = 0, 31 do
|
|
||||||
exchangeclone.register_energy_alias("mcl_compass:18", "mcl_compass:"..i)
|
|
||||||
exchangeclone.register_energy_alias("mcl_compass:18", "mcl_compass:"..i.."_lodestone")
|
|
||||||
end
|
|
||||||
for i = 0, 63 do
|
|
||||||
exchangeclone.register_energy_alias("mcl_clock:clock", "mcl_clock:clock_"..i)
|
|
||||||
end
|
|
||||||
exchangeclone.register_energy_alias("doc_identifier:identifier_solid", "doc_identifier:identifier_liquid")
|
|
||||||
end
|
|
||||||
|
|
||||||
for itemstring, energy_value in pairs(exchangeclone.energy_values) do
|
for itemstring, energy_value in pairs(exchangeclone.energy_values) do
|
||||||
set_item_energy(itemstring, energy_value)
|
set_item_energy(itemstring, energy_value)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Should energy values be automatically registered?
|
|
||||||
for itemstring, def in pairs(minetest.registered_items) do
|
|
||||||
if def.exchangeclone_custom_energy then
|
|
||||||
set_item_energy(itemstring, def.exchangeclone_custom_energy)
|
|
||||||
else
|
|
||||||
local _, _, mod_name, item_name = itemstring:find("([%d_%l]+):([%d_%l]+)")
|
|
||||||
if (
|
|
||||||
def
|
|
||||||
and item_name
|
|
||||||
and mod_name
|
|
||||||
and def.description
|
|
||||||
and def.description ~= ""
|
|
||||||
-- Recovery compasses are annoying.
|
|
||||||
and ((minetest.get_item_group(itemstring, "not_in_creative_inventory") < 1) or (mod_name == "mcl_compass"))
|
|
||||||
and (not exchangeclone.get_item_energy(itemstring))
|
|
||||||
and exchangeclone.recipes[itemstring]
|
|
||||||
) then
|
|
||||||
auto[itemstring] = true
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
=======
|
|
||||||
>>>>>>> origin/MoreManualStuff
|
|
||||||
|
|
||||||
-- Handle stonecutter recipes
|
|
||||||
if exchangeclone.mineclonia then
|
if exchangeclone.mineclonia then
|
||||||
-- TODO: Check this for every Mineclonia update
|
-- Handle stonecutter recipes
|
||||||
|
-- TODO: Check recipe_yield for every Mineclonia update
|
||||||
local recipe_yield = { --maps itemgroup to the respective recipe yield, default is 1
|
local recipe_yield = { --maps itemgroup to the respective recipe yield, default is 1
|
||||||
["slab"] = 2,
|
["slab"] = 2,
|
||||||
}
|
}
|
||||||
for name, def in pairs(minetest.registered_items) do
|
for result, def in pairs(minetest.registered_items) do
|
||||||
if def._mcl_stonecutter_recipes then
|
if minetest.get_item_group(result,"not_in_creative_inventory") == 0 then
|
||||||
local yield = 1
|
if def._mcl_stonecutter_recipes then
|
||||||
for k,v in pairs(recipe_yield) do if minetest.get_item_group(name,k) > 0 then yield = v end end
|
for _, source in pairs(def._mcl_stonecutter_recipes) do
|
||||||
for _, result in pairs(def._mcl_stonecutter_recipes) do
|
local yield = 1
|
||||||
if minetest.get_item_group(name,"not_in_creative_inventory") == 0 then
|
for k,v in pairs(recipe_yield) do if minetest.get_item_group(result,k) > 0 then yield = v end end
|
||||||
if not exchangeclone.recipes[result] then exchangeclone.recipes[result] = {} end
|
if not exchangeclone.recipes[result] then exchangeclone.recipes[result] = {} end
|
||||||
table.insert(exchangeclone.recipes[result],{output = name.." "..yield, type = "stonecutting", recipe = result})
|
table.insert(exchangeclone.recipes[result],{output = result.." "..yield, type = "stonecutting", recipe = source})
|
||||||
|
minetest.log(dump({output = result.." "..yield, type = "stonecutting", recipe = source}))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
-- Handle decaychains
|
||||||
|
if mcl_copper then
|
||||||
|
local decaychains = mcl_copper.registered_decaychains
|
||||||
|
for name, data in pairs(decaychains) do
|
||||||
|
for i, itemstring in ipairs(data.nodes) do
|
||||||
|
if minetest.get_item_group(name,"not_in_creative_inventory") == 0 then
|
||||||
|
local preserved_itemstring = itemstring.."_preserved"
|
||||||
|
if not exchangeclone.recipes[preserved_itemstring] then exchangeclone.recipes[preserved_itemstring] = {} end
|
||||||
|
table.insert(exchangeclone.recipes[preserved_itemstring], {output = preserved_itemstring, type = "preserving", recipe = {itemstring, "group:"..data.preserve_group}})
|
||||||
|
if i > 1 then
|
||||||
|
if not exchangeclone.recipes[itemstring] then exchangeclone.recipes[itemstring] = {} end
|
||||||
|
table.insert(exchangeclone.recipes[itemstring],{output = itemstring, type = "decaychain", recipe = data.nodes[i-1]})
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local auto = {}
|
-- Register energy aliases and certain energy values that would be annoying to include in exchangeclone.energy_values
|
||||||
|
|
||||||
-- Register group energy values
|
|
||||||
local groupnames = {}
|
|
||||||
for _, group in ipairs(exchangeclone.group_values) do
|
|
||||||
groupnames[#groupnames + 1] = group[1] --Get list of group names
|
|
||||||
end
|
|
||||||
local grouped_items = exchangeclone.get_group_items(groupnames, true, true)
|
|
||||||
for _, group in ipairs(exchangeclone.group_values) do
|
|
||||||
for _, item in pairs(grouped_items[group[1]]) do
|
|
||||||
item = exchangeclone.handle_alias(item)
|
|
||||||
set_item_energy(item, group[2])
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Register energy aliases and certain energy values
|
|
||||||
if exchangeclone.mcl then
|
if exchangeclone.mcl then
|
||||||
for i = 0, 31 do
|
for i = 0, 31 do
|
||||||
exchangeclone.register_energy_alias("mcl_compass:18", "mcl_compass:"..i)
|
exchangeclone.register_energy_alias("mcl_compass:18", "mcl_compass:"..i)
|
||||||
|
@ -252,37 +228,29 @@ minetest.register_on_mods_loaded(function()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Register base energy values
|
||||||
for itemstring, energy_value in pairs(exchangeclone.energy_values) do
|
for itemstring, energy_value in pairs(exchangeclone.energy_values) do
|
||||||
set_item_energy(itemstring, energy_value)
|
set_item_energy(itemstring, energy_value)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Register copper block energy values (has to be done before automatic stuff but after base stuff)
|
||||||
if exchangeclone.mcl then
|
if exchangeclone.mcl then
|
||||||
local cheapest = get_cheapest_recipe(exchangeclone.recipes["mcl_copper:block"])
|
local cheapest = get_cheapest_recipe("mcl_copper:block")
|
||||||
if cheapest then
|
if cheapest then
|
||||||
set_item_energy("mcl_copper:block", cheapest)
|
set_item_energy("mcl_copper:block", cheapest)
|
||||||
minetest.log(cheapest)
|
|
||||||
minetest.log(dump(exchangeclone.get_item_energy("mcl_copper:block")))
|
|
||||||
end
|
end
|
||||||
for _, state in ipairs({"exposed", "weathered", "oxidized"}) do
|
for _, state in ipairs({"exposed", "weathered", "oxidized"}) do
|
||||||
set_item_energy("mcl_copper:block_"..state, exchangeclone.get_item_energy("mcl_copper:block"))
|
set_item_energy("mcl_copper:block_"..state, exchangeclone.get_item_energy("mcl_copper:block"))
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- handle aliases in exchangeclone.recipes
|
-- Register `exchangeclone_custom_energy` values and decide whether to automatically register energy values
|
||||||
for itemstring, recipes in pairs(exchangeclone.recipes) do
|
|
||||||
local new_name = exchangeclone.handle_alias(itemstring)
|
|
||||||
if new_name ~= itemstring then
|
|
||||||
exchangeclone.recipes[new_name] = recipes
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Should energy values be automatically registered?
|
|
||||||
for itemstring, def in pairs(minetest.registered_items) do
|
for itemstring, def in pairs(minetest.registered_items) do
|
||||||
itemstring = exchangeclone.handle_alias(itemstring) or itemstring
|
|
||||||
if def.exchangeclone_custom_energy then
|
if def.exchangeclone_custom_energy then
|
||||||
set_item_energy(itemstring, def.exchangeclone_custom_energy)
|
set_item_energy(itemstring, def.exchangeclone_custom_energy)
|
||||||
else
|
else
|
||||||
|
itemstring = exchangeclone.handle_alias(itemstring) or itemstring
|
||||||
|
def = minetest.registered_items[itemstring] -- in case itemstring changed
|
||||||
local _, _, mod_name, item_name = itemstring:find("([%d_%l]+):([%d_%l]+)")
|
local _, _, mod_name, item_name = itemstring:find("([%d_%l]+):([%d_%l]+)")
|
||||||
if (
|
if (
|
||||||
def
|
def
|
||||||
|
@ -294,24 +262,41 @@ minetest.register_on_mods_loaded(function()
|
||||||
and ((minetest.get_item_group(itemstring, "not_in_creative_inventory") < 1) or (mod_name == "mcl_compass"))
|
and ((minetest.get_item_group(itemstring, "not_in_creative_inventory") < 1) or (mod_name == "mcl_compass"))
|
||||||
and (not exchangeclone.get_item_energy(itemstring))
|
and (not exchangeclone.get_item_energy(itemstring))
|
||||||
and exchangeclone.recipes[itemstring]
|
and exchangeclone.recipes[itemstring]
|
||||||
-- This does mean that other items in mcl_potions will be ignored unless explicitly specified,
|
|
||||||
-- and items that are in groups mentioned above.
|
|
||||||
) then
|
) then
|
||||||
auto[itemstring] = true
|
auto[itemstring] = true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
for i = 1, exchangeclone.num_passes do
|
local old_auto
|
||||||
|
local same = false
|
||||||
|
local i = 1
|
||||||
|
-- Automatically register energy values
|
||||||
|
while not same do
|
||||||
minetest.log("action", "ExchangeClone: \tPASS #"..i)
|
minetest.log("action", "ExchangeClone: \tPASS #"..i)
|
||||||
if auto == {} then break end
|
if auto == {} then break end
|
||||||
|
if old_auto then
|
||||||
|
same = true
|
||||||
|
for itemstring, _ in pairs(old_auto) do
|
||||||
|
if itemstring ~= "" and not auto[itemstring] then
|
||||||
|
same = false
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if same then
|
||||||
|
minetest.log("action", "ExchangeClone:\tNo change, stopping.")
|
||||||
|
break
|
||||||
|
end
|
||||||
|
old_auto = table.copy(auto)
|
||||||
for itemstring, _ in pairs(auto) do
|
for itemstring, _ in pairs(auto) do
|
||||||
local cheapest = get_cheapest_recipe(exchangeclone.recipes[itemstring])
|
local cheapest = get_cheapest_recipe(itemstring)
|
||||||
if cheapest then
|
if cheapest then
|
||||||
set_item_energy(itemstring, cheapest)
|
set_item_energy(itemstring, cheapest)
|
||||||
auto[itemstring] = nil
|
auto[itemstring] = nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
i = i + 1
|
||||||
end
|
end
|
||||||
|
|
||||||
--minetest.log(dump(auto))
|
--minetest.log(dump(auto))
|
||||||
|
@ -342,11 +327,11 @@ minetest.register_on_mods_loaded(function()
|
||||||
-- Concrete and banners/shields (don't remember why the shields don't work)
|
-- Concrete and banners/shields (don't remember why the shields don't work)
|
||||||
for _, color in ipairs({"red", "orange", "yellow", "lime", "dark_green", "cyan", "light_blue", "blue", "purple", "magenta", "pink", "black", "white", "silver", "grey", "brown"}) do
|
for _, color in ipairs({"red", "orange", "yellow", "lime", "dark_green", "cyan", "light_blue", "blue", "purple", "magenta", "pink", "black", "white", "silver", "grey", "brown"}) do
|
||||||
set_item_energy("mcl_colorblocks:concrete_"..color, exchangeclone.get_item_energy("mcl_colorblocks:concrete_powder_"..color) or 2)
|
set_item_energy("mcl_colorblocks:concrete_"..color, exchangeclone.get_item_energy("mcl_colorblocks:concrete_powder_"..color) or 2)
|
||||||
set_item_energy("mcl_stairs:stair_concrete_"..color, get_cheapest_recipe(exchangeclone.recipes["mcl_stairs:stair_concrete_"..color]))
|
set_item_energy("mcl_stairs:stair_concrete_"..color, get_cheapest_recipe("mcl_stairs:stair_concrete_"..color))
|
||||||
set_item_energy("mcl_stairs:slab_concrete_"..color, get_cheapest_recipe(exchangeclone.recipes["mcl_stairs:slab_concrete_"..color]))
|
set_item_energy("mcl_stairs:slab_concrete_"..color, get_cheapest_recipe("mcl_stairs:slab_concrete_"..color))
|
||||||
set_item_energy("mcl_shields:shield_"..color, (exchangeclone.get_item_energy("mcl_banners:banner_item_"..color) or 340) + (exchangeclone.get_item_energy("mcl_shields:shield") or 304))
|
set_item_energy("mcl_shields:shield_"..color, (exchangeclone.get_item_energy("mcl_banners:banner_item_"..color) or 340) + (exchangeclone.get_item_energy("mcl_shields:shield") or 304))
|
||||||
end
|
end
|
||||||
-- Enchanted/netherite tools
|
-- Enchanted/netherite tools
|
||||||
for name, def in pairs(minetest.registered_items) do
|
for name, def in pairs(minetest.registered_items) do
|
||||||
if def._mcl_enchanting_enchanted_tool then
|
if def._mcl_enchanting_enchanted_tool then
|
||||||
exchangeclone.register_energy_alias(name, def._mcl_enchanting_enchanted_tool)
|
exchangeclone.register_energy_alias(name, def._mcl_enchanting_enchanted_tool)
|
||||||
|
|
|
@ -3,7 +3,7 @@ if not (exchangeclone and minetest.get_modpath("_exchangeclone_energy")) then
|
||||||
end
|
end
|
||||||
|
|
||||||
if (not minetest.get_modpath("mcl_core")) and (not minetest.get_modpath("default")) then
|
if (not minetest.get_modpath("mcl_core")) and (not minetest.get_modpath("default")) then
|
||||||
error("ExchangeClone requires 'default' or 'mcl_core,' but Minetest doesn't let me mark one or the other as a dependency.")
|
error("ExchangeClone requires Minetest Game, MineClone2, or MineClonia (and possibly other spinoffs).\nPlease use one of those games.")
|
||||||
else
|
else
|
||||||
exchangeclone.mcl = minetest.get_modpath("mcl_core")
|
exchangeclone.mcl = minetest.get_modpath("mcl_core")
|
||||||
end
|
end
|
||||||
|
@ -17,7 +17,6 @@ exchangeclone.orb_max = 51200000 -- Max capacity of Klein Star Omega in ProjectE
|
||||||
local modpath = minetest.get_modpath("exchangeclone")
|
local modpath = minetest.get_modpath("exchangeclone")
|
||||||
|
|
||||||
exchangeclone.orb_max = minetest.settings:get("exchangeclone.orb_max") or 51200000
|
exchangeclone.orb_max = minetest.settings:get("exchangeclone.orb_max") or 51200000
|
||||||
exchangeclone.num_passes = minetest.settings:get("exchangeclone.num_passes") or 10
|
|
||||||
|
|
||||||
minetest.log("action", "ExchangeClone: Registering own stuff")
|
minetest.log("action", "ExchangeClone: Registering own stuff")
|
||||||
|
|
||||||
|
|
|
@ -157,8 +157,11 @@ local function handle_inventory(player, inventory, to_list)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function check_for_table(player, inv)
|
local function check_for_table(player, inv)
|
||||||
if minetest.is_creative_enabled(player:get_player_name()) then return true end
|
-- Keeps player from accessing someone else's transmutation inventory
|
||||||
if inv and inv:get_location().name ~= "exchangeclone_transmutation_"..player:get_player_name() then return false end
|
if inv and inv:get_location().name ~= "exchangeclone_transmutation_"..player:get_player_name() then return false end
|
||||||
|
-- Allow creative players to do whatever
|
||||||
|
if minetest.is_creative_enabled(player:get_player_name()) then return true end
|
||||||
|
-- Check for nearby/wielded table(t)
|
||||||
local def = player:get_wielded_item():get_definition()
|
local def = player:get_wielded_item():get_definition()
|
||||||
local range = def and def.range
|
local range = def and def.range
|
||||||
if not range then range = player:get_inventory():get_stack("hand", 1):get_definition().range end
|
if not range then range = player:get_inventory():get_stack("hand", 1):get_definition().range end
|
||||||
|
@ -297,7 +300,7 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||||
elseif field == "search_button" or (field == "key_enter_field" and value == "search_box") then
|
elseif field == "search_button" or (field == "key_enter_field" and value == "search_box") then
|
||||||
local search = fields.search_box or ""
|
local search = fields.search_box or ""
|
||||||
player:get_meta():set_string("exchangeclone_transmutation_search", search)
|
player:get_meta():set_string("exchangeclone_transmutation_search", search)
|
||||||
exchangeclone.show_transmutation_table_formspec(player)
|
exchangeclone.show_transmutation_table_formspec(player, {page = 1})
|
||||||
elseif field == "plus1" then
|
elseif field == "plus1" then
|
||||||
add_to_output(player, 1, true)
|
add_to_output(player, 1, true)
|
||||||
elseif field == "plus5" then
|
elseif field == "plus5" then
|
||||||
|
|
|
@ -1,5 +1,2 @@
|
||||||
# Exchange Orb maximum energy (default 51200000)
|
# Exchange Orb maximum energy (default 51200000)
|
||||||
exchangeclone.orb_max (Exchange Orb maximum energy) int 51200000
|
exchangeclone.orb_max (Exchange Orb maximum energy) int 51200000
|
||||||
|
|
||||||
# The number of times ExchangeClone goes through the list of items. More means slightly longer load times, but also means that more items are likely to have energy values.
|
|
||||||
exchangeclone.num_passes (Energy value number of passes) int 10
|
|
|
@ -1,11 +1,11 @@
|
||||||
exchangeclone = {recipes = {}, energy_values = {}, group_values = {}}
|
exchangeclone = {recipes = {}, energy_values = {}, group_values = {}}
|
||||||
|
|
||||||
local old_func = minetest.register_craft
|
local old_func = minetest.register_craft
|
||||||
function minetest.register_craft(arg, ...)
|
function minetest.register_craft(data, ...)
|
||||||
if arg and arg.output then
|
if data and data.output then
|
||||||
local itemstring = ItemStack(arg.output):get_name()
|
local itemstring = ItemStack(data.output):get_name()
|
||||||
exchangeclone.recipes[itemstring] = exchangeclone.recipes[itemstring] or {}
|
exchangeclone.recipes[itemstring] = exchangeclone.recipes[itemstring] or {}
|
||||||
table.insert(exchangeclone.recipes[itemstring], table.copy(arg))
|
table.insert(exchangeclone.recipes[itemstring], table.copy(data))
|
||||||
--[[ -- reverse cooking recipes too
|
--[[ -- reverse cooking recipes too
|
||||||
if arg.type == "cooking" then
|
if arg.type == "cooking" then
|
||||||
itemstring = ItemStack(arg.recipe):get_name()
|
itemstring = ItemStack(arg.recipe):get_name()
|
||||||
|
@ -15,21 +15,18 @@ function minetest.register_craft(arg, ...)
|
||||||
table.insert(exchangeclone.recipes[itemstring], table.copy(reverse_arg))
|
table.insert(exchangeclone.recipes[itemstring], table.copy(reverse_arg))
|
||||||
end --]]
|
end --]]
|
||||||
end
|
end
|
||||||
old_func(arg, ...)
|
old_func(data, ...)
|
||||||
end
|
end
|
||||||
|
|
||||||
if minetest.get_modpath("technic") then
|
if minetest.get_modpath("technic") then
|
||||||
local function register_technic_recipe(recipe)
|
|
||||||
local result = {recipe = recipe.input, output = recipe.output, type = "technic"}
|
|
||||||
local output_itemstring = ItemStack(recipe.output):get_name()
|
|
||||||
exchangeclone.recipes[output_itemstring] = exchangeclone.recipes[output_itemstring] or {}
|
|
||||||
table.insert(exchangeclone.recipes[output_itemstring], result)
|
|
||||||
end
|
|
||||||
function exchangeclone.register_technic_recipe(typename, recipe)
|
function exchangeclone.register_technic_recipe(typename, recipe)
|
||||||
local data = technic.recipes[typename]
|
local data = technic.recipes[typename]
|
||||||
if (data.output_size == 1) then
|
if (data.output_size == 1) then
|
||||||
if data.output_size == 1 then
|
if data.output_size == 1 then
|
||||||
register_technic_recipe(table.copy(recipe))
|
local result = {recipe = recipe.input, output = recipe.output, type = "technic"}
|
||||||
|
local output_itemstring = ItemStack(recipe.output):get_name()
|
||||||
|
exchangeclone.recipes[output_itemstring] = exchangeclone.recipes[output_itemstring] or {}
|
||||||
|
table.insert(exchangeclone.recipes[output_itemstring], result)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue