item_drop/init.lua

158 lines
4.4 KiB
Lua
Raw Normal View History

2012-09-01 00:52:41 +02:00
minetest.register_globalstep(function(dtime)
2012-09-01 03:49:44 +02:00
for _,player in ipairs(minetest.get_connected_players()) do
2012-09-01 00:52:41 +02:00
local pos = player:getpos()
pos.y = pos.y+0.5
2012-09-01 03:49:44 +02:00
local inv = player:get_inventory()
for _,object in ipairs(minetest.env:get_objects_inside_radius(pos, 1)) do
if not object:is_player() and object:get_luaentity().name == "__builtin:item" then
if inv:room_for_item("main", ItemStack(object:get_luaentity().itemstring)) then
inv:add_item("main", ItemStack(object:get_luaentity().itemstring))
if object:get_luaentity().itemstring ~= "" then
minetest.sound_play("item_drop_pickup", {
to_player = player:get_player_name(),
})
end
object:get_luaentity().itemstring = ""
object:remove()
2012-09-01 00:52:41 +02:00
end
end
end
2012-09-01 03:49:44 +02:00
for _,object in ipairs(minetest.env:get_objects_inside_radius(pos, 2)) do
if not object:is_player() and object:get_luaentity().name == "__builtin:item" then
if object:get_luaentity().collect then
if inv:room_for_item("main", ItemStack(object:get_luaentity().itemstring)) then
local pos1 = pos
2012-09-02 15:57:42 +02:00
pos1.y = pos1.y+0.2
2012-09-01 03:49:44 +02:00
local pos2 = object:getpos()
local vec = {x=pos1.x-pos2.x, y=pos1.y-pos2.y, z=pos1.z-pos2.z}
2012-09-02 15:57:42 +02:00
vec.x = vec.x*3
vec.y = vec.y*3
vec.z = vec.z*3
object:setvelocity(vec)
minetest.after(1, function(args)
local lua = object:get_luaentity()
if object == nil or lua == nil or lua.itemstring == nil then
return
end
if inv:room_for_item("main", ItemStack(object:get_luaentity().itemstring)) then
inv:add_item("main", ItemStack(object:get_luaentity().itemstring))
if object:get_luaentity().itemstring ~= "" then
minetest.sound_play("item_drop_pickup", {
to_player = player:get_player_name(),
})
end
object:get_luaentity().itemstring = ""
object:remove()
else
object:setvelocity({x=0,y=0,z=0})
end
end, {player, object})
2012-09-01 00:52:41 +02:00
end
2012-09-01 03:49:44 +02:00
else
minetest.after(0.5, function(entity)
entity.collect = true
end, object:get_luaentity())
2012-09-01 00:52:41 +02:00
end
end
end
end
2012-09-01 03:49:44 +02:00
end)
2012-09-02 15:57:42 +02:00
function minetest.get_node_drops(nodename, toolname)
return {}
end
function minetest.get_drops(nodename, toolname)
local drop = ItemStack({name=nodename}):get_definition().drop
if drop == nil then
-- default drop
return {ItemStack({name=nodename})}
elseif type(drop) == "string" then
-- itemstring drop
return {ItemStack(drop)}
elseif drop.items == nil then
-- drop = {} to disable default drop
2012-09-01 03:49:44 +02:00
return {}
end
2012-09-02 15:57:42 +02:00
-- Extended drop table
local got_items = {}
local got_count = 0
local _, item, tool
for _, item in ipairs(drop.items) do
local good_rarity = true
local good_tool = true
if item.rarity ~= nil then
good_rarity = item.rarity < 1 or math.random(item.rarity) == 1
2012-09-01 03:49:44 +02:00
end
2012-09-02 15:57:42 +02:00
if item.tools ~= nil then
good_tool = false
for _, tool in ipairs(item.tools) do
if tool:sub(1, 1) == '~' then
good_tool = toolname:find(tool:sub(2)) ~= nil
else
good_tool = toolname == tool
end
if good_tool then
break
end
end
end
if good_rarity and good_tool then
got_count = got_count + 1
for _, add_item in ipairs(item.items) do
got_items[#got_items+1] = add_item
end
if drop.max_items ~= nil and got_count == drop.max_items then
break
2012-09-01 00:52:41 +02:00
end
end
end
2012-09-02 15:57:42 +02:00
return got_items
2012-09-01 03:49:44 +02:00
end
2012-09-01 00:52:41 +02:00
2012-09-02 15:57:42 +02:00
minetest.register_on_dignode(function(pos, oldnode, digger)
local drop = minetest.get_drops(oldnode.name, digger:get_wielded_item():get_name())
2012-09-02 16:12:39 +02:00
if drop == nil then
return
end
2012-09-02 15:57:42 +02:00
for _,item in ipairs(drop) do
2012-09-02 16:12:39 +02:00
if type(item) == "string" then
local obj = minetest.env:add_item(pos, item)
if obj ~= nil then
obj:get_luaentity().collect = true
local x = math.random(1, 5)
if math.random(1,2) == 1 then
x = -x
end
local z = math.random(1, 5)
if math.random(1,2) == 1 then
z = -z
end
obj:setvelocity({x=1/x, y=obj:getvelocity().y, z=1/z})
2012-09-01 00:52:41 +02:00
end
2012-09-02 16:12:39 +02:00
else
for i=1,item:get_count() do
local obj = minetest.env:add_item(pos, item:get_name())
if obj ~= nil then
obj:get_luaentity().collect = true
local x = math.random(1, 5)
if math.random(1,2) == 1 then
x = -x
end
local z = math.random(1, 5)
if math.random(1,2) == 1 then
z = -z
end
obj:setvelocity({x=1/x, y=obj:getvelocity().y, z=1/z})
2012-09-01 00:52:41 +02:00
end
end
end
end
end)