2024-12-15 13:50:45 +01:00

122 lines
4.6 KiB
Lua

local S = minetest.get_translator("lzr_doors")
local F = minetest.formspec_escape
local FS = function(...) return minetest.formspec_escape(S(...)) end
lzr_doors = {}
--[[ Basic doors for Lazarr!
The doors in Lazarr! are much simpler than in other games. This
is neccessary to ensure laser compatibility.
There are two types of doors: Locked doors play a sound when
interacting with them and exit doors that allow the player
to exit the level.
A major limitation is that doors cannot be opened or closed.
A door is basically just 2 panes (using `lzr_panes`),
with a top segment and a bottom one. Panes are useful because
they are laser-compatible.
Door segments are completely standalone, it is the reponsibility
of the map author to construct correct doors.
]]
local on_punch_exit = function(pos, node, clicker)
local state = lzr_gamestate.get_state()
if state ~= lzr_gamestate.LEVEL then
return
end
if not clicker and not clicker:is_player() then
return
end
local message = S("Do you want to return to your ship?")
local form = "formspec_version[7]size[8,2.5]"..
"textarea[0.5,0.5;7,0.8;;;"..F(message).."]"..
"button_exit[1.25,1.5;2,0.6;return_to_ship;"..FS("Yes").."]"..
"set_focus[cancel]"..
"button_exit[4.75,1.5;2,0.6;cancel;"..FS("No").."]"
minetest.show_formspec(clicker:get_player_name(), "lzr_doors:leave_level", form)
end
local on_punch_locked = function(pos, node, clicker)
local state = lzr_gamestate.get_state()
if state ~= lzr_gamestate.LEVEL and state ~= lzr_gamestate.LEVEL_COMPLETE and state ~= lzr_gamestate.LEVEL_TEST then
return
end
minetest.sound_play({name="lzr_doors_door_locked", gain=0.3}, {pos=pos}, true)
end
minetest.register_on_player_receive_fields(function(player, formname, fields)
local state = lzr_gamestate.get_state()
if state ~= lzr_gamestate.LEVEL then
return
end
if formname == "lzr_doors:leave_level" then
if fields.return_to_ship then
lzr_levels.leave_level()
end
end
end)
local help_exit = S("Allows to exit the level")
local help_locked = S("Cannot be opened")
lzr_doors.register_door = function(basename, modname, def)
lzr_panes.register_pane(modname..":door_"..basename.."_exit_top", {
description = S("@1 (top segment, exit)", def.base_description),
_tt_help = help_exit,
def.textures,
textures = def.textures_top,
inventory_image = "("..def.image_top .. ")^lzr_doors_overlay_exit.png",
wield_image = "("..def.image_top .. ")^lzr_doors_overlay_exit.png",
sounds = def.sounds or lzr_sounds.node_sound_wood_defaults(),
element_group = "laser_element_door_"..basename.."_exit_top",
on_punch = on_punch_exit,
})
lzr_panes.register_pane(modname..":door_"..basename.."_exit_bottom", {
description = S("@1 (bottom segment, exit)", def.base_description),
_tt_help = help_exit,
textures = def.textures_bottom,
inventory_image = "("..def.image_bottom.. ")^lzr_doors_overlay_exit.png",
wield_image = "("..def.image_bottom.. ")^lzr_doors_overlay_exit.png",
sounds = lzr_sounds.node_sound_wood_defaults(),
element_group = "laser_element_door_"..basename.."_exit_bottom",
on_punch = on_punch_exit,
})
lzr_panes.register_pane(modname..":door_"..basename.."_locked_top", {
description = S("@1 (top segment, locked)", def.base_description),
_tt_help = help_locked,
textures = def.textures_top,
inventory_image = "("..def.image_top .. ")^lzr_doors_overlay_locked.png",
wield_image = "("..def.image_top .. ")^lzr_doors_overlay_locked.png",
sounds = def.sounds or lzr_sounds.node_sound_wood_defaults(),
element_group = "laser_element_door_"..basename.."_locked_top",
on_punch = on_punch_locked,
})
lzr_panes.register_pane(modname..":door_"..basename.."_locked_bottom", {
description = S("@1 (bottom segment, locked)", def.base_description),
_tt_help = help_locked,
textures = def.textures_bottom,
inventory_image = "("..def.image_bottom.. ")^lzr_doors_overlay_locked.png",
wield_image = "("..def.image_bottom.. ")^lzr_doors_overlay_locked.png",
sounds = lzr_sounds.node_sound_wood_defaults(),
element_group = "laser_element_door_"..basename.."_locked_bottom",
on_punch = on_punch_locked,
})
end
lzr_doors.register_door("wood_frame", "lzr_doors", {
base_description = S("Wooden Frame Door"),
textures_top = {"lzr_doors_door_wood_frame_top.png", "lzr_doors_door_wood_frame_sides.png", "lzr_doors_door_wood_frame_sides.png", "lzr_doors_door_wood_frame_top.png^[transformFX"},
textures_bottom = {"lzr_doors_door_wood_frame_bottom.png", "lzr_doors_door_wood_frame_sides.png", "lzr_doors_door_wood_frame_sides.png", "lzr_doors_door_wood_frame_bottom.png^[transformFX"},
image_top = "lzr_doors_door_wood_frame_top.png",
image_bottom = "lzr_doors_door_wood_frame_bottom.png",
})