Difference between revisions of "configFile"

From Bohemia Interactive Community
Jump to navigation Jump to search
m
m (Text replacement - "= +" to "= ")
(65 intermediate revisions by 15 users not shown)
Line 1: Line 1:
{{Command|= Comments
+
{{RV|type=command
____________________________________________________________________________________________
 
  
| arma |= Game name
+
|game1= arma1
 +
|version1= 1.00
  
|1.00|= Game version
+
|game2= arma2
____________________________________________________________________________________________
+
|version2= 1.00
  
| Return root of config entries hierarchy. |= Description
+
|game3= arma2oa
____________________________________________________________________________________________
+
|version3= 1.50
  
| '''configFile''' |= Syntax
+
|game4= tkoh
 +
|version4= 1.00
  
| [[Config]] |= Return value
+
|game5= arma3
____________________________________________________________________________________________
+
|version5= 0.50
  
| [[config/name]], [[config name]], [[configName]], [[count config]], [[getArray config]], [[getText config]], [[getNumber config]], [[inheritsFrom config]], [[isArray config]], [[isClass config]], [[isNumber config]], [[isText config]], [[select config]] |= See also
+
|gr1= Config
  
 +
|descr= Return root of config entries hierarchy.
 +
 +
|s1= [[configFile]]
 +
 +
|r1= [[Config]]
 +
 +
|x1= <code>_isMyClassActive = [[isClass]] ([[configFile]] >> "CfgPatches" >> "MyClass");</code>
 +
 +
|seealso= [[missionConfigFile]] [[campaignConfigFile]]
 
}}
 
}}
  
<h3 style="display:none">Notes</h3>
 
 
<dl class="command_description">
 
<dl class="command_description">
<!-- Note Section BEGIN -->
 
  
<!-- Note Section END -->
+
<dt></dt>
 +
<dd class="notedate">Posted on Jul 19, 2014 - 20:08</dd>
 +
<dt class="note">[[User:ffur2007slx2_5|ffur2007slx2_5]]</dt>
 +
<dd class="note">
 +
{{GVI|arma3|1.24}} It is recommended to use [[configClasses]] instead of [[BIS_fnc_getCfgSubClasses]] and [[BIS_fnc_uniqueClasses]] on subclasses collection or conditional selection.
 +
<code>_faces = "[[true]]" [[configClasses]] ([[configFile]] >> "CfgFaces");
 +
{{cc|same as:}} _faces = (configfile >> "CfgFaces") [[call]] [[BIS_fnc_getCfgSubClasses]];
 +
</code>
 +
<code>//Extract all animals:
 +
animals = "([[configName]] _x [[isKindOf]] 'animal')" [[configClasses]] ([[configFile]] >> "CfgVehicles");
 +
{{cc|same as:}}
 +
animals = [];
 +
[([[configFile]] >> "CfgVehicles"),{
 +
[[if]] (([[configName]] _this) [[isKindOf]] “animal”) [[then]] {
 +
  animals [[set]] [<nowiki/>[[count]] animals, _this]
 +
  }
 +
}
 +
] [[call]] [[BIS_fnc_uniqueClasses]];
 +
</code>
 +
Return nested subclasses, currently still [[BIS_fnc_returnChildren]]
 +
<code>{{cc|Return all nested config classes}}
 +
<nowiki>[</nowiki>[[configFile]] >> "CfgFaces",1, [[true]], [[true]]] [[call]] [[BIS_fnc_returnChildren]];
 +
</code>
 
</dl>
 
</dl>
 
<h3 style="display:none">Bottom Section</h3>
 
 
[[Category:Scripting Commands|CONFIGFILE]]
 
[[Category:Scripting Commands ArmA|CONFIGFILE]]
 
[[Category:Command_Group:_System_Commands|{{uc:{{PAGENAME}}}}]]
 

Revision as of 00:38, 13 June 2021

Hover & click on the images for description

Description

Description:
Return root of config entries hierarchy.
Groups:
Config

Syntax

Syntax:
configFile
Return Value:
Config

Examples

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

Additional Information

See also:
missionConfigFile campaignConfigFile

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
Posted on Jul 19, 2014 - 20:08
ffur2007slx2_5
Arma 3 logo black.png1.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: animals = []; [(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;