2007-07-18 15:42:58 +00:00
|
|
|
/* verifyOXP.plist
|
|
|
|
|
2007-07-19 10:44:52 +00:00
|
|
|
Various things used internally by the OXP verifier.
|
2007-07-18 15:42:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
{
|
|
|
|
junkFiles =
|
|
|
|
(
|
|
|
|
// Files generated by operating systems which can be ignored.
|
|
|
|
".DS_Store",
|
|
|
|
"Thumbs.db"
|
|
|
|
);
|
|
|
|
|
|
|
|
logControlOverride =
|
|
|
|
{
|
|
|
|
// Note: only yes and no here, no inherit or $metaclass
|
|
|
|
dataCache.rebuild.pathsChanged = "no";
|
|
|
|
|
|
|
|
verifyOXP = "yes";
|
|
|
|
verifyOXP.stage = "yes";
|
|
|
|
};
|
|
|
|
|
|
|
|
knownRootDirectories =
|
|
|
|
(
|
|
|
|
// Folder names that are meaningful inside an OXP
|
|
|
|
"AIs",
|
|
|
|
"Config",
|
|
|
|
"Images",
|
|
|
|
"Models",
|
|
|
|
"Music",
|
|
|
|
"Scripts",
|
|
|
|
"Shaders",
|
|
|
|
"Sounds",
|
|
|
|
"Textures"
|
|
|
|
);
|
|
|
|
|
|
|
|
knownConfigFiles =
|
|
|
|
(
|
|
|
|
"autoAImap.plist",
|
|
|
|
"characters.plist",
|
2007-07-18 23:53:51 +00:00
|
|
|
"commodities.plist",
|
2007-07-18 15:42:58 +00:00
|
|
|
"customsounds.plist",
|
|
|
|
"demoships.plist",
|
|
|
|
"descriptions.plist",
|
|
|
|
"equipment.plist",
|
|
|
|
"hud.plist",
|
2007-07-18 23:53:51 +00:00
|
|
|
"illegal_goods.plist",
|
|
|
|
"keyconfig.plist",
|
|
|
|
"material-defaults.plist",
|
2007-07-18 15:42:58 +00:00
|
|
|
"missiontext.plist",
|
|
|
|
"nebulatextures.plist",
|
|
|
|
"planetinfo.plist",
|
|
|
|
"requires.plist",
|
|
|
|
"script.plist",
|
2007-07-18 23:53:51 +00:00
|
|
|
"script.js",
|
2007-07-18 15:42:58 +00:00
|
|
|
"shipdata.plist",
|
|
|
|
"shipyard.plist",
|
|
|
|
"speech_pronounciation_guide.plist",
|
|
|
|
"startextures.plist",
|
|
|
|
"world-scripts.plist"
|
|
|
|
);
|
|
|
|
|
2007-07-19 10:44:52 +00:00
|
|
|
requiresPListSupportedKeys =
|
|
|
|
(
|
|
|
|
"version",
|
|
|
|
"max_version"
|
|
|
|
);
|
|
|
|
|
2007-07-18 15:42:58 +00:00
|
|
|
stages =
|
|
|
|
(
|
2007-07-19 10:44:52 +00:00
|
|
|
"OOFileScannerVerifierStage",
|
|
|
|
"OOCheckRequiresPListVerifierStage"
|
2007-07-18 15:42:58 +00:00
|
|
|
);
|
|
|
|
}
|