zhenyan121 932463663f feat: ocean (#16)
* feat(gameplay): add Ocean biome with water generation and heightmap adjustments

- Introduce Ocean biome enum, builder, and detection logic.
- Add ocean water building to all existing biomes and modify heightmap thresholds for low mountainous areas.
- Skip cave and river generation in Ocean (and River) biomes; avoid carving water blocks.
- Comment out border blending call and update block fill logic.

* fix(gameplay): re-enable border blending and protect water in cave gen

* refactor(generation): move ocean water build to later phase

* feat(block): add is_transitional property and refine border blending

* fix(block): set stone block as transitional

* fix(world): generate temporary chunks for surface blend neighbor data

* fix(gameplay): simplify block fill logic in blend_surface_blocks_borders

* refactor(tree): remove debug logging and unused include
2026-06-12 19:42:59 +08:00
2026-06-12 19:42:59 +08:00
2026-06-12 19:42:59 +08:00
2026-05-28 21:34:36 +08:00
2026-06-12 19:42:59 +08:00
2026-04-21 22:53:34 +08:00
2026-05-28 21:34:36 +08:00
2026-05-28 21:34:36 +08:00
2026-06-12 19:42:59 +08:00
2026-03-05 13:43:34 +08:00
2026-04-14 09:24:10 +08:00
2026-05-28 21:34:36 +08:00
2026-04-19 18:01:09 +08:00
2026-05-28 21:34:36 +08:00

What's it

A cube game like Minecraft, using C++ and OpenGL.

Build Guide

Prerequisites

  • CMake (>= 3.24)
  • C++ 23 compatible compiler

Step

  1. Clone the repository
    git clone https://github.com/zhenyan121/Cubed.git && cd Cubed
    
  2. Configure with CMake
    mkdir build && cd build
    cmake -G "Ninja" ..
    
  3. Build the project
    ninja
    
Description
No description provided
Readme MIT 2.9 MiB
Languages
C++ 92.6%
Python 3.7%
GLSL 1.9%
CMake 1.8%