parsingNamespace: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{Command " to "{{RV|type=command ")
m (Text replacement - "‎" to "")
 
(37 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma2
|game1= arma2
|version1= 1.00


|1.00
|game2= arma2oa
|version2= 1.50


|gr1= Variables
|game3= tkoh
|version3= 1.00


| Returns the global namespace attached to config parser.
|game4= arma3
|version4= 0.50


| '''parsingNamespace'''
|gr1= Namespaces
|gr2= Variables


|p1=
|descr= Returns the global namespace attached to config parser.


|p2=
|s1= [[parsingNamespace]]


|p3=
|r1= [[Namespace]]


| [[Namespace]]
|x1= <sqf>
parsingNamespace setVariable ["var1", 101.23124];
_profVar1 = parsingNamespace getVariable "var1";
</sqf>


|x1= <code>'''parsingNamespace''' [[setVariable]] ["var1",101.23124];
|seealso= [[missionNamespace]] [[uiNamespace]] [[currentNamespace]] [[profileNamespace]] [[localNamespace]] [[allVariables]] [[with]] [[ArmA:_Editing#Forward_Compatibility|Forward Compatibility]]
_profVar1 = '''parsingNamespace''' [[getVariable]] "var1";</code>
 
| [[missionNamespace]], [[uiNamespace]], [[currentNamespace]], [[profileNamespace]], [[localNamespace]], [[allVariables]], [[with]], [[ArmA:_Editing#Forward_Compatibility|Forward Compatibility]]
}}
}}


 
{{Note
 
|user= BrotherhoodOfHam
{{GameCategory|arma2|Scripting Commands}}
|timestamp= 20150127180800
{{GameCategory|arma3|Scripting Commands}}
|text= Any global variable defined in a config using __EXEC() will be stored in this namespace.<br>
{{GameCategory|tkoh|Scripting Commands}}
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
 
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on January 27, 2015 - 18:08 (UTC)</dd>
<dt class="note">[[User:BrotherhoodOfHam|BrotherhoodOfHam]]</dt>
<dd class="note"><br>Any global variable defined in a config using __EXEC() will be stored in this namespace.<br>
For example in the description.ext:<br>
For example in the description.ext:<br>
<code>__EXEC(testVar = 1);</code>
<sqf>__EXEC(testVar = 1);</sqf>
The variable "testVar" can be accessed during mission run time using [[getVariable]]
The variable "testVar" can be accessed during mission run time using [[getVariable]]
<code>[[hint]] [[str]] ([[parsingNamespace]] [[getVariable]] ["testVar", 0]);</code>
<sqf>hint str (parsingNamespace getVariable ["testVar", 0]);</sqf>
The above example would print 1.<br><br>
The above example would print 1.<br><br>
This example however:
This example however:
<code>__EXEC(_testVar = 1);</code>
<sqf>__EXEC(_testVar = 1);</sqf>
Would print 0, because adding an underscore will make the variable local to the config in the same way that it would make it local to a script.<br><br>
Would print 0, because adding an underscore will make the variable local to the config in the same way that it would make it local to a script.<br><br>
See [[PreProcessor Commands]] for more details on __EXEC()
See [[PreProcessor Commands]] for more details on __EXEC()
</dd>
}}
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 12:55, 26 April 2023

Hover & click on the images for description

Description

Description:
Returns the global namespace attached to config parser.
Groups:
NamespacesVariables

Syntax

Syntax:
parsingNamespace
Return Value:
Namespace

Examples

Example 1:
parsingNamespace setVariable ["var1", 101.23124]; _profVar1 = parsingNamespace getVariable "var1";

Additional Information

See also:
missionNamespace uiNamespace currentNamespace profileNamespace localNamespace allVariables with Forward Compatibility

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
BrotherhoodOfHam - c
Posted on Jan 27, 2015 - 18:08 (UTC)
Any global variable defined in a config using __EXEC() will be stored in this namespace.
For example in the description.ext:
__EXEC(testVar = 1);
The variable "testVar" can be accessed during mission run time using getVariable
hint str (parsingNamespace getVariable ["testVar", 0]);
The above example would print 1.

This example however:
__EXEC(_testVar = 1);
Would print 0, because adding an underscore will make the variable local to the config in the same way that it would make it local to a script.

See PreProcessor Commands for more details on __EXEC()