feat(content): add SFX payload extractor and control bar package processor - #395
Open
undead2146 wants to merge 3 commits into
Open
feat(content): add SFX payload extractor and control bar package processor#395undead2146 wants to merge 3 commits into
undead2146 wants to merge 3 commits into
Conversation
undead2146
force-pushed
the
feat/content-sfx-extractors
branch
from
August 19, 2026 11:23
fdc62a0 to
0459584
Compare
…base with development
undead2146
force-pushed
the
feat/content-sfx-extractors
branch
from
August 19, 2026 11:56
0459584 to
c372d1e
Compare
…zed variable warnings
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Introduces automated extraction for self-extracting mod executables (SFX), Smart Install Maker packages, DAT/BIG archives, and control bar package normalization within the content acquisition pipeline.
Note
This is a self-contained feature PR carved out of #265 and must be merged ahead of #265.
Motivation
Many legacy Command & Conquer Generals/Zero Hour mods distributed via ModDB and other community hubs are packaged inside SFX exe wrappers (e.g. Smart Install Maker, InnoSetup) or DAT files rather than standard ZIP archives. This PR adds deep inspection and lossless unpacking capabilities.
Changes
IArchivePayloadProcessorandIControlBarPackageProcessor.ArchivePayloadProcessorwith Smart Install Maker signature scanning, binary payload slicing, and recursive decompression.ControlBarPackageProcessorfor normalizing control bar UI asset bundles.ContentPipelineModule.ArchivePayloadProcessorTests.csandControlBarPackageProcessorTests.cs.Verification