Tiny Minecraft clone in C and GLSL using the new SDL3 GPU API
- Procedural world generation
- Parallel chunk loading
- Blocks and plants
- Transparency (limited)
- Deferred rendering
- Directional shadows
- SSAO (ish, see here)
- Water depth shading
- Persistent worlds
Install the Vulkan SDK for glslc
git clone https://github.com/jsoulier/blocks --recurse-submodules
cd blocks
mkdir build
cd build
cmake ..
cmake --build . --parallel 8 --config Release
cd bin
./blocks.exe
sudo apt install glslc
git clone https://github.com/jsoulier/blocks --recurse-submodules
cd blocks
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --parallel 8
cd bin
./blocks
WASDEQ
to moveEscape
to unfocusLClick
to break a blockRClick
to place a blockB
to toggle blocksF11
to toggle fullscreenLControl
to move quicklyLShift
to move slowly
- Draw the sky to the g-buffer
- Draw the world from the sun's perspective to a depth texture (shadows)
- Draw the world (opaque only) to the g-buffer
- Calculate SSAO using the g-buffer
- Combine the g-buffer, SSAO, and shadows together to create a composite texture
- Draw the world (transparent only) with blending to the composite texture
- Draw the raycast block to the composite texture
- Upscale the composite texture to the swapchain texture
- Draw the UI over the swapchain texture
- Submit