configFile: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\<dt class\=\"note\"\>\'\'\'\[\[(.*)\]\]\'\'\'" to "<dt class="note">$1")
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Take[ _]On[ _]Helicopters(\|.*)?]]" to "{{GameCategory|tkoh|Scripting Commands}}")
(8 intermediate revisions by 2 users not shown)
Line 2: Line 2:
____________________________________________________________________________________________
____________________________________________________________________________________________


| arma |Game name=
| arma1 |Game name=
 
|gr1= Config |GROUP1=
 
 


|1.00|Game version=
|1.00|Game version=
Line 40: Line 44:
[([[configFile]] >> "CfgVehicles"),{
[([[configFile]] >> "CfgVehicles"),{
[[if]] (([[configName]] _this) [[isKindOf]] “animal”) [[then]] {
[[if]] (([[configName]] _this) [[isKindOf]] “animal”) [[then]] {
   animals [[set]] [ [[count]] animals, _this]
   animals [[set]] [<nowiki/>[[count]] animals, _this]
   }
   }
}
}
Line 56: Line 60:


[[Category:Scripting Commands|CONFIGFILE]]
[[Category:Scripting Commands|CONFIGFILE]]
[[Category:Scripting Commands ArmA|CONFIGFILE]]
{{GameCategory|arma1|Scripting Commands}}
[[Category:Command Group: Config|{{uc:{{PAGENAME}}}}]]
 
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
{{GameCategory|arma2|Scripting Commands}}
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
{{GameCategory|arma3|Scripting Commands}}
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
{{GameCategory|tkoh|Scripting Commands}}

Revision as of 09:55, 8 January 2021

Hover & click on the images for description

Description

Description:
Return root of config entries hierarchy.
See AllInOne Config for a full config extract as example.
Groups:
Config

Syntax

Syntax:
Config = configFile
Return Value:
Config

Examples

Example 1:
_isMyClassActive = isClass (configFile / "CfgPatches" / "MyClass");

Additional Information

See also:
configClassesconfigPropertiesmissionConfigFilecampaignConfigFileconfig/nameconfig >> nameconfigNamecountgetArraygetTextgetNumberinheritsFromisArrayisClassisNumberisTextselectconfigHierarchygetMissionConfigValueconfigSourceAddonList

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Posted on Jul 19, 2014 - 20:08
ffur2007slx2_5
(ArmA3 1.24) It is recommended to use configClasses instead of BIS_fnc_getCfgSubClasses and BIS_fnc_uniqueClasses on subclasses collection or conditional selection. _faces = "true" configClasses (configFile >> "Cfgfaces"); //same as: _faces = (configfile >> "CfgFaces") call BIS_fnc_getCfgSubClasses; //Extract all animals: animals = "((configName _x) isKindOf 'animal')" configClasses (configFile >> "CfgVehicles"); /*same as: aniamls = []; [(configFile >> "CfgVehicles"),{ if ((configName _this) isKindOf “animal”) then { animals set [count animals, _this] } } ] call BIS_fnc_uniqueClasses;*/ Return nested subclasses, currently still BIS_fnc_returnChildren //Return all nested config classes.
[(configFile >> "CfgFaces"),1, true, true ] call BIS_fnc_returnChildren;

Bottom Section