All Projects → caseymcc → voxigen

caseymcc / voxigen

Licence: MIT license
Voxel handling library for game development, threaded generation/io/meshing with openGL rendering.

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
CMake
9771 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to voxigen

vengi
Home of a voxel game engine and its tools (like a voxel editor)
Stars: ✭ 800 (+1602.13%)
Mutual labels:  procedural-generation, terrain-generation, voxels, voxel-engine, voxel-generator
MagicaVoxel File Writer
MagicaVoxel File Writer dependency free cpp class
Stars: ✭ 26 (-44.68%)
Mutual labels:  procedural-generation, voxel-generator
Procedural-Terrain-Generation
3D computer graphics program in C++ OpenFrameworks of a procedural terrain generator based on simplex noise with camera movement and real-time adjustable parameters from the GUI
Stars: ✭ 18 (-61.7%)
Mutual labels:  procedural-generation, terrain-generation
Weltenschaft
Open-Source terrain generator 🗺️
Stars: ✭ 41 (-12.77%)
Mutual labels:  procedural-generation, terrain-generation
SimpleErosion
Simple C++ implementatoin of particle-based hydraulic erosion on a square grid
Stars: ✭ 64 (+36.17%)
Mutual labels:  procedural-generation, terrain-generation
Anothercraft
A Minecraft clone demo
Stars: ✭ 130 (+176.6%)
Mutual labels:  procedural-generation, voxels
Thalatta
An open source terrain generation suite.
Stars: ✭ 37 (-21.28%)
Mutual labels:  procedural-generation, terrain-generation
AsLib
🎨: RPG map maker (paint tool)
Stars: ✭ 82 (+74.47%)
Mutual labels:  procedural-generation, terrain-generation
DungeonTemplateLibraryUnity
🌏: Dungeon free resources (terrain & roguelike generation)
Stars: ✭ 51 (+8.51%)
Mutual labels:  procedural-generation, terrain-generation
Engine
Home of a voxel game engine and its tools (like a voxel editor)
Stars: ✭ 429 (+812.77%)
Mutual labels:  procedural-generation, voxels
Marching-cubes-on-Unity-3D
Terrain voxel engine with the use of Marching Cubes implemented in Unity 2020.3.17f1 (LTS).
Stars: ✭ 222 (+372.34%)
Mutual labels:  terrain-generation, voxel-engine
sprite-gen
🎨 Procedurally generate 2D sprites
Stars: ✭ 68 (+44.68%)
Mutual labels:  procedural-generation
Unity3D-Coding-Examples
Various case-studies in Unity3D
Stars: ✭ 91 (+93.62%)
Mutual labels:  procedural-generation
resonate
Building generative VR worlds
Stars: ✭ 64 (+36.17%)
Mutual labels:  procedural-generation
DrawSpace
Space-game oriented rendering engine
Stars: ✭ 20 (-57.45%)
Mutual labels:  procedural-generation
voxel-editor
N-Space: a mobile app for building 3D interactive worlds
Stars: ✭ 39 (-17.02%)
Mutual labels:  voxels
libmapgen
Unity native plugin for procedural world generation
Stars: ✭ 16 (-65.96%)
Mutual labels:  procedural-generation
Fegaria-Remastered
Similar to my other project Fegaria, but with improved graphics, collisions and terrain generation.
Stars: ✭ 73 (+55.32%)
Mutual labels:  terrain-generation
procjam2018
Graph.ical, a procedural texture authoring application developed for PROCJAM 2018.
Stars: ✭ 42 (-10.64%)
Mutual labels:  procedural-generation
caves
2D Cave Exploration Game with Procedurally Generated Levels
Stars: ✭ 29 (-38.3%)
Mutual labels:  procedural-generation

discord travis appveyor

logo voxigen

Voxel handling library, generating/loading/saving/meshing/memory managment.

screenshot

Although the library is currently geared towards blocky worlds the hope is to support Marching Cubes and Dual Contouring in the future. Voxigen handles chunking and loading/saving of the world based on a maximum size. The world is not infinite but the size can be chosen as though it seems to be infinite. Also the current generator choses blocks based on a cylinder out of 3D noise allowing the y axis to wrap around. Sphere could be possible but rendering might become an issue.

The plan is to support physics directly into this layer so the world is segmented into regions that the physics will stay stable in. There should be sharing across the segments to make sure the simulation is across the full world.

There is currently a very simple generator in place, hopefully this will get more complex as time goes on. I am hoping to build the generator system to be plugable, allowing outside developers to add their own implmentation with out the worry of complexity the base has.

The library is template based. The type of block is up to the user and is the first argument of the world object, the remaining are the size of the chunks and region size.

    World<BlockType, ChunkSizeX, ChunkSizeY, ChunkSizeZ, RegionSizeX, RegionSizeY, RegionSizeZ> world;

The world segmentation is chosen at compile-time but the size of the world is a runtime option. Currently it can easily handle a sun sized planet (assuming 0.5 meter cubes). It should be noted that the library assumes right handed world with z as the "up" dimension in the world.

This is still very new and likely at any point things may change and also not work.

Current Features:

  • Templated Block type and chunk size
  • Threaded Generator/Load/Save
    • Simple LOD support
  • Plugable generator system
    • Simple Generator
  • Segment world for Physics (also increases possible size)
  • Simple Loading/Saving
  • Naive Render
    • Threaded mesher/buffer upload

Planned Features:

  • Build large scale polygon replacement terrain for lower LOD levels
  • Build 2D imposters for distant regions based on the voxel data
  • Intergration with Lumberyard
  • Add physics (through Lumberyard)
  • More complex base generator

Any comments/suggestions will always be welcome.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].