Irrlicht TAR Loader
IFileSystem changes:
- Added TAR archive loader.
- Renamed the following functions-
IFileArchive::getArchiveType
togetType
IFileSystem::registerFileArchive
toaddFileArchive
IFileSystem::unregisterFileArchive
toremoveFileArchive
IFileArchive::openFile
tocreateAndOpenFile
- New enum,
E_FILE_ARCHIVE_TYPE
.getType
onIArchiveLoader
andIFileArchive
now both return this. IFileSystem::addFileArchive
takes a parameter to specify the archive type rather always using the file extension.IFileSystem::addZipFileArchive
,addFolderFileArchive
andaddPakFileArchive
now use this but these functions are now marked as deprecated. Users should now useaddFileArchive
instead.