mirror of
https://github.com/NoctisLabs/an_televator.git
synced 2024-11-22 13:13:43 +01:00
f57c28b78f
Renamed "elevator" to "televator" Removed error messages, replaced them with error sound for more immersion. Increased range from 16 to 32 and changed crafting recipe to be 2x as expensive. Added license to the top. Simplified description text.
146 lines
3.8 KiB
Lua
146 lines
3.8 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
|
|
---
|
|
|
|
-- [function] Get near televators
|
|
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
|
|
elseif name ~= "air" and name ~= "an_televator:televator" then
|
|
return
|
|
end
|
|
end
|
|
end
|
|
|
|
-- [function] Televator safe
|
|
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
|
|
---
|
|
|
|
-- [register] Televator node
|
|
minetest.register_node("an_televator:televator", {
|
|
description = "Televator\n"..
|
|
minetest.colorize("grey","Place up to 32 nodes apart.\n"
|
|
.."Jump goes up, sneak goes down."),
|
|
tiles = {"televator_televator.png"},
|
|
groups = {cracky = 2, disable_jump = 1},
|
|
after_place_node = function(pos)
|
|
minetest.get_meta(pos):set_string("infotext", "Televator")
|
|
end,
|
|
})
|
|
|
|
-- [register] Recipe
|
|
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
|
|
|
|
-- [register] Globalstep
|
|
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 - 1, 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) -- Update player position
|
|
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 -- Restart delay
|
|
end
|
|
end
|
|
end
|
|
end)
|