tessarakkt / godot4-oceanfft

Tessendorf FFT based ocean waves and buoyancy in Godot 4 using compute shaders
MIT License
372 stars 18 forks source link
game-development godot godot-engine godot4 ocean ocean-modelling

Godot 4 Ocean Addon

[!NOTE] Requires Godot 4.2+

An early work in progress ocean addon for Godot 4 base on Jerry Tessendorf's FFT method for generating the waves, using compute shaders to generate the displacement map, and a quad tree based continuous distant dependant level of detail (CDLOD) system to dynamically manage the polygon density without popping or snapping between LOD levels.

The GLSL shaders that generates the displacement map were ported into Godot 4 from this project. The underlying math is identical, but some things like binding points and how uniforms were accessed had to be changed to work in Godots compute shader API.

Ocean

Features

Example Scene Controls

Button Action
`/~ Toggle menu/free cam modes
Mouse Motion Free cam look
Right Click Free cam zoom
W Free cam forwards (locked to horizontal plane)
S Free cam backwards (locked to horizontal plane)
A Free cam strafe left (locked to horizontal plane)
D Free cam strafe right (locked to horizontal plane)
Space Free cam up (locked to vertical axis)
Ctrl Free cam down (locked to vertical axis)
Shift Free cam sprint/move faster

Todo List

OceanCDLOD

OceanUnderwater

OceanCurve

References

Wave Generation Theory

Water Implementation Examples

These are not exclusively limited to ocean wave implementations, and may include other types of water simulations if they include visual rendering techniques that are of value to reference.

AAA-Game Implementation Examples

These generally don't give much in the way of code examples, but do give a higher level overview of how the whole thing comes together.

Level Of Detail Implementation

Foam/Whitecap Rendering

Wave Collision Interaction

Miscellaneous