gitextract_o4qlv98t/ ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── ChangeLog ├── LICENSE.txt ├── README.md ├── dist/ │ ├── Makefile.osx │ ├── README.md │ ├── all.sh │ ├── config.mk │ ├── make.sh │ └── targets/ │ ├── x86-linux │ ├── x86-windows │ ├── x86_64-linux │ └── x86_64-windows ├── docs/ │ ├── NBT.txt │ ├── bigtest.nbt │ └── test.nbt ├── gui/ │ └── c10t-tk/ │ ├── README │ ├── c10t-tk.py │ ├── mainwindow.py │ └── tooltip.py ├── palette.json ├── res/ │ ├── example.html │ └── libc10t.js ├── scripts/ │ ├── area-set.sh │ ├── area-slice.sh │ ├── generate-tests.sh │ └── google-api/ │ ├── README.txt │ ├── google-api.php │ ├── google-api.ps1 │ ├── google-api.sh │ ├── index.html │ └── libc10t.google.js ├── src/ │ ├── 2d/ │ │ └── cube.hpp │ ├── algorithm.cpp │ ├── algorithm.hpp │ ├── altitude_graph.cpp │ ├── altitude_graph.hpp │ ├── cache.hpp │ ├── dirlist.cpp │ ├── dirlist.hpp │ ├── dlopen.cpp │ ├── dlopen.hpp │ ├── engine/ │ │ ├── CMakeLists.txt │ │ ├── block_rotation.cpp │ │ ├── block_rotation.hpp │ │ ├── engine_base.hpp │ │ ├── engine_core.hpp │ │ ├── engine_settings.hpp │ │ ├── fatiso_engine.cpp │ │ ├── fatiso_engine.hpp │ │ ├── flat_base.cpp │ │ ├── flat_base.hpp │ │ ├── functions.cpp │ │ ├── functions.hpp │ │ ├── isometric_base.cpp │ │ ├── isometric_base.hpp │ │ ├── isometric_engine.cpp │ │ ├── isometric_engine.hpp │ │ ├── oblique_engine.cpp │ │ ├── oblique_engine.hpp │ │ ├── obliqueangle_engine.cpp │ │ ├── obliqueangle_engine.hpp │ │ ├── topdown_engine.cpp │ │ └── topdown_engine.hpp │ ├── fileutils.cpp │ ├── fileutils.hpp │ ├── generate_map.cpp │ ├── generate_map.hpp │ ├── generate_statistics.cpp │ ├── generate_statistics.hpp │ ├── image/ │ │ ├── CMakeLists.txt │ │ ├── algorithms.cpp │ │ ├── algorithms.hpp │ │ ├── cached_image.cpp │ │ ├── cached_image.hpp │ │ ├── color.cpp │ │ ├── color.hpp │ │ ├── format/ │ │ │ ├── base.hpp │ │ │ └── png.hpp │ │ ├── image_base.cpp │ │ ├── image_base.hpp │ │ ├── image_operations.cpp │ │ ├── image_operations.hpp │ │ ├── memory_image.cpp │ │ ├── memory_image.hpp │ │ └── virtual_image.hpp │ ├── json.cpp │ ├── json.hpp │ ├── main.cpp │ ├── main_utils.cpp │ ├── main_utils.hpp │ ├── marker.cpp │ ├── marker.hpp │ ├── mc/ │ │ ├── CMakeLists.txt │ │ ├── blocks.cpp │ │ ├── blocks.hpp │ │ ├── dynamic_buffer.cpp │ │ ├── dynamic_buffer.hpp │ │ ├── level.cpp │ │ ├── level.hpp │ │ ├── level_info.cpp │ │ ├── level_info.hpp │ │ ├── marker.cpp │ │ ├── marker.hpp │ │ ├── region.cpp │ │ ├── region.hpp │ │ ├── region_inspect.cpp │ │ ├── region_iterator.cpp │ │ ├── region_iterator.hpp │ │ ├── rotated_level_info.cpp │ │ ├── rotated_level_info.hpp │ │ ├── utils.cpp │ │ ├── utils.hpp │ │ ├── world.cpp │ │ └── world.hpp │ ├── nbt/ │ │ ├── CMakeLists.txt │ │ ├── nbt.cpp │ │ ├── nbt.hpp │ │ ├── nbt_inspect.cpp │ │ └── types.hpp │ ├── nullstream.cpp │ ├── nullstream.hpp │ ├── players.cpp │ ├── players.hpp │ ├── settings_t.cpp │ ├── settings_t.hpp │ ├── text.cpp │ ├── text.hpp │ ├── threads/ │ │ ├── renderer.hpp │ │ ├── renderer_settings.hpp │ │ ├── threadworker.hpp │ │ ├── threadworker_fake.hpp │ │ └── threadworker_impl.hpp │ ├── warps.cpp │ ├── warps.hpp │ └── win32/ │ └── tss_cleanup_implemented.cpp └── test/ ├── CMakeLists.txt └── test.cpp