mirror of
https://github.com/NoctisLabs/an_televator.git
synced 2024-11-21 21:03:42 +01:00
0366913f36
Extended description removed for mod compatibility.
128 lines
3.5 KiB
Lua
128 lines
3.5 KiB
Lua
--[[
|
|
MIT License
|
|
Copyright (c) 2017 Elijah Duffy
|
|
Copyright (c) 2019 Noctis Labs
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to
|
|
the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
|
|
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
--]]
|
|
|
|
-- an_televator/init.lua
|
|
|
|
local delay = {}
|
|
local itemset
|
|
if minetest.get_modpath("default") then
|
|
itemset = {
|
|
steel = "default:steel_ingot",
|
|
gold = "default:gold_ingot",
|
|
copper = "default:copper_ingot",
|
|
glass = "default:glass",
|
|
}
|
|
end
|
|
|
|
---
|
|
--- Functions
|
|
---
|
|
|
|
local function get_near_televators(pos, which)
|
|
for i = 1, 32 do
|
|
local cpos = vector.new(pos)
|
|
if which == "above" then
|
|
cpos.y = cpos.y + i
|
|
elseif which == "below" then
|
|
cpos.y = cpos.y - i
|
|
end
|
|
local name = minetest.get_node(cpos).name
|
|
if (which == "above" and name == "an_televator:televator")
|
|
or (which == "below" and i ~= 1 and name == "an_televator:televator") then
|
|
cpos.y = cpos.y + 1
|
|
return cpos
|
|
end
|
|
end
|
|
end
|
|
|
|
local function is_safe(pos)
|
|
for i = 0, 1 do
|
|
local tpos = vector.new(pos)
|
|
tpos.y = tpos.y + i
|
|
if minetest.get_node(tpos).name ~= "air" then
|
|
return
|
|
end
|
|
end
|
|
return true
|
|
end
|
|
|
|
---
|
|
--- Registrations
|
|
---
|
|
|
|
minetest.register_node("an_televator:televator", {
|
|
description = "Televator",
|
|
tiles = {"televator_televator.png"},
|
|
groups = {cracky = 2, disable_jump = 1},
|
|
after_place_node = function(pos)
|
|
minetest.get_meta(pos):set_string("infotext", "Televator")
|
|
end,
|
|
})
|
|
|
|
if itemset then
|
|
minetest.register_craft({
|
|
output = "an_televator:televator",
|
|
recipe = {
|
|
{itemset.steel, itemset.glass, itemset.steel},
|
|
{itemset.steel, itemset.gold, itemset.steel},
|
|
{itemset.steel, itemset.copper, itemset.steel,}
|
|
},
|
|
})
|
|
end
|
|
|
|
minetest.register_globalstep(function(dtime)
|
|
for _, player in pairs(minetest.get_connected_players()) do
|
|
local pos = player:get_pos()
|
|
local name = player:get_player_name()
|
|
if not delay[name] then
|
|
delay[name] = 0.5
|
|
else
|
|
delay[name] = delay[name] + dtime
|
|
end
|
|
if not delay[name] or delay[name] > 0.5 then
|
|
if minetest.get_node({x = pos.x, y = pos.y - 0.5, z = pos.z}).name == "an_televator:televator" then
|
|
local where
|
|
local controls = player:get_player_control()
|
|
if controls.jump then
|
|
where = "above"
|
|
elseif controls.sneak then
|
|
where = "below"
|
|
else return end
|
|
local epos = get_near_televators(pos, where)
|
|
if epos and is_safe(epos) then
|
|
player:set_pos(epos)
|
|
minetest.sound_play("televator_whoosh", {
|
|
gain = 0.75,
|
|
pos = epos,
|
|
max_hear_distance = 5,
|
|
})
|
|
else
|
|
minetest.sound_play("televator_error", {
|
|
gain = 0.75,
|
|
pos = epos,
|
|
max_hear_distance = 5,
|
|
})
|
|
end
|
|
delay[name] = 0
|
|
end
|
|
end
|
|
end
|
|
end)
|