123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408 |
- -- Minetest mod "City block"
- -- City block disables use of water/lava buckets and also sends aggressive players to jail
- -- 2016.02 - improvements suggested by rnd. removed spawn_jailer support. some small fixes and improvements.
- -- This library is free software; you can redistribute it and/or
- -- modify it under the terms of the GNU Lesser General Public
- -- License as published by the Free Software Foundation; either
- -- version 2.1 of the License, or (at your option) any later version.
- city_block = city_block or {}
- city_block.blocks = city_block.blocks or {}
- city_block.filename = minetest.get_worldpath() .. "/city_blocks.txt"
- city_block.modpath = minetest.get_modpath("city_block")
- function city_block:save()
- local datastring = minetest.serialize(self.blocks)
- if not datastring then
- return
- end
- local file, err = io.open(self.filename, "w")
- if err then
- return
- end
- file:write(datastring)
- file:close()
- end
- function city_block:load()
- local file, err = io.open(self.filename, "r")
- if err then
- self.blocks = {}
- return
- end
- self.blocks = minetest.deserialize(file:read("*all"))
- if type(self.blocks) ~= "table" then
- self.blocks = {}
- end
- file:close()
- end
- function city_block:in_city(pos)
- -- Covers a 45x45x45 area.
- local r = 22
- for k, v in ipairs(self.blocks) do
- if pos.x > (v.pos.x - r) and pos.x < (v.pos.x + r) and
- pos.z > (v.pos.z - r) and pos.z < (v.pos.z + r) and
- pos.y > (v.pos.y - r) and pos.y < (v.pos.y + r) then
- return true
- end
- end
- return false
- end
- function city_block:in_safebed_zone(pos)
- -- Covers a 111x111x111 area.
- local r = 55
- for k, v in ipairs(self.blocks) do
- if pos.x > (v.pos.x - r) and pos.x < (v.pos.x + r) and
- pos.z > (v.pos.z - r) and pos.z < (v.pos.z + r) and
- pos.y > (v.pos.y - r) and pos.y < (v.pos.y + r) then
- return true
- end
- end
- return false
- end
- function city_block:in_no_tnt_zone(pos)
- local r = 50
- for k, v in ipairs(self.blocks) do
- if pos.x > (v.pos.x - r) and pos.x < (v.pos.x + r) and
- pos.z > (v.pos.z - r) and pos.z < (v.pos.z + r) and
- pos.y > (v.pos.y - r) and pos.y < (v.pos.y + r) then
- return true
- end
- end
- return false
- end
- function city_block:in_no_leecher_zone(pos)
- local r = 100
- for k, v in ipairs(self.blocks) do
- if pos.x > (v.pos.x - r) and pos.x < (v.pos.x + r) and
- pos.z > (v.pos.z - r) and pos.z < (v.pos.z + r) and
- pos.y > (v.pos.y - r) and pos.y < (v.pos.y + r) then
- return true
- end
- end
- return false
- end
- if not city_block.run_once then
- city_block:load()
- minetest.register_node("city_block:cityblock", {
- description = "Lawful Zone Marker [Marks a 45x45x45 area as a city.]\n\nSaves your bed respawn position, if someone killed you within the city area.\nMurderers and trespassers will be sent to the Colony jail if caught in a city.\nPrevents the use of ore leeching equipment within 100 meters radius.\nPrevents mining with TNT nearby.",
- tiles = {"moreblocks_circle_stone_bricks.png^default_tool_mesepick.png"},
- is_ground_content = false,
- groups = utility.dig_groups("obsidian", {
- immovable=1,
- }),
- is_ground_content = false,
- sounds = default.node_sound_stone_defaults(),
- after_place_node = function(pos, placer)
- if placer and placer:is_player() then
- local pname = placer:get_player_name()
- local meta = minetest.get_meta(pos)
- local dname = rename.gpn(pname)
- meta:set_string("rename", dname)
- meta:set_string("owner", pname)
- meta:set_string("infotext", "City Marker (Placed by <" .. dname .. ">!)")
- table.insert(city_block.blocks, {pos=vector.round(pos), owner=pname})
- city_block:save()
- end
- end,
- -- We don't need an `on_blast` func because TNT calls `on_destruct` properly!
- on_destruct = function(pos)
- -- The cityblock may not exist in the list if the node was created by falling,
- -- and was later dug.
- for i, EachBlock in ipairs(city_block.blocks) do
- if vector.equals(EachBlock.pos, pos) then
- table.remove(city_block.blocks, i)
- city_block:save()
- end
- end
- end,
- -- Called by rename LBM.
- _on_rename_check = function(pos)
- local meta = minetest.get_meta(pos)
- local owner = meta:get_string("owner")
- -- Nobody placed this block.
- if owner == "" then
- return
- end
- local dname = rename.gpn(owner)
- meta:set_string("rename", dname)
- meta:set_string("infotext", "City Marker (Placed by <" .. dname .. ">!)")
- end,
- })
- minetest.register_craft({
- output = 'city_block:cityblock',
- recipe = {
- {'default:pick_mese', 'farming:hoe_mese', 'default:sword_diamond'},
- {'chests:chest_locked', 'default:goldblock', 'default:sandstone'},
- {'default:obsidianbrick', 'default:mese', 'cobble_furnace:inactive'},
- }
- })
- minetest.register_privilege("disable_pvp", "Players cannot damage players with this priv by punching.")
- minetest.register_on_punchplayer(function(...)
- return city_block.on_punchplayer(...)
- end)
- local c = "city_block:core"
- local f = city_block.modpath .. "/init.lua"
- reload.register_file(c, f, false)
- city_block.run_once = true
- end
- function city_block:get_adjective()
- local adjectives = {
- "murdering",
- "slaying",
- "killing",
- "whacking",
- "trashing",
- "fatally attacking",
- "fatally harming",
- "doing away with",
- "giving the Chicago treatment to",
- "fatally thrashing",
- "fatally stabbing",
- }
- return adjectives[math.random(1, #adjectives)]
- end
- local murder_messages = {
- "<v> collapsed from <k>'s brutal attack.",
- "<k>'s <w> apparently wasn't such an unusual weapon after all, as <v> found out.",
- "<k> killed <v> with great prejudice.",
- "<v> died from <k>'s horrid slaying.",
- "<v> fell prey to <k>'s deadly <w>.",
- "<k> went out of <k_his> way to slay <v> with <k_his> <w>.",
- "<v> danced <v_himself> to death under <k>'s craftily wielded <w>.",
- "<k> used <k_his> <w> to kill <v> with prejudice.",
- "<k> made a splortching sound with <v>'s head.",
- "<v> got flattened by <k>'s skillfully handled <w>.",
- "<v> became prey for <k>.",
- "<v> didn't get out of <k>'s way in time.",
- "<v> SAW <k> coming with <k_his> <w>. Didn't get away in time.",
- "<v> made no real attempt to get out of <k>'s way.",
- "<k> barreled through <v> as if <v_he> wasn't there.",
- "<k> sent <v> to that place where kindling wood isn't needed.",
- "<v> didn't suspect that <k> meant <v_him> any harm.",
- "<v> fought <k> to the death and lost painfully.",
- "<v> knew <k> was wielding <k_his> <w> but didn't guess what <k> meant to do with it.",
- "<k> clonked <v> over the head using <k_his> <w> with silent skill.",
- "<k> made sure <v> didn't see that coming!",
- "<k> has decided <k_his> favorite weapon is <k_his> <w>.",
- "<v> did the mad hatter dance just before being killed with <k>'s <w>.",
- "<v> played the victim to <k>'s bully behavior!",
- "<k> used <v> for weapons practice with <k_his> <w>.",
- "<v> failed to avoid <k>'s oncoming weapon.",
- "<k> successfully got <v> to complain of a headache.",
- "<v> got <v_himself> some serious hurt from <k>'s <w>.",
- "Trying to talk peace to <k> didn't win any for <v>.",
- "<v> was brutally slain by <k>'s <w>.",
- "<v> jumped the mad-hatter dance under <k>'s <w>.",
- "<v> got <v_himself> a fatal mauling by <k>'s <w>.",
- "<k> just assassinated <v> with <k_his> <w>.",
- "<k> split <v>'s wig.",
- "<k> took revenge on <v>.",
- "<k> flattened <v>.",
- "<v> played dead. Permanently.",
- "<v> never saw what hit <v_him>.",
- "<k> took <v> by surprise.",
- "<v> was assassinated.",
- "<k> didn't take any prisoners from <v>.",
- "<k> pinned <v> to the wall with <k_his> <w>.",
- "<v> failed <v_his> weapon checks.",
- }
- function city_block.murder_message(killer, victim, sendto)
- local msg = murder_messages[math.random(1, #murder_messages)]
- msg = string.gsub(msg, "<v>", "<" .. rename.gpn(victim) .. ">")
- msg = string.gsub(msg, "<k>", "<" .. rename.gpn(killer) .. ">")
- local ksex = skins.get_gender_strings(killer)
- local vsex = skins.get_gender_strings(victim)
- msg = string.gsub(msg, "<k_himself>", ksex.himself)
- msg = string.gsub(msg, "<k_his>", ksex.his)
- msg = string.gsub(msg, "<v_himself>", vsex.himself)
- msg = string.gsub(msg, "<v_his>", vsex.his)
- msg = string.gsub(msg, "<v_him>", vsex.him)
- msg = string.gsub(msg, "<v_he>", vsex.he)
- if string.find(msg, "<w>") then
- local hitter = minetest.get_player_by_name(killer)
- if hitter then
- local wield = hitter:get_wielded_item()
- local def = minetest.registered_items[wield:get_name()]
- local meta = wield:get_meta()
- local description = meta:get_string("description")
- if description ~= "" then
- msg = string.gsub(msg, "<w>", "'" .. utility.get_short_desc(description):trim() .. "'")
- elseif def and def.description then
- local str = utility.get_short_desc(def.description)
- if str == "" then
- str = "Potato Fist"
- end
- msg = string.gsub(msg, "<w>", str)
- end
- end
- end
- if type(sendto) == "string" then
- minetest.chat_send_player(sendto, "# Server: " .. msg)
- else
- minetest.chat_send_all("# Server: " .. msg)
- end
- end
- local in_jail = function(pos)
- -- Surface jail.
- if pos.y <= -48 and pos.y >= -52 then
- if pos.x >= -11 and pos.x <= 11 and pos.z >= -11 and pos.z <= 11 then
- return true
- end
- end
- -- Nether jail.
- if pos.y <= -30760 and pos.y >= -30770 then
- if pos.x >= -11 and pos.x <= 11 and pos.z >= -11 and pos.z <= 11 then
- return true
- end
- end
- end
- function city_block.hit_possible(p1pos, p2pos)
- -- Range limit, stops hackers with long reach.
- if vector.distance(p1pos, p2pos) > 5 then
- return false
- end
- -- Cannot attack through walls.
- -- But if node wouldn't stop an arrow, keep testing the line.
- --local raycast = minetest.raycast(p1pos, p2pos, false, false)
- -- This seems to cause random freezes and 100% CPU.
- --[[
- local los, pstop = minetest.line_of_sight(p1pos, p2pos)
- while not los do
- if throwing.node_blocks_arrow(minetest.get_node(vector.round(pstop)).name) then
- return false
- end
- local dir = vector.direction(pstop, p2pos)
- local ns = vector.add(pstop, dir)
- los, pstop = minetest.line_of_sight(ns, p2pos)
- end
- --]]
- return true
- end
- city_block.attacker = city_block.attacker or {}
- city_block.attack = city_block.attack or {}
- -- Return `true' to prevent the default damage mechanism.
- function city_block.on_punchplayer(player, hitter, time_from_last_punch, tool_capabilities, dir, damage)
- if not player:is_player() or not hitter:is_player() then
- return
- end
- -- Random accidents happen to punished players during PvP.
- do
- local attacker_pname = hitter:get_player_name()
- if sheriff.is_cheater(attacker_pname) then
- if sheriff.punish_probability(attacker_pname) then
- sheriff.punish_player(attacker_pname)
- end
- end
- end
- local p1pos = utility.get_head_pos(hitter:get_pos())
- local p2pos = utility.get_head_pos(player:get_pos())
- -- Check if hit is physically possible (range, blockage, etc).
- if not city_block.hit_possible(p1pos, p2pos) then
- return true
- end
- -- PvP is disabled for players in jail. This fixes a possible way to exploit jail.
- if in_jail(p1pos) or in_jail(p2pos) then
- minetest.chat_send_player(hitter:get_player_name(), "# Server: Brawling is not allowed in jail. This is colony law.")
- return true
- end
- -- Admins cannot be punched.
- if minetest.check_player_privs(player:get_player_name(), {disable_pvp=true}) then
- return true
- end
- local victim_pname = player:get_player_name();
- local attacker_pname = hitter:get_player_name();
- local t = minetest.get_gametime() or 0;
- city_block.attacker[victim_pname] = attacker_pname;
- city_block.attack[victim_pname] = t;
- local hp = player:get_hp();
- if damage > 0 then
- ambiance.sound_play("player_damage", p2pos, 2.0, 30)
- end
- if hp > 0 and (hp - damage) <= 0 then -- player will die because of this hit
- default.detach_player_if_attached(player)
- city_block.murder_message(attacker_pname, victim_pname)
- if city_block:in_city(p2pos) then
- local t0 = city_block.attack[attacker_pname] or t;
- t0 = t - t0;
- if not city_block.attacker[attacker_pname] then
- city_block.attacker[attacker_pname] = ""
- end
- local landowner = protector.get_node_owner(p2pos) or ""
- -- Justified killing 10 seconds after provocation, but not if the victim owns the land.
- if city_block.attacker[attacker_pname] == victim_pname and t0 < 10 and victim_pname ~= landowner then
- return
- else -- go to jail
- -- Killers don't go to jail if the victim is a registered cheater.
- if not sheriff.is_cheater(victim_pname) then
- jail.go_to_jail(hitter, nil)
- minetest.chat_send_all(
- "# Server: Criminal <" .. rename.gpn(attacker_pname) .. "> was sent to gaol for " ..
- city_block:get_adjective() .. " <" .. rename.gpn(victim_pname) .. "> within city limits.")
- end
- end
- else
- -- Bed position is only lost if player died outside city.
- if not city_block:in_safebed_zone(p2pos) then
- -- Victim doesn't lose their bed respawn if they were killed by a cheater.
- if not sheriff.is_cheater(attacker_pname) then
- minetest.chat_send_player(victim_pname, "# Server: Your bed is lost! You were assassinated outside of any town, city, or municipality.")
- beds.clear_player_spawn(victim_pname)
- end
- end
- end
- end
- end
|