01.xhtml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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' => 'Compromise',
  21. 'body' => <<<END
  22. <p>
  23. Sadly, I cannot get my dungeon to spawn intact any more.
  24. For that matter, the other dungeon in the area that usually spawns mostly-intact is also getting leveled by the map generator.
  25. If I can&apos;t get the dungeon to spawn its above-ground room on the finalize map, I&apos;ll have to give it up.
  26. Honestly, it&apos;s got a nice inside on the lower levels that isn&apos;t getting trashed, but it just isn&apos;t what I&apos;m looking for.
  27. It&apos;s further from the spawn area than I would like, but because of it&apos;s awesome bunker look, which requires the above-ground room more than any other part, it was worth it.
  28. </p>
  29. <p>
  30. As Minetyst draws closer to being complete enough to go live, I&apos;ve been thinking more and more about compatibility.
  31. There is a chance that someone will want to use my subgame in combination with modules someone else developed or want to take modules out of my game to use with someone else&apos;s game.
  32. I want to write the subgame purely in Esperanto, but Minetest&apos;s $a[API] is in English so parts of my code are in English so the machine knows what to do.
  33. This is inevitable and I haven&apos;t given any further thought to it.
  34. However, parts of the game are not hard coded into the engine, yet other module developers depend on knowing how they are set up.
  35. An example of this is the standardized, group-based digging system.
  36. If someone has picks that digs nodes in the <code>cracky</code> group but my stones are instead in the <code>kraki</code> group, my stones are undiggable, making them both useless and dangerous.
  37. My game is built to be used as a whole, it will be internally self-consistent, and if no one tries to mix and match modules, everything will work.
  38. But should I not make reasonable efforts to insure my code isn&apos;t needlessly limiting people? I&apos;ve come to the conclusion that in cases in which responsibility for compatibility lies with me (such as standardized digging groups), I will make the effort despite it requiring more English being used in my game.
  39. In cases in which I set the standard (such as when people want to take advantage of group-based &quot;active block modifiers&quot; or crafting recipes I set up), I will use Esperanto words instead.
  40. </p>
  41. <p>
  42. My <a href="/a/canary.txt">canary</a> still sings the tune of freedom and transparency.
  43. </p>
  44. END
  45. );