Merge (de)constructor code into `deprecated_stuff.lua`
This commit is contained in:
parent
b20a47e4b6
commit
5548c91ecf
|
@ -1,89 +0,0 @@
|
|||
local S = minetest.get_translator()
|
||||
|
||||
local formspec =
|
||||
"size["..(exchangeclone.mcl and 9 or 8)..",9]"..
|
||||
"label[2,1;"..S("Star").."]"..
|
||||
"list[context;fuel;2,2;1,1;]"..
|
||||
"label[3,1;"..S("Source").."]"..
|
||||
"list[context;src;3,2;1,1;]"..
|
||||
"label[5,1;"..S("Output").."]"..
|
||||
"list[context;dst;5,2;1,1;]"..
|
||||
exchangeclone.inventory_formspec(0,5)..
|
||||
"listring[current_player;main]"..
|
||||
"listring[context;src]"..
|
||||
"listring[current_player;main]"..
|
||||
"listring[context;fuel]"..
|
||||
"listring[current_player;main]"..
|
||||
"listring[context;dst]"
|
||||
if exchangeclone.mcl then
|
||||
formspec = formspec..
|
||||
mcl_formspec.get_itemslot_bg(2,2,1,1)..
|
||||
mcl_formspec.get_itemslot_bg(3,2,1,1)..
|
||||
mcl_formspec.get_itemslot_bg(5,2,1,1)
|
||||
end
|
||||
|
||||
minetest.register_alias("exchangeclone:element_constructor", "exchangeclone:constructor")
|
||||
|
||||
local function on_construct(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
local inv = meta:get_inventory()
|
||||
inv:set_size("fuel", 1)
|
||||
inv:set_size("src", 1)
|
||||
inv:set_size("dst", 1)
|
||||
meta:set_string("formspec", formspec)
|
||||
meta:set_string("infotext", S("Constructor"))
|
||||
end
|
||||
|
||||
local function allow_metadata_inventory_put(pos, listname, index, stack, player)
|
||||
return 0
|
||||
end
|
||||
|
||||
local function allow_metadata_inventory_move(pos, from_list, from_index, to_list, to_index, count, player)
|
||||
return 0
|
||||
end
|
||||
|
||||
local function allow_metadata_inventory_take(pos, listname, index, stack, player)
|
||||
if minetest.is_protected(pos, player:get_player_name()) then
|
||||
return 0
|
||||
end
|
||||
return stack:get_count()
|
||||
end
|
||||
|
||||
minetest.register_node("exchangeclone:constructor", {
|
||||
description = "Constructor (DEPRECATED)\nUse the EMC Link instead. This will be removed in a future version.",
|
||||
tiles = {
|
||||
"exchangeclone_constructor_up.png",
|
||||
"exchangeclone_constructor_down.png",
|
||||
"exchangeclone_constructor_right.png",
|
||||
"exchangeclone_constructor_right.png",
|
||||
"exchangeclone_constructor_right.png",
|
||||
"exchangeclone_constructor_right.png",
|
||||
},
|
||||
groups = {cracky = 2, container = exchangeclone.mcl2 and 2 or 4, pickaxey = 2, not_in_creative_inventory = 1, not_in_craft_guide = 1},
|
||||
_mcl_hardness = 3,
|
||||
_mcl_blast_resistance = 6,
|
||||
sounds = exchangeclone.sound_mod.node_sound_metal_defaults(),
|
||||
is_ground_content = false,
|
||||
can_dig = exchangeclone.can_dig,
|
||||
after_dig_node = exchangeclone.drop_after_dig({"src", "fuel", "dst"}),
|
||||
on_construct = on_construct,
|
||||
on_blast = exchangeclone.on_blast({"src", "fuel", "dst"}),
|
||||
allow_metadata_inventory_put = allow_metadata_inventory_put,
|
||||
allow_metadata_inventory_move = allow_metadata_inventory_move,
|
||||
allow_metadata_inventory_take = allow_metadata_inventory_take,
|
||||
})
|
||||
|
||||
local recipe_ingredient = "default:pick_diamond"
|
||||
|
||||
if exchangeclone.mcl then
|
||||
recipe_ingredient = "mcl_tools:pick_diamond"
|
||||
end
|
||||
minetest.register_craft({
|
||||
type = "shaped",
|
||||
output = "exchangeclone:constructor",
|
||||
recipe = {
|
||||
{"exchangeclone:klein_star_drei"},
|
||||
{recipe_ingredient},
|
||||
{"exchangeclone:klein_star_drei"}
|
||||
}
|
||||
})
|
|
@ -1,85 +0,0 @@
|
|||
local S = minetest.get_translator()
|
||||
|
||||
local formspec =
|
||||
"size["..(exchangeclone.mcl and 9 or 8)..",9]"..
|
||||
"label[2,1;"..S("Input").."]"..
|
||||
"list[context;src;2,2;1,1;]"..
|
||||
"label[5,1;"..S("Star").."]"..
|
||||
"list[context;fuel;5,2;1,1;]"..
|
||||
exchangeclone.inventory_formspec(0,5)..
|
||||
"listring[current_player;main]"..
|
||||
"listring[context;src]"..
|
||||
"listring[current_player;main]"..
|
||||
"listring[context;fuel]"..
|
||||
"listring[current_player;main]"..
|
||||
"listring[context;dst]"
|
||||
if exchangeclone.mcl then
|
||||
formspec = formspec..
|
||||
mcl_formspec.get_itemslot_bg(2,2,1,1)..
|
||||
mcl_formspec.get_itemslot_bg(5,2,1,1)
|
||||
end
|
||||
|
||||
minetest.register_alias("exchangeclone:element_deconstructor", "exchangeclone:deconstructor")
|
||||
|
||||
local function on_construct(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
local inv = meta:get_inventory()
|
||||
inv:set_size("src", 1)
|
||||
inv:set_size("fuel", 1)
|
||||
meta:set_string("formspec", formspec)
|
||||
meta:set_string("infotext", S("Deconstructor"))
|
||||
end
|
||||
|
||||
local function allow_metadata_inventory_put(pos, listname, index, stack, player)
|
||||
return 0
|
||||
end
|
||||
|
||||
local function allow_metadata_inventory_move(pos, from_list, from_index, to_list, to_index, count, player)
|
||||
return 0
|
||||
end
|
||||
|
||||
local function allow_metadata_inventory_take(pos, listname, index, stack, player)
|
||||
if minetest.is_protected(pos, player:get_player_name()) then
|
||||
return 0
|
||||
end
|
||||
return stack:get_count()
|
||||
end
|
||||
|
||||
minetest.register_node("exchangeclone:deconstructor", {
|
||||
description = S("Deconstructor (DEPRECATED)\nUse the EMC Link instead. This will be removed in a future version."),
|
||||
tiles = {
|
||||
"exchangeclone_deconstructor_up.png",
|
||||
"exchangeclone_deconstructor_down.png",
|
||||
"exchangeclone_deconstructor_right.png",
|
||||
"exchangeclone_deconstructor_right.png",
|
||||
"exchangeclone_deconstructor_right.png",
|
||||
"exchangeclone_deconstructor_right.png",
|
||||
},
|
||||
groups = {cracky = 2, container = exchangeclone.mcl2 and 2 or 4, pickaxey = 2, not_in_creative_inventory = 1, not_in_craft_guide = 1},
|
||||
_mcl_hardness = 3,
|
||||
_mcl_blast_resistance = 6,
|
||||
sounds = exchangeclone.sound_mod.node_sound_metal_defaults(),
|
||||
is_ground_content = false,
|
||||
can_dig = exchangeclone.can_dig,
|
||||
after_dig_node = exchangeclone.drop_after_dig({"src", "fuel"}),
|
||||
on_construct = on_construct,
|
||||
on_blast = exchangeclone.on_blast({"src", "fuel"}),
|
||||
allow_metadata_inventory_put = allow_metadata_inventory_put,
|
||||
allow_metadata_inventory_move = allow_metadata_inventory_move,
|
||||
allow_metadata_inventory_take = allow_metadata_inventory_take,
|
||||
})
|
||||
|
||||
local recipe_ingredient = "default:furnace"
|
||||
|
||||
if exchangeclone.mcl then
|
||||
recipe_ingredient = "mcl_furnaces:furnace"
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
output = "exchangeclone:deconstructor",
|
||||
recipe = {
|
||||
{"exchangeclone:klein_star_drei"},
|
||||
{recipe_ingredient},
|
||||
{"exchangeclone:klein_star_drei"}
|
||||
}
|
||||
})
|
|
@ -0,0 +1,126 @@
|
|||
local S = minetest.get_translator()
|
||||
|
||||
local c_formspec =
|
||||
"size["..(exchangeclone.mcl and 9 or 8)..",9]"..
|
||||
"label[2,1;"..S("Star").."]"..
|
||||
"list[context;fuel;2,2;1,1;]"..
|
||||
"label[3,1;"..S("Source").."]"..
|
||||
"list[context;src;3,2;1,1;]"..
|
||||
"label[5,1;"..S("Output").."]"..
|
||||
"list[context;dst;5,2;1,1;]"..
|
||||
exchangeclone.inventory_formspec(0,5)..
|
||||
"listring[current_player;main]"..
|
||||
"listring[context;src]"..
|
||||
"listring[current_player;main]"..
|
||||
"listring[context;fuel]"..
|
||||
"listring[current_player;main]"..
|
||||
"listring[context;dst]"
|
||||
if exchangeclone.mcl then
|
||||
c_formspec = c_formspec..
|
||||
mcl_formspec.get_itemslot_bg(2,2,1,1)..
|
||||
mcl_formspec.get_itemslot_bg(3,2,1,1)..
|
||||
mcl_formspec.get_itemslot_bg(5,2,1,1)
|
||||
end
|
||||
|
||||
minetest.register_alias("exchangeclone:element_constructor", "exchangeclone:constructor")
|
||||
|
||||
local function c_on_construct(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
local inv = meta:get_inventory()
|
||||
inv:set_size("fuel", 1)
|
||||
inv:set_size("src", 1)
|
||||
inv:set_size("dst", 1)
|
||||
meta:set_string("formspec", c_formspec)
|
||||
meta:set_string("infotext", "Cheater")
|
||||
end
|
||||
|
||||
local function return_zero() return 0 end
|
||||
|
||||
local function allow_metadata_inventory_take(pos, listname, index, stack, player)
|
||||
if minetest.is_protected(pos, player:get_player_name()) then
|
||||
return 0
|
||||
end
|
||||
return stack:get_count()
|
||||
end
|
||||
|
||||
minetest.register_node("exchangeclone:constructor", {
|
||||
description = "Constructor (DEPRECATED)\nUse the new EMC Link instead. This will be removed in a future version.",
|
||||
tiles = {
|
||||
"exchangeclone_constructor_up.png",
|
||||
"exchangeclone_constructor_down.png",
|
||||
"exchangeclone_constructor_right.png",
|
||||
"exchangeclone_constructor_right.png",
|
||||
"exchangeclone_constructor_right.png",
|
||||
"exchangeclone_constructor_right.png",
|
||||
},
|
||||
groups = {cracky = 2, container = exchangeclone.mcl2 and 2 or 4, pickaxey = 2, not_in_creative_inventory = 1, not_in_craft_guide = 1},
|
||||
_mcl_hardness = 3,
|
||||
_mcl_blast_resistance = 6,
|
||||
sounds = exchangeclone.sound_mod.node_sound_metal_defaults(),
|
||||
is_ground_content = false,
|
||||
can_dig = exchangeclone.can_dig,
|
||||
after_dig_node = exchangeclone.drop_after_dig({"src", "fuel", "dst"}),
|
||||
on_construct = c_on_construct,
|
||||
on_blast = exchangeclone.on_blast({"src", "fuel", "dst"}),
|
||||
allow_metadata_inventory_put = return_zero,
|
||||
allow_metadata_inventory_move = return_zero,
|
||||
allow_metadata_inventory_take = allow_metadata_inventory_take,
|
||||
emc_value = 811012,
|
||||
})
|
||||
|
||||
local d_formspec =
|
||||
"size["..(exchangeclone.mcl and 9 or 8)..",9]"..
|
||||
"label[2,1;"..S("Input").."]"..
|
||||
"list[context;src;2,2;1,1;]"..
|
||||
"label[5,1;"..S("Star").."]"..
|
||||
"list[context;fuel;5,2;1,1;]"..
|
||||
exchangeclone.inventory_formspec(0,5)..
|
||||
"listring[current_player;main]"..
|
||||
"listring[context;src]"..
|
||||
"listring[current_player;main]"..
|
||||
"listring[context;fuel]"..
|
||||
"listring[current_player;main]"..
|
||||
"listring[context;dst]"
|
||||
if exchangeclone.mcl then
|
||||
d_formspec = d_formspec..
|
||||
mcl_formspec.get_itemslot_bg(2,2,1,1)..
|
||||
mcl_formspec.get_itemslot_bg(5,2,1,1)
|
||||
end
|
||||
|
||||
minetest.register_alias("exchangeclone:element_deconstructor", "exchangeclone:deconstructor")
|
||||
|
||||
local function d_on_construct(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
local inv = meta:get_inventory()
|
||||
inv:set_size("src", 1)
|
||||
inv:set_size("fuel", 1)
|
||||
meta:set_string("formspec", d_formspec)
|
||||
meta:set_string("infotext", "I thought I made this unplaceable")
|
||||
end
|
||||
|
||||
minetest.register_node("exchangeclone:deconstructor", {
|
||||
description = S("Deconstructor (DEPRECATED)\nUse the new EMC Link instead. This will be removed in a future version."),
|
||||
tiles = {
|
||||
"exchangeclone_deconstructor_up.png",
|
||||
"exchangeclone_deconstructor_down.png",
|
||||
"exchangeclone_deconstructor_right.png",
|
||||
"exchangeclone_deconstructor_right.png",
|
||||
"exchangeclone_deconstructor_right.png",
|
||||
"exchangeclone_deconstructor_right.png",
|
||||
},
|
||||
groups = {cracky = 2, container = exchangeclone.mcl2 and 2 or 4, pickaxey = 2, not_in_creative_inventory = 1, not_in_craft_guide = 1},
|
||||
_mcl_hardness = 3,
|
||||
_mcl_blast_resistance = 6,
|
||||
sounds = exchangeclone.sound_mod.node_sound_metal_defaults(),
|
||||
is_ground_content = false,
|
||||
can_dig = exchangeclone.can_dig,
|
||||
after_dig_node = exchangeclone.drop_after_dig({"src", "fuel"}),
|
||||
on_construct = d_on_construct,
|
||||
on_blast = exchangeclone.on_blast({"src", "fuel"}),
|
||||
on_secondary_use = function() return end,
|
||||
on_place = function() return end,
|
||||
allow_metadata_inventory_put = return_zero,
|
||||
allow_metadata_inventory_move = return_zero,
|
||||
allow_metadata_inventory_take = allow_metadata_inventory_take,
|
||||
emc_value = 786440,
|
||||
})
|
|
@ -107,9 +107,9 @@ end
|
|||
if exchangeclone.mcl2 then
|
||||
mcl_item_id.set_mod_namespace("exchangeclone")
|
||||
end
|
||||
|
||||
local files = {
|
||||
"constructor",
|
||||
"deconstructor",
|
||||
"deprecated_stuff",
|
||||
"energy_collector",
|
||||
"klein_stars",
|
||||
"craftitems",
|
||||
|
|
Loading…
Reference in New Issue