3.2 KiB
Streams
VoxelStream
allows to save and load voxel data to a file or a directory structure, using various kinds of implementations. They don't hold voxel data in memory, they are just an access point.
Stream types
A few different types are available, each with slightly different features.
VoxelStreamSQLite
is the most featured one, and uses a single SQLite database file. It can save both voxel data and instancing data.
VoxelStreamRegionFiles
is an older one, which works similarly to Minecraft's region system. It saves under multiple files in a folder. It only supports voxel data.
VoxelStreamBlockFiles
is a legacy one which saves one block per file. It is simple, but also very slow. It might be removed in the future.
There is currently no stream implementation using an existing file format (like .vox
for example), mainly because the current API expects the ability to load data in chunks.
Using streams for savegames
Streams were created initially to serve as a database for saves. Games using voxel technology for terrain are often persistent, so there has to be a place on disk where to save the changes, and reload them back.
The engine can handle near-unlimited terrain size, so there are often situations where loading the entire world in memory is not possible. For that reason, streams are built in such a way they provide data block by block (or "chunks"). Only blocks near the player will be loaded in memory. When the player moves, blocks far away will get unloaded/saved, while blocks getting closer will be loaded.
By default, only modified blocks are saved. However, if the generator you use is too expensive to re-run on demand, it can be configured such that every new block will always get saved. This is the case in Minecraft.
When voxels are edited, modified blocks are not saved immediately. This is because many edits could keep happening, and trying to save too often could be wasteful.
Saving only occurs under the following conditions:
- The block gets unloaded when too far away
save_modified_blocks()
is called on the terrain node (you may want to call this when the player saves, or quits the game)
Using streams in the Godot Editor
At the moment, streams can run in the editor, but they behave the same as if the game was running. If you modify anything, blocks will eventually get saved under the same conditions as seen earlier. If you want to preserve your game saves, either leave the stream
property unassigned, or you can assign a "development save" on the stream in the editor. Then, assign a different path from within your game to the real save (using script).
If you use the same save files between game and editor, there is a risk of conflict when you run the game: it will try to open files which are already opened and locked by the editor. To workaround this, either use different files, or close the scene before running the game. See issue 283.