├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── EifViewer ├── CMakeLists.txt ├── EasyBMP │ ├── BSD_(revised)_license.txt │ ├── EasyBMP.cpp │ ├── EasyBMP.h │ ├── EasyBMP_BMP.h │ ├── EasyBMP_ChangeLog.txt │ ├── EasyBMP_DataStructures.h │ └── EasyBMP_VariousBMPutilities.h ├── EifConverter.cpp ├── EifConverter.h └── main.cpp ├── ImgSectionParser ├── CMakeLists.txt ├── ImageSection.cpp ├── ImageSection.h └── main.cpp ├── ImgUnpacker ├── CMakeLists.txt └── main.cpp ├── LICENSE ├── README.md ├── README_ru.md ├── TextSectionParser ├── CMakeLists.txt ├── TextSectionPacker.cpp ├── TextSectionPacker.h └── main.cpp ├── VbfEditor ├── CMakeLists.txt ├── README.md ├── VbfFile.cpp ├── VbfFile.h ├── VbfeditConfig.h.in └── main.cpp ├── ZipRepacker ├── CMakeLists.txt ├── patched_miniz_lib_with_removed_extended_header.patch └── ziprepacker.cpp ├── tools ├── Linux │ ├── Tests │ │ ├── 16bppBulkList.txt │ │ ├── 16bppList.txt │ │ ├── 32bppList.txt │ │ ├── 8bppList.txt │ │ └── eif_test.sh │ ├── extract_images.sh │ ├── pack.sh │ └── replace_img.sh └── Windows │ ├── BMP_to_EIF.bat │ ├── repacker.bat │ └── unpacker.bat └── utils └── utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /EifViewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/EifViewer/CMakeLists.txt -------------------------------------------------------------------------------- /EifViewer/EasyBMP/BSD_(revised)_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/EifViewer/EasyBMP/BSD_(revised)_license.txt -------------------------------------------------------------------------------- /EifViewer/EasyBMP/EasyBMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/EifViewer/EasyBMP/EasyBMP.cpp -------------------------------------------------------------------------------- /EifViewer/EasyBMP/EasyBMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/EifViewer/EasyBMP/EasyBMP.h -------------------------------------------------------------------------------- /EifViewer/EasyBMP/EasyBMP_BMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/EifViewer/EasyBMP/EasyBMP_BMP.h -------------------------------------------------------------------------------- /EifViewer/EasyBMP/EasyBMP_ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/EifViewer/EasyBMP/EasyBMP_ChangeLog.txt -------------------------------------------------------------------------------- /EifViewer/EasyBMP/EasyBMP_DataStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/EifViewer/EasyBMP/EasyBMP_DataStructures.h -------------------------------------------------------------------------------- /EifViewer/EasyBMP/EasyBMP_VariousBMPutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/EifViewer/EasyBMP/EasyBMP_VariousBMPutilities.h -------------------------------------------------------------------------------- /EifViewer/EifConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/EifViewer/EifConverter.cpp -------------------------------------------------------------------------------- /EifViewer/EifConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/EifViewer/EifConverter.h -------------------------------------------------------------------------------- /EifViewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/EifViewer/main.cpp -------------------------------------------------------------------------------- /ImgSectionParser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/ImgSectionParser/CMakeLists.txt -------------------------------------------------------------------------------- /ImgSectionParser/ImageSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/ImgSectionParser/ImageSection.cpp -------------------------------------------------------------------------------- /ImgSectionParser/ImageSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/ImgSectionParser/ImageSection.h -------------------------------------------------------------------------------- /ImgSectionParser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/ImgSectionParser/main.cpp -------------------------------------------------------------------------------- /ImgUnpacker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/ImgUnpacker/CMakeLists.txt -------------------------------------------------------------------------------- /ImgUnpacker/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/ImgUnpacker/main.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/README.md -------------------------------------------------------------------------------- /README_ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/README_ru.md -------------------------------------------------------------------------------- /TextSectionParser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/TextSectionParser/CMakeLists.txt -------------------------------------------------------------------------------- /TextSectionParser/TextSectionPacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/TextSectionParser/TextSectionPacker.cpp -------------------------------------------------------------------------------- /TextSectionParser/TextSectionPacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/TextSectionParser/TextSectionPacker.h -------------------------------------------------------------------------------- /TextSectionParser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/TextSectionParser/main.cpp -------------------------------------------------------------------------------- /VbfEditor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/VbfEditor/CMakeLists.txt -------------------------------------------------------------------------------- /VbfEditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/VbfEditor/README.md -------------------------------------------------------------------------------- /VbfEditor/VbfFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/VbfEditor/VbfFile.cpp -------------------------------------------------------------------------------- /VbfEditor/VbfFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/VbfEditor/VbfFile.h -------------------------------------------------------------------------------- /VbfEditor/VbfeditConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/VbfEditor/VbfeditConfig.h.in -------------------------------------------------------------------------------- /VbfEditor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/VbfEditor/main.cpp -------------------------------------------------------------------------------- /ZipRepacker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/ZipRepacker/CMakeLists.txt -------------------------------------------------------------------------------- /ZipRepacker/patched_miniz_lib_with_removed_extended_header.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/ZipRepacker/patched_miniz_lib_with_removed_extended_header.patch -------------------------------------------------------------------------------- /ZipRepacker/ziprepacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/ZipRepacker/ziprepacker.cpp -------------------------------------------------------------------------------- /tools/Linux/Tests/16bppBulkList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/tools/Linux/Tests/16bppBulkList.txt -------------------------------------------------------------------------------- /tools/Linux/Tests/16bppList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/tools/Linux/Tests/16bppList.txt -------------------------------------------------------------------------------- /tools/Linux/Tests/32bppList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/tools/Linux/Tests/32bppList.txt -------------------------------------------------------------------------------- /tools/Linux/Tests/8bppList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/tools/Linux/Tests/8bppList.txt -------------------------------------------------------------------------------- /tools/Linux/Tests/eif_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/tools/Linux/Tests/eif_test.sh -------------------------------------------------------------------------------- /tools/Linux/extract_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/tools/Linux/extract_images.sh -------------------------------------------------------------------------------- /tools/Linux/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/tools/Linux/pack.sh -------------------------------------------------------------------------------- /tools/Linux/replace_img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/tools/Linux/replace_img.sh -------------------------------------------------------------------------------- /tools/Windows/BMP_to_EIF.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/tools/Windows/BMP_to_EIF.bat -------------------------------------------------------------------------------- /tools/Windows/repacker.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/tools/Windows/repacker.bat -------------------------------------------------------------------------------- /tools/Windows/unpacker.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/tools/Windows/unpacker.bat -------------------------------------------------------------------------------- /utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigunclemax/FTools/HEAD/utils/utils.h --------------------------------------------------------------------------------