mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-14 06:10:31 +02:00
Compare commits
2 Commits
43acec2900
...
140701c99e
Author | SHA1 | Date | |
---|---|---|---|
140701c99e | |||
1c219487d3 |
@ -28,6 +28,8 @@ read_globals = {
|
|||||||
|
|
||||||
"protector", "isprotect",
|
"protector", "isprotect",
|
||||||
"homedecor_expect_infinite_stacks",
|
"homedecor_expect_infinite_stacks",
|
||||||
|
|
||||||
|
"craftguide", "i3"
|
||||||
}
|
}
|
||||||
|
|
||||||
files["concrete/init.lua"].ignore = { "steel_ingot" }
|
files["concrete/init.lua"].ignore = { "steel_ingot" }
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
default
|
|
||||||
pipeworks
|
|
||||||
technic_worldgen
|
|
||||||
basic_materials
|
|
||||||
bucket?
|
|
||||||
screwdriver?
|
|
||||||
mesecons?
|
|
||||||
mesecons_mvps?
|
|
||||||
digilines?
|
|
||||||
digiline_remote?
|
|
||||||
intllib?
|
|
||||||
unified_inventory?
|
|
||||||
vector_extras?
|
|
||||||
dye?
|
|
@ -136,10 +136,15 @@ Additional definition fields:
|
|||||||
* Specifies how the tool wear level is handled. Available modes:
|
* Specifies how the tool wear level is handled. Available modes:
|
||||||
* `"mechanical_wear"`: represents physical damage
|
* `"mechanical_wear"`: represents physical damage
|
||||||
* `"technic_RE_charge"`: represents electrical charge
|
* `"technic_RE_charge"`: represents electrical charge
|
||||||
* `<itemdef>.technic_run(pos, node)`
|
* `<itemdef>.technic_run = function(pos, node) ...`
|
||||||
* This function is currently used to update the node.
|
* This callback is used to update the node.
|
||||||
Modders have to manually change the information about supply etc. in the
|
Modders have to manually change the information about supply etc. in the
|
||||||
node metadata.
|
node metadata.
|
||||||
|
* `<itemdef>.technic_disabled_machine_name = "string"`
|
||||||
|
* Specifies the machine's node name to use when it's not connected connected to a network
|
||||||
|
* `<itemdef>.technic_on_disable = function(pos, node) ...`
|
||||||
|
* This callback is run when the machine is no longer connected to a technic-powered network.
|
||||||
|
|
||||||
|
|
||||||
## Node Metadata fields
|
## Node Metadata fields
|
||||||
Nodes connected to the network will have one or more of these parameters as meta
|
Nodes connected to the network will have one or more of these parameters as meta
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
local have_ui = minetest.get_modpath("unified_inventory")
|
local have_ui = minetest.get_modpath("unified_inventory")
|
||||||
|
local have_cg = minetest.get_modpath("craftguide")
|
||||||
|
local have_i3 = minetest.get_modpath("i3")
|
||||||
|
|
||||||
technic.recipes = { cooking = { input_size = 1, output_size = 1 } }
|
technic.recipes = { cooking = { input_size = 1, output_size = 1 } }
|
||||||
function technic.register_recipe_type(typename, origdata)
|
function technic.register_recipe_type(typename, origdata)
|
||||||
@ -6,12 +8,24 @@ function technic.register_recipe_type(typename, origdata)
|
|||||||
for k, v in pairs(origdata) do data[k] = v end
|
for k, v in pairs(origdata) do data[k] = v end
|
||||||
data.input_size = data.input_size or 1
|
data.input_size = data.input_size or 1
|
||||||
data.output_size = data.output_size or 1
|
data.output_size = data.output_size or 1
|
||||||
if have_ui and unified_inventory.register_craft_type and data.output_size == 1 then
|
if data.output_size == 1 then
|
||||||
unified_inventory.register_craft_type(typename, {
|
if have_ui and unified_inventory.register_craft_type then
|
||||||
description = data.description,
|
unified_inventory.register_craft_type(typename, {
|
||||||
width = data.input_size,
|
description = data.description,
|
||||||
height = 1,
|
width = data.input_size,
|
||||||
})
|
height = 1,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
if have_cg and craftguide.register_craft_type then
|
||||||
|
craftguide.register_craft_type(typename, {
|
||||||
|
description = data.description,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
if have_i3 then
|
||||||
|
i3.register_craft_type(typename, {
|
||||||
|
description = data.description,
|
||||||
|
})
|
||||||
|
end
|
||||||
end
|
end
|
||||||
data.recipes = {}
|
data.recipes = {}
|
||||||
technic.recipes[typename] = data
|
technic.recipes[typename] = data
|
||||||
@ -59,6 +73,27 @@ local function register_recipe(typename, data)
|
|||||||
width = 0,
|
width = 0,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
if (have_cg or have_i3) and technic.recipes[typename].output_size == 1 then
|
||||||
|
local result = data.output
|
||||||
|
if (type(result)=="table") then
|
||||||
|
result = result[1]
|
||||||
|
end
|
||||||
|
local items = table.concat(data.input, ", ")
|
||||||
|
if have_cg and craftguide.register_craft then
|
||||||
|
craftguide.register_craft({
|
||||||
|
type = typename,
|
||||||
|
result = result,
|
||||||
|
items = {items},
|
||||||
|
})
|
||||||
|
end
|
||||||
|
if have_i3 then
|
||||||
|
i3.register_craft({
|
||||||
|
type = typename,
|
||||||
|
result = result,
|
||||||
|
items = {items},
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function technic.register_recipe(typename, data)
|
function technic.register_recipe(typename, data)
|
||||||
|
@ -465,16 +465,17 @@ minetest.register_abm({
|
|||||||
for tier, machines in pairs(technic.machines) do
|
for tier, machines in pairs(technic.machines) do
|
||||||
if machines[node.name] and switching_station_timeout_count(pos, tier) then
|
if machines[node.name] and switching_station_timeout_count(pos, tier) then
|
||||||
local nodedef = minetest.registered_nodes[node.name]
|
local nodedef = minetest.registered_nodes[node.name]
|
||||||
if nodedef and nodedef.technic_disabled_machine_name then
|
|
||||||
node.name = nodedef.technic_disabled_machine_name
|
|
||||||
minetest.swap_node(pos, node)
|
|
||||||
elseif nodedef and nodedef.technic_on_disable then
|
|
||||||
nodedef.technic_on_disable(pos, node)
|
|
||||||
end
|
|
||||||
if nodedef then
|
if nodedef then
|
||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
meta:set_string("infotext", S("%s Has No Network"):format(nodedef.description))
|
meta:set_string("infotext", S("%s Has No Network"):format(nodedef.description))
|
||||||
end
|
end
|
||||||
|
if nodedef and nodedef.technic_disabled_machine_name then
|
||||||
|
node.name = nodedef.technic_disabled_machine_name
|
||||||
|
minetest.swap_node(pos, node)
|
||||||
|
end
|
||||||
|
if nodedef and nodedef.technic_on_disable then
|
||||||
|
nodedef.technic_on_disable(pos, node)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
name = technic
|
name = technic
|
||||||
depends = default, pipeworks, technic_worldgen, basic_materials
|
depends = default, pipeworks, technic_worldgen, basic_materials
|
||||||
optional_depends = bucket, screwdriver, mesecons, mesecons_mvps, digilines, digiline_remote, intllib, unified_inventory, vector_extras, dye
|
optional_depends = bucket, screwdriver, mesecons, mesecons_mvps, digilines, digiline_remote, intllib, unified_inventory, vector_extras, dye, craftguide,i3
|
||||||
|
Reference in New Issue
Block a user