2024-03-02 23:20:27 +01:00
|
|
|
-- There's a lot of duplicated code in this file, but removing it means adding more duplicated code... so I'm just going to leave it.
|
|
|
|
|
2024-03-02 21:55:08 +01:00
|
|
|
local function extract_dimension(pos)
|
|
|
|
if exchangeclone.mtg then
|
|
|
|
if minetest.get_modpath("nether") then
|
|
|
|
if pos.y >= nether.DEPTH_FLOOR and pos.y <= nether.DEPTH_CEILING then
|
|
|
|
local report_y = pos.y - nether.DEPTH_FLOOR
|
|
|
|
return "Nether", {x = pos.x, y = report_y, z = pos.z}
|
|
|
|
else
|
|
|
|
return "Overworld", pos
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return nil, pos
|
|
|
|
end
|
|
|
|
|
|
|
|
-- overworld
|
|
|
|
if (pos.y >= mcl_vars.mg_overworld_min) and (pos.y <= mcl_vars.mg_overworld_max) then
|
|
|
|
return "Overworld", pos
|
|
|
|
end
|
|
|
|
|
|
|
|
-- nether
|
|
|
|
if (pos.y >= mcl_vars.mg_nether_min) and (pos.y <= mcl_vars.mg_nether_max) then
|
|
|
|
local report_y = pos.y - mcl_vars.mg_nether_min
|
|
|
|
return "Nether", {x = pos.x, y = report_y, z = pos.z}
|
|
|
|
end
|
|
|
|
|
|
|
|
-- end
|
|
|
|
if (pos.y >= mcl_vars.mg_end_min) and (pos.y <= mcl_vars.mg_end_max) then
|
|
|
|
local report_y = pos.y - mcl_vars.mg_end_min
|
|
|
|
return "End", {x = pos.x, y = report_y, z = pos.z}
|
|
|
|
end
|
|
|
|
|
|
|
|
-- outside of scoped bounds.
|
|
|
|
return "Void", pos
|
|
|
|
end
|
|
|
|
|
|
|
|
local function add_dimension(dimension, pos)
|
|
|
|
dimension = dimension:lower()
|
|
|
|
if exchangeclone.mtg then
|
|
|
|
if dimension == "nether" then
|
|
|
|
if minetest.get_modpath("nether") then
|
|
|
|
local report_y = pos.y + nether.DEPTH_FLOOR
|
|
|
|
return {x = pos.x, y = report_y, z = pos.z}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return pos
|
|
|
|
end
|
|
|
|
|
|
|
|
if dimension == "nether" then
|
|
|
|
local report_y = pos.y + mcl_vars.mg_nether_min
|
|
|
|
return {x = pos.x, y = report_y, z = pos.z}
|
|
|
|
end
|
|
|
|
|
|
|
|
if dimension == "end" then
|
|
|
|
local report_y = pos.y + mcl_vars.mg_end_min
|
|
|
|
return {x = pos.x, y = report_y, z = pos.z}
|
|
|
|
end
|
|
|
|
|
|
|
|
return pos
|
|
|
|
end
|
|
|
|
|
|
|
|
local base_formspec = {
|
|
|
|
"formspec_version[3]",
|
|
|
|
"size[13,10]",
|
2024-03-02 23:20:27 +01:00
|
|
|
"field[8.5,0.5;3,0.7;name;;]",
|
2024-03-02 21:55:08 +01:00
|
|
|
"button[11.5,0.5;1,0.7;add;Add]",
|
|
|
|
"button[8.5,1.5;4,1;teleport;Teleport]",
|
|
|
|
"button[8.5,2.75;4,1;rename;Rename]",
|
|
|
|
"button[8.5,4;4,1;up;Move Up]",
|
|
|
|
"button[8.5,5.25;4,1;down;Move Down]",
|
|
|
|
"button[8.5,6.5;4,1;delete;Delete]",
|
|
|
|
"field_close_on_enter[name;false]",
|
|
|
|
"field_enter_after_edit[name;false]"
|
|
|
|
}
|
|
|
|
|
2024-03-02 23:20:27 +01:00
|
|
|
local formspec_data = {}
|
2024-03-02 21:55:08 +01:00
|
|
|
|
|
|
|
-- player: The player to be shown the formspec
|
|
|
|
-- index: The index of the location the player is currently selecting
|
|
|
|
-- use_stack_data: Whether to use locations stored with the book or the player.
|
|
|
|
local function show_formspec(player, index, use_stack_data)
|
|
|
|
local stack = player:get_wielded_item()
|
|
|
|
if minetest.get_item_group(stack:get_name(), "exchangeclone_alchemical_book") < 1 then
|
|
|
|
return
|
|
|
|
end
|
2024-03-02 23:20:27 +01:00
|
|
|
formspec_data[player:get_player_name()] = formspec_data[player:get_player_name()] or {}
|
|
|
|
formspec_data[player:get_player_name()].using_stack_data = use_stack_data
|
2024-03-02 21:55:08 +01:00
|
|
|
local book_data = stack:get_definition().alchemical_book_data
|
|
|
|
local data = minetest.deserialize((use_stack_data and stack or player):get_meta():get_string("exchangeclone_alchemical_book"))
|
|
|
|
local formspec = table.copy(base_formspec)
|
|
|
|
local player_pos = player:get_pos()
|
|
|
|
if type(data) ~= "table" then
|
|
|
|
data = {}
|
|
|
|
end
|
|
|
|
if not data.locations then
|
|
|
|
data.locations = {}
|
|
|
|
end
|
|
|
|
if #data.locations > 0 then
|
|
|
|
formspec[#formspec+1] = "textlist[0.5,0.5;7,7;location_list;"
|
|
|
|
for _, location in ipairs(data.locations) do
|
2024-03-02 23:20:27 +01:00
|
|
|
formspec[#formspec+1] = minetest.formspec_escape(location.name)..","
|
|
|
|
end
|
|
|
|
if index then
|
|
|
|
formspec[#formspec+1] = ";"..index
|
2024-03-02 21:55:08 +01:00
|
|
|
end
|
|
|
|
formspec[#formspec+1] = "]"
|
|
|
|
end
|
|
|
|
if index then
|
|
|
|
local selected = data.locations[index]
|
|
|
|
if selected then
|
|
|
|
local dimension, pos = extract_dimension(selected.pos)
|
|
|
|
local dimension_string = dimension and (" ("..dimension..")") or ""
|
|
|
|
local distance = vector.distance(pos, player_pos)
|
2024-03-02 23:20:27 +01:00
|
|
|
local cost = math.floor(book_data.emc_per_node*distance*20)/20
|
2024-03-02 21:55:08 +01:00
|
|
|
local info = minetest.formspec_escape(string.format([[%s
|
2024-03-02 23:20:27 +01:00
|
|
|
Position: %.1f, %.1f, %.1f%s
|
|
|
|
Distance: %.1f
|
|
|
|
Cost: %s EMC]], selected.name, pos.x, pos.y, pos.z, dimension_string, exchangeclone.format_number(distance), exchangeclone.format_number(cost)))
|
2024-03-02 21:55:08 +01:00
|
|
|
formspec[#formspec+1] = "textarea[0.5,8;4,4;;;"..info.."]"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
minetest.show_formspec(player:get_player_name(), "exchangeclone_alchemical_book", table.concat(formspec))
|
|
|
|
end
|
|
|
|
|
2024-03-02 23:20:27 +01:00
|
|
|
minetest.register_on_joinplayer(function(player)
|
|
|
|
formspec_data[player:get_player_name()] = nil
|
|
|
|
end)
|
|
|
|
|
|
|
|
minetest.register_on_leaveplayer(function(player)
|
|
|
|
formspec_data[player:get_player_name()] = nil
|
|
|
|
end)
|
|
|
|
|
2024-03-02 21:55:08 +01:00
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
|
|
|
if formname ~= "exchangeclone_alchemical_book" then return end
|
2024-03-02 23:20:27 +01:00
|
|
|
if fields.quit then
|
|
|
|
formspec_data[player:get_player_name()] = nil
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local use_stack_data = formspec_data[player:get_player_name()].using_stack_data
|
2024-03-02 21:55:08 +01:00
|
|
|
local stack = player:get_wielded_item()
|
2024-03-02 23:20:27 +01:00
|
|
|
if minetest.get_item_group(stack:get_name(), "exchangeclone_alchemical_book") < 1 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local meta = (use_stack_data and stack or player):get_meta()
|
|
|
|
local data = minetest.deserialize(meta:get_string("exchangeclone_alchemical_book"))
|
|
|
|
local index = formspec_data[player:get_player_name()].index
|
2024-03-02 21:55:08 +01:00
|
|
|
if type(data) ~= "table" then
|
|
|
|
data = {}
|
|
|
|
end
|
|
|
|
if not data.locations then
|
|
|
|
data.locations = {}
|
|
|
|
end
|
|
|
|
minetest.log(dump(fields))
|
2024-03-02 23:20:27 +01:00
|
|
|
if fields.key_enter_field == "name" or fields.add then
|
|
|
|
local name = fields.name
|
|
|
|
if name == "" then return end
|
|
|
|
for _, location in pairs(data.locations) do
|
|
|
|
if location.name == name then
|
|
|
|
minetest.chat_send_player(player:get_player_name(), "There is already a location called '"..location.name.."'")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
data.locations[#data.locations+1] = {name = name, pos = player:get_pos()}
|
|
|
|
meta:set_string("exchangeclone_alchemical_book", minetest.serialize(data))
|
|
|
|
if use_stack_data then player:set_wielded_item(stack) end
|
|
|
|
show_formspec(player, index, use_stack_data)
|
|
|
|
elseif fields.teleport then
|
|
|
|
if not data.locations[index] then return end
|
|
|
|
local pos = data.locations[index].pos
|
|
|
|
local _, adjusted_pos = extract_dimension(pos)
|
|
|
|
local distance = vector.distance(player:get_pos(), adjusted_pos)
|
|
|
|
local emc_per_node = stack:get_definition().alchemical_book_data.emc_per_node
|
|
|
|
local cost = distance*emc_per_node
|
|
|
|
cost = math.floor(cost*20)/20 -- floor to nearest .05, might fail if unless emc_per_node is over half a million
|
|
|
|
local player_emc = exchangeclone.get_player_emc(player)
|
|
|
|
if player_emc < cost then
|
|
|
|
minetest.chat_send_player(player:get_player_name(), "Not enough EMC to teleport.")
|
|
|
|
else
|
|
|
|
player:set_pos(pos)
|
|
|
|
exchangeclone.add_player_emc(player, -cost)
|
|
|
|
end
|
|
|
|
show_formspec(player, index, use_stack_data)
|
|
|
|
elseif fields.location_list then
|
|
|
|
local exploded = minetest.explode_textlist_event(fields.location_list)
|
|
|
|
index = math.min(exploded.index, #data.locations)
|
|
|
|
minetest.log(dump(#data.locations))
|
|
|
|
if not formspec_data[player:get_player_name()] then formspec_data[player:get_player_name()] = {} end
|
|
|
|
formspec_data[player:get_player_name()].index = index
|
|
|
|
if exploded.type == "DCL" then
|
|
|
|
local pos = data.locations[index].pos
|
|
|
|
local _, adjusted_pos = extract_dimension(pos)
|
|
|
|
local distance = vector.distance(player:get_pos(), adjusted_pos)
|
|
|
|
local emc_per_node = stack:get_definition().alchemical_book_data.emc_per_node
|
|
|
|
local cost = distance*emc_per_node
|
|
|
|
local player_emc = exchangeclone.get_player_emc(player)
|
|
|
|
if player_emc < cost then
|
|
|
|
minetest.chat_send_player(player:get_player_name(), "Not enough EMC to teleport.")
|
|
|
|
else
|
|
|
|
player:set_pos(pos)
|
|
|
|
exchangeclone.add_player_emc(-cost)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
show_formspec(player, index, use_stack_data)
|
|
|
|
elseif fields.up then
|
|
|
|
if not data.locations[index] then return end
|
|
|
|
if index > 1 then
|
|
|
|
data.locations[index], data.locations[index-1] = data.locations[index-1], data.locations[index]
|
|
|
|
meta:set_string("exchangeclone_alchemical_book", minetest.serialize(data))
|
|
|
|
if use_stack_data then player:set_wielded_item(stack) end
|
|
|
|
index = index - 1
|
|
|
|
if not formspec_data[player:get_player_name()] then formspec_data[player:get_player_name()] = {} end
|
|
|
|
formspec_data[player:get_player_name()].index = index
|
|
|
|
show_formspec(player, index, use_stack_data)
|
|
|
|
end
|
|
|
|
elseif fields.down then
|
|
|
|
if not data.locations[index] then return end
|
|
|
|
if index < #data.locations then
|
|
|
|
data.locations[index], data.locations[index+1] = data.locations[index+1], data.locations[index]
|
|
|
|
meta:set_string("exchangeclone_alchemical_book", minetest.serialize(data))
|
|
|
|
if use_stack_data then player:set_wielded_item(stack) end
|
|
|
|
index = index + 1
|
|
|
|
if not formspec_data[player:get_player_name()] then formspec_data[player:get_player_name()] = {} end
|
|
|
|
formspec_data[player:get_player_name()].index = index
|
|
|
|
show_formspec(player, index, use_stack_data)
|
|
|
|
end
|
|
|
|
end
|
2024-03-02 21:55:08 +01:00
|
|
|
end)
|
|
|
|
|
2024-03-02 23:20:27 +01:00
|
|
|
local function alchemical_book_function(itemstack, player, pointed_thing)
|
|
|
|
local use_stack_data = itemstack:get_meta():get_int("exchangeclone_use_stack_data")
|
|
|
|
if use_stack_data == 0 then
|
|
|
|
use_stack_data = nil
|
|
|
|
end
|
|
|
|
if player:get_player_control().sneak then
|
|
|
|
if use_stack_data then
|
|
|
|
minetest.chat_send_player(player:get_player_name(), "Using player data")
|
|
|
|
itemstack:get_meta():set_int("exchangeclone_use_stack_data", 0)
|
|
|
|
else
|
|
|
|
minetest.chat_send_player(player:get_player_name(), "Using book data")
|
|
|
|
itemstack:get_meta():set_int("exchangeclone_use_stack_data", 1)
|
|
|
|
end
|
|
|
|
return itemstack
|
|
|
|
else
|
|
|
|
show_formspec(player, nil, use_stack_data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-03-02 21:55:08 +01:00
|
|
|
minetest.register_tool("exchangeclone:basic_alchemical_book", {
|
|
|
|
description = "Basic Alchemical Book",
|
|
|
|
groups = {exchangeclone_alchemical_book = 1},
|
|
|
|
alchemical_book_data = {emc_per_node = 1000},
|
2024-03-02 23:20:27 +01:00
|
|
|
on_secondary_use = alchemical_book_function,
|
|
|
|
on_place = alchemical_book_function
|
2024-03-02 21:55:08 +01:00
|
|
|
})
|