├── .clang-format ├── .devcontainer ├── Dockerfile ├── devcontainer.json ├── mapcrafter.conf ├── postCreateCommand.sh └── postStartCommand.sh ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── do-build-container.yaml ├── .gitignore ├── .lvimrc ├── .travis.yml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CMakeLists.txt ├── COPYING ├── Dockerfile ├── MCVERSION ├── README.md ├── VERSION ├── docs ├── Makefile ├── _static │ └── piwik.js ├── blockcrafter.rst ├── conf.py ├── configuration.rst ├── hacking.rst ├── img │ ├── map_name.png │ ├── map_overlay_spawnday.png │ ├── map_overlay_spawnnight.png │ ├── map_overlay_spawnslime.png │ ├── map_render_mode_cave.png │ ├── map_render_mode_cavelight.png │ ├── map_render_mode_daylight.png │ ├── map_render_mode_nightlight.png │ ├── map_render_mode_plain.png │ ├── map_render_view_isometric.png │ ├── map_render_view_side.png │ ├── map_render_view_topdown.png │ ├── map_rotations_bottomleft.png │ ├── map_rotations_bottomright.png │ ├── map_rotations_topleft.png │ ├── map_rotations_topright.png │ ├── markers_list.png │ ├── markers_map.png │ ├── world_crop_blockmask.png │ ├── world_crop_circular.png │ ├── world_crop_level32.png │ └── world_crop_rectangular.png ├── index.rst ├── installation.rst ├── isometric_0_16.png ├── logging.rst ├── make.bat ├── mapcrafter.png ├── markers.rst └── using_mapcrafter.rst ├── entrypoint.sh ├── entrypoint_markers.sh └── src ├── CMakeLists.txt ├── accumulator.h ├── data └── template │ ├── index.html │ ├── markers-generated.js │ ├── markers.js │ └── static │ ├── css │ ├── bootstrap.min.css │ └── style.css │ ├── img │ ├── bl.png │ ├── br.png │ ├── tl.png │ └── tr.png │ ├── js │ ├── bootstrap.min.js │ ├── control │ │ ├── base.js │ │ ├── mapselect.js │ │ ├── marker.js │ │ ├── mousepos.js │ │ └── rotationselect.js │ ├── handler │ │ ├── base.js │ │ ├── mapselect.js │ │ ├── marker.js │ │ ├── poshash.js │ │ └── rotationselect.js │ ├── jquery-2.2.4.min.js │ ├── mapcrafterui.js │ └── util.js │ ├── leaflet │ ├── images │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ └── marker-shadow.png │ ├── leaflet.css │ └── leaflet.js │ └── markers │ └── __your_icons_here__ ├── logging.conf ├── mapcrafter.cpp ├── mapcrafter_markers.cpp ├── mapcraftercore ├── CMakeLists.txt ├── compat │ ├── CMakeLists.txt │ ├── boost.h │ ├── nullptr.h │ └── thread.h ├── config.h.in ├── config │ ├── CMakeLists.txt │ ├── configparser.cpp │ ├── configparser.h │ ├── configsection.cpp │ ├── configsection.h │ ├── configsections │ │ ├── CMakeLists.txt │ │ ├── log.cpp │ │ ├── log.h │ │ ├── map.cpp │ │ ├── map.h │ │ ├── marker.cpp │ │ ├── marker.h │ │ ├── world.cpp │ │ └── world.h │ ├── iniconfig.cpp │ ├── iniconfig.h │ ├── loggingconfig.cpp │ ├── loggingconfig.h │ ├── mapcrafterconfig.cpp │ ├── mapcrafterconfig.h │ ├── validation.cpp │ ├── validation.h │ ├── webconfig.cpp │ └── webconfig.h ├── mc │ ├── CMakeLists.txt │ ├── blockstate.cpp │ ├── blockstate.h │ ├── chunk.cpp │ ├── chunk.h │ ├── java.cpp │ ├── java.h │ ├── nbt.cpp │ ├── nbt.h │ ├── pos.cpp │ ├── pos.h │ ├── region.cpp │ ├── region.h │ ├── versions │ │ ├── CMakeLists.txt │ │ ├── chunk_status.cpp │ │ ├── chunk_status.h │ │ ├── data_adaptor.cpp │ │ ├── data_adaptor.h │ │ └── data_versions.h │ ├── world.cpp │ ├── world.h │ ├── worldcache.cpp │ ├── worldcache.h │ ├── worldcrop.cpp │ ├── worldcrop.h │ ├── worldentities.cpp │ └── worldentities.h ├── renderer │ ├── CMakeLists.txt │ ├── biomes.cpp │ ├── biomes.h │ ├── blockatlas.cpp │ ├── blockatlas.h │ ├── blockimages.cpp │ ├── blockimages.h │ ├── image.cpp │ ├── image.h │ ├── image │ │ ├── CMakeLists.txt │ │ ├── dithering.cpp │ │ ├── dithering.h │ │ ├── palette.cpp │ │ ├── palette.h │ │ ├── quantization.cpp │ │ ├── quantization.h │ │ ├── scaling.cpp │ │ └── scaling.h │ ├── manager.cpp │ ├── manager.h │ ├── mcrandom.cpp │ ├── mcrandom.h │ ├── rendermode.cpp │ ├── rendermode.h │ ├── rendermodes │ │ ├── CMakeLists.txt │ │ ├── cave.cpp │ │ ├── cave.h │ │ ├── heightoverlay.cpp │ │ ├── heightoverlay.h │ │ ├── lighting.cpp │ │ ├── lighting.h │ │ ├── overlay.cpp │ │ ├── overlay.h │ │ ├── slimeoverlay.cpp │ │ ├── slimeoverlay.h │ │ ├── spawnoverlay.cpp │ │ └── spawnoverlay.h │ ├── renderrotation.h │ ├── renderview.cpp │ ├── renderview.h │ ├── renderviews │ │ ├── isometricnew │ │ │ ├── CMakeLists.txt │ │ │ ├── CMakeLists.txte │ │ │ ├── renderview.cpp │ │ │ ├── renderview.h │ │ │ ├── tilerenderer.cpp │ │ │ ├── tilerenderer.h │ │ │ ├── tileset.cpp │ │ │ └── tileset.h │ │ ├── side │ │ │ ├── CMakeLists.txt │ │ │ ├── renderview.cpp │ │ │ ├── renderview.h │ │ │ ├── tilerenderer.cpp │ │ │ ├── tilerenderer.h │ │ │ ├── tileset.cpp │ │ │ └── tileset.h │ │ └── topdown │ │ │ ├── CMakeLists.txt │ │ │ ├── renderview.cpp │ │ │ ├── renderview.h │ │ │ ├── tilerenderer.cpp │ │ │ ├── tilerenderer.h │ │ │ ├── tileset.cpp │ │ │ └── tileset.h │ ├── tilerenderer.cpp │ ├── tilerenderer.h │ ├── tilerenderworker.cpp │ ├── tilerenderworker.h │ ├── tileset.cpp │ └── tileset.h ├── thread │ ├── CMakeLists.txt │ ├── dispatcher.h │ ├── impl │ │ ├── CMakeLists.txt │ │ ├── concurrentqueue.h │ │ ├── multithreading.cpp │ │ ├── multithreading.h │ │ ├── singlethread.cpp │ │ └── singlethread.h │ └── workermanager.h ├── util.h ├── util │ ├── CMakeLists.txt │ ├── filesystem.cpp │ ├── filesystem.h │ ├── json.h │ ├── logging.cpp │ ├── logging.h │ ├── math.h │ ├── other.cpp │ ├── other.h │ ├── picojson.h │ ├── progress.cpp │ ├── progress.h │ ├── terminal.cpp │ └── terminal.h ├── version.cpp ├── version.h └── version.sh ├── test ├── CMakeLists.txt ├── SlimeTest.java ├── data │ ├── config │ │ └── test.conf │ ├── platypus.png │ └── region │ │ └── r.-1.0.mca ├── test_all.cpp ├── test_blockstate.cpp ├── test_config.cpp ├── test_image.cpp ├── test_image_quantization.cpp ├── test_misc.cpp ├── test_nbt.cpp ├── test_pos.cpp ├── test_region.cpp ├── test_tile.cpp ├── test_util.cpp └── test_worldcrop.cpp └── tools ├── CMakeLists.txt ├── gen_texture_code.py ├── gen_texture_code.sh ├── mapcrafter_png-it.py ├── mapcrafter_textures.py ├── nbtdump.cpp └── testconfig.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.clang-format -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/mapcrafter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.devcontainer/mapcrafter.conf -------------------------------------------------------------------------------- /.devcontainer/postCreateCommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.devcontainer/postCreateCommand.sh -------------------------------------------------------------------------------- /.devcontainer/postStartCommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.devcontainer/postStartCommand.sh -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .vscode 3 | build 4 | _wd_ 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/do-build-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.github/workflows/do-build-container.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.gitignore -------------------------------------------------------------------------------- /.lvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.lvimrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/Dockerfile -------------------------------------------------------------------------------- /MCVERSION: -------------------------------------------------------------------------------- 1 | 1.21.4 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.1 -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/piwik.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/_static/piwik.js -------------------------------------------------------------------------------- /docs/blockcrafter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/blockcrafter.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/hacking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/hacking.rst -------------------------------------------------------------------------------- /docs/img/map_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_name.png -------------------------------------------------------------------------------- /docs/img/map_overlay_spawnday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_overlay_spawnday.png -------------------------------------------------------------------------------- /docs/img/map_overlay_spawnnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_overlay_spawnnight.png -------------------------------------------------------------------------------- /docs/img/map_overlay_spawnslime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_overlay_spawnslime.png -------------------------------------------------------------------------------- /docs/img/map_render_mode_cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_render_mode_cave.png -------------------------------------------------------------------------------- /docs/img/map_render_mode_cavelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_render_mode_cavelight.png -------------------------------------------------------------------------------- /docs/img/map_render_mode_daylight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_render_mode_daylight.png -------------------------------------------------------------------------------- /docs/img/map_render_mode_nightlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_render_mode_nightlight.png -------------------------------------------------------------------------------- /docs/img/map_render_mode_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_render_mode_plain.png -------------------------------------------------------------------------------- /docs/img/map_render_view_isometric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_render_view_isometric.png -------------------------------------------------------------------------------- /docs/img/map_render_view_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_render_view_side.png -------------------------------------------------------------------------------- /docs/img/map_render_view_topdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_render_view_topdown.png -------------------------------------------------------------------------------- /docs/img/map_rotations_bottomleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_rotations_bottomleft.png -------------------------------------------------------------------------------- /docs/img/map_rotations_bottomright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_rotations_bottomright.png -------------------------------------------------------------------------------- /docs/img/map_rotations_topleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_rotations_topleft.png -------------------------------------------------------------------------------- /docs/img/map_rotations_topright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/map_rotations_topright.png -------------------------------------------------------------------------------- /docs/img/markers_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/markers_list.png -------------------------------------------------------------------------------- /docs/img/markers_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/markers_map.png -------------------------------------------------------------------------------- /docs/img/world_crop_blockmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/world_crop_blockmask.png -------------------------------------------------------------------------------- /docs/img/world_crop_circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/world_crop_circular.png -------------------------------------------------------------------------------- /docs/img/world_crop_level32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/world_crop_level32.png -------------------------------------------------------------------------------- /docs/img/world_crop_rectangular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/img/world_crop_rectangular.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/isometric_0_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/isometric_0_16.png -------------------------------------------------------------------------------- /docs/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/logging.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/mapcrafter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/mapcrafter.png -------------------------------------------------------------------------------- /docs/markers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/markers.rst -------------------------------------------------------------------------------- /docs/using_mapcrafter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/docs/using_mapcrafter.rst -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /entrypoint_markers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/entrypoint_markers.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/accumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/accumulator.h -------------------------------------------------------------------------------- /src/data/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/index.html -------------------------------------------------------------------------------- /src/data/template/markers-generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/markers-generated.js -------------------------------------------------------------------------------- /src/data/template/markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/markers.js -------------------------------------------------------------------------------- /src/data/template/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/data/template/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/css/style.css -------------------------------------------------------------------------------- /src/data/template/static/img/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/img/bl.png -------------------------------------------------------------------------------- /src/data/template/static/img/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/img/br.png -------------------------------------------------------------------------------- /src/data/template/static/img/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/img/tl.png -------------------------------------------------------------------------------- /src/data/template/static/img/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/img/tr.png -------------------------------------------------------------------------------- /src/data/template/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/data/template/static/js/control/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/control/base.js -------------------------------------------------------------------------------- /src/data/template/static/js/control/mapselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/control/mapselect.js -------------------------------------------------------------------------------- /src/data/template/static/js/control/marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/control/marker.js -------------------------------------------------------------------------------- /src/data/template/static/js/control/mousepos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/control/mousepos.js -------------------------------------------------------------------------------- /src/data/template/static/js/control/rotationselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/control/rotationselect.js -------------------------------------------------------------------------------- /src/data/template/static/js/handler/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/handler/base.js -------------------------------------------------------------------------------- /src/data/template/static/js/handler/mapselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/handler/mapselect.js -------------------------------------------------------------------------------- /src/data/template/static/js/handler/marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/handler/marker.js -------------------------------------------------------------------------------- /src/data/template/static/js/handler/poshash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/handler/poshash.js -------------------------------------------------------------------------------- /src/data/template/static/js/handler/rotationselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/handler/rotationselect.js -------------------------------------------------------------------------------- /src/data/template/static/js/jquery-2.2.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/jquery-2.2.4.min.js -------------------------------------------------------------------------------- /src/data/template/static/js/mapcrafterui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/mapcrafterui.js -------------------------------------------------------------------------------- /src/data/template/static/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/js/util.js -------------------------------------------------------------------------------- /src/data/template/static/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /src/data/template/static/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/leaflet/images/layers.png -------------------------------------------------------------------------------- /src/data/template/static/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /src/data/template/static/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /src/data/template/static/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /src/data/template/static/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/leaflet/leaflet.css -------------------------------------------------------------------------------- /src/data/template/static/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/data/template/static/leaflet/leaflet.js -------------------------------------------------------------------------------- /src/data/template/static/markers/__your_icons_here__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/logging.conf -------------------------------------------------------------------------------- /src/mapcrafter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcrafter.cpp -------------------------------------------------------------------------------- /src/mapcrafter_markers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcrafter_markers.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/compat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/compat/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/compat/boost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/compat/boost.h -------------------------------------------------------------------------------- /src/mapcraftercore/compat/nullptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/compat/nullptr.h -------------------------------------------------------------------------------- /src/mapcraftercore/compat/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/compat/thread.h -------------------------------------------------------------------------------- /src/mapcraftercore/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config.h.in -------------------------------------------------------------------------------- /src/mapcraftercore/config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/config/configparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/configparser.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/config/configparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/configparser.h -------------------------------------------------------------------------------- /src/mapcraftercore/config/configsection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/configsection.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/config/configsection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/configsection.h -------------------------------------------------------------------------------- /src/mapcraftercore/config/configsections/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/configsections/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/config/configsections/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/configsections/log.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/config/configsections/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/configsections/log.h -------------------------------------------------------------------------------- /src/mapcraftercore/config/configsections/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/configsections/map.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/config/configsections/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/configsections/map.h -------------------------------------------------------------------------------- /src/mapcraftercore/config/configsections/marker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/configsections/marker.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/config/configsections/marker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/configsections/marker.h -------------------------------------------------------------------------------- /src/mapcraftercore/config/configsections/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/configsections/world.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/config/configsections/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/configsections/world.h -------------------------------------------------------------------------------- /src/mapcraftercore/config/iniconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/iniconfig.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/config/iniconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/iniconfig.h -------------------------------------------------------------------------------- /src/mapcraftercore/config/loggingconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/loggingconfig.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/config/loggingconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/loggingconfig.h -------------------------------------------------------------------------------- /src/mapcraftercore/config/mapcrafterconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/mapcrafterconfig.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/config/mapcrafterconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/mapcrafterconfig.h -------------------------------------------------------------------------------- /src/mapcraftercore/config/validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/validation.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/config/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/validation.h -------------------------------------------------------------------------------- /src/mapcraftercore/config/webconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/webconfig.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/config/webconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/config/webconfig.h -------------------------------------------------------------------------------- /src/mapcraftercore/mc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/mc/blockstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/blockstate.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/mc/blockstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/blockstate.h -------------------------------------------------------------------------------- /src/mapcraftercore/mc/chunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/chunk.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/mc/chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/chunk.h -------------------------------------------------------------------------------- /src/mapcraftercore/mc/java.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/java.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/mc/java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/java.h -------------------------------------------------------------------------------- /src/mapcraftercore/mc/nbt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/nbt.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/mc/nbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/nbt.h -------------------------------------------------------------------------------- /src/mapcraftercore/mc/pos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/pos.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/mc/pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/pos.h -------------------------------------------------------------------------------- /src/mapcraftercore/mc/region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/region.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/mc/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/region.h -------------------------------------------------------------------------------- /src/mapcraftercore/mc/versions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/versions/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/mc/versions/chunk_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/versions/chunk_status.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/mc/versions/chunk_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/versions/chunk_status.h -------------------------------------------------------------------------------- /src/mapcraftercore/mc/versions/data_adaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/versions/data_adaptor.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/mc/versions/data_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/versions/data_adaptor.h -------------------------------------------------------------------------------- /src/mapcraftercore/mc/versions/data_versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/versions/data_versions.h -------------------------------------------------------------------------------- /src/mapcraftercore/mc/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/world.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/mc/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/world.h -------------------------------------------------------------------------------- /src/mapcraftercore/mc/worldcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/worldcache.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/mc/worldcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/worldcache.h -------------------------------------------------------------------------------- /src/mapcraftercore/mc/worldcrop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/worldcrop.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/mc/worldcrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/worldcrop.h -------------------------------------------------------------------------------- /src/mapcraftercore/mc/worldentities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/worldentities.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/mc/worldentities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/mc/worldentities.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/biomes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/biomes.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/biomes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/biomes.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/blockatlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/blockatlas.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/blockatlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/blockatlas.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/blockimages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/blockimages.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/blockimages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/blockimages.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/image.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/image.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/image/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/image/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/image/dithering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/image/dithering.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/image/dithering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/image/dithering.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/image/palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/image/palette.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/image/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/image/palette.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/image/quantization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/image/quantization.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/image/quantization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/image/quantization.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/image/scaling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/image/scaling.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/image/scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/image/scaling.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/manager.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/manager.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/mcrandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/mcrandom.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/mcrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/mcrandom.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermode.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermode.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermodes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermodes/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermodes/cave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermodes/cave.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermodes/cave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermodes/cave.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermodes/heightoverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermodes/heightoverlay.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermodes/heightoverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermodes/heightoverlay.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermodes/lighting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermodes/lighting.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermodes/lighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermodes/lighting.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermodes/overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermodes/overlay.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermodes/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermodes/overlay.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermodes/slimeoverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermodes/slimeoverlay.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermodes/slimeoverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermodes/slimeoverlay.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermodes/spawnoverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermodes/spawnoverlay.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/rendermodes/spawnoverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/rendermodes/spawnoverlay.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderrotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderrotation.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderview.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderview.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/isometricnew/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/isometricnew/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/isometricnew/CMakeLists.txte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/isometricnew/CMakeLists.txte -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/isometricnew/renderview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/isometricnew/renderview.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/isometricnew/renderview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/isometricnew/renderview.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/isometricnew/tilerenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/isometricnew/tilerenderer.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/isometricnew/tilerenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/isometricnew/tilerenderer.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/isometricnew/tileset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/isometricnew/tileset.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/isometricnew/tileset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/isometricnew/tileset.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/side/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/side/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/side/renderview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/side/renderview.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/side/renderview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/side/renderview.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/side/tilerenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/side/tilerenderer.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/side/tilerenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/side/tilerenderer.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/side/tileset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/side/tileset.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/side/tileset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/side/tileset.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/topdown/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/topdown/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/topdown/renderview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/topdown/renderview.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/topdown/renderview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/topdown/renderview.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/topdown/tilerenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/topdown/tilerenderer.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/topdown/tilerenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/topdown/tilerenderer.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/topdown/tileset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/topdown/tileset.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/renderviews/topdown/tileset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/renderviews/topdown/tileset.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/tilerenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/tilerenderer.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/tilerenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/tilerenderer.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/tilerenderworker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/tilerenderworker.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/tilerenderworker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/tilerenderworker.h -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/tileset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/tileset.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/renderer/tileset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/renderer/tileset.h -------------------------------------------------------------------------------- /src/mapcraftercore/thread/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/thread/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/thread/dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/thread/dispatcher.h -------------------------------------------------------------------------------- /src/mapcraftercore/thread/impl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/thread/impl/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/thread/impl/concurrentqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/thread/impl/concurrentqueue.h -------------------------------------------------------------------------------- /src/mapcraftercore/thread/impl/multithreading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/thread/impl/multithreading.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/thread/impl/multithreading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/thread/impl/multithreading.h -------------------------------------------------------------------------------- /src/mapcraftercore/thread/impl/singlethread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/thread/impl/singlethread.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/thread/impl/singlethread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/thread/impl/singlethread.h -------------------------------------------------------------------------------- /src/mapcraftercore/thread/workermanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/thread/workermanager.h -------------------------------------------------------------------------------- /src/mapcraftercore/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util.h -------------------------------------------------------------------------------- /src/mapcraftercore/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapcraftercore/util/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/filesystem.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/util/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/filesystem.h -------------------------------------------------------------------------------- /src/mapcraftercore/util/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/json.h -------------------------------------------------------------------------------- /src/mapcraftercore/util/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/logging.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/logging.h -------------------------------------------------------------------------------- /src/mapcraftercore/util/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/math.h -------------------------------------------------------------------------------- /src/mapcraftercore/util/other.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/other.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/util/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/other.h -------------------------------------------------------------------------------- /src/mapcraftercore/util/picojson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/picojson.h -------------------------------------------------------------------------------- /src/mapcraftercore/util/progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/progress.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/util/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/progress.h -------------------------------------------------------------------------------- /src/mapcraftercore/util/terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/terminal.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/util/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/util/terminal.h -------------------------------------------------------------------------------- /src/mapcraftercore/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/version.cpp -------------------------------------------------------------------------------- /src/mapcraftercore/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/version.h -------------------------------------------------------------------------------- /src/mapcraftercore/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/mapcraftercore/version.sh -------------------------------------------------------------------------------- /src/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/test/SlimeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/SlimeTest.java -------------------------------------------------------------------------------- /src/test/data/config/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/data/config/test.conf -------------------------------------------------------------------------------- /src/test/data/platypus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/data/platypus.png -------------------------------------------------------------------------------- /src/test/data/region/r.-1.0.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/data/region/r.-1.0.mca -------------------------------------------------------------------------------- /src/test/test_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/test_all.cpp -------------------------------------------------------------------------------- /src/test/test_blockstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/test_blockstate.cpp -------------------------------------------------------------------------------- /src/test/test_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/test_config.cpp -------------------------------------------------------------------------------- /src/test/test_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/test_image.cpp -------------------------------------------------------------------------------- /src/test/test_image_quantization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/test_image_quantization.cpp -------------------------------------------------------------------------------- /src/test/test_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/test_misc.cpp -------------------------------------------------------------------------------- /src/test/test_nbt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/test_nbt.cpp -------------------------------------------------------------------------------- /src/test/test_pos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/test_pos.cpp -------------------------------------------------------------------------------- /src/test/test_region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/test_region.cpp -------------------------------------------------------------------------------- /src/test/test_tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/test_tile.cpp -------------------------------------------------------------------------------- /src/test/test_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/test_util.cpp -------------------------------------------------------------------------------- /src/test/test_worldcrop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/test/test_worldcrop.cpp -------------------------------------------------------------------------------- /src/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/gen_texture_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/tools/gen_texture_code.py -------------------------------------------------------------------------------- /src/tools/gen_texture_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/tools/gen_texture_code.sh -------------------------------------------------------------------------------- /src/tools/mapcrafter_png-it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/tools/mapcrafter_png-it.py -------------------------------------------------------------------------------- /src/tools/mapcrafter_textures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/tools/mapcrafter_textures.py -------------------------------------------------------------------------------- /src/tools/nbtdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/tools/nbtdump.cpp -------------------------------------------------------------------------------- /src/tools/testconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miclav/mapcrafter/HEAD/src/tools/testconfig.cpp --------------------------------------------------------------------------------