mirror of
https://github.com/minetest-mods/areas.git
synced 2024-12-26 10:40:40 +01:00
Added optional worldedit dependency and used it for selection.
This commit is contained in:
parent
177f659f4e
commit
d3b91a2aeb
1
depends.txt
Normal file
1
depends.txt
Normal file
@ -0,0 +1 @@
|
||||
worldedit?
|
45
pos.lua
45
pos.lua
@ -118,25 +118,46 @@ minetest.register_chatcommand("area_pos", {
|
||||
end,
|
||||
})
|
||||
|
||||
function areas.useWorldedit(playerName)
|
||||
if minetest.get_modpath("worldedit") then
|
||||
return nil == playerName or minetest.check_player_privs(playerName, "worldedit");
|
||||
else
|
||||
return false;
|
||||
end
|
||||
end
|
||||
|
||||
function areas:getPos(playerName)
|
||||
local pos1, pos2 = areas.pos1[playerName], areas.pos2[playerName]
|
||||
if not (pos1 and pos2) then
|
||||
return nil
|
||||
end
|
||||
-- Copy positions so that the area table doesn't contain multiple
|
||||
-- references to the same position.
|
||||
pos1, pos2 = vector.new(pos1), vector.new(pos2)
|
||||
return areas:sortPos(pos1, pos2)
|
||||
if areas.useWorldedit(playerName) then
|
||||
local pos1, pos2 = worldedit.pos1[playerName], worldedit.pos2[playerName];
|
||||
else
|
||||
local pos1, pos2 = areas.pos1[playerName], areas.pos2[playerName];
|
||||
end
|
||||
|
||||
if not (pos1 and pos2) then
|
||||
return nil
|
||||
end
|
||||
-- Copy positions so that the area table doesn't contain multiple
|
||||
-- references to the same position.
|
||||
pos1, pos2 = vector.new(pos1), vector.new(pos2)
|
||||
return areas:sortPos(pos1, pos2)
|
||||
end
|
||||
|
||||
function areas:setPos1(playerName, pos)
|
||||
areas.pos1[playerName] = pos
|
||||
areas.markPos1(playerName)
|
||||
if areas.useWorldedit(playerName) then
|
||||
worldedit.pos1[playerName] = pos;
|
||||
else
|
||||
areas.pos1[playerName] = pos
|
||||
areas.markPos1(playerName)
|
||||
end
|
||||
end
|
||||
|
||||
function areas:setPos2(playerName, pos)
|
||||
areas.pos2[playerName] = pos
|
||||
areas.markPos2(playerName)
|
||||
if areas.useWorldedit(playerName) then
|
||||
worldedit.pos2[playerName] = pos;
|
||||
else
|
||||
areas.pos2[playerName] = pos
|
||||
areas.markPos2(playerName)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user