2019-09-10 19:09:51 +02:00
|
|
|
-- bones/init.lua
|
|
|
|
|
2013-05-18 16:06:57 +02:00
|
|
|
-- Minetest 0.4 mod: bones
|
2016-03-21 22:22:26 +01:00
|
|
|
-- See README.txt for licensing and other information.
|
2014-12-24 20:54:24 +01:00
|
|
|
|
2019-09-10 19:09:51 +02:00
|
|
|
-- Load support for MT game translation.
|
|
|
|
local S = minetest.get_translator("bones")
|
2023-05-05 07:31:06 +02:00
|
|
|
-- bones are supposed to hold up to 4*8+6+4*3*8+4+3*3 item slots:
|
|
|
|
-- 4*8 for the main inventory
|
|
|
|
-- 6 for the 3d_armor
|
|
|
|
-- (at most) 4*3*8 for 4 backpack worth of items (unified inventory)
|
|
|
|
-- 4 more for the actual backpacks
|
|
|
|
-- 3*3 more for the crafting grid
|
|
|
|
-- that adds up to 147, so 150 slots would be sufficient
|
|
|
|
local cols=15
|
|
|
|
local rows=10
|
|
|
|
|
|
|
|
bones = {
|
|
|
|
private={
|
|
|
|
dead_player_callbacks={}
|
|
|
|
},
|
|
|
|
public={}
|
|
|
|
}
|
2018-02-20 19:15:03 +01:00
|
|
|
|
2013-05-18 16:06:57 +02:00
|
|
|
local function is_owner(pos, name)
|
2013-05-25 00:40:03 +02:00
|
|
|
local owner = minetest.get_meta(pos):get_string("owner")
|
2016-03-16 19:34:07 +01:00
|
|
|
if owner == "" or owner == name or minetest.check_player_privs(name, "protection_bypass") then
|
2013-05-18 16:06:57 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2016-03-21 22:22:26 +01:00
|
|
|
local bones_formspec =
|
2023-05-05 07:31:06 +02:00
|
|
|
"size["..cols..","..(rows+5).."]" ..
|
|
|
|
"list[current_name;main;0,0.3;"..cols..","..rows..";]" ..
|
|
|
|
"list[current_player;main;"..((cols-8)/2)..","..rows..".85;8,1;]" ..
|
|
|
|
"list[current_player;main;"..((cols-8)/2)..","..(rows+2)..".08;8,3;8]" ..
|
2016-03-16 12:10:25 +01:00
|
|
|
"listring[current_name;main]" ..
|
|
|
|
"listring[current_player;main]" ..
|
2014-12-24 20:54:24 +01:00
|
|
|
default.get_hotbar_bg(0,4.85)
|
|
|
|
|
2017-05-22 15:41:17 +02:00
|
|
|
local share_bones_time = tonumber(minetest.settings:get("share_bones_time")) or 1200
|
|
|
|
local share_bones_time_early = tonumber(minetest.settings:get("share_bones_time_early")) or share_bones_time / 4
|
2014-12-27 16:46:03 +01:00
|
|
|
|
2023-07-05 23:14:02 +02:00
|
|
|
local bones_def = {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Bones"),
|
2013-05-18 16:06:57 +02:00
|
|
|
tiles = {
|
2016-07-30 02:49:49 +02:00
|
|
|
"bones_top.png^[transform2",
|
2013-05-18 16:06:57 +02:00
|
|
|
"bones_bottom.png",
|
|
|
|
"bones_side.png",
|
|
|
|
"bones_side.png",
|
|
|
|
"bones_rear.png",
|
|
|
|
"bones_front.png"
|
|
|
|
},
|
|
|
|
paramtype2 = "facedir",
|
2016-03-21 22:22:26 +01:00
|
|
|
groups = {dig_immediate = 2},
|
2016-07-30 02:49:49 +02:00
|
|
|
sounds = default.node_sound_gravel_defaults(),
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2013-05-18 16:06:57 +02:00
|
|
|
can_dig = function(pos, player)
|
2013-05-25 00:40:03 +02:00
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
2016-02-26 00:05:23 +01:00
|
|
|
local name = ""
|
|
|
|
if player then
|
|
|
|
name = player:get_player_name()
|
|
|
|
end
|
|
|
|
return is_owner(pos, name) and inv:is_empty("main")
|
2013-05-18 16:06:57 +02:00
|
|
|
end,
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2013-05-18 16:06:57 +02:00
|
|
|
allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player)
|
|
|
|
if is_owner(pos, player:get_player_name()) then
|
|
|
|
return count
|
|
|
|
end
|
|
|
|
return 0
|
|
|
|
end,
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2013-05-18 16:06:57 +02:00
|
|
|
allow_metadata_inventory_put = function(pos, listname, index, stack, player)
|
|
|
|
return 0
|
|
|
|
end,
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2013-05-18 16:06:57 +02:00
|
|
|
allow_metadata_inventory_take = function(pos, listname, index, stack, player)
|
|
|
|
if is_owner(pos, player:get_player_name()) then
|
|
|
|
return stack:get_count()
|
|
|
|
end
|
|
|
|
return 0
|
|
|
|
end,
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2013-05-18 16:06:57 +02:00
|
|
|
on_metadata_inventory_take = function(pos, listname, index, stack, player)
|
2013-05-25 00:40:03 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
2014-06-14 07:36:54 +02:00
|
|
|
if meta:get_inventory():is_empty("main") then
|
2017-10-02 11:01:01 +02:00
|
|
|
local inv = player:get_inventory()
|
|
|
|
if inv:room_for_item("main", {name = "bones:bones"}) then
|
|
|
|
inv:add_item("main", {name = "bones:bones"})
|
|
|
|
else
|
|
|
|
minetest.add_item(pos, "bones:bones")
|
|
|
|
end
|
2014-06-14 07:36:54 +02:00
|
|
|
minetest.remove_node(pos)
|
2013-05-18 16:06:57 +02:00
|
|
|
end
|
|
|
|
end,
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2014-04-15 17:13:46 +02:00
|
|
|
on_punch = function(pos, node, player)
|
2016-03-21 22:22:26 +01:00
|
|
|
if not is_owner(pos, player:get_player_name()) then
|
2014-04-15 17:13:46 +02:00
|
|
|
return
|
|
|
|
end
|
2016-03-21 22:22:26 +01:00
|
|
|
|
|
|
|
if minetest.get_meta(pos):get_string("infotext") == "" then
|
2015-02-03 20:23:00 +01:00
|
|
|
return
|
|
|
|
end
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2014-04-15 17:13:46 +02:00
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
|
|
|
local player_inv = player:get_inventory()
|
|
|
|
local has_space = true
|
2016-03-21 22:22:26 +01:00
|
|
|
|
|
|
|
for i = 1, inv:get_size("main") do
|
2014-04-15 17:13:46 +02:00
|
|
|
local stk = inv:get_stack("main", i)
|
|
|
|
if player_inv:room_for_item("main", stk) then
|
|
|
|
inv:set_stack("main", i, nil)
|
|
|
|
player_inv:add_item("main", stk)
|
|
|
|
else
|
|
|
|
has_space = false
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2014-04-15 17:13:46 +02:00
|
|
|
-- remove bones if player emptied them
|
|
|
|
if has_space then
|
2015-02-03 20:23:00 +01:00
|
|
|
if player_inv:room_for_item("main", {name = "bones:bones"}) then
|
|
|
|
player_inv:add_item("main", {name = "bones:bones"})
|
|
|
|
else
|
|
|
|
minetest.add_item(pos,"bones:bones")
|
|
|
|
end
|
2014-04-15 17:13:46 +02:00
|
|
|
minetest.remove_node(pos)
|
|
|
|
end
|
|
|
|
end,
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2013-05-18 16:06:57 +02:00
|
|
|
on_timer = function(pos, elapsed)
|
2013-05-25 00:40:03 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
2014-12-27 16:46:03 +01:00
|
|
|
local time = meta:get_int("time") + elapsed
|
|
|
|
if time >= share_bones_time then
|
2019-09-10 19:09:51 +02:00
|
|
|
meta:set_string("infotext", S("@1's old bones", meta:get_string("owner")))
|
2013-05-18 16:06:57 +02:00
|
|
|
meta:set_string("owner", "")
|
|
|
|
else
|
2014-12-27 16:46:03 +01:00
|
|
|
meta:set_int("time", time)
|
2013-05-18 16:06:57 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
end,
|
2016-04-16 04:21:45 +02:00
|
|
|
on_blast = function(pos)
|
|
|
|
end,
|
2023-07-05 23:14:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
default.set_inventory_action_loggers(bones_def, "bones")
|
|
|
|
|
|
|
|
minetest.register_node("bones:bones", bones_def)
|
2013-05-18 16:06:57 +02:00
|
|
|
|
2014-12-27 16:46:03 +01:00
|
|
|
local function may_replace(pos, player)
|
|
|
|
local node_name = minetest.get_node(pos).name
|
|
|
|
local node_definition = minetest.registered_nodes[node_name]
|
|
|
|
|
2016-03-21 22:22:26 +01:00
|
|
|
-- if the node is unknown, we return false
|
2014-12-27 16:46:03 +01:00
|
|
|
if not node_definition then
|
2016-03-21 22:22:26 +01:00
|
|
|
return false
|
2014-12-27 16:46:03 +01:00
|
|
|
end
|
|
|
|
|
2020-12-08 22:20:16 +01:00
|
|
|
-- allow replacing air
|
|
|
|
if node_name == "air" then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
-- don't replace nodes inside protections
|
|
|
|
if minetest.is_protected(pos, player:get_player_name()) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
-- allow replacing liquids
|
|
|
|
if node_definition.liquidtype ~= "none" then
|
2014-12-27 16:46:03 +01:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
-- don't replace filled chests and other nodes that don't allow it
|
|
|
|
local can_dig_func = node_definition.can_dig
|
|
|
|
if can_dig_func and not can_dig_func(pos, player) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
-- default to each nodes buildable_to; if a placed block would replace it, why shouldn't bones?
|
|
|
|
-- flowers being squished by bones are more realistical than a squished stone, too
|
2020-12-08 22:20:16 +01:00
|
|
|
return node_definition.buildable_to
|
2014-12-27 16:46:03 +01:00
|
|
|
end
|
|
|
|
|
2016-03-21 22:22:26 +01:00
|
|
|
local drop = function(pos, itemstack)
|
2016-08-05 14:55:43 +02:00
|
|
|
local obj = minetest.add_item(pos, itemstack:take_item(itemstack:get_count()))
|
2016-03-21 22:22:26 +01:00
|
|
|
if obj then
|
2018-07-01 21:44:03 +02:00
|
|
|
obj:set_velocity({
|
2016-03-21 22:22:26 +01:00
|
|
|
x = math.random(-10, 10) / 9,
|
|
|
|
y = 5,
|
|
|
|
z = math.random(-10, 10) / 9,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-20 19:15:03 +01:00
|
|
|
local player_inventory_lists = { "main", "craft" }
|
|
|
|
bones.player_inventory_lists = player_inventory_lists
|
|
|
|
|
|
|
|
local function is_all_empty(player_inv)
|
|
|
|
for _, list_name in ipairs(player_inventory_lists) do
|
|
|
|
if not player_inv:is_empty(list_name) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2023-05-05 07:31:06 +02:00
|
|
|
--functions registered this way won't becalled if bones_mode is keep
|
|
|
|
function bones.public.register_transfer_inventory_to_bones_on_player_death(func)
|
|
|
|
bones.private.dead_player_callbacks[#(bones.private.dead_player_callbacks)]=func
|
|
|
|
end
|
|
|
|
|
|
|
|
--drop or put into bones based on config and free slots in the bones
|
|
|
|
--supposed to be called from functions registered to bones.public.register_transfer_inventory_to_bones_on_player_death
|
|
|
|
function bones.public.transfer_stack_to_bones(stk)
|
|
|
|
-- check if it's possible to place bones, if not find space near player
|
|
|
|
if ( ( bones.private.current_dead_player.bones_mode == "bones" ) and ( bones.private.current_dead_player.bones_pos == nil ) ) then
|
|
|
|
bones.private.current_dead_player.bones_pos = bones.private.current_dead_player.player_pos
|
|
|
|
local air
|
|
|
|
if ( may_replace(bones.private.current_dead_player.bones_pos, bones.private.current_dead_player.player) ) then
|
|
|
|
air = bones.private.current_dead_player.bones_pos
|
|
|
|
else
|
|
|
|
air = minetest.find_node_near(bones.private.current_dead_player.bones_pos, 1, {"air"})
|
|
|
|
end
|
|
|
|
|
|
|
|
if air and not minetest.is_protected(air, bones.private.current_dead_player.player_name) then
|
|
|
|
bones.private.current_dead_player.bones_pos = air
|
|
|
|
local param2 = minetest.dir_to_facedir(bones.private.current_dead_player.player:get_look_dir())
|
|
|
|
minetest.set_node(bones.private.current_dead_player.bones_pos, {name = "bones:bones", param2 = param2})
|
|
|
|
local meta = minetest.get_meta(bones.private.current_dead_player.bones_pos)
|
|
|
|
bones.private.current_dead_player.bones_inv = meta:get_inventory()
|
|
|
|
bones.private.current_dead_player.bones_inv:set_size("main", cols * rows)
|
|
|
|
else
|
|
|
|
bones.private.current_dead_player.bones_mode = "drop"
|
|
|
|
bones.private.current_dead_player.bones_pos = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if ( ( bones.private.current_dead_player.bones_mode == "bones" ) and ( bones.private.current_dead_player.bones_inv:room_for_item("main", stk) ) ) then
|
|
|
|
bones.private.current_dead_player.bones_inv:add_item("main", stk)
|
|
|
|
else
|
|
|
|
drop(bones.private.current_dead_player.player_pos, stk)
|
|
|
|
bones.private.current_dead_player.dropped=true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function player_dies_transfer_inventory(player)
|
|
|
|
local player_inv = player:get_inventory()
|
|
|
|
for _, list_name in ipairs(player_inventory_lists) do
|
|
|
|
for i = 1, player_inv:get_size(list_name) do
|
|
|
|
local stack = player_inv:get_stack(list_name, i)
|
|
|
|
bones.public.transfer_stack_to_bones(stack)
|
|
|
|
end
|
|
|
|
player_inv:set_list(list_name, {})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
bones.public.register_transfer_inventory_to_bones_on_player_death(player_dies_transfer_inventory)
|
|
|
|
|
2013-05-18 16:06:57 +02:00
|
|
|
minetest.register_on_dieplayer(function(player)
|
2023-05-05 07:31:06 +02:00
|
|
|
local pos = vector.round(player:get_pos())
|
2017-05-22 15:41:17 +02:00
|
|
|
local bones_mode = minetest.settings:get("bones_mode") or "bones"
|
2016-03-21 22:22:26 +01:00
|
|
|
if bones_mode ~= "bones" and bones_mode ~= "drop" and bones_mode ~= "keep" then
|
|
|
|
bones_mode = "bones"
|
|
|
|
end
|
2023-05-05 07:31:06 +02:00
|
|
|
local player_name = player:get_player_name()
|
|
|
|
bones.private.current_dead_player={player=player, player_name=player_name, bones_inv=nil, bones_pos=nil, bones_mode=bones_mode, player_pos=pos, dropped=false}
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2018-06-02 09:54:45 +02:00
|
|
|
local bones_position_message = minetest.settings:get_bool("bones_position_message") == true
|
|
|
|
local pos_string = minetest.pos_to_string(pos)
|
|
|
|
|
2016-03-21 22:22:26 +01:00
|
|
|
-- return if keep inventory set or in creative mode
|
2020-12-13 18:59:19 +01:00
|
|
|
if bones_mode == "keep" or minetest.is_creative_enabled(player_name) then
|
2018-06-02 09:54:45 +02:00
|
|
|
minetest.log("action", player_name .. " dies at " .. pos_string ..
|
|
|
|
". No bones placed")
|
|
|
|
if bones_position_message then
|
2019-09-10 19:09:51 +02:00
|
|
|
minetest.chat_send_player(player_name, S("@1 died at @2.", player_name, pos_string))
|
2018-06-02 09:54:45 +02:00
|
|
|
end
|
2013-05-18 16:06:57 +02:00
|
|
|
return
|
|
|
|
end
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2023-05-05 07:31:06 +02:00
|
|
|
for i=0,#bones.private.dead_player_callbacks do
|
|
|
|
local fun=bones.private.dead_player_callbacks[i]
|
|
|
|
fun(player)
|
2014-06-14 07:36:54 +02:00
|
|
|
end
|
|
|
|
|
2023-05-05 07:31:06 +02:00
|
|
|
local bones_conclusion=""
|
|
|
|
local public_conclusion=""
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2023-05-05 07:31:06 +02:00
|
|
|
if(not(bones.private.current_dead_player.bones_pos))then
|
|
|
|
drop(bones.private.current_dead_player.player_pos, ItemStack("bones:bones"))
|
|
|
|
if(not(bones.private.current_dead_player.dropped))then
|
|
|
|
bones_conclusion="No bones placed"
|
|
|
|
else
|
|
|
|
bones_conclusion="Inventory dropped"
|
|
|
|
public_conclusion="dropped their inventory"
|
2013-05-18 16:06:57 +02:00
|
|
|
end
|
2023-05-05 07:31:06 +02:00
|
|
|
else
|
|
|
|
if(not(bones.private.current_dead_player.dropped))then
|
|
|
|
bones_conclusion="Bones placed"
|
|
|
|
public_conclusion="bones were placed"
|
|
|
|
else
|
|
|
|
bones_conclusion="Inventory partially dropped"
|
|
|
|
public_conclusion="partially dropped their inventory"
|
2018-06-02 09:54:45 +02:00
|
|
|
end
|
2013-05-18 16:06:57 +02:00
|
|
|
end
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2018-06-02 09:54:45 +02:00
|
|
|
minetest.log("action", player_name .. " dies at " .. pos_string ..
|
2023-05-05 07:31:06 +02:00
|
|
|
". " .. bones_conclusion)
|
2018-06-02 09:54:45 +02:00
|
|
|
|
2023-05-05 07:31:06 +02:00
|
|
|
if bones_position_message then
|
|
|
|
if(public_conclusion~="")then
|
|
|
|
public_conclusion=", and "..public_conclusion
|
2014-04-15 17:13:46 +02:00
|
|
|
end
|
2023-05-05 07:31:06 +02:00
|
|
|
minetest.chat_send_player(player_name, S("@1 died at @2@3.", player_name, pos_string, public_conclusion))
|
2013-05-18 16:06:57 +02:00
|
|
|
end
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2023-05-05 07:31:06 +02:00
|
|
|
local meta = minetest.get_meta(bones.private.current_dead_player.bones_pos)
|
2016-03-21 22:22:26 +01:00
|
|
|
meta:set_string("formspec", bones_formspec)
|
2014-04-15 17:13:46 +02:00
|
|
|
meta:set_string("owner", player_name)
|
2016-03-21 22:22:26 +01:00
|
|
|
|
2014-12-27 16:46:03 +01:00
|
|
|
if share_bones_time ~= 0 then
|
2019-09-12 19:03:10 +02:00
|
|
|
meta:set_string("infotext", S("@1's fresh bones", player_name))
|
2014-12-27 16:46:03 +01:00
|
|
|
|
|
|
|
if share_bones_time_early == 0 or not minetest.is_protected(pos, player_name) then
|
|
|
|
meta:set_int("time", 0)
|
|
|
|
else
|
|
|
|
meta:set_int("time", (share_bones_time - share_bones_time_early))
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.get_node_timer(pos):start(10)
|
|
|
|
else
|
2019-09-12 19:03:10 +02:00
|
|
|
meta:set_string("infotext", S("@1's bones", player_name))
|
2014-12-27 16:46:03 +01:00
|
|
|
end
|
2023-05-05 07:31:06 +02:00
|
|
|
bones.private.current_dead_player=nil
|
2013-05-18 16:06:57 +02:00
|
|
|
end)
|