Difference between revisions of "World"

From wiki.phychi.com
Jump to: navigation, search
Line 16: Line 16:
  
 
== Configuration ==
 
== Configuration ==
The world can be configurated at http://play.phychi.com/config?world=YourWorldName or just click on the symbol of this world at http://play.phychi.com once.
+
The world can be configurated at http://play.phychi.com/config?world=YourWorldName or just click on the symbol of this world at http://play.phychi.com once. You can use my basic configuration at http://play.phychi.com/config/?world=alpha as example.
 
=== Basic Setting ===
 
=== Basic Setting ===
Owner: the owner of the world, can be changed only by admins, e.g. [[user:Antonio]], he is able to change everything but this section
+
{| class="wikitable" border="1"
BackupToken: a special token which can be used for an external backup bot (valid login without G+)
+
|-
Builders: all persons who are allowed to build in your world, * = all
+
! Tag
Whitelist: all persons who are allowed to see and join the world, * = all
+
! Meaning
Channel: no longer used
+
|-
Mods: a list of all mod files
+
| Owner
Plugins: a list of all plugin files
+
| the owner of the world, can be changed only by admins, e.g. [[user:Antonio]], he is able to change everything but this section
Image: the image to be shown as preview at http://play.phychi.com
+
|-
 +
| BackupToken
 +
| a special token which can be used for an external backup bot (valid login without G+)
 +
|-
 +
| Builders
 +
| all persons who are allowed to build in your world, * = all
 +
|-
 +
| Whitelist
 +
| all persons who are allowed to see and join the world, * = all
 +
|-
 +
| Mods/Plugins
 +
| a list of all mod/plugin files
 +
|-
 +
| Image
 +
| the image to be shown as preview at http://play.phychi.com
 +
|}
 
=== Mod- And Plugin Setting ===
 
=== Mod- And Plugin Setting ===

Revision as of 10:31, 10 January 2017

You know our world, our little automaticly generated room to test your creativity. This article will list, and explain certain world generational features, and configurable things.

Main World

Surface

Schist beeing generated, visible on mountains. Also you can see the first try of an exponential worldgen system.

The surface of the world (alpha) is a typical by perlin generated surface with the only difference that it's not pure perlin. It's perlin2 which allows the terrain to loose it's cubiness.

Representation

You might know there is more behind a world than you can simple see, and the world isn't generated as a list of vertices, and faces. The world is generated from different height layers, stuctures like trees, and ore spawn properties. From that description you'll get a long graph in which you can see all blocks representated as beeing somewhere on the map. That's the idea of minecraft but to create a nicer feeling, a heigh rate of detail at low cost, you need to create a system that renders many things near you and only shaped far away. Because of that phychi.com's creator user:Antonio chose to use an exponential system: per each 2n chunks there is one group of representations adjusted to the distance to the camera/player.

800km viewing distance (atmospheric effects disabled), as you can see not really useful

Engine

Saving

Saving... well I think you know what that's good for. Now how we keep our data small, and with that servers cheap, and your internet connection fewer occupied: We only save changes: only when a chunk was changed at all it will be saved, otherwise it just will be regenerated the next time a players walks near it. Also there might be a block property that allows to be not saved, so a chunk where just one grass block was destroyed just don't need to be saved, because the grass would have regenerated anyways. Without that method of saving only differences, we would get into big trouble with saving data, especially when you use your map together with friends, and that a long time. Also this allows easily new structures, e.g. from mods or a version change, to be added to the world without a required new world or crazy artefacts.

Configuration

The world can be configurated at http://play.phychi.com/config?world=YourWorldName or just click on the symbol of this world at http://play.phychi.com once. You can use my basic configuration at http://play.phychi.com/config/?world=alpha as example.

Basic Setting

Tag Meaning
Owner the owner of the world, can be changed only by admins, e.g. user:Antonio, he is able to change everything but this section
BackupToken a special token which can be used for an external backup bot (valid login without G+)
Builders all persons who are allowed to build in your world, * = all
Whitelist all persons who are allowed to see and join the world, * = all
Mods/Plugins a list of all mod/plugin files
Image the image to be shown as preview at http://play.phychi.com

Mod- And Plugin Setting