areas/protector.lua

161 lines
4.8 KiB
Lua
Raw Normal View History

2021-04-24 03:55:20 -07:00
local S = areas.S
2020-03-15 18:08:31 -07:00
2020-02-13 10:32:37 -08:00
local radius = minetest.settings:get("areasprotector_radius") or 8
2019-09-08 12:20:32 -07:00
local function cyan(str)
return minetest.colorize("#7CFC00", str)
2019-09-08 12:20:32 -07:00
end
local function red(str)
return minetest.colorize("#FF0000", str)
2019-09-08 12:20:32 -07:00
end
local vadd, vnew = vector.add, vector.new
2020-02-27 13:17:52 -08:00
minetest.register_node("areas:protector", {
2020-03-15 18:08:31 -07:00
description = S("Protector Block"),
2019-09-08 12:20:32 -07:00
tiles = {
"default_stonebrick_carved.png",
"default_stonebrick_carved.png",
2020-02-27 13:17:52 -08:00
"default_stonebrick_carved.png^areas_protector_stone.png"
2019-09-08 12:20:32 -07:00
},
paramtype = "light",
groups = {cracky = 1, not_cuttable = 1},
node_placement_prediction = "",
2019-09-08 12:20:32 -07:00
2021-11-22 09:22:32 -08:00
on_place = function(itemstack, player, pointed_thing)
local pos = pointed_thing.above
2021-07-28 09:37:03 -07:00
local name = player and player:get_player_name()
2021-11-22 09:22:32 -08:00
if not name or not minetest.is_protected(pos, name) then
-- Don't replace nodes that aren't buildable to
local old_node = minetest.get_node(pos)
local def = minetest.registered_nodes[old_node.name]
if not def or not def.buildable_to then
return itemstack
end
2021-11-22 09:22:32 -08:00
local pos1 = vadd(pos, vnew(radius, radius, radius))
local pos2 = vadd(pos, vnew(-radius, -radius, -radius))
local perm, err = areas:canPlayerAddArea(pos1, pos2, name)
2021-11-22 09:22:32 -08:00
if not perm then
2021-11-22 09:22:32 -08:00
minetest.chat_send_player(name,
red(S("You are not allowed to protect that area: @1", err)))
return itemstack
end
2021-11-22 09:22:32 -08:00
if minetest.find_node_near(pos, radius / 2, {"areas:protector"}) then
minetest.chat_send_player(name, red(S("You have already protected this area.")))
return itemstack
end
2021-04-24 03:33:01 -07:00
local id = areas:add(name, S("Protector Block"), pos1, pos2)
areas:save()
2020-02-13 10:32:37 -08:00
minetest.chat_send_player(name,
2021-11-22 09:22:32 -08:00
S("The area from @1 to @2 has been protected as ID @3",
cyan(minetest.pos_to_string(pos1)), cyan(minetest.pos_to_string(pos2)), cyan(id))
)
2020-02-27 13:17:52 -08:00
minetest.set_node(pos, {name = "areas:protector"})
local meta = minetest.get_meta(pos)
2021-04-24 03:55:20 -07:00
meta:set_string("infotext", S("Protected area @1, Owned by @2", id, name))
meta:set_int("area_id", id)
itemstack:take_item()
2019-09-08 12:20:32 -07:00
end
2021-11-22 09:22:32 -08:00
return itemstack
2019-09-08 12:20:32 -07:00
end,
2020-02-13 10:32:37 -08:00
after_dig_node = function(_, _, oldmetadata, digger)
2019-09-08 12:20:32 -07:00
if oldmetadata and oldmetadata.fields then
local id = tonumber(oldmetadata.fields.area_id)
2021-07-28 09:37:03 -07:00
local name = digger and digger:get_player_name() or ""
2022-02-08 07:38:58 -08:00
if areas.areas[id] and areas:isAreaOwner(id, name) then
2020-02-13 10:32:37 -08:00
areas:remove(id)
areas:save()
2021-11-22 09:22:32 -08:00
minetest.chat_send_player(name, S("Removed area @1", cyan(id)))
2019-09-08 12:20:32 -07:00
end
end
end,
2020-02-13 10:32:37 -08:00
on_punch = function(pos)
2021-04-24 03:33:01 -07:00
-- a radius of 0.5 since the entity serialization seems to be not that precise
local objs = minetest.get_objects_inside_radius(pos, 0.5)
2021-11-22 09:22:32 -08:00
for _, obj in pairs(objs) do
if not obj:is_player() and obj:get_luaentity().name == "areas:display" then
obj:remove()
2020-02-13 10:32:37 -08:00
return
2019-09-08 12:20:32 -07:00
end
end
2021-11-22 09:22:32 -08:00
minetest.add_entity(pos, "areas:display")
2019-09-08 12:20:32 -07:00
end
})
-- entities code below (and above) mostly copied-pasted from Zeg9's protector mod
2020-02-27 13:17:52 -08:00
minetest.register_entity("areas:display", {
2019-09-08 12:20:32 -07:00
physical = false,
2020-02-13 10:32:37 -08:00
collisionbox = {0},
2019-09-08 12:20:32 -07:00
visual = "wielditem",
2021-04-24 03:33:01 -07:00
-- wielditem seems to be scaled to 1.5 times original node size
visual_size = {x = 1.0 / 1.5, y = 1.0 / 1.5},
2020-02-27 13:17:52 -08:00
textures = {"areas:display_node"},
2020-02-13 10:32:37 -08:00
timer = 0,
2019-09-08 12:20:32 -07:00
on_step = function(self, dtime)
2020-02-13 10:32:37 -08:00
self.timer = self.timer + dtime
2021-11-22 09:22:32 -08:00
if self.timer > 4 or
minetest.get_node(self.object:get_pos()).name ~= "areas:protector" then
2019-09-08 12:20:32 -07:00
self.object:remove()
end
end
})
local nb_radius = radius + 0.55
2020-02-27 13:17:52 -08:00
minetest.register_node("areas:display_node", {
tiles = {"areas_protector_display.png"},
use_texture_alpha = "clip",
2019-09-08 12:20:32 -07:00
walkable = false,
drawtype = "nodebox",
node_box = {
type = "fixed",
fixed = {
-- sides
{-nb_radius, -nb_radius, -nb_radius, -nb_radius, nb_radius, nb_radius},
{-nb_radius, -nb_radius, nb_radius, nb_radius, nb_radius, nb_radius},
{nb_radius, -nb_radius, -nb_radius, nb_radius, nb_radius, nb_radius},
{-nb_radius, -nb_radius, -nb_radius, nb_radius, nb_radius, -nb_radius},
-- top
{-nb_radius, nb_radius, -nb_radius, nb_radius, nb_radius, nb_radius},
-- bottom
{-nb_radius, -nb_radius, -nb_radius, nb_radius, -nb_radius, nb_radius},
-- middle (surround protector)
2021-11-22 09:22:32 -08:00
{-0.55, -0.55, -0.55, 0.55, 0.55, 0.55}
2019-09-08 12:20:32 -07:00
}
},
2020-02-13 10:32:37 -08:00
selection_box = {type = "regular"},
2019-09-08 12:20:32 -07:00
paramtype = "light",
groups = {dig_immediate = 3, not_in_creative_inventory = 1},
drop = ""
})
minetest.register_craft({
2020-02-27 13:17:52 -08:00
output = "areas:protector",
2019-09-08 12:20:32 -07:00
type = "shapeless",
recipe = {
"default:stonebrickcarved", "default:stonebrickcarved", "default:stonebrickcarved",
"default:stonebrickcarved", "mesecons:wire_00000000_off", "default:stonebrickcarved",
"default:stonebrickcarved", "default:stonebrickcarved", "default:stonebrickcarved"
}
})
2020-02-27 13:17:52 -08:00
2020-10-20 15:19:40 -07:00
-- MVPS stopper
if mesecon and mesecon.register_mvps_stopper then
mesecon.register_mvps_stopper("areas:protector")
end
2020-02-27 13:17:52 -08:00
-- Aliases
minetest.register_alias("areasprotector:protector", "areas:protector")
minetest.register_alias("areasprotector:display_node", "areas:display_node")