-
Notifications
You must be signed in to change notification settings - Fork 96
Closed
Labels
Description
Some reference to the engine, such as the developer site or a wikipedia article.
https://en.wikipedia.org/wiki/IW_(game_engine)
SteamDB links
https://steamdb.info/app/2630/
https://steamdb.info/app/7940/
https://steamdb.info/app/209650/
https://steamdb.info/app/393080/
https://steamdb.info/app/209160/
Possible way to detect it
Call of Duty uses "fast files" to store game data, so a regex looking for 'ff' is useful, so is 'iwd'. All games seem to also have a "main" and "zone" folder at root level. I don't have all COD games and my regex is not great but I'm guessing something like this will capture most of them
iwengine[] = .ff$
iwengine[] = .iwd$
iwengine[] = (?:^|/)main.
iwengine[] = (?:^|/)zone.