minetestmapper
minetestmapper copied to clipboard
Generates a overview image of a minetest map.
This issue is only about GitHub … This repository is one of the 3 pinned repositories of Minetest. This means it appears on the top of . But the minetestmapper...
minetestmapper will render a Postgres-based map fine, but it can't render player positions stored in the Postgres backend. Error message: `Exception: Unknown player backend: postgresql`
I don't know how easy a screen blending mode would be to implement and how light dropoff in distance and altitude ought to be handled and whether that complicates things...
I currently use minetestmapper to generate tiles for a slippy map using the --geometry option to create the tiles. For a big map, this is very inefficient, because minetestmapper will...
so the player can teleport to those places to fill in gaps in the map. Perhaps only list the gap closest to 0,0 in each direction.
Having a special flag color for non-generated chunks (such as `#010000` with alpha 0 if drawalpha is enable which I had working in my [fork](https://github.com/expertmm/minetestmapper-python) of the python version), would...
Title says it all :-) If the mapper runs across a bad mapblock in the source map file (at least in the case of an sqlite map), it will eventually...
This PR adds a `Dockerfile` which compiles `minetestmapper` and puts it into a Docker image. Additionally, a workflow file is added to publish the images to `ghcr.io/minetest/minetestmapper` on `master` change....
On Sqlite3, and probably also other SQL backends, range queries can be written as follows: ```sql SELECT pos, ((pos + 0x800800800) & 0xFFF) - 0x800 as x, -- optional (((pos...