2015-10-05 00:17:30 +02:00
|
|
|
local pi = math.pi
|
2015-02-24 11:59:15 +01:00
|
|
|
local player_in_bed = 0
|
|
|
|
local is_sp = minetest.is_singleplayer()
|
2015-03-06 19:29:16 +01:00
|
|
|
local enable_respawn = minetest.setting_getbool("enable_bed_respawn")
|
|
|
|
if enable_respawn == nil then
|
|
|
|
enable_respawn = true
|
|
|
|
end
|
2015-02-24 11:59:15 +01:00
|
|
|
|
2016-03-08 04:14:29 +01:00
|
|
|
-- Helper functions
|
2015-02-24 11:59:15 +01:00
|
|
|
|
|
|
|
local function get_look_yaw(pos)
|
|
|
|
local n = minetest.get_node(pos)
|
|
|
|
if n.param2 == 1 then
|
2016-03-08 04:14:29 +01:00
|
|
|
return pi / 2, n.param2
|
2015-02-24 11:59:15 +01:00
|
|
|
elseif n.param2 == 3 then
|
2016-03-08 04:14:29 +01:00
|
|
|
return -pi / 2, n.param2
|
2015-02-24 11:59:15 +01:00
|
|
|
elseif n.param2 == 0 then
|
2015-10-05 00:17:30 +02:00
|
|
|
return pi, n.param2
|
2015-02-24 11:59:15 +01:00
|
|
|
else
|
2015-10-05 00:17:30 +02:00
|
|
|
return 0, n.param2
|
2015-02-24 11:59:15 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-05-14 18:57:41 +02:00
|
|
|
local function is_night_skip_enabled()
|
|
|
|
local enable_night_skip = minetest.setting_getbool("enable_bed_night_skip")
|
|
|
|
if enable_night_skip == nil then
|
|
|
|
enable_night_skip = true
|
|
|
|
end
|
|
|
|
return enable_night_skip
|
|
|
|
end
|
|
|
|
|
2015-02-24 11:59:15 +01:00
|
|
|
local function check_in_beds(players)
|
|
|
|
local in_bed = beds.player
|
|
|
|
if not players then
|
|
|
|
players = minetest.get_connected_players()
|
|
|
|
end
|
|
|
|
|
|
|
|
for n, player in ipairs(players) do
|
|
|
|
local name = player:get_player_name()
|
|
|
|
if not in_bed[name] then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-05-14 14:41:26 +02:00
|
|
|
return #players > 0
|
2015-02-24 11:59:15 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
local function lay_down(player, pos, bed_pos, state, skip)
|
|
|
|
local name = player:get_player_name()
|
|
|
|
local hud_flags = player:hud_get_flags()
|
|
|
|
|
|
|
|
if not player or not name then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
-- stand up
|
|
|
|
if state ~= nil and not state then
|
|
|
|
local p = beds.pos[name] or nil
|
|
|
|
if beds.player[name] ~= nil then
|
|
|
|
beds.player[name] = nil
|
|
|
|
player_in_bed = player_in_bed - 1
|
|
|
|
end
|
|
|
|
-- skip here to prevent sending player specific changes (used for leaving players)
|
|
|
|
if skip then
|
|
|
|
return
|
|
|
|
end
|
2015-05-14 18:57:41 +02:00
|
|
|
if p then
|
2015-02-24 11:59:15 +01:00
|
|
|
player:setpos(p)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- physics, eye_offset, etc
|
2016-03-08 04:14:29 +01:00
|
|
|
player:set_eye_offset({x = 0, y = 0, z = 0}, {x = 0, y = 0, z = 0})
|
2016-07-25 17:42:42 +02:00
|
|
|
player:set_look_horizontal(math.random(1, 180) / 100)
|
2015-02-24 11:59:15 +01:00
|
|
|
default.player_attached[name] = false
|
|
|
|
player:set_physics_override(1, 1, 1)
|
|
|
|
hud_flags.wielditem = true
|
|
|
|
default.player_set_animation(player, "stand" , 30)
|
|
|
|
|
|
|
|
-- lay down
|
|
|
|
else
|
|
|
|
beds.player[name] = 1
|
|
|
|
beds.pos[name] = pos
|
|
|
|
player_in_bed = player_in_bed + 1
|
|
|
|
|
|
|
|
-- physics, eye_offset, etc
|
2016-03-08 04:14:29 +01:00
|
|
|
player:set_eye_offset({x = 0, y = -13, z = 0}, {x = 0, y = 0, z = 0})
|
2015-02-24 11:59:15 +01:00
|
|
|
local yaw, param2 = get_look_yaw(bed_pos)
|
2016-07-25 17:42:42 +02:00
|
|
|
player:set_look_horizontal(yaw)
|
2015-02-24 11:59:15 +01:00
|
|
|
local dir = minetest.facedir_to_dir(param2)
|
2016-03-08 04:14:29 +01:00
|
|
|
local p = {x = bed_pos.x + dir.x / 2, y = bed_pos.y, z = bed_pos.z + dir.z / 2}
|
2015-02-24 11:59:15 +01:00
|
|
|
player:set_physics_override(0, 0, 0)
|
|
|
|
player:setpos(p)
|
|
|
|
default.player_attached[name] = true
|
|
|
|
hud_flags.wielditem = false
|
|
|
|
default.player_set_animation(player, "lay" , 0)
|
|
|
|
end
|
|
|
|
|
|
|
|
player:hud_set_flags(hud_flags)
|
|
|
|
end
|
|
|
|
|
|
|
|
local function update_formspecs(finished)
|
|
|
|
local ges = #minetest.get_connected_players()
|
2016-06-26 13:34:14 +02:00
|
|
|
local form_n
|
2016-03-08 04:14:29 +01:00
|
|
|
local is_majority = (ges / 2) < player_in_bed
|
2015-02-24 11:59:15 +01:00
|
|
|
|
|
|
|
if finished then
|
2016-03-08 04:14:29 +01:00
|
|
|
form_n = beds.formspec .. "label[2.7,11; Good morning.]"
|
2015-02-24 11:59:15 +01:00
|
|
|
else
|
2016-03-08 04:14:29 +01:00
|
|
|
form_n = beds.formspec .. "label[2.2,11;" .. tostring(player_in_bed) ..
|
|
|
|
" of " .. tostring(ges) .. " players are in bed]"
|
2015-05-14 18:57:41 +02:00
|
|
|
if is_majority and is_night_skip_enabled() then
|
2016-03-08 04:14:29 +01:00
|
|
|
form_n = form_n .. "button_exit[2,8;4,0.75;force;Force night skip]"
|
2015-02-24 11:59:15 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
for name,_ in pairs(beds.player) do
|
|
|
|
minetest.show_formspec(name, "beds_form", form_n)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2016-03-08 04:14:29 +01:00
|
|
|
-- Public functions
|
2015-02-24 11:59:15 +01:00
|
|
|
|
|
|
|
function beds.kick_players()
|
2016-03-08 04:14:29 +01:00
|
|
|
for name, _ in pairs(beds.player) do
|
2015-02-24 11:59:15 +01:00
|
|
|
local player = minetest.get_player_by_name(name)
|
|
|
|
lay_down(player, nil, nil, false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function beds.skip_night()
|
|
|
|
minetest.set_timeofday(0.23)
|
|
|
|
end
|
|
|
|
|
|
|
|
function beds.on_rightclick(pos, player)
|
|
|
|
local name = player:get_player_name()
|
|
|
|
local ppos = player:getpos()
|
|
|
|
local tod = minetest.get_timeofday()
|
|
|
|
|
|
|
|
if tod > 0.2 and tod < 0.805 then
|
|
|
|
if beds.player[name] then
|
|
|
|
lay_down(player, nil, nil, false)
|
|
|
|
end
|
|
|
|
minetest.chat_send_player(name, "You can only sleep at night.")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
-- move to bed
|
|
|
|
if not beds.player[name] then
|
|
|
|
lay_down(player, ppos, pos)
|
2016-05-20 12:40:15 +02:00
|
|
|
beds.set_spawns() -- save respawn positions when entering bed
|
2015-02-24 11:59:15 +01:00
|
|
|
else
|
|
|
|
lay_down(player, nil, nil, false)
|
|
|
|
end
|
|
|
|
|
|
|
|
if not is_sp then
|
|
|
|
update_formspecs(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- skip the night and let all players stand up
|
|
|
|
if check_in_beds() then
|
|
|
|
minetest.after(2, function()
|
|
|
|
if not is_sp then
|
2015-05-14 18:57:41 +02:00
|
|
|
update_formspecs(is_night_skip_enabled())
|
|
|
|
end
|
|
|
|
if is_night_skip_enabled() then
|
|
|
|
beds.skip_night()
|
|
|
|
beds.kick_players()
|
2015-02-24 11:59:15 +01:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2016-03-08 04:14:29 +01:00
|
|
|
-- Callbacks
|
2016-07-12 11:02:01 +02:00
|
|
|
-- Only register respawn callback if respawn enabled
|
2016-11-20 04:24:37 +01:00
|
|
|
if enable_respawn then
|
2016-07-12 11:02:01 +02:00
|
|
|
-- respawn player at bed if enabled and valid position is found
|
|
|
|
minetest.register_on_respawnplayer(function(player)
|
|
|
|
local name = player:get_player_name()
|
|
|
|
local pos = beds.spawn[name]
|
|
|
|
if pos then
|
|
|
|
player:setpos(pos)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
2015-02-24 11:59:15 +01:00
|
|
|
|
|
|
|
minetest.register_on_leaveplayer(function(player)
|
|
|
|
local name = player:get_player_name()
|
|
|
|
lay_down(player, nil, nil, false, true)
|
|
|
|
beds.player[name] = nil
|
|
|
|
if check_in_beds() then
|
|
|
|
minetest.after(2, function()
|
2015-05-14 18:57:41 +02:00
|
|
|
update_formspecs(is_night_skip_enabled())
|
|
|
|
if is_night_skip_enabled() then
|
|
|
|
beds.skip_night()
|
|
|
|
beds.kick_players()
|
|
|
|
end
|
2015-02-24 11:59:15 +01:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
|
|
|
if formname ~= "beds_form" then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if fields.quit or fields.leave then
|
|
|
|
lay_down(player, nil, nil, false)
|
|
|
|
update_formspecs(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
if fields.force then
|
2015-05-14 18:57:41 +02:00
|
|
|
update_formspecs(is_night_skip_enabled())
|
|
|
|
if is_night_skip_enabled() then
|
|
|
|
beds.skip_night()
|
|
|
|
beds.kick_players()
|
|
|
|
end
|
2015-02-24 11:59:15 +01:00
|
|
|
end
|
|
|
|
end)
|