1 Commits

Author SHA1 Message Date
8bbfb77ddb Ajoute message de chargement du mod dans le journal "action" 2018-12-26 21:20:29 +01:00
7 changed files with 7 additions and 61 deletions

View File

@ -1,17 +0,0 @@
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: apt
run: sudo apt-get install -y luarocks
- name: luacheck install
run: luarocks install --local luacheck
- name: luacheck run
run: $HOME/.luarocks/bin/luacheck ./

View File

@ -1,21 +0,0 @@
unused_args = false
allow_defined_top = true
exclude_files = {".luacheckrc"}
globals = {
"minetest",
}
read_globals = {
string = {fields = {"split"}},
table = {fields = {"copy", "getn"}},
-- Builtin
"vector", "ItemStack",
"dump", "DIR_DELIM", "VoxelArea", "Settings",
-- MTG
"default", "sfinv", "creative", "carts",
--depends
}

View File

@ -11,4 +11,3 @@ Look at the water and the jungle trunk at the center.
* mapfix_default_size (by default 24) : size used when omitted * mapfix_default_size (by default 24) : size used when omitted
* mapfix_max_size (by default 32) : maximum size allowed for players * mapfix_max_size (by default 32) : maximum size allowed for players
* mapfix_delay (by default 15) : minimal delay in seconds between 2 `/mapfix` (to avoid server freezing) * mapfix_delay (by default 15) : minimal delay in seconds between 2 `/mapfix` (to avoid server freezing)
* mapfix_priv (by default server) : priv that allows use of `/mapfix` without restrictions

1
description.txt Normal file
View File

@ -0,0 +1 @@
Fix some map errors (flow and light problems)

View File

@ -13,16 +13,6 @@ local default_size = tonumber(minetest.settings:get("mapfix_default_size")) or 2
local max_size = tonumber(minetest.settings:get("mapfix_max_size")) or 32 local max_size = tonumber(minetest.settings:get("mapfix_max_size")) or 32
local delay = tonumber(minetest.settings:get("mapfix_delay")) or 15 local delay = tonumber(minetest.settings:get("mapfix_delay")) or 15
local function mapfix_priv()
local priv = minetest.settings:get("mapfix_priv")
if not minetest.registered_privileges[priv] then
return "server"
else
return priv
end
end
minetest.register_chatcommand("mapfix", { minetest.register_chatcommand("mapfix", {
params = "<size>", params = "<size>",
description = "Recalculate the flowing liquids and the light of a chunk", description = "Recalculate the flowing liquids and the light of a chunk",
@ -33,24 +23,21 @@ minetest.register_chatcommand("mapfix", {
if size >= 121 then if size >= 121 then
return false, "Radius is too big" return false, "Radius is too big"
end end
local privs = minetest.check_player_privs(name, mapfix_priv()) local privs = minetest.check_player_privs(name, {server=true})
local time = os.time() local time = os.time()
if not privs then if not privs then
if size > max_size then if size > max_size then
return false, "You need the " .. mapfix_priv() .. " privilege to exceed the radius of " .. max_size .. " blocks" return false, "You need the server privilege to exceed the radius of " .. max_size .. " blocks"
elseif time - previous < delay then elseif time - previous < delay then
return false, "Wait at least " .. delay .. " seconds from the previous \"/mapfix\"." return false, "Wait at least " .. delay .. " seconds from the previous \"/mapfix\"."
end end
previous = time previous = time
end end
minetest.log("action", minetest.log("action", name .. " uses mapfix at " .. minetest.pos_to_string(vector.round(pos)) .. " with radius " .. size)
name .. " uses mapfix at " .. minetest.pos_to_string(vector.round(pos)) .. " with radius " .. size)
-- When passed to get_voxel_manip, positions are rounded up, to a multiple of 16 nodes in each direction. size = math.max(math.floor(size - 8), 0) -- When passed to get_voxel_manip, positions are rounded up, to a multiple of 16 nodes in each direction. By subtracting 8 it's rounded to the nearest chunk border. max is used to avoid negative radius.
-- By subtracting 8 it's rounded to the nearest chunk border. max is used to avoid negative radius.
size = math.max(math.floor(size - 8), 0)
local minp = vector.subtract(pos, size) local minp = vector.subtract(pos, size)
local maxp = vector.add(pos, size) local maxp = vector.add(pos, size)
@ -59,3 +46,5 @@ minetest.register_chatcommand("mapfix", {
return true, "Done." return true, "Done."
end, end,
}) })
minetest.log("action", "[mapfix] loaded.")

View File

@ -1,2 +1 @@
name = mapfix name = mapfix
description = Fix some map errors (flow and light problems)

View File

@ -1,4 +0,0 @@
mapfix_default_size (default size a mapfix range is) int 24
mapfix_max_size (max size a mapfix range can be) int 32
mapfix_delay (delay between issueing of /mapfix for players) int 15
mapfix_priv (priv for unrestricted /mapfix use) string server