123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753 |
- -- Hardcoded positions of the outback gates, indexed by the name of the realm
- -- they're supposed to lead to.
- serveressentials.outback_gates = {
- overworld = {pos={x=-9186, y=4501, z=5830}, dir="ew"},
- stoneworld = {pos={x=-9162, y=4501, z=5823}, dir="ew"},
- channelwood = {pos={x=-9186, y=4501, z=5823}, dir="ew"},
- jarkati = {pos={x=-9168, y=4501, z=5820}, dir="ns"},
- naraxen = {pos={x=-9183, y=4501, z=5836}, dir="ns"},
- ariba = {pos={x=-9168, y=4501, z=5836}, dir="ns"},
- }
- function serveressentials.get_gate(realm)
- local data = serveressentials.outback_gates[realm]
- if data then
- return data
- end
- -- Use the overworld gate as fallback.
- return serveressentials.outback_gates["overworld"]
- end
- -- Shall return a list of the names of realms the Outback links to.
- function serveressentials.get_realm_names()
- local t = {}
- for k, v in pairs(serveressentials.outback_gates) do
- t[#t + 1] = k
- end
- return t
- end
- local WEBADDR = minetest.settings:get("server_address")
- -- Localize for performance.
- local vector_distance = vector.distance
- local vector_round = vector.round
- -- Called by the protector mod to determine if a protector can be placed here,
- -- with respect to the Outback gateway's current exit location.
- local PROTECTOR_DISTANCE_FROM_EXIT = 50
- function serveressentials.protector_can_place(pos, realm)
- local p2 = minetest.string_to_pos(serveressentials.get_exit_location(realm))
- if vector_distance(pos, p2) > PROTECTOR_DISTANCE_FROM_EXIT then
- return true
- end
- return false
- end
- function serveressentials.get_exit_location(realm)
- local meta = serveressentials.modstorage
- local s = meta:get_string("outback_exit_location_" .. realm)
- -- Backward compatibility.
- if realm == "overworld" then
- if s == "" then
- s = meta:get_string("outback_exit_location")
- end
- end
- if s ~= "" then
- local p = minetest.string_to_pos(s)
- if p then
- return s
- end
- end
- -- Any realm, not 'overworld', that hasn't been initialized yet.
- -- Find a new spawn location.
- if s == "" then
- randspawn.find_new_spawn(false, realm)
- end
- -- Fallback.
- -- If we weren't initialized (s == ""), the exit location should be updated
- -- momentarilly as a result of the 'find_new_spawn' call.
- return "(0,-7,0)"
- end
- function serveressentials.get_current_exit_location(realm)
- local gate = serveressentials.get_gate(realm)
- local m2 = minetest.get_meta(gate.pos)
- local s2 = m2:get_string("obsidian_gateway_destination_" .. gate.dir)
- return s2
- end
- function serveressentials.update_exit_location(pos, realm)
- pos = vector_round(pos)
- -- Update the location stored in mod-storage.
- local meta = serveressentials.modstorage
- local s = minetest.pos_to_string(pos)
- meta:set_string("outback_exit_location_" .. realm, s)
- -- Also need to update the gate itself, right away.
- local gate = serveressentials.get_gate(realm)
- local m2 = minetest.get_meta(gate.pos)
- m2:set_string("obsidian_gateway_destination_" .. gate.dir, s)
- -- Make sure there's a return gate entity, in lieu of an actual gate.
- obsidian_gateway.create_portal_entity(vector.offset(pos, 0, 7, 0), {
- target = obsidian_gateway.get_gate_player_spawn_pos(gate.pos, gate.dir),
- })
- end
- local nodes = {
- -- Add a chair to the miner's hut.
- {pos={x=-9177, y=4576, z=5745}, node={name="xdecor:chair", param2=3}},
- -- Graveyard protector.
- {pos={x=-9266, y=4570, z=5724}, node={name="protector:protect3", param2=0}},
- -- Farm protectors.
- {pos={x=-9082, y=4579, z=5720}, node={name="protector:protect3", param2=0}},
- {pos={x=-9139, y=4568, z=5795}, node={name="protector:protect3", param2=0}},
- {pos={x=-9199, y=4569, z=5836}, node={name="protector:protect3", param2=0}},
- -- Protector in the miner's hut.
- {pos={x=-9176, y=4575, z=5745}, node={name="protector:protect3", param2=0}},
- -- Spawn protectors.
- {pos={x=-9223, y=4567, z=5861}, node={name="protector:protect", param2=0}},
- {pos={x=-9228, y=4572, z=5851}, node={name="protector:protect", param2=0}},
- {pos={x=-9227, y=4572, z=5861}, node={name="protector:protect", param2=0}},
- -- Bridge protectors.
- {pos={x=-9227, y=4572, z=5833}, node={name="protector:protect", param2=0}},
- {pos={x=-9228, y=4572, z=5841}, node={name="protector:protect", param2=0}},
- -- Extra signs at spawn.
- {pos={x=-9221, y=4569, z=5861}, node={name="signs:sign_wall_brass", param2=2}},
- {pos={x=-9221, y=4569, z=5860}, node={name="signs:sign_wall_brass", param2=2}},
- {pos={x=-9221, y=4570, z=5861}, node={name="signs:sign_wall_brass", param2=2}},
- {pos={x=-9221, y=4570, z=5860}, node={name="signs:sign_wall_brass", param2=2}},
- -- Extra pillar between Oerkki spawn point and the gate.
- --[[
- {pos={x=-9169, y=4504, z=5782}, node={name="pillars:rackstone_cobble_top", param2=3}},
- {pos={x=-9169, y=4503, z=5782}, node={name="walls:rackstone_cobble_noconnect", param2=0}},
- {pos={x=-9169, y=4502, z=5782}, node={name="walls:rackstone_cobble_noconnect", param2=0}},
- {pos={x=-9169, y=4501, z=5782}, node={name="walls:rackstone_cobble_noconnect", param2=0}},
- {pos={x=-9169, y=4500, z=5782}, node={name="pillars:rackstone_cobble_bottom", param2=3}},
- --]]
- -- Beacon protectors.
- {pos={x=-9176, y=4591, z=5745}, node={name="protector:protect", param2=0}},
- {pos={x=-9176, y=4585, z=5745}, node={name="protector:protect", param2=0}},
- -- Signs in miner's hut.
- {pos={x=-9177, y=4577, z=5744}, node={name="signs:sign_wall_wood", param2=3}},
- {pos={x=-9177, y=4576, z=5744}, node={name="signs:sign_wall_wood", param2=3}},
- {pos={x=-9177, y=4577, z=5745}, node={name="signs:sign_wall_wood", param2=3}},
- {pos={x=-9175, y=4577, z=5746}, node={name="signs:sign_wall_wood", param2=4}},
- {pos={x=-9175, y=4576, z=5746}, node={name="signs:sign_wall_wood", param2=4}},
- -- Sign in the "fake gate" in the Oerkki guardroom.
- {pos={x=-9164, y=4503, z=5782}, node={name="signs:sign_wall_wood", param2=2}},
- }
- local function rebuild_nodes()
- for k, v in ipairs(nodes) do
- minetest.set_node(v.pos, v.node)
- end
- end
- local OWNERNAME = minetest.settings:get("name") or "singleplayer"
- local metadata = {
- --[[
- -- Gate room, protection on floor.
- {pos={x=-9174, y=4099, z=5782}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- -- Gate room, protection on ceiling.
- {pos={x=-9174, y=4106, z=5782}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- -- Gate protection, left side.
- {pos={x=-9165, y=4103, z=5785}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- -- Gate protection, right side.
- {pos={x=-9165, y=4103, z=5779}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- -- Poem, left side.
- {pos={x=-9172, y=4100, z=5783}, meta={fields={
- infotext = "Make your choice, adventurous Stranger,\nStrike the Gate and bide the Danger!",
- author = OWNERNAME,
- text = "Make your choice, adventurous Stranger,%nStrike the Gate and bide the Danger!"
- }}},
- -- Poem, right side.
- {pos={x=-9172, y=4100, z=5781}, meta={fields={
- infotext = "Or else wonder, till it drives you mad,\nWhat would have followed, if you had.",
- author = OWNERNAME,
- text = "Or else wonder, till it drives you mad,%nWhat would have followed, if you had."
- }}},
- --]]
- -- Door on the miner's hut.
- {pos={x=-9174, y=4575, z=5744}, meta={fields={
- state = "1",
- }}},
- -- Door on the calico stash (safe from Indians!).
- {pos={x=-9090, y=4582, z=5869}, meta={fields={
- state = "0",
- }}},
- -- Gate meta now added dynamically. No more hardcoding.
- --[[
- -- Door portal to Overworld.
- {pos=serveressentials.get_gate("overworld").pos,
- is_gate=true,
- meta={fields={
- obsidian_gateway_success_ew = "yes",
- obsidian_gateway_return_gate_ew = "0",
- obsidian_gateway_owner_ew = OWNERNAME,
- obsidian_gateway_destination_ew = serveressentials.get_exit_location("overworld"),
- }}},
- -- Portal to Dead Seabed.
- {pos=serveressentials.get_gate("stoneworld").pos,
- is_gate=true,
- meta={fields={
- obsidian_gateway_success_ew = "yes",
- obsidian_gateway_return_gate_ew = "0",
- obsidian_gateway_owner_ew = OWNERNAME,
- obsidian_gateway_destination_ew = serveressentials.get_exit_location("stoneworld"),
- }}},
- --]]
- -- Gravesite sign, left.
- {pos={x=-9265, y=4572, z=5724}, meta={fields={
- infotext = "Henry D. Miner\nApril 13, 1821 - October 3, 1890\n\"An ardent Abolitionist, a true Republican, and a determined teetotaler.\"",
- author = OWNERNAME,
- text = "Henry D. Miner%nApril 13, 1821 - October 3, 1890%n\"An ardent Abolitionist, a true Republican, and a determined teetotaler.\""
- }}},
- -- Gravesite sign, right.
- {pos={x=-9267, y=4572, z=5724}, meta={fields={
- infotext = "Martha Ann Lee Miner\nNovember 2, 1829 - February 19, 1897",
- author = OWNERNAME,
- text = "Martha Ann Lee Miner%nNovember 2, 1829 - February 19, 1897"
- }}},
- -- Spawn sign, left.
- {pos={x=-9221, y=4570, z=5861}, meta={fields={
- infotext = "Use /spawn to get back here.",
- author = OWNERNAME,
- text = "Use /spawn to get back here."
- }}},
- -- Spawn sign, right.
- {pos={x=-9221, y=4570, z=5860}, meta={fields={
- infotext = "Use /info to get help.",
- author = OWNERNAME,
- text = "Use /info to get help."
- }}},
- -- Spawn sign, bottom left.
- {pos={x=-9221, y=4569, z=5861}, meta={fields={
- infotext = "See \"http://" .. WEBADDR .. "\" for important info.",
- author = OWNERNAME,
- text = "See \"http://" .. WEBADDR .. "\" for important info."
- }}},
- -- Spawn sign, bottom right.
- {pos={x=-9221, y=4569, z=5860}, meta={fields={
- infotext = "Take care, don't rush!",
- author = OWNERNAME,
- text = "Take care, don't rush!"
- }}},
- -- Sign in the "fake gate" in the Oerkki guardroom.
- {pos={x=-9164, y=4503, z=5782}, meta={fields={
- infotext = "This is not the portal you are looking for.",
- author = OWNERNAME,
- text = "This is not the portal you are looking for."
- }}},
- -- More signs.
- {pos={x=-9174, y=4502, z=5772}, meta={fields={
- infotext = "The Guardroom",
- author = OWNERNAME,
- text = "The Guardroom"
- }}},
- {pos={x=-9174, y=4502, z=5792}, meta={fields={
- infotext = "The Guardroom",
- author = OWNERNAME,
- text = "The Guardroom"
- }}},
- -- Graveyard protector.
- {pos={x=-9266, y=4570, z=5724}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- -- Farm protectors.
- {pos={x=-9082, y=4579, z=5720}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- {pos={x=-9139, y=4568, z=5795}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- {pos={x=-9199, y=4569, z=5836}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- -- Protector in the miner's hut.
- {pos={x=-9176, y=4575, z=5745}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- -- Spawn cave protectors.
- {pos={x=-9223, y=4567, z=5861}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- {pos={x=-9228, y=4572, z=5851}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- {pos={x=-9227, y=4572, z=5861}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- -- Bridge protectors.
- {pos={x=-9227, y=4572, z=5833}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- {pos={x=-9228, y=4572, z=5841}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2020/02/12 UTC",
- rename = OWNERNAME,
- }}},
- -- Beacon protectors (over miners' hut).
- {pos={x=-9176, y=4585, z=5745}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2024/05/26 UTC",
- owner = OWNERNAME,
- placedate = "2024/05/26 UTC",
- rename = OWNERNAME,
- }}},
- {pos={x=-9176, y=4591, z=5745}, meta={fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2024/05/26 UTC",
- owner = OWNERNAME,
- placedate = "2024/05/26 UTC",
- rename = OWNERNAME,
- }}},
- -- Signs in miner's hut.
- {pos={x=-9177, y=4577, z=5744}, meta={fields={
- infotext = "Find the Dimensional Gate at the bottom of this rope.\nThe gate is guarded.\nPrepare for combat!",
- author = OWNERNAME,
- text = "Find the Dimensional Gate at the bottom of this rope.%nThe gate is guarded.%nPrepare for combat!"
- }}},
- {pos={x=-9177, y=4577, z=5745}, meta={fields={
- infotext = "If you skipped reading /info, be sure to read it now.\nIf the rope doesn't go all the way, punch the end to fix.",
- author = OWNERNAME,
- text = "If you skipped reading /info, be sure to read it now.%nIf the rope doesn't go all the way, punch the end to fix."
- }}},
- {pos={x=-9177, y=4576, z=5744}, meta={fields={
- infotext = "There is NO WAY BACK BUT DEATH.",
- author = OWNERNAME,
- text = "There is NO WAY BACK BUT DEATH."
- }}},
- {pos={x=-9175, y=4577, z=5746}, meta={fields={
- infotext = "I hope, for your sake, you brought a bed and mutton.\nIf you didn't bring a bed, you'll wish you had ...\nAnd you'll find yourself standing in morde poo.",
- author = OWNERNAME,
- text = "I hope, for your sake, you brought a bed and mutton.%nIf you didn't bring a bed, you'll wish you had ...%nAnd you'll find yourself standing in morde poo."
- }}},
- {pos={x=-9175, y=4576, z=5746}, meta={fields={
- infotext = "Fortune favors the bold. Death finds the stupid.\nUsing a gate at night is stupid.\nDon't be that guy.",
- author = OWNERNAME,
- text = "Fortune favors the bold. Death finds the stupid.%nUsing a gate at night is stupid.%nDon't be that guy."
- }}},
- -- Table sign in the 2024 Outback Gateroom.
- {pos={x=-9174, y=4501, z=5828}, meta={fields={
- infotext = "Make your choice, adventurous Stranger,\nStrike a Door and bide the Danger!\nOr else wonder, till it drives you mad,\nWhat would have followed, if you had.\n---- C.S. Lewis (modified)",
- author = OWNERNAME,
- text = "Make your choice, adventurous Stranger,%nStrike a Door and bide the Danger!%nOr else wonder, till it drives you mad,%nWhat would have followed, if you had.%n---- C.S. Lewis (modified)"
- }}},
- }
- -- Dynamically add metadata for gates based on the gate list.
- local function get_gate_meta()
- local metaout = {}
- for realmname, v in pairs(serveressentials.outback_gates) do
- --print(dump(serveressentials.get_exit_location(realmname)))
- table.insert(metaout, {
- pos = v.pos,
- is_gate = true,
- meta = {
- fields = {
- ["obsidian_gateway_success_" .. v.dir] = "yes",
- ["obsidian_gateway_return_gate_" .. v.dir] = "0",
- ["obsidian_gateway_owner_" .. v.dir] = OWNERNAME,
- ["obsidian_gateway_destination_" .. v.dir] = serveressentials.get_exit_location(realmname),
- }
- }
- })
- end
- return metaout
- end
- local function rebuild_metadata(metain)
- -- For getting rid of the fence blocks in opened gates.
- -- Needed else portal liquid won't spawn.
- local function erase(targets)
- for i = 1, #targets, 1 do
- if minetest.get_node(targets[i]).name == "default:fence_wood" then
- minetest.set_node(targets[i], {name="air"})
- end
- end
- end
- for k, v in ipairs(metain) do
- local meta = minetest.get_meta(v.pos)
- meta:from_table(v.meta)
- if v.is_gate then
- if v.meta.fields.obsidian_gateway_destination_ew then
- erase(obsidian_gateway.door_positions(v.pos, false))
- obsidian_gateway.spawn_liquid(v.pos, false, false, true)
- elseif v.meta.fields.obsidian_gateway_destination_ns then
- erase(obsidian_gateway.door_positions(v.pos, true))
- obsidian_gateway.spawn_liquid(v.pos, true, false, true)
- end
- end
- end
- end
- local timers = {
- -- First farm.
- {x=-9139, y=4172, z=5796},
- {x=-9140, y=4172, z=5796},
- -- Hilltop farm.
- {x=-9083, y=4183, z=5721},
- {x=-9082, y=4183, z=5721},
- {x=-9081, y=4183, z=5721},
- {x=-9083, y=4183, z=5719},
- {x=-9082, y=4183, z=5719},
- {x=-9081, y=4183, z=5719},
- }
- local function restart_timers()
- for k, v in ipairs(timers) do
- local timer = minetest.get_node_timer(vector.add(v, {x=0, y=400, z=0}))
- timer:start(1)
- end
- end
- -- Find outback surface under sunlight.
- local function find_ground(pos)
- local n1 = minetest.get_node(pos)
- local p2 = vector.offset(pos, 0, -1, 0)
- local n2 = minetest.get_node(p2)
- local count = 0
- while n2.name == "air" and count < 32 do
- pos = p2
- n1 = minetest.get_node(pos)
- p2 = vector.offset(pos, 0, -1, 0)
- n2 = minetest.get_node(p2)
- count = count + 1
- end
- if n2.name == "rackstone:cobble" and n1.name == "air" then
- if (minetest.get_node_light(pos, 0.5)) or 0 == 15 then
- return pos
- end
- end
- end
- local function place_random_farms(minp, maxp)
- for count = 1, 50 do
- local p = {
- x = math.random(minp.x + 10, maxp.x - 10),
- y = maxp.y,
- z = math.random(minp.z + 10, maxp.z - 10),
- }
- local g = find_ground(p)
- if g then
- -- Check corners.
- local c1 = find_ground(vector.offset(g, -2, 16, -2))
- local c2 = find_ground(vector.offset(g, 2, 16, -2))
- local c3 = find_ground(vector.offset(g, -2, 16, 2))
- local c4 = find_ground(vector.offset(g, 2, 16, 2))
- local b1, b2, b3, b4 = false, false, false, false
- -- Make sure ground is mostly flat.
- if c1 and math.abs(c1.y - g.y) < 2 then b1 = true end
- if c2 and math.abs(c2.y - g.y) < 2 then b2 = true end
- if c3 and math.abs(c3.y - g.y) < 2 then b3 = true end
- if c4 and math.abs(c4.y - g.y) < 2 then b4 = true end
- -- Can't be protected. This relies on protectors and protector meta being
- -- set *before* we place the farms!
- if minetest.test_protection(c1, "") then b1 = false end
- if minetest.test_protection(c2, "") then b2 = false end
- if minetest.test_protection(c3, "") then b3 = false end
- if minetest.test_protection(c4, "") then b4 = false end
- if b1 and b2 and b3 and b4 then
- local schematic = rc.modpath .. "/outback_small_farm.mts"
- local d = vector.offset(g, -2, -2, -2)
- minetest.place_schematic(d, schematic, "random", {}, true, "")
- end
- end
- end
- end
- local OUTBACK_SCHEMS = {
- {
- schem = rc.modpath .. "/outback_apron.mts",
- pos = {x=-9314, y=4141+400, z=5642},
- },
- {
- schem = rc.modpath .. "/outback_map.mts",
- pos = {x=-9274, y=4000+400, z=5682},
- },
- {
- schem = rc.modpath .. "/outback_beacon.mts",
- pos = {x=-9180, y=4580, z=5741},
- },
- {
- schem = rc.modpath .. "/outback_spawn_cave.mts",
- pos = {x=-9233, y=4568, z=5851},
- },
- {
- schem = rc.modpath .. "/outback_bridge.mts",
- pos = {x=-9232, y=4570, z=5828},
- },
- {
- schem = rc.modpath .. "/outback_hill_blackstone.mts",
- pos = {x=-9195, y=4576, z=5743},
- },
- {
- schem = rc.modpath .. "/outback_blackstone_deposit_1.mts",
- pos = {x=-9242, y=4565, z=5844},
- },
- {
- schem = rc.modpath .. "/outback_blackstone_deposit_2.mts",
- pos = {x=-9217, y=4560, z=5873},
- },
- {
- schem = rc.modpath .. "/outback_blackstone_deposit_3.mts",
- pos = {x=-9088, y=4588, z=5870},
- },
- {
- schem = rc.modpath .. "/outback_blackstone_deposit_4.mts",
- pos = {x=-9258, y=4566, z=5706},
- },
- }
- local GATEROOM_SCHEMS = {
- {
- schem = rc.modpath .. "/outback_gateroom_2024.mts",
- pos1 = {x=-9188, y=4498, z=5818},
- pos2 = {x=-9160, y=4513, z=5838},
- protectors = true,
- },
- }
- local GUARDROOM_SCHEMS = {
- {
- schem = rc.modpath .. "/outback_guardroom_2024.mts",
- pos1 = {x=-9183, y=4498, z=5775},
- pos2 = {x=-9159, y=4507, z=5789},
- protectors = true,
- },
- {
- schem = rc.modpath .. "/outback_guardroom_floor.mts",
- pos1 = {x=-9178, y=4499, z=5777},
- pos2 = {x=-9168, y=4499, z=5787},
- protectors = false,
- },
- {
- schem = rc.modpath .. "/outback_guardroom_lights.mts",
- pos1 = {x=-9178, y=4500, z=5779},
- pos2 = {x=-9170, y=4505, z=5785},
- protectors = false,
- },
- {
- schem = rc.modpath .. "/outback_doorwall_01.mts",
- pos1 = {x=-9176, y=4500, z=5772},
- pos2 = {x=-9172, y=4502, z=5774},
- protectors = false,
- },
- {
- schem = rc.modpath .. "/outback_doorwall_02.mts",
- pos1 = {x=-9176, y=4500, z=5790},
- pos2 = {x=-9172, y=4502, z=5792},
- protectors = false,
- },
- }
- local function place_schematics(schems)
- local replacements = {}
- if minetest.registered_nodes["basictrees:acacia_branch"] then
- replacements = {
- ["stairs:slope_acacia_trunk_outer"] = "basictrees:acacia_branch",
- }
- end
- -- Place all schematics.
- for k, v in ipairs(schems) do
- minetest.place_schematic(v.pos or v.pos1, v.schem, "0", replacements, true, "")
- if v.protectors then
- local positions = minetest.find_nodes_in_area(v.pos1, v.pos2, "group:protector")
- for k, v in ipairs(positions) do
- local meta = minetest.get_meta(v)
- meta:from_table({fields={
- infotext = "Protection (Owned by <" .. OWNERNAME .. ">!)\nPlaced on 2020/02/12 UTC",
- owner = OWNERNAME,
- placedate = "2024/06/04 UTC",
- rename = OWNERNAME,
- }})
- end
- end
- end
- end
- serveressentials.place_schematics = place_schematics
- serveressentials.OUTBACK_SCHEMS = OUTBACK_SCHEMS
- serveressentials.GATEROOM_SCHEMS = GATEROOM_SCHEMS
- serveressentials.GUARDROOM_SCHEMS = GUARDROOM_SCHEMS
- local function callback(blockpos, action, calls_remaining, param)
- -- We don't do anything until the last callback.
- if calls_remaining ~= 0 then
- return
- end
- -- Check if there was an error on the LAST call.
- -- Note: this will usually fail if the area to emerge intersects the map edge.
- -- But usually we don't try to do that, here.
- if action == core.EMERGE_CANCELLED or action == core.EMERGE_ERRORED then
- return
- end
- -- Locate all nodes with metadata.
- local minp = table.copy(rc.get_realm_data("abyss").minp)
- local maxp = table.copy(rc.get_realm_data("abyss").maxp)
- local pos_metas = minetest.find_nodes_with_meta(minp, maxp)
- -- Locate all bones and load their meta into memory.
- local bones = {}
- for k, v in ipairs(pos_metas) do
- local node = minetest.get_node(v)
- if node.name == "bones:bones" then
- local meta = minetest.get_meta(v)
- local data = {}
- data.pos = v
- data.meta = meta:to_table()
- data.node = node
- bones[#bones + 1] = data
- end
- end
- -- Erase all stale metadata.
- for k, v in ipairs(pos_metas) do
- local meta = minetest.get_meta(v)
- meta:from_table(nil)
- end
- -- Place schematic. This overwrites all nodes, but not necessarily their meta.
- place_schematics(OUTBACK_SCHEMS)
- place_schematics(GATEROOM_SCHEMS)
- place_schematics(GUARDROOM_SCHEMS)
- -- Erase the rope.
- for k = 4500, 4577, 1 do
- local p = {x=-9177, y=k, z=5746}
- minetest.set_node(p, {name="air"})
- end
- -- Rebuild the rope, with self-constructing nodes.
- do
- local p = {x=-9177, y=4577, z=5746}
- local n = minetest.get_node(p)
- if n.name == "air" then
- minetest.add_node(p, {name="vines:rope_bottom"})
- local meta = minetest.get_meta(p)
- meta:set_int("length_remaining", 80)
- meta:mark_as_private("length_remaining")
- end
- end
- teleports.delete_blocks_from_area(minp, maxp)
- city_block.delete_blocks_from_area(minp, maxp)
- beds.delete_public_spawns_from_area(minp, maxp)
- -- Restore all bones.
- for k, v in ipairs(bones) do
- local np = vector.add(v.pos, {x=0, y=0, z=0})
- minetest.set_node(np, v.node)
- minetest.get_meta(np):from_table(v.meta)
- minetest.get_node_timer(np):start(10)
- end
- -- Finally, rebuild the core metadata and node structure.
- rebuild_nodes()
- rebuild_metadata(metadata)
- rebuild_metadata(get_gate_meta())
- restart_timers()
- place_random_farms(minp, maxp)
- end
- -- This API may be called to completely reset the Outback realm.
- -- It will restore the realm's map and metadata.
- function serveressentials.rebuild_outback()
- local p1 = table.copy(rc.get_realm_data("abyss").minp)
- local p2 = table.copy(rc.get_realm_data("abyss").maxp)
- minetest.emerge_area(p1, p2, callback, {})
- end
|