31.xhtml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /**
  3. * <https://y.st./>
  4. * Copyright © 2015 Alex Yst <mailto:copyright@y.st>
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <https://www.gnu.org./licenses/>.
  18. **/
  19. $xhtml = array(
  20. 'title' => '&quot;Jungle trees&quot;',
  21. 'body' => <<<END
  22. <p>
  23. The concept of &quot;jungle trees&quot; is hard coded into the Minetest engine, specifically, the v6 map generator in which everything is hard coded.
  24. My current goal for Minetyst is to create all these hard coded nodes, so I did some research to find out what &quot;jungle trees&quot; are really like to base my new nodes off them.
  25. The first thing I found was that Minetest&apos;s concept of jungles is way off.
  26. &quot;Jungle&quot; is a vague term, but usually means &quot;tropical rainforest&quot;.
  27. Rain forests have four major layers, where Minetest jungles only really have two.
  28. That&apos;s okay, it&apos;s just a game, right? I next tried to decide what layer I though Minetest&apos;s trees belong to, and the obvious answer was the canopy.
  29. Canopy trees form a dense leaf and branch layer, topped only by the emergent layer.
  30. The emergent layer is too sparse to be similar to Minetest&apos;s trees.
  31. 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>.
  32. I&apos;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.
  33. I&apos;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.
  34. As a result, my new trees are a bit fanciful and very curly.
  35. </p>
  36. <p>
  37. My <a href="/a/canary.txt">canary</a> still sings the tune of freedom and transparency.
  38. </p>
  39. END
  40. );