Converts terrain tiles to procedural corner Wang tilesets.
Procjam 2016 project (in progress)
Does your game have nice square terrain tiles like these ones by David Gervais? (CC BY 3.0)
Do they make sharp borders and ugly right angles like these when you combine them into a map?
Would you prefer to have smooth transitions and curved boundaries like these in your map display?
Do you want meandering borders that affect both sides of the logical tile boundaries?
Do you think the above tiles need some adjustment before they look right?
Do you want to reduce visual repetition by making duplicate border tiles that still tessellate seamlessly? Do you want to do all of this automatically using just the base tile images and a few JSON configuration files?
Then Wangscape can help.
A good explanation of the corner Wang tiles (and the related Wang tiles) can be found at cr31.co.uk. Examples of the natural boundary lines that can be produced with corner Wang tiles in an isometric display can be seen by searching for screenshots of Civilization 3 terrain.
In corner Wang tiles, each corner corresponds to the centre of a logical terrain tile. In the middle of a corner Wang tile, anything can happen, provided the borders match.
When you place four corner Wang tiles together, the four quarter-tiles around the joining point combine to form a display tile.
Different combinations of the 8 surrounding terrains can produce different display tiles. If you generate redundant tilesets, there can be even more options.
-
A set of cliques each with up to 4 members is defined on the terrain types. Each clique produces a separate tileset to avoid making excessively large textures.
-
For each valid combination of terrain types in the corners:
- An alpha mask is generated for each corner.
- These alpha masks are used to combine each corner's terrain texture into a single tile.
-
Currently all tile generation is done through a command-line application configured using a JSON file. In the future, this should be migrated to a GUI interface which allows the user to alter tile generation parameters and immediately see the range of possible results.
-
See algorithm.md for detailed information about the tileset generation process.
Wangscape's sibling project, Wangview, demonstrates how to use tilesets produced by Wangscape. Wangview provides a set of well-commented IPython notebooks and Python scripts to enable easy porting to the platform used by your project.
We would value your input in bug reports, feature requests, documentation improvements, examples, or code. Please see CONTRIBUTING.md for further information. Note that a code of conduct applies to all participation in this project.
Wangscape is actively tested by the maintainers on:
- Windows 7 (64-bit) with Visual Studio 2015
- Arch Linux with CMake
- Ubuntu (Trusty) with CMake (in travis-ci)
We also hope to run travis-ci builds under Mac OS X soon.
First of all, you need to clone all needed submodules. To get them, execute this command in Wangscape's root directory:
git submodule update --init --recursive
Wangscape depends on these libraries:
- Boost
- system
- filesystem
- SFML 2
- system
- graphics
- spotify-json (submodule)
- libnoise
After installing them, you can compile Wangscape using either of the methods below.
There's a Docker image that can be used for building, based on Ubuntu, with all dependencies installed, so the only thing to do is execute in Wangscape's root directory:
docker run -it -v $(pwd):/Wangscape lukequaint/wangscape-build
After that, go to the Linux/Compilation section below.
First, install necessary packages with apt
:
apt install cmake g++ libsfml-dev libboost-system-dev \
libboost-filesystem-dev libboost-program-options-dev \
libgtest-dev
Next, build gtest
(that's specific to Ubuntu, take a look on Stack Overflow
questions
here
or here):
cd /usr/src/gtest
cmake .
make
cp *.a /usr/lib/
mkdir build
cd build
cmake ..
In some distributions (e.g. Ubuntu) you have to specify a path to SFML's
CMake module passing CMAKE_MODULE_PATH
to the above command:
cmake .. -DCMAKE_MODULE_PATH=/usr/share/SFML/cmake/Modules/
It will check for required libraries and prepare files for the next step.
make
./bin/WangscapeTest
To check how it works for provided examples, call it with the path to one of JSONs
under Wangscape
dir, e.g. (in build
directory):
./bin/Wangscape ../Wangscape/example/example_options.json
After that the result image can be found in the output
directory under
Wangscape/example
.
Alternatively, you can use the Wangview
Python script to see example landscapes
using the output tilesets.
Wangview requires Python 3 and the bearlibterminal
package.
Example usage (in Wangview
directory):
python Wangview.py ../Wangscape/example3/output
Press space
to regenerate the landscape, or esc
to quit.