2012-04-01 11:37:41 +02:00
|
|
|
-- Minetest: builtin/misc.lua
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Misc. API functions
|
|
|
|
--
|
|
|
|
|
2016-07-07 23:58:52 +02:00
|
|
|
function core.check_player_privs(name, ...)
|
|
|
|
local arg_type = type(name)
|
|
|
|
if (arg_type == "userdata" or arg_type == "table") and
|
|
|
|
name.get_player_name then -- If it quacks like a Player...
|
Add more ways to pass data to check_player_privs
The callback can now be invoked with either the player object or name as
the first parameter, and with either a table or a list of strings, like
this:
minetest.check_player_privs(player_name, { shout = true, fly = true })
minetest.check_player_privs(player_name, "shout", "fly")
minetest.check_player_privs(player, { shout = true, fly = true })
minetest.check_player_privs(player, "shout", "fly")
2015-09-03 21:28:38 +02:00
|
|
|
name = name:get_player_name()
|
2016-07-07 23:58:52 +02:00
|
|
|
elseif arg_type ~= "string" then
|
|
|
|
error("Invalid core.check_player_privs argument type: " .. arg_type, 2)
|
Add more ways to pass data to check_player_privs
The callback can now be invoked with either the player object or name as
the first parameter, and with either a table or a list of strings, like
this:
minetest.check_player_privs(player_name, { shout = true, fly = true })
minetest.check_player_privs(player_name, "shout", "fly")
minetest.check_player_privs(player, { shout = true, fly = true })
minetest.check_player_privs(player, "shout", "fly")
2015-09-03 21:28:38 +02:00
|
|
|
end
|
2017-01-18 11:19:57 +01:00
|
|
|
|
Add more ways to pass data to check_player_privs
The callback can now be invoked with either the player object or name as
the first parameter, and with either a table or a list of strings, like
this:
minetest.check_player_privs(player_name, { shout = true, fly = true })
minetest.check_player_privs(player_name, "shout", "fly")
minetest.check_player_privs(player, { shout = true, fly = true })
minetest.check_player_privs(player, "shout", "fly")
2015-09-03 21:28:38 +02:00
|
|
|
local requested_privs = {...}
|
2014-04-28 03:02:48 +02:00
|
|
|
local player_privs = core.get_player_privs(name)
|
2012-04-01 11:37:41 +02:00
|
|
|
local missing_privileges = {}
|
2017-01-18 11:19:57 +01:00
|
|
|
|
Add more ways to pass data to check_player_privs
The callback can now be invoked with either the player object or name as
the first parameter, and with either a table or a list of strings, like
this:
minetest.check_player_privs(player_name, { shout = true, fly = true })
minetest.check_player_privs(player_name, "shout", "fly")
minetest.check_player_privs(player, { shout = true, fly = true })
minetest.check_player_privs(player, "shout", "fly")
2015-09-03 21:28:38 +02:00
|
|
|
if type(requested_privs[1]) == "table" then
|
|
|
|
-- We were provided with a table like { privA = true, privB = true }.
|
|
|
|
for priv, value in pairs(requested_privs[1]) do
|
|
|
|
if value and not player_privs[priv] then
|
2016-03-06 16:53:45 +01:00
|
|
|
missing_privileges[#missing_privileges + 1] = priv
|
Add more ways to pass data to check_player_privs
The callback can now be invoked with either the player object or name as
the first parameter, and with either a table or a list of strings, like
this:
minetest.check_player_privs(player_name, { shout = true, fly = true })
minetest.check_player_privs(player_name, "shout", "fly")
minetest.check_player_privs(player, { shout = true, fly = true })
minetest.check_player_privs(player, "shout", "fly")
2015-09-03 21:28:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
-- Only a list, we can process it directly.
|
|
|
|
for key, priv in pairs(requested_privs) do
|
|
|
|
if not player_privs[priv] then
|
2016-03-06 16:53:45 +01:00
|
|
|
missing_privileges[#missing_privileges + 1] = priv
|
Add more ways to pass data to check_player_privs
The callback can now be invoked with either the player object or name as
the first parameter, and with either a table or a list of strings, like
this:
minetest.check_player_privs(player_name, { shout = true, fly = true })
minetest.check_player_privs(player_name, "shout", "fly")
minetest.check_player_privs(player, { shout = true, fly = true })
minetest.check_player_privs(player, "shout", "fly")
2015-09-03 21:28:38 +02:00
|
|
|
end
|
2012-04-01 11:37:41 +02:00
|
|
|
end
|
|
|
|
end
|
2017-01-18 11:19:57 +01:00
|
|
|
|
2012-04-01 11:37:41 +02:00
|
|
|
if #missing_privileges > 0 then
|
|
|
|
return false, missing_privileges
|
|
|
|
end
|
2017-01-18 11:19:57 +01:00
|
|
|
|
2012-04-01 11:37:41 +02:00
|
|
|
return true, ""
|
|
|
|
end
|
|
|
|
|
2013-09-11 16:59:48 +02:00
|
|
|
local player_list = {}
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
core.register_on_joinplayer(function(player)
|
2016-08-22 20:21:48 +02:00
|
|
|
local player_name = player:get_player_name()
|
|
|
|
player_list[player_name] = player
|
2016-08-28 01:13:41 +02:00
|
|
|
if not minetest.is_singleplayer() then
|
|
|
|
core.chat_send_all("*** " .. player_name .. " joined the game.")
|
|
|
|
end
|
2013-09-11 16:59:48 +02:00
|
|
|
end)
|
|
|
|
|
2016-08-22 20:21:48 +02:00
|
|
|
core.register_on_leaveplayer(function(player, timed_out)
|
|
|
|
local player_name = player:get_player_name()
|
|
|
|
player_list[player_name] = nil
|
|
|
|
local announcement = "*** " .. player_name .. " left the game."
|
|
|
|
if timed_out then
|
|
|
|
announcement = announcement .. " (timed out)"
|
|
|
|
end
|
|
|
|
core.chat_send_all(announcement)
|
2013-09-11 16:59:48 +02:00
|
|
|
end)
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
function core.get_connected_players()
|
2013-09-11 16:59:48 +02:00
|
|
|
local temp_table = {}
|
|
|
|
for index, value in pairs(player_list) do
|
2013-11-17 08:57:40 +01:00
|
|
|
if value:is_player_connected() then
|
2016-03-06 16:53:45 +01:00
|
|
|
temp_table[#temp_table + 1] = value
|
2013-11-17 08:57:40 +01:00
|
|
|
end
|
2012-04-01 11:37:41 +02:00
|
|
|
end
|
2013-09-11 16:59:48 +02:00
|
|
|
return temp_table
|
2012-04-01 11:37:41 +02:00
|
|
|
end
|
|
|
|
|
2017-01-18 11:19:57 +01:00
|
|
|
function minetest.player_exists(name)
|
|
|
|
return minetest.get_auth_handler().get_auth(name) ~= nil
|
|
|
|
end
|
|
|
|
|
2015-09-23 06:31:45 +02:00
|
|
|
-- Returns two position vectors representing a box of `radius` in each
|
|
|
|
-- direction centered around the player corresponding to `player_name`
|
|
|
|
function core.get_player_radius_area(player_name, radius)
|
|
|
|
local player = core.get_player_by_name(player_name)
|
|
|
|
if player == nil then
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
|
|
|
|
local p1 = player:getpos()
|
|
|
|
local p2 = p1
|
|
|
|
|
|
|
|
if radius then
|
|
|
|
p1 = vector.subtract(p1, radius)
|
|
|
|
p2 = vector.add(p2, radius)
|
|
|
|
end
|
|
|
|
|
|
|
|
return p1, p2
|
|
|
|
end
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
function core.hash_node_position(pos)
|
2012-04-01 11:37:41 +02:00
|
|
|
return (pos.z+32768)*65536*65536 + (pos.y+32768)*65536 + pos.x+32768
|
|
|
|
end
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
function core.get_position_from_hash(hash)
|
2014-01-11 17:54:00 +01:00
|
|
|
local pos = {}
|
|
|
|
pos.x = (hash%65536) - 32768
|
|
|
|
hash = math.floor(hash/65536)
|
|
|
|
pos.y = (hash%65536) - 32768
|
|
|
|
hash = math.floor(hash/65536)
|
|
|
|
pos.z = (hash%65536) - 32768
|
|
|
|
return pos
|
|
|
|
end
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
function core.get_item_group(name, group)
|
|
|
|
if not core.registered_items[name] or not
|
|
|
|
core.registered_items[name].groups[group] then
|
2012-04-08 17:34:05 +02:00
|
|
|
return 0
|
|
|
|
end
|
2014-04-28 03:02:48 +02:00
|
|
|
return core.registered_items[name].groups[group]
|
2012-04-09 11:36:25 +02:00
|
|
|
end
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
function core.get_node_group(name, group)
|
|
|
|
core.log("deprecated", "Deprecated usage of get_node_group, use get_item_group instead")
|
|
|
|
return core.get_item_group(name, group)
|
2012-04-08 17:34:05 +02:00
|
|
|
end
|
2012-04-01 11:37:41 +02:00
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
function core.setting_get_pos(name)
|
2014-12-12 20:49:19 +01:00
|
|
|
local value = core.settings:get(name)
|
2012-04-09 22:29:55 +02:00
|
|
|
if not value then
|
|
|
|
return nil
|
|
|
|
end
|
2014-04-28 03:02:48 +02:00
|
|
|
return core.string_to_pos(value)
|
2012-04-09 22:29:55 +02:00
|
|
|
end
|
|
|
|
|
2013-08-02 22:41:36 +02:00
|
|
|
-- To be overriden by protection mods
|
2014-04-28 03:02:48 +02:00
|
|
|
function core.is_protected(pos, name)
|
2013-08-02 22:41:36 +02:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
function core.record_protection_violation(pos, name)
|
|
|
|
for _, func in pairs(core.registered_on_protection_violation) do
|
2013-08-02 22:41:36 +02:00
|
|
|
func(pos, name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-05-12 11:19:52 +02:00
|
|
|
local raillike_ids = {}
|
|
|
|
local raillike_cur_id = 0
|
|
|
|
function core.raillike_group(name)
|
|
|
|
local id = raillike_ids[name]
|
|
|
|
if not id then
|
|
|
|
raillike_cur_id = raillike_cur_id + 1
|
|
|
|
raillike_ids[name] = raillike_cur_id
|
|
|
|
id = raillike_cur_id
|
|
|
|
end
|
|
|
|
return id
|
|
|
|
end
|
2016-02-18 11:38:47 +01:00
|
|
|
|
|
|
|
-- HTTP callback interface
|
|
|
|
function core.http_add_fetch(httpenv)
|
|
|
|
httpenv.fetch = function(req, callback)
|
|
|
|
local handle = httpenv.fetch_async(req)
|
|
|
|
|
|
|
|
local function update_http_status()
|
|
|
|
local res = httpenv.fetch_async_get(handle)
|
|
|
|
if res.completed then
|
|
|
|
callback(res)
|
|
|
|
else
|
|
|
|
core.after(0, update_http_status)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
core.after(0, update_http_status)
|
|
|
|
end
|
|
|
|
|
|
|
|
return httpenv
|
|
|
|
end
|
2015-01-16 07:54:26 +01:00
|
|
|
|
2016-11-22 17:15:22 +01:00
|
|
|
function core.close_formspec(player_name, formname)
|
|
|
|
return minetest.show_formspec(player_name, formname, "")
|
|
|
|
end
|
2017-04-15 23:19:18 +02:00
|
|
|
|
|
|
|
function core.cancel_shutdown_requests()
|
|
|
|
core.request_shutdown("", false, -1)
|
|
|
|
end
|
|
|
|
|