leaftest/README.md

45 lines
2.1 KiB
Markdown
Raw Normal View History

2015-02-19 16:02:56 +01:00
#Leaftest
2016-01-17 19:55:29 +01:00
Leaftest consists of a bash script that uses [minetestmapper](https://github.com/Rogier-5/minetest-mapper-cpp) to display the map on a leaflet based zoomable sloppy map. As an example, see [VanessaE survival server's map](https://daconcepts.com/vanessa/hobbies/minetest/worldmaps/Survival_World/map.html).
2015-02-19 16:02:56 +01:00
The map is generated in chunks through many invocations of `minetestmapper` instead of one invocation and large file thats cropped later, so that memory requirements for all tools are unrelated to the map size.
2016-01-17 20:03:16 +01:00
### Dependencies
Ensure that you have:
2015-02-19 16:02:56 +01:00
2015-02-19 16:12:09 +01:00
-bash
2015-02-19 19:21:03 +01:00
-imagemagick
2015-02-19 16:12:09 +01:00
-minetestmapper
2015-02-19 16:02:56 +01:00
2016-01-17 20:03:16 +01:00
If you want to host the map on the world wide web, you'll need a web server.
### Running the mapper script
2015-02-19 16:02:56 +01:00
Get a clone:
```
git clone --recursive https://github.com/est31/leaftest.git
```
To start the mapping, do:
```
MAPPERDIR=dir/containing/minetestmapper ./mapper.sh path/to/world spawnx,spawny dimension
```
The `dimension` number specifies the width and height of the map that should be rendered, centering with your spawn position. `dimension` should be a multiple of 8*256 = 2048, 6144 is a good starting value.
2016-01-17 20:03:16 +01:00
The list of parameters passed via the invocation is fixed,
but you can use the environment variable mechanism
to pass further options to the mapper script:
2015-02-19 16:02:56 +01:00
2016-01-17 20:03:16 +01:00
* `MAPPERDIR` must point to the path that contains the minetestmapper executable
* `MAPPERPARAMS` can be used to pass custom parameters to the `minetestmapper` invocation
* `JOBNUM` can be used to enable parallelisation. Set it to a positive number to
After mapping has finished, you can open the `www/map.html` file. If you want to publish your results, you can either symlink the `www` directory into your `/var/www` directory, or copy it. Due to usage of relative symlinks, you should use `rsync -L`, so that the copied directory doesn't contain symlinks.
2016-01-17 19:34:33 +01:00
2015-02-19 16:02:56 +01:00
##License
2016-01-17 20:03:16 +01:00
Copyright (c) 2015-2016 est31, License: MIT.
2016-01-17 19:34:33 +01:00
Parts base on unilicensed script from [LibertyLand](http://www.ayntest.net/pages/liberty-land-map.html) minetest server, [github here](https://github.com/ayntest/ayntest.github.io).