Page 1 of 1

rnd_trees

Posted: Tue Oct 20, 2015 12:40
by rnd
Growing trees using natural growth process. Growth proces only occurs through air/leaves, the trunk shell can grow into other things too

GITHUB: https://github.com/ac-minetest/rnd_trees/wiki

LICENSE: LGPL

Image

Image

Image

Usage: place rnd_trees:tree on ground.

Algorithm sketch:

Start with one piece of living wood. Assign it life energy and let it grow. With each growth energy decreases. Depending on energy it can randomly branch in random direction with length of branch depending on energy; living wood remembers the branching stage. Randomly add leaves above trunk height with random sizes depending on if we are in end growth stage or not.

If not in branch thicken the living wood a bit to make thicker main tree trunk. The growth stops when living wood is out of life energy.

Re: rnd_trees

Posted: Tue Oct 20, 2015 13:52
by Don
Cool!

Re: rnd_trees

Posted: Tue Oct 20, 2015 14:54
by MineYoshi
Looks good!

Re: rnd_trees

Posted: Tue Oct 20, 2015 14:57
by rnd
here is what happens if no growth limit or bad settings

Image

Image

Re: rnd_trees

Posted: Tue Oct 20, 2015 15:21
by MineYoshi
going to happend this!

Image

Re: rnd_trees

Posted: Wed Oct 21, 2015 09:55
by rnd
more complex branching process for better looking trees (open image in new tab)

Image

Re: rnd_trees

Posted: Wed Oct 21, 2015 15:00
by Minetestforfun
This is beautiful and soo real, really great work, i like it so much !

Can't wait to see this for all trees in a mapgenV7 :)

Re: rnd_trees

Posted: Fri Oct 23, 2015 08:59
by rnd
large trees
Spoiler
local TREE_SIZE = 30;
local TRUNK_SIZE = 10;
local BRANCH_LENGTH = 30.;
Image

what remains to be done:
-rewrite code so that it uses http://dev.minetest.net/VoxelManip,
-save "DNA" into each tree seedling so that we can have different types of trees
-few fine tweaks

Re: rnd_trees

Posted: Fri Oct 23, 2015 12:05
by Prot
Wow! This is amazing idea! And looks very impressive!
You can do some new biomes with this trees.. Like getting settings from mapgen, and plant somewhere big trees, or somewhere little..
I like it!

Re: rnd_trees

Posted: Sat Feb 06, 2016 13:43
by MirceaKitsune
Took a quick look at the screenshots and code. I like both the idea, and how simplistically it seems to be implemented! I might use this for the trees of a Minetest game I'll be making, but need to test it a bit first.

Can you please specify what license the script is under? May I include it as LGPL like most mods are?

Re: rnd_trees

Posted: Sun Feb 07, 2016 20:12
by Hybrid Dog
You want to make it use vmanip, do you want a whole tree to appear immediately (faster) or the current way (being able to see it growing, vmanip may decrease speed because of low nodes count)?

Re: rnd_trees

Posted: Sun Feb 07, 2016 22:06
by rnd
MirceaKitsune wrote:Took a quick look at the screenshots and code. I like both the idea, and how simplistically it seems to be implemented! I might use this for the trees of a Minetest game I'll be making, but need to test it a bit first.

Can you please specify what license the script is under? May I include it as LGPL like most mods are?
ok, LGPL

Re: rnd_trees

Posted: Sun Feb 07, 2016 22:51
by MirceaKitsune
rnd wrote:ok, LGPL
Thanks. I actually wrote my own tree growth function from scratch, since this mod wasn't working well for me. But it was inspired by its idea, and uses the same life-based mechanism. I'm not sure if I'll publish it as an individual mod, but it will be featured in my game.

Re: rnd_trees

Posted: Wed Jul 26, 2017 22:57
by ManElevation
This gives a complete different look to minetest trees, this is awesome!

Re: rnd_trees

Posted: Sun Feb 02, 2020 18:45
by Astrobe
This mod has always been on my mind since I stumbled upon it.

Here is "Aberrant trees", a refinement (or rather, a degeneration) of RND's original mod.

I have centralized the tree parameters into a tree structure, which allows to define different tree "models". One can change the trunk and leaves materials, the height of the trunk, the global size of the tree, etc.

The mod still does not check for protections, but at least it will not replace non-air nodes.

The ABM has been replaced by node timers.

I plan to add an API function to let other mods register their own models and to add a "fruit" slot. Also the "growth heads" will probably be made invisible (or maybe "glowing air").

Attached is my "preview" version. No crafting recipe, give yourself a "a_trees:sapling" and plant it. The tree you will get is of random type. It can be a "regular" tree or... a stone tree with coal leaves, an obsidian tree with obsidian glass leaves, an ice tree, or a brick tree with mese lamp leaves. That kind of mildly crazy stuff.

For anyone who wonders, I think it won't work as-is if you try to place those saplings at mapgen time because their growth timers won't be started. One would need to use a LBM to start them.

Of course, do not use it in any "serious" world.

Re: rnd_trees

Posted: Fri Jul 01, 2022 04:36
by j0j0n4th4n

Code: Select all

	{trunk="default:stone"	, leaves="default:stone_with_coal"	, size=20, height=5, width=20, pace=10},
	{trunk="default:cobble"	, leaves="default:glass"			, size=40, height=5, width=10, pace=10},
	{trunk="default:ice"		, leaves="default:snowblock"		, size=12, height=20, width=5, pace=5},
	{trunk="default:obsidian"	, leaves="default:obsidian_glass"	, size=12, height=20, width=5, pace=5},
	{trunk="default:brick"	, leaves="default:meselamp"	        , size=30, height=10, width=20, pace=5},
These are some strange trees you got there lol