2012-09-02 10:46:12 -07:00
|
|
|
Minetest Mapper C++
|
|
|
|
===================
|
|
|
|
|
2013-08-14 12:44:03 -07:00
|
|
|
A port of minetestmapper.py to C++ from https://github.com/minetest/minetest/tree/master/util
|
2012-09-02 10:46:12 -07:00
|
|
|
|
|
|
|
Requirements
|
|
|
|
------------
|
|
|
|
|
|
|
|
* libgd
|
|
|
|
* sqlite3
|
|
|
|
* xxd binary
|
|
|
|
|
|
|
|
Compilation
|
|
|
|
-----------
|
|
|
|
|
2012-09-02 10:50:28 -07:00
|
|
|
::
|
2012-09-02 10:52:12 -07:00
|
|
|
|
2012-09-02 10:46:12 -07:00
|
|
|
cmake .
|
|
|
|
make
|
|
|
|
|
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
|
2013-08-14 12:44:03 -07:00
|
|
|
Binary `minetestmapper` has two mandatory paremeters, `-i` (input world path)
|
2012-09-02 10:46:12 -07:00
|
|
|
and `-o` (output image path).
|
|
|
|
|
2012-09-02 10:50:28 -07:00
|
|
|
::
|
2012-09-02 10:52:12 -07:00
|
|
|
|
2013-08-14 12:44:03 -07:00
|
|
|
./minetestmapper -i ~/.minetest/worlds/my_world/ -o ~/map.png
|
2012-09-02 10:46:12 -07:00
|
|
|
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
^^^^^^^^^^
|
|
|
|
|
|
|
|
bgcolor:
|
|
|
|
Background color of image, `--bgcolor #ffffff`
|
|
|
|
|
|
|
|
scalecolor:
|
|
|
|
Color of scale, `--scalecolor #000000`
|
|
|
|
|
|
|
|
playercolor:
|
|
|
|
Color of player indicators, `--playercolor #ff0000`
|
|
|
|
|
|
|
|
origincolor:
|
|
|
|
Color of origin indicator, `--origincolor #ff0000`
|
|
|
|
|
|
|
|
drawscale:
|
|
|
|
Draw tick marks, `--drawscale`
|
|
|
|
|
|
|
|
drawplayers:
|
|
|
|
Draw player indicators, `--drawplayers`
|
|
|
|
|
|
|
|
draworigin:
|
|
|
|
Draw origin indicator, `--draworigin`
|
|
|
|
|
2012-11-24 10:25:13 -08:00
|
|
|
geometry:
|
|
|
|
Limit area to specific geometry, `--geometry -800:-800+1600+1600`
|
|
|
|
|
2012-09-02 10:46:12 -07:00
|
|
|
Customization of colors.txt
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
Default `colors.txt` is included in binary. Color definitions can be redefined
|
|
|
|
using external `colors.txt` file.
|