mirror of
https://github.com/Splizard/minetest-mod-snow.git
synced 2024-12-28 23:40:17 +01:00
fix approximate snowdrift walkable making, see https://d.maxfile.ro/ovzgtfbjhw.png
This commit is contained in:
parent
0a3d7859cb
commit
3527d3158d
@ -88,8 +88,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
|||||||
local c_papyrus = minetest.get_content_id("default:papyrus")
|
local c_papyrus = minetest.get_content_id("default:papyrus")
|
||||||
local c_sand = minetest.get_content_id("default:sand")
|
local c_sand = minetest.get_content_id("default:sand")
|
||||||
|
|
||||||
local vm = minetest.get_voxel_manip()
|
local vm, emin, emax = minetest.get_mapgen_object("voxelmanip")
|
||||||
local emin, emax = vm:read_from_map(minp, maxp)
|
|
||||||
local area = VoxelArea:new({MinEdge=emin, MaxEdge=emax})
|
local area = VoxelArea:new({MinEdge=emin, MaxEdge=emax})
|
||||||
local data = vm:get_data()
|
local data = vm:get_data()
|
||||||
|
|
||||||
@ -119,7 +118,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
|||||||
for z = z0, z1 do
|
for z = z0, z1 do
|
||||||
for x = x0, x1 do
|
for x = x0, x1 do
|
||||||
local in_biome = false
|
local in_biome = false
|
||||||
local test = nvals_cold[ni]
|
local test = math.min(nvals_cold[ni], 1)
|
||||||
if smooth and (not snowy)
|
if smooth and (not snowy)
|
||||||
and (test > 0.73 or (test > 0.43 and pr:next(0,29) > (0.73 - test) * 100 )) then
|
and (test > 0.73 or (test > 0.43 and pr:next(0,29) > (0.73 - test) * 100 )) then
|
||||||
in_biome = true
|
in_biome = true
|
||||||
@ -312,20 +311,21 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
|||||||
for _,i in pairs(snow_tab) do
|
for _,i in pairs(snow_tab) do
|
||||||
local p,z,x,test = unpack(i)
|
local p,z,x,test = unpack(i)
|
||||||
data[p] = c_snow
|
data[p] = c_snow
|
||||||
test = test-0.73
|
test = (test-0.73)/0.27 -- /(1-0.73)
|
||||||
if test > 0 then
|
if test > 0 then
|
||||||
local minh = math.floor(test*4*9)%9+1
|
local maxh = math.floor(test*9)%9+1
|
||||||
if minh ~= 1 then
|
if maxh ~= 1 then
|
||||||
if not wsz then
|
if not wsz then
|
||||||
wsz = get_ws_list(5, z0)
|
wsz = get_ws_list(5, z0)
|
||||||
wsx = get_ws_list(2, x0)
|
wsx = get_ws_list(2, x0)
|
||||||
param2s = vm:get_param2_data()
|
param2s = vm:get_param2_data()
|
||||||
end
|
end
|
||||||
local h = math.min(minh, math.floor(wsx[x]+wsz[z]*5)%9+1)
|
local h = math.floor(wsx[x]+wsz[z]*5)%9+1
|
||||||
if h ~= 1 then
|
if h ~= 1 then
|
||||||
if h == 9 then
|
if h == 9 then
|
||||||
h = 4
|
h = 4
|
||||||
end
|
end
|
||||||
|
h = math.min(maxh, h)
|
||||||
param2s[p] = h*7
|
param2s[p] = h*7
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user