Simple tool to play with Perlin noise in real time. WIP.
To build, first run bootstrap.sh
(this downloads dependency headers and the sokol shader build tools) then run make
. The binary will be inside the build/
directory. Only tested on Mac but should build on Windows and Linux out of the box. If you're on Mac, you can also build the Xcode project with Xcodegen.
NOTE: This program requires either clang or gcc to build. It won't build under MSVC or older compilers.
Alternatively, try the web version here. NOTE: The web version is missing some features.
- Load .obj files, display noise onto model
-
Lua scripting to interact with heightmap - User created shaders
-
Hotreloading for assets - Error handling for assets
- Touch controls
-
Biome controls -
Config files + args
- floooh/sokol (zlib/libpng)
- sokol_gfx.h
- sokol_app.h
- sokol_glue.h
- sokol_nuklear.h
- sokol_args.h
- Immediate-Mode-UI/Nuklear (MIT/Public Domain)
- nuklear.h
- miloyip/svpng (BSD-3-Clause)
- svpng.inc
- nothings/stb (MIT/Public Domain)
- stretchy_buffer.h (modified)
- edubart/minilua (MIT) (Lua license)
- minilua.h
- septag/dmon (BSD-2-Clause)
- dmon.h
- thisistherk/fast_obj (MIT)
- fast_obj.h
- prideout/par (MIT)
- par_shapes.h
- win32ports/dirent_h (MIT)
- dirent_win32.h
- yohhoy/threads.h (Boost)
- threads.h (modified)
- tsoding/jim (MIT)
- jim.h
- esr/microjson (BSD-2-clause)
- mjson.h
- AndrewBelt/osdialog (CC0)
- osdialog.h (modified)
The MIT License (MIT)
Copyright (c) 2022 George Watson
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.