2014-10-28 18:01:32 +01:00
|
|
|
--[[
|
|
|
|
--==============================
|
|
|
|
--==========================================================
|
|
|
|
LazyJ's Fork of Splizard's "Snow Biomes" Mod
|
|
|
|
by LazyJ
|
|
|
|
version: Umpteen-hundred and 7/5ths something or another.
|
|
|
|
2014_04_12
|
|
|
|
|
|
|
|
~~~
|
|
|
|
|
|
|
|
"Snow Biomes" Mod
|
|
|
|
By Splizard
|
|
|
|
|
|
|
|
Download:
|
|
|
|
http//forum.minetest.net/viewtopic.php?id=2290
|
|
|
|
http://github.com/Splizard/minetest-mod-snow/
|
|
|
|
|
|
|
|
--==========================================================
|
|
|
|
--==============================
|
|
|
|
|
|
|
|
Snow Biomes
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
2015-06-10 17:26:05 +02:00
|
|
|
|
2014-10-28 18:01:32 +01:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2015-06-10 17:26:05 +02:00
|
|
|
|
2014-10-28 18:01:32 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA.
|
|
|
|
]]--
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Original Lua Files
|
|
|
|
--dofile(minetest.get_modpath("snow").."/util.lua")
|
|
|
|
--dofile(minetest.get_modpath("snow").."/mapgen.lua")
|
|
|
|
--dofile(minetest.get_modpath("snow").."/sled.lua")
|
|
|
|
-- "falling_snow.lua" disabled since weather functions minetest.get_heat(pos) and minetest.get_humidity(pos)
|
|
|
|
-- have been removed from Minetest.
|
|
|
|
-- Until something else can be figured out, use paramat's "Snowdrift" mod instead.
|
|
|
|
-- dofile(minetest.get_modpath("snow").."/falling_snow.lua")
|
|
|
|
|
|
|
|
-- Original init.lua File Broken into Smaller Files
|
|
|
|
dofile(minetest.get_modpath("snow").."/src/abms.lua")
|
|
|
|
dofile(minetest.get_modpath("snow").."/src/aliases.lua")
|
|
|
|
dofile(minetest.get_modpath("snow").."/src/basic_stairs_slabs.lua")
|
|
|
|
dofile(minetest.get_modpath("snow").."/src/crafting.lua")
|
|
|
|
dofile(minetest.get_modpath("snow").."/src/snowball.lua")
|
|
|
|
|
|
|
|
|
|
|
|
-- The formspec menu didn't work when util.lua was the very first "dofile" so I moved
|
|
|
|
-- it and all the other original "dofiles", in order, to the bottom of the list. ~ LazyJ
|
2015-06-10 17:26:05 +02:00
|
|
|
-- Minetest would crash if the mapgen was called upon before the rest of other snow lua files so
|
2014-10-28 18:01:32 +01:00
|
|
|
-- I put it lower on the list and that seems to do the trick. ~ LazyJ
|
|
|
|
dofile(minetest.get_modpath("snow").."/src/util.lua")
|
|
|
|
-- To get Xmas tree saplings, the "christmas_content", true or false, in "util.lua" has to be determined first.
|
|
|
|
-- That means "nodes.lua", where the saplings are controlled, has to come after "util.lua". ~ LazyJ
|
|
|
|
dofile(minetest.get_modpath("snow").."/src/nodes.lua")
|
|
|
|
dofile(minetest.get_modpath("snow").."/src/mapgen.lua")
|
|
|
|
dofile(minetest.get_modpath("snow").."/src/sled.lua")
|
2015-01-28 18:25:04 +01:00
|
|
|
-- dofile(minetest.get_modpath("snow").."/src/falling_snow.lua")
|
2014-10-28 18:01:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Check for "MoreBlocks". If not found, skip this next "dofile".
|
|
|
|
|
2015-06-10 17:26:05 +02:00
|
|
|
if minetest.get_modpath("moreblocks") then
|
2014-10-28 18:01:32 +01:00
|
|
|
|
|
|
|
dofile(minetest.get_modpath("snow").."/src/stairsplus.lua")
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--This function places snow checking at the same time for snow level and increasing as needed.
|
|
|
|
--This also takes into account sourrounding snow and makes snow even.
|
|
|
|
function snow.place(pos)
|
2014-10-30 22:06:48 +01:00
|
|
|
if pos.y < -19000 then return end -- Don't put anything in the nether!
|
2014-10-28 18:01:32 +01:00
|
|
|
local node = minetest.get_node_or_nil(pos)
|
2015-06-10 17:26:05 +02:00
|
|
|
|
2014-10-28 18:01:32 +01:00
|
|
|
--Oops, maybe there is no node?
|
2015-06-10 17:26:05 +02:00
|
|
|
if not node
|
|
|
|
or not minetest.registered_nodes[node.name] then
|
2014-10-28 18:01:32 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2015-06-10 17:26:05 +02:00
|
|
|
local bnode = minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z})
|
|
|
|
if node.name == "default:snow" then
|
|
|
|
local level = minetest.get_node_level(pos)
|
|
|
|
if level < 63 then
|
|
|
|
if minetest.get_item_group(bnode.name, "leafdecay") == 0
|
|
|
|
and not snow.is_uneven(pos) then
|
|
|
|
minetest.sound_play("default_snow_footstep", {pos=pos})
|
|
|
|
minetest.add_node_level(pos, 7)
|
|
|
|
end
|
|
|
|
elseif level == 63 then
|
|
|
|
local p = minetest.find_node_near(pos, 10, "default:dirt_with_grass")
|
|
|
|
if p
|
|
|
|
and minetest.get_node_light(p, 0.5) == 15 then
|
|
|
|
minetest.sound_play("default_grass_footstep", {pos=pos})
|
|
|
|
minetest.place_node({x=pos.x, y=pos.y+1, z=pos.z}, {name="default:snow"})
|
|
|
|
else
|
|
|
|
minetest.sound_play("default_snow_footstep", {pos=pos})
|
|
|
|
minetest.add_node(pos, {name="default:snowblock"})
|
|
|
|
end
|
2014-10-28 18:01:32 +01:00
|
|
|
end
|
2015-06-10 17:26:05 +02:00
|
|
|
elseif node.name ~= "default:ice"
|
|
|
|
and bnode.name ~= "air" then
|
|
|
|
local data = minetest.registered_nodes[node.name]
|
|
|
|
local drawtype = data.drawtype
|
|
|
|
if drawtype == "normal"
|
|
|
|
or drawtype == "allfaces_optional" then
|
|
|
|
pos.y = pos.y+1
|
|
|
|
local sound = data.sounds
|
|
|
|
if sound then
|
|
|
|
sound = sound.footstep
|
|
|
|
if sound then
|
|
|
|
minetest.sound_play(sound.name, {pos=pos, gain=sound.gain})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
minetest.place_node(pos, {name="default:snow"})
|
2014-10-28 18:01:32 +01:00
|
|
|
elseif drawtype == "plantlike" then
|
|
|
|
pos.y = pos.y - 1
|
|
|
|
if minetest.get_node(pos).name == "default:dirt_with_grass" then
|
2015-06-10 17:26:05 +02:00
|
|
|
minetest.sound_play("default_grass_footstep", {pos=pos})
|
2014-10-28 18:01:32 +01:00
|
|
|
minetest.add_node(pos, {name="default:dirt_with_snow"})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Checks if the snow level is even at any given pos.
|
|
|
|
-- Smooth Snow
|
2015-06-10 17:26:05 +02:00
|
|
|
local function is_uneven(pos)
|
|
|
|
local num = minetest.get_node_level(pos)
|
|
|
|
local get_node = minetest.get_node
|
|
|
|
local add_node = minetest.add_node
|
|
|
|
local found
|
|
|
|
local foundx
|
|
|
|
local foundy
|
|
|
|
local foundz
|
|
|
|
for z = -1,1 do
|
|
|
|
for x = -1,1 do
|
|
|
|
local p = {x=pos.x+x, y=pos.y, z=pos.z+z}
|
|
|
|
local node = get_node(p)
|
|
|
|
p.y = p.y-1
|
|
|
|
local bnode = get_node(p)
|
|
|
|
|
|
|
|
if node
|
|
|
|
and minetest.registered_nodes[node.name]
|
|
|
|
and minetest.registered_nodes[node.name].drawtype == "plantlike"
|
|
|
|
and bnode.name == "default:dirt_with_grass" then
|
|
|
|
add_node(p, {name="default:dirt_with_snow"})
|
|
|
|
return true
|
2014-10-28 18:01:32 +01:00
|
|
|
end
|
2015-06-10 17:26:05 +02:00
|
|
|
|
|
|
|
p.y = p.y+1
|
|
|
|
if not (x == 0 and z == 0)
|
|
|
|
and node.name == "default:snow"
|
|
|
|
and minetest.get_node_level(p) < num then
|
2014-10-28 18:01:32 +01:00
|
|
|
found = true
|
|
|
|
foundx = x
|
2015-06-10 17:26:05 +02:00
|
|
|
foundz = z
|
|
|
|
elseif node.name == "air"
|
|
|
|
and bnode.name ~= "air"
|
|
|
|
and bnode.name ~= "default:snow" then
|
|
|
|
p.y = p.y-1
|
|
|
|
snow.place(p)
|
|
|
|
return true
|
2014-10-28 18:01:32 +01:00
|
|
|
end
|
|
|
|
end
|
2015-06-10 17:26:05 +02:00
|
|
|
end
|
|
|
|
if found then
|
|
|
|
local p = {x=pos.x+foundx, y=pos.y, z=pos.z+foundz}
|
|
|
|
if is_uneven(p) ~= true then
|
|
|
|
minetest.add_node_level(p, 7)
|
2014-10-28 18:01:32 +01:00
|
|
|
end
|
2015-06-10 17:26:05 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function snow.is_uneven(pos)
|
|
|
|
if snow.smooth_snow then
|
|
|
|
return is_uneven(pos)
|
2014-10-28 18:01:32 +01:00
|
|
|
end
|
|
|
|
end
|