├── .github └── workflows │ └── release.yml ├── .gitignore ├── Call of Duty FastFile Editor.sln ├── Call of Duty FastFile Editor ├── Call of Duty FastFile Editor.csproj ├── Call of Duty FastFile Editor.csproj.user ├── CodeOperations │ ├── AssetRecordPoolOps.cs │ ├── CodeCompressor.cs │ ├── CommentRemover.cs │ └── SyntaxChecker.cs ├── Constants │ ├── ApplicationConstants.cs │ ├── FastFileConstants.cs │ ├── RawFileConstants.cs │ └── ZoneFileConstants.cs ├── IO │ ├── CoD4FastFileHandler.cs │ ├── CoD5FastFileHandler.cs │ ├── FastFileHandlerBase.cs │ ├── FastFileHandlerFactory.cs │ └── IFastFileHandler.cs ├── Models │ ├── AssetRecordCollection.cs │ ├── CollisionMapAsset.cs │ ├── FastFile.cs │ ├── IAssetRecordUpdatable.cs │ ├── LocalizationEntry.cs │ ├── RawFileNode.cs │ ├── StringTable.cs │ ├── TagCollection.cs │ ├── ZoneFile.cs │ └── ZoneFileAssetManifest.cs ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Services │ ├── AssetRecordProcessor.cs │ ├── GitHubReleaseChecker.cs │ ├── IO │ │ └── ZoneFileIO.cs │ ├── IRawFileService.cs │ ├── RawFileService.cs │ └── Utilities.cs ├── UI │ ├── MainWindowForm.Designer.cs │ ├── MainWindowForm.cs │ ├── MainWindowForm.resx │ ├── RawFileSearcherForm.Designer.cs │ ├── RawFileSearcherForm.cs │ ├── RawFileSearcherForm.resx │ ├── RawFileSizeAdjust.Designer.cs │ ├── RawFileSizeAdjust.cs │ ├── RawFileSizeAdjust.resx │ ├── RenameDialog.Designer.cs │ ├── RenameDialog.cs │ ├── RenameDialog.resx │ ├── UIManager.cs │ ├── ZoneHexViewForm.Designer.cs │ ├── ZoneHexViewForm.cs │ └── ZoneHexViewForm.resx └── ZoneParsers │ ├── AssetPoolParser.cs │ ├── LocalizeAssetParser.cs │ ├── RawFileParser.cs │ └── StringTableParser.cs ├── LICENSE └── README.md /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /Call of Duty FastFile Editor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor.sln -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Call of Duty FastFile Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Call of Duty FastFile Editor.csproj -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Call of Duty FastFile Editor.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Call of Duty FastFile Editor.csproj.user -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/CodeOperations/AssetRecordPoolOps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/CodeOperations/AssetRecordPoolOps.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/CodeOperations/CodeCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/CodeOperations/CodeCompressor.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/CodeOperations/CommentRemover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/CodeOperations/CommentRemover.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/CodeOperations/SyntaxChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/CodeOperations/SyntaxChecker.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Constants/ApplicationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Constants/ApplicationConstants.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Constants/FastFileConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Constants/FastFileConstants.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Constants/RawFileConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Constants/RawFileConstants.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Constants/ZoneFileConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Constants/ZoneFileConstants.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/IO/CoD4FastFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/IO/CoD4FastFileHandler.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/IO/CoD5FastFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/IO/CoD5FastFileHandler.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/IO/FastFileHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/IO/FastFileHandlerBase.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/IO/FastFileHandlerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/IO/FastFileHandlerFactory.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/IO/IFastFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/IO/IFastFileHandler.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Models/AssetRecordCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Models/AssetRecordCollection.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Models/CollisionMapAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Models/CollisionMapAsset.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Models/FastFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Models/FastFile.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Models/IAssetRecordUpdatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Models/IAssetRecordUpdatable.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Models/LocalizationEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Models/LocalizationEntry.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Models/RawFileNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Models/RawFileNode.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Models/StringTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Models/StringTable.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Models/TagCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Models/TagCollection.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Models/ZoneFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Models/ZoneFile.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Models/ZoneFileAssetManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Models/ZoneFileAssetManifest.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Program.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Properties/Resources.resx -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Properties/Settings.settings -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Services/AssetRecordProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Services/AssetRecordProcessor.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Services/GitHubReleaseChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Services/GitHubReleaseChecker.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Services/IO/ZoneFileIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Services/IO/ZoneFileIO.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Services/IRawFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Services/IRawFileService.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Services/RawFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Services/RawFileService.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/Services/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/Services/Utilities.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/MainWindowForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/MainWindowForm.Designer.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/MainWindowForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/MainWindowForm.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/MainWindowForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/MainWindowForm.resx -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/RawFileSearcherForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/RawFileSearcherForm.Designer.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/RawFileSearcherForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/RawFileSearcherForm.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/RawFileSearcherForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/RawFileSearcherForm.resx -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/RawFileSizeAdjust.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/RawFileSizeAdjust.Designer.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/RawFileSizeAdjust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/RawFileSizeAdjust.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/RawFileSizeAdjust.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/RawFileSizeAdjust.resx -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/RenameDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/RenameDialog.Designer.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/RenameDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/RenameDialog.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/RenameDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/RenameDialog.resx -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/UIManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/UIManager.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/ZoneHexViewForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/ZoneHexViewForm.Designer.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/ZoneHexViewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/ZoneHexViewForm.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/UI/ZoneHexViewForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/UI/ZoneHexViewForm.resx -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/ZoneParsers/AssetPoolParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/ZoneParsers/AssetPoolParser.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/ZoneParsers/LocalizeAssetParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/ZoneParsers/LocalizeAssetParser.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/ZoneParsers/RawFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/ZoneParsers/RawFileParser.cs -------------------------------------------------------------------------------- /Call of Duty FastFile Editor/ZoneParsers/StringTableParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/Call of Duty FastFile Editor/ZoneParsers/StringTableParser.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primetime43/CoD-FF-Tools/HEAD/README.md --------------------------------------------------------------------------------