├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── backup ├── CMakeLists.txt ├── README.md ├── cubiomes │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── LayerSummary.pdf │ ├── Makefile │ ├── README.md │ ├── docs │ │ ├── LayerSummary.tex │ │ ├── layers.odg │ │ └── layers.pdf │ ├── generator.c │ ├── generator.h │ ├── javarnd.h │ ├── layers.c │ ├── layers.h │ ├── mcrandom.c │ ├── mcrandom.h │ ├── tests.c │ ├── util.c │ └── util.h ├── finder.cpp ├── finder.h ├── main.cpp ├── result │ └── ocean_monument │ │ ├── (Pseudo) Triple.txt │ │ ├── Double(96 blocks distance).txt │ │ └── README.md ├── test │ ├── test_base.h │ └── utils_test.cpp ├── utils.cpp └── utils.h ├── be_finder.cpp ├── be_finder.h ├── be_random.cpp ├── be_random.h ├── main.cpp ├── structure.cpp ├── structure.h ├── tools.cpp └── tools.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 1.18+ is in refactoring !!! 2 | 3 | # License 4 | mit 5 | -------------------------------------------------------------------------------- /backup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/CMakeLists.txt -------------------------------------------------------------------------------- /backup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/README.md -------------------------------------------------------------------------------- /backup/cubiomes/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/.gitattributes -------------------------------------------------------------------------------- /backup/cubiomes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/.gitignore -------------------------------------------------------------------------------- /backup/cubiomes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/LICENSE -------------------------------------------------------------------------------- /backup/cubiomes/LayerSummary.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/LayerSummary.pdf -------------------------------------------------------------------------------- /backup/cubiomes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/Makefile -------------------------------------------------------------------------------- /backup/cubiomes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/README.md -------------------------------------------------------------------------------- /backup/cubiomes/docs/LayerSummary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/docs/LayerSummary.tex -------------------------------------------------------------------------------- /backup/cubiomes/docs/layers.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/docs/layers.odg -------------------------------------------------------------------------------- /backup/cubiomes/docs/layers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/docs/layers.pdf -------------------------------------------------------------------------------- /backup/cubiomes/generator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/generator.c -------------------------------------------------------------------------------- /backup/cubiomes/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/generator.h -------------------------------------------------------------------------------- /backup/cubiomes/javarnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/javarnd.h -------------------------------------------------------------------------------- /backup/cubiomes/layers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/layers.c -------------------------------------------------------------------------------- /backup/cubiomes/layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/layers.h -------------------------------------------------------------------------------- /backup/cubiomes/mcrandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/mcrandom.c -------------------------------------------------------------------------------- /backup/cubiomes/mcrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/mcrandom.h -------------------------------------------------------------------------------- /backup/cubiomes/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/tests.c -------------------------------------------------------------------------------- /backup/cubiomes/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/util.c -------------------------------------------------------------------------------- /backup/cubiomes/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/cubiomes/util.h -------------------------------------------------------------------------------- /backup/finder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/finder.cpp -------------------------------------------------------------------------------- /backup/finder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/finder.h -------------------------------------------------------------------------------- /backup/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/main.cpp -------------------------------------------------------------------------------- /backup/result/ocean_monument/(Pseudo) Triple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/result/ocean_monument/(Pseudo) Triple.txt -------------------------------------------------------------------------------- /backup/result/ocean_monument/Double(96 blocks distance).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/result/ocean_monument/Double(96 blocks distance).txt -------------------------------------------------------------------------------- /backup/result/ocean_monument/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/result/ocean_monument/README.md -------------------------------------------------------------------------------- /backup/test/test_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/test/test_base.h -------------------------------------------------------------------------------- /backup/test/utils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/test/utils_test.cpp -------------------------------------------------------------------------------- /backup/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/utils.cpp -------------------------------------------------------------------------------- /backup/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/backup/utils.h -------------------------------------------------------------------------------- /be_finder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/be_finder.cpp -------------------------------------------------------------------------------- /be_finder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/be_finder.h -------------------------------------------------------------------------------- /be_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/be_random.cpp -------------------------------------------------------------------------------- /be_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/be_random.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/main.cpp -------------------------------------------------------------------------------- /structure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/structure.cpp -------------------------------------------------------------------------------- /structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/structure.h -------------------------------------------------------------------------------- /tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/tools.cpp -------------------------------------------------------------------------------- /tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/MCBEStructureFinder/HEAD/tools.h --------------------------------------------------------------------------------