add technic tool if mod is present

This commit is contained in:
berengma 2018-01-14 11:54:42 +01:00
parent 600c603862
commit 4ebbc9c295
2 changed files with 167 additions and 71 deletions

View File

@ -1,31 +1,9 @@
local USES = 200
local TechnicMaxCharge = 300000
local mode = {}
local function parti(pos)
minetest.add_particlespawner(25, 0.3,
pos, pos,
{x=2, y=0.2, z=2}, {x=-2, y=2, z=-2},
{x=0, y=-6, z=0}, {x=0, y=-10, z=0},
0.2, 1,
0.2, 2,
true, "mychisel_parti.png")
end
mode = "1"
minetest.register_tool( "mychisel:chisel",{
description = "Chisel",
inventory_image = "mychisel_chisel.png",
wield_image = "mychisel_chisel.png",
on_use = function(itemstack, user, pointed_thing)
if pointed_thing.type ~= "node" then
return
end
local pos = pointed_thing.under
local node = minetest.get_node(pos)
local wehavetechnic = minetest.get_modpath("technic")
local default_material = {
{"default:cobble", "default_cobble", "Cobble"},
@ -45,20 +23,54 @@ minetest.register_tool( "mychisel:chisel",{
{"default:desert_stonebrick","default_desert_stone_brick", "Desert Stone Brick"},
}
local function parti(pos)
minetest.add_particlespawner(25, 0.3,
pos, pos,
{x=2, y=0.2, z=2}, {x=-2, y=2, z=-2},
{x=0, y=-6, z=0}, {x=0, y=-10, z=0},
0.2, 1,
0.2, 2,
true, "mychisel_parti.png")
end
local function change_mode(user)
local usr = user:get_player_name()
if mode == "1" then
mode = "2"
minetest.chat_send_player(usr,"Horizontal Groove")
elseif mode == "2" then
mode = "3"
minetest.chat_send_player(usr,"Vertical Groove")
elseif mode == "3" then
mode = "4"
minetest.chat_send_player(usr,"Cross Grooves")
elseif mode == "4" then
mode = "5"
minetest.chat_send_player(usr,"Square")
elseif mode == "5" then
mode = "1"
minetest.chat_send_player(usr,"Chisel 4 Edges")
end
end
local function chiselme(pos, user, node)
for i in ipairs (default_material) do
local item = default_material [i][1]
local mat = default_material [i][2]
local desc = default_material [i][3]
if pointed_thing.type ~= "node" then
return
end
if minetest.is_protected(pos, user:get_player_name()) then
minetest.record_protection_violation(pos, user:get_player_name())
return
end
if mode == "1" then
if node.name == item then
@ -175,6 +187,33 @@ minetest.register_tool( "mychisel:chisel",{
end
end
return
end
if not wehavetechnic then
minetest.register_tool( "mychisel:chisel",{
description = "Chisel",
inventory_image = "mychisel_chisel.png",
wield_image = "mychisel_chisel.png",
on_use = function(itemstack, user, pointed_thing)
if pointed_thing.type ~= "node" then
return
end
local pos = pointed_thing.under
local node = minetest.get_node(pos)
if minetest.is_protected(pos, user:get_player_name()) then
minetest.record_protection_violation(pos, user:get_player_name())
return
end
chiselme(pos,user,node)
if not minetest.setting_getbool("creative_mode") then
itemstack:add_wear(65535 / (USES - 1))
@ -186,32 +225,8 @@ minetest.register_tool( "mychisel:chisel",{
on_place = function(itemstack, user, pointed_thing)
local usr = user:get_player_name()
if mode == "1" then
mode = "2"
minetest.chat_send_player(usr,"Horizontal Groove")
elseif mode == "2" then
mode = "3"
minetest.chat_send_player(usr,"Vertical Groove")
elseif mode == "3" then
mode = "4"
minetest.chat_send_player(usr,"Cross Grooves")
elseif mode == "4" then
mode = "5"
minetest.chat_send_player(usr,"Square")
elseif mode == "5" then
mode = "1"
minetest.chat_send_player(usr,"Chisel 4 Edges")
end
if not minetest.setting_getbool("creative_mode") then
itemstack:add_wear(65535 / (USES - 1))
end
change_mode(user)
return itemstack
@ -226,3 +241,83 @@ minetest.register_craft({
{"wool:brown"},
},
})
else
local S = technic.getter
technic.register_power_tool("mychisel:chisel",TechnicMaxCharge)
local chisel_charge_per_node =math.floor( TechnicMaxCharge / USES )
minetest.register_tool("mychisel:chisel", {
description = S("Chisel"),
inventory_image = "mychisel_chisel.png",
stack_max = 1,
wear_represents = "technic_RE_charge",
on_refill = technic.refill_RE_charge,
on_use = function(itemstack, user, pointed_thing)
if pointed_thing.type ~= "node" then
return
end
local pos = pointed_thing.under
local node = minetest.get_node(pos)
if minetest.is_protected(pos, user:get_player_name()) then
minetest.record_protection_violation(pos, user:get_player_name())
return
end
local meta = minetest.deserialize(itemstack:get_metadata())
if not meta or not meta.charge or
meta.charge < chisel_charge_per_node then
return
end
chiselme(pos,user,node)
meta.charge = meta.charge - chisel_charge_per_node
if not technic.creative_mode then
technic.set_RE_wear(itemstack, meta.charge, TechnicMaxCharge)
itemstack:set_metadata(minetest.serialize(meta))
end
return itemstack
end,
on_place = function(itemstack, user, pointed_thing)
change_mode(user)
return itemstack
end
})
minetest.register_craft({
output = "mychisel:chisel",
recipe = {
{"default:diamond", "default:diamond" , "default:diamond" },
{"", "technic:stainless_steel_ingot", ""},
{"", "technic:battery", ""},
}
})
end

View File

@ -1 +1,2 @@
default
technic?