Skip to content

Commit

Permalink
Improve README (fixes #30)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 committed Aug 5, 2016
1 parent 2aa8619 commit 7c1989a
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions README.rst
Expand Up @@ -4,7 +4,8 @@ Minetest Mapper C++
.. image:: https://travis-ci.org/minetest/minetestmapper.svg?branch=master
:target: https://travis-ci.org/minetest/minetestmapper

A port of minetestmapper.py to C++ from https://github.com/minetest/minetest/tree/master/util
A port of minetestmapper.py to C++ from https://github.com/minetest/minetest/tree/master/util.
This version is both faster and provides more features than the now deprecated Python script.

Requirements
------------
Expand All @@ -14,23 +15,28 @@ Requirements
* leveldb (optional, set ENABLE_LEVELDB=1 in CMake to enable leveldb support)
* hiredis (optional, set ENABLE_REDIS=1 in CMake to enable redis support)

e.g. on Debian:
^^^^^^^^^^^^^^^

sudo apt-get install libgd-dev libsqlite3-dev libleveldb-dev libhiredis-dev

Compilation
-----------

::

cmake .
make
cmake . -DENABLE_LEVELDB=1
make -j2

Usage
-----

Binary `minetestmapper` has two mandatory paremeters, `-i` (input world path)
`minetestmapper` has two mandatory paremeters, `-i` (input world path)
and `-o` (output image path).

::

./minetestmapper -i ~/.minetest/worlds/my_world/ -o ~/map.png
./minetestmapper -i ~/.minetest/worlds/my_world/ -o map.png


Parameters
Expand Down Expand Up @@ -58,7 +64,7 @@ draworigin:
Draw origin indicator, `--draworigin`

drawalpha:
Allow blocks to be drawn with transparency, `--drawalpha`
Allow nodes to be drawn with transparency, `--drawalpha`

noshading:
Don't draw shading on nodes, `--noshading`
Expand Down

0 comments on commit 7c1989a

Please sign in to comment.