isNil: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " \| *(([^=\| ]+)('''|\[\[)([^=\| ]+)) * \|p1=" to " |s1= $1 |p1=")
m (Text replacement - "{{HashLink" to "{{Link")
(37 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma1
|game1= arma1
|1.00
|version1= 1.00


|game2= arma2
|game2= arma2
Line 18: Line 18:
|gr1= Variables
|gr1= Variables


| Tests whether the variable given by its name is [[nil]] or undefined, or whether the given expression evaluates to [[nil]] or [[Nothing]].
|descr= Tests whether a variable is [[nil]] or undefined from its [[Identifier|identifier]], or whether the given expression evaluates to [[nil]] or [[Nothing]].
{{Feature | Informative | {{GVI|ofp|1.00}} This command doesn't exist in {{ofp}} but can be emulated (see '''[[#Examples|Example 5]]''').}}
{{Feature|arma0|This command does not exist in {{ofp}}/{{arma0}} but can be emulated (see {{Link|#Example 5}}).}}


|s1= [[isNil]] variableName
|s1= [[isNil]] variableName


|p1= variableName: [[String]] - name of a [[missionNamespace]] variable (e.g "someVar") or a local variable (e.g "_someVar")
|p1= variableName: '''[[String]]''' - [[missionNamespace]]'s or local [[Variables|variable]]'s [[Identifier|identifier]] (e.g "globalVariable", "_localVariable")


| [[Boolean]] - [[true]] if variable is [[nil]]
|r1= [[Boolean]] - [[true]] if variable is [[nil]]


|s2= [[isNil]] code
|s2= [[isNil]] code


|p21= code: [[Code]] - code to evaluate:
|p21= code: [[Code]] - code to evaluate:
* the code '''will''' be executed; {{ic|[[isNil]] { [[player]] [[setDamage]] 1; };}} ''will'' kill the player
* the code '''will''' be executed; <sqf inline>isNil { player setDamage 1 };</sqf> ''will'' kill the player
* the code will not be allowed [[canSuspend|to suspend]] while expression is evaluated, even if the parent scope allows it (see '''[[#Examples|Example 4]]''').
* the code will not be allowed to [[canSuspend|suspend]] while expression is evaluated, even if the parent scope allows it (see {{Link|#Example 4}}).


|r2= [[Boolean]] - [[true]] if code returns something other than [[Nothing]]
|r2= [[Boolean]] - [[true]] if ''code'' returns [[Nothing]], [[false]] otherwise


|x1= <code>[[if]] ([[isNil]] "pokus") [[then]] { pokus = 0; };</code>
|x1= <sqf>
if (isNil "TAG_globalVariable") then { TAG_globalVariable = 0 };
if (isNil "_localVariable") then { hint "_localVariable is nil" };
</sqf>


|x2= <code>[[isNil]] { [[player]] [[getVariable]] "someVar" };</code>
|x2= <sqf>isNil { player getVariable "someVar" };</sqf>


|x3= <code>_myArray = [0, 1];
|x3= <sqf>
[[isNil]] { _myArray [[select]] 0 }; {{cc|returns [[false]]}}
_myArray = [0, 1];
[[isNil]] { _myArray [[select]] 1 }; {{cc|returns [[false]]}}
isNil { _myArray select 0 }; // returns false
[[isNil]] { _myArray [[select]] 2 }; {{cc|returns [[true]]}}
isNil { _myArray select 1 }; // returns false
[[isNil]] { _myArray [[select]] 3 }; {{cc|throws a script error. only length+1 select is allowed}}
isNil { _myArray select 2 }; // returns true
</code>
isNil { _myArray select 3 }; // throws a script error. only length+1 select is allowed
</sqf>


|x4= You can do this trick to force execute something in [[Scheduler|Unscheduled Environment]].<code>[[spawn]] {
|x4= This trick forces executing something in [[Scheduler|Unscheduled Environment]]:
[[systemChat]] [[str]] [[canSuspend]]; {{cc|chat shows [[true]]}}
<sqf>
[[isNil]] {[[hint]] [[str]] [[canSuspend]]}; {{cc|hint shows [[false]]}}
0 spawn {
};</code>
systemChat str canSuspend; // chat shows true
isNil { hint str canSuspend }; // hint shows false
};
</sqf>


|x5= {{ofp}} workaround:<br>SQS syntax:
|x5= {{ofp}} [[String]] comparison workaround<br>
<code>_nil = [[format]] ["%1", _undefinedVariable]
[[SQS Syntax]]:
? ([[format]] ["%1", foo] == _nil) : foo = "value"</code>
<sqs>
SQF syntax:
_nil = format ["%1", _undefinedVariable]
<code>_nil = [[format]] ["%1", _undefinedVariable];
? (format ["%1", variableToTest] == _nil) : hint "variableToTest is nil"
[[if]] ([[format]] ["%1", foo] == _nil) [[then]] { foo = "value"; };</code>
</sqs>


|seealso= [[nil]], [[Variables]], [[Scheduler]]
[[SQF Syntax]]:
<sqf>
_nil = format ["%1", _undefinedVariable];
if (format ["%1", variableToTest] == _nil) then { hint "variableToTest is nil" };
</sqf>
 
|seealso= [[nil]] [[Variables]] [[Scheduler]]
}}
}}
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}

Revision as of 18:43, 4 January 2023

Hover & click on the images for description

Description

Description:
Tests whether a variable is nil or undefined from its identifier, or whether the given expression evaluates to nil or Nothing.
Operation Flashpoint
This command does not exist in Operation Flashpoint/Arma: Cold War Assault but can be emulated (see Example 5).
Groups:
Variables

Syntax

Syntax:
isNil variableName
Parameters:
variableName: String - missionNamespace's or local variable's identifier (e.g "globalVariable", "_localVariable")
Return Value:
Boolean - true if variable is nil

Alternative Syntax

Syntax:
isNil code
Parameters:
code: Code - code to evaluate:
  • the code will be executed; isNil { player setDamage 1 }; will kill the player
  • the code will not be allowed to suspend while expression is evaluated, even if the parent scope allows it (see Example 4).
Return Value:
Boolean - true if code returns Nothing, false otherwise

Examples

Example 1:
if (isNil "TAG_globalVariable") then { TAG_globalVariable = 0 }; if (isNil "_localVariable") then { hint "_localVariable is nil" };
Example 2:
isNil { player getVariable "someVar" };
Example 3:
_myArray = [0, 1]; isNil { _myArray select 0 }; // returns false isNil { _myArray select 1 }; // returns false isNil { _myArray select 2 }; // returns true isNil { _myArray select 3 }; // throws a script error. only length+1 select is allowed
Example 4:
This trick forces executing something in Unscheduled Environment:
0 spawn { systemChat str canSuspend; // chat shows true isNil { hint str canSuspend }; // hint shows false };
Example 5:
Operation Flashpoint String comparison workaround
SQS Syntax:
_nil = format ["%1", _undefinedVariable] ? (format ["%1", variableToTest] == _nil) : hint "variableToTest is nil"
SQF Syntax:
_nil = format ["%1", _undefinedVariable]; if (format ["%1", variableToTest] == _nil) then { hint "variableToTest is nil" };

Additional Information

See also:
nil Variables Scheduler

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