123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- /**
- * <https://y.st./>
- * Copyright © 2015 Alex Yst <mailto:copyright@y.st>
- *
- * 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 3 of the License, or
- * (at your option) any later version.
- *
- * 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.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org./licenses/>.
- **/
- $xhtml = array(
- 'title' => '"Jungle trees"',
- 'body' => <<<END
- <p>
- The concept of "jungle trees" is hard coded into the Minetest engine, specifically, the v6 map generator in which everything is hard coded.
- My current goal for Minetyst is to create all these hard coded nodes, so I did some research to find out what "jungle trees" are really like to base my new nodes off them.
- The first thing I found was that Minetest's concept of jungles is way off.
- "Jungle" is a vague term, but usually means "tropical rainforest".
- Rain forests have four major layers, where Minetest jungles only really have two.
- That's okay, it's just a game, right? I next tried to decide what layer I though Minetest's trees belong to, and the obvious answer was the canopy.
- Canopy trees form a dense leaf and branch layer, topped only by the emergent layer.
- The emergent layer is too sparse to be similar to Minetest's trees.
- At this point, I started trying to find specific trees that inhabit this layer, but found instead that <a href="https://en.wikipedia.org/wiki/Canopy_%28biology%29">the canopy of a rainforest is about ten meters thick</a>.
- I've concluded from this that as the Minetest trees do not match this, it is unlikely that they are based off of any one specific tree and cannot easily be re-textured to approximate a real tree.
- I've decided to do the only reasonable thing I can think to do, which is base my jungle trees off the jungle trees native to Minetest in which they are replacing.
- As a result, my new trees are a bit fanciful and very curly.
- </p>
- <p>
- My <a href="/a/canary.txt">canary</a> still sings the tune of freedom and transparency.
- </p>
- END
- );
|