VoxeLibre/mods/CORE/flowlib/init.lua

283 lines
7.7 KiB
Lua
Raw Normal View History

2021-05-25 01:22:25 +02:00
local math = math
local get_node = minetest.get_node
local get_item_group = minetest.get_item_group
local registered_nodes = minetest.registered_nodes
2017-02-19 23:32:54 +01:00
flowlib = {}
--sum of direction vectors must match an array index
2021-05-25 01:22:25 +02:00
--(sum,root)
--(0,1), (1,1+0=1), (2,1+1=2), (3,1+2^2=5), (4,2^2+2^2=8)
local inv_roots = {
[0] = 1,
[1] = 1,
[2] = 0.70710678118655,
[4] = 0.5,
[5] = 0.44721359549996,
[8] = 0.35355339059327,
}
2017-02-19 23:32:54 +01:00
local function to_unit_vector(dir_vector)
2021-05-25 01:22:25 +02:00
local sum = dir_vector.x * dir_vector.x + dir_vector.z * dir_vector.z
return {x = dir_vector.x * inv_roots[sum], y = dir_vector.y, z = dir_vector.z * inv_roots[sum]}
2017-02-19 23:32:54 +01:00
end
2021-05-25 01:22:25 +02:00
local function is_touching(realpos,nodepos,radius)
2017-02-19 23:32:54 +01:00
local boarder = 0.5 - radius
2021-05-25 01:22:25 +02:00
return math.abs(realpos - nodepos) > (boarder)
2017-02-19 23:32:54 +01:00
end
flowlib.is_touching = is_touching
2021-05-25 01:22:25 +02:00
local function is_water(pos)
return get_item_group(get_node(pos).name, "water") ~= 0
2017-02-19 23:32:54 +01:00
end
flowlib.is_water = is_water
2021-05-25 01:22:25 +02:00
local function node_is_water(node)
return get_item_group(node.name, "water") ~= 0
2017-02-19 23:32:54 +01:00
end
flowlib.node_is_water = node_is_water
2021-05-25 01:22:25 +02:00
local function is_lava(pos)
return get_item_group(get_node(pos).name, "lava") ~= 0
2017-02-19 23:32:54 +01:00
end
flowlib.is_lava = is_lava
2021-05-25 01:22:25 +02:00
local function node_is_lava(node)
return get_item_group(node.name, "lava") ~= 0
2017-02-19 23:32:54 +01:00
end
flowlib.node_is_lava = node_is_lava
2021-05-25 01:22:25 +02:00
local function is_liquid(pos)
return get_item_group(get_node(pos).name, "liquid") ~= 0
2017-02-19 23:32:54 +01:00
end
flowlib.is_liquid = is_liquid
2021-05-25 01:22:25 +02:00
local function node_is_liquid(node)
return minetest.get_item_group(node.name, "liquid") ~= 0
2017-02-19 23:32:54 +01:00
end
flowlib.node_is_liquid = node_is_liquid
--This code is more efficient
2021-05-25 01:22:25 +02:00
local function quick_flow_logic(node, pos_testing, direction)
2017-02-19 23:32:54 +01:00
local name = node.name
2021-05-25 01:22:25 +02:00
if not registered_nodes[name] then
return 0
end
2021-05-25 01:22:25 +02:00
if registered_nodes[name].liquidtype == "source" then
local node_testing = get_node(pos_testing)
if not registered_nodes[node_testing.name] then
return 0
end
2021-05-25 01:22:25 +02:00
if registered_nodes[node_testing.name].liquidtype ~= "flowing" then
2017-02-19 23:32:54 +01:00
return 0
else
return direction
end
2021-05-25 01:22:25 +02:00
elseif registered_nodes[name].liquidtype == "flowing" then
local node_testing = get_node(pos_testing)
2017-02-19 23:32:54 +01:00
local param2_testing = node_testing.param2
2021-05-25 01:22:25 +02:00
if not registered_nodes[node_testing.name] then
return 0
end
2021-05-25 01:22:25 +02:00
if registered_nodes[node_testing.name].liquidtype == "source" then
2017-02-19 23:32:54 +01:00
return -direction
2021-05-25 01:22:25 +02:00
elseif registered_nodes[node_testing.name].liquidtype == "flowing" then
2017-02-19 23:32:54 +01:00
if param2_testing < node.param2 then
if (node.param2 - param2_testing) > 6 then
return -direction
else
return direction
end
elseif param2_testing > node.param2 then
if (param2_testing - node.param2) > 6 then
return direction
else
return -direction
end
end
end
end
return 0
end
2021-05-25 01:22:25 +02:00
local function quick_flow(pos, node)
2017-02-19 23:32:54 +01:00
if not node_is_liquid(node) then
2021-05-25 01:22:25 +02:00
return {x = 0, y = 0, z = 0}
2017-02-19 23:32:54 +01:00
end
2021-05-25 01:22:25 +02:00
local x = quick_flow_logic(node,{x = pos.x-1, y = pos.y, z = pos.z},-1) + quick_flow_logic(node,{x = pos.x+1, y = pos.y, z = pos.z}, 1)
local z = quick_flow_logic(node,{x = pos.x, y = pos.y, z = pos.z-1},-1) + quick_flow_logic(node,{x = pos.x, y = pos.y, z = pos.z+1}, 1)
return to_unit_vector({x = x, y = 0, z = z})
2017-02-19 23:32:54 +01:00
end
flowlib.quick_flow = quick_flow
2021-05-25 01:22:25 +02:00
--if not in water but touching, move centre to touching block
--x has higher precedence than z
--if pos changes with x, it affects z
local function move_centre(pos, realpos, node, radius)
if is_touching(realpos.x, pos.x, radius) then
if is_liquid({x = pos.x-1, y = pos.y, z = pos.z}) then
node = get_node({x=pos.x-1, y = pos.y, z = pos.z})
pos = {x = pos.x-1, y = pos.y, z = pos.z}
elseif is_liquid({x = pos.x+1, y = pos.y, z = pos.z}) then
node = get_node({x = pos.x+1, y = pos.y, z = pos.z})
pos = {x = pos.x+1, y = pos.y, z = pos.z}
2017-02-19 23:32:54 +01:00
end
end
2021-05-25 01:22:25 +02:00
if is_touching(realpos.z, pos.z, radius) then
if is_liquid({x = pos.x, y = pos.y, z = pos.z - 1}) then
node = get_node({x = pos.x, y = pos.y, z = pos.z - 1})
pos = {x = pos.x, y = pos.y, z = pos.z - 1}
elseif is_liquid({x = pos.x, y = pos.y, z = pos.z + 1}) then
node = get_node({x = pos.x, y = pos.y, z = pos.z + 1})
pos = {x = pos.x, y = pos.y, z = pos.z + 1}
2017-02-19 23:32:54 +01:00
end
end
2021-05-25 01:22:25 +02:00
return pos, node
2017-02-19 23:32:54 +01:00
end
flowlib.move_centre = move_centre
--BEGIN getCornerLevel
local function get_corner_level(x, z, cur_liquid, neighbors)
local sum = 0
local count = 0
local air_count = 0
for dz=0,1 do
for dx=0,1 do
local neighbor_data = neighbors[z + dz][x + dx]
if neighbor_data.top_is_same_liquid then
return 0.5 --- REPLACE returns
end
if neighbor_data.content == cur_liquid.c_source then
return 0.5
end
if neighbor_data.content == cur_liquid.c_flowing then
sum = sum + neighbor_data.level
count = count + 1
elseif neighbor_data.content == "air" then
air_count = air_count + 1
end
end
end
if air_count >= 2 then
return -0.5 + (0.2/10)
end
if count > 0 then
return sum/count
end
return 0
end
--END getCornerLevel
-- Based on https://github.com/minetest/minetest/blob/master/src/client/content_mapblock.cpp#L536-L813
local function get_liquid_corner_heights(pos)
local cur_liquid = {}
local node = get_node(pos)
local ndef = registered_nodes[node.name]
if not (get_item_group(node.name, "liquid") > 0) then return end
local node_above = get_node({x=pos.x, y=pos.y+1, z=pos.z})
local node_below = get_node({x=pos.x, y=pos.y+1, z=pos.z})
-- BEGIN prepareLiquidNodeDrawing
cur_liquid.content = node.name
cur_liquid.c_flowing = ndef.liquid_alternative_flowing
cur_liquid.c_source = ndef.liquid_alternative_source
cur_liquid.top_is_same_liquid = (node_above.name == cur_liquid.c_flowing or node_above.name == cur_liquid.c_source)
-- cur_liquid.draw_bottom and lighting skipped
-- END prepareLiquidNodeDrawing
local c_flowing_ndef = registered_nodes[cur_liquid.c_flowing]
--BEGIN getLiquidNeighborhood
local range = math.max(1, math.min(c_flowing_ndef.liquid_range, 8))
local neighbors = {
{{}, {}, {}},
{{}, {}, {}},
{{}, {}, {}},
}
for w = -1,1 do
for u = -1,1 do
neighbor = neighbors[w+2][u+2]
local neighbor_node = get_node({x=pos.x + u, y=pos.y, z=pos.z + w})
neighbor.content = neighbor_node.name
neighbor.level = -0.5
neighbor.is_same_liquid = false
neighbor.top_is_same_liquid = false
if neighbor.content == cur_liquid.c_source then
neighbor.is_same_liquid = true
neighbor.level = 0.5
elseif neighbor.content == cur_liquid.c_flowing then
neighbor.is_same_liquid = true
local liquid_level = bit.band(neighbor_node.param2, 7)
if liquid_level <= (8 - range) then
liquid_level = 0
else
liquid_level = liquid_level - (8 - range)
end
neighbor.level = (-0.5 + (liquid_level + 0.5) / range)
end
if neighbor.content ~= "ignore" then
local above_neighbor_node = get_node({x=pos.x + u, y=pos.y + 1, z=pos.z + w})
if above_neighbor_node.name == cur_liquid.c_source or above_neighbor_node.name == cur_liquid.c_flowing then
neighbor.top_is_same_liquid = true
end
end
end
end
--END getLiquidNeighborhood
cur_liquid.corner_levels = {{}, {}}
--BEGIN calculateCornerLevels
for z=1,2 do
for x=1,2 do
cur_liquid.corner_levels[z][x] = get_corner_level(x, z, cur_liquid, neighbors)
end
end
--END calculateCornerLevels
--BEGIN drawLiquidTop
local corner_resolve = {{0, 1}, {1, 1}, {1, 0}, {0, 0}}
local vertices = {
2024-06-09 10:39:26 +02:00
{x=-0.5, y=0, z= 0.5},
{x= 0.5, y=0, z= 0.5},
{x= 0.5, y=0, z=-0.5},
{x=-0.5, y=0, z=-0.5},
}
for i=1,4 do
local u = corner_resolve[i][1]
local w = corner_resolve[i][2]
if cur_liquid.top_is_same_liquid then
2024-06-09 10:39:26 +02:00
vertices[i].y = 0.5
else
2024-06-09 10:39:26 +02:00
vertices[i].y = vertices[i].y + cur_liquid.corner_levels[w+1][u+1]
end
end
--first 3 vertices are connected, so are last 3
--END drawLiquidTop
return vertices
end
flowlib.get_liquid_corner_heights = get_liquid_corner_heights