if: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Take[ _]On[ _]Helicopters(\|.*)?\]\]" to "{{GameCategory|tkoh|Scripting Commands}}")
No edit summary
 
(31 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| ofpr |Game name=
|game1= ofp
|version1= 1.85


|gr1= Program Flow |GROUP1=
|game2= ofpe
|version2= 1.00


|1.85|Game version=
|game3= arma1
____________________________________________________________________________________________
|version3= 1.00


| This operator creates a [[If Type]] which is used in the if-construct as described [[Control_Structures#if-Statement|here]]. |DESCRIPTION=
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| '''if''' condition |SYNTAX=
|game5= arma2oa
|version5= 1.50


|p1= condition: [[Boolean]] expression. If it evaluates as 'true', the 'then' clause is executed.  Otherwise, the 'else' clause (if present) is executed. |PARAMETER1=
|game6= tkoh
|version6= 1.00


| [[If Type]] - Predicate which will execute 1st or 2nd option when used. This predicate is used in [[then]] or [[exitWith]] commands. |RETURNVALUE=
|game7= arma3
____________________________________________________________________________________________
|version7= 0.50


|x1= <code>_retVal = [[if]] (1 > 0) [[then]] { "It's true" } [[else]] { "It's false" };
|gr1= Program Flow
[[hint]] [[str]] _retVal</code> |EXAMPLE1=
____________________________________________________________________________________________


|x2 = <code>_val = [[if]] ([[true]]) [[then]] [ { "true" }, { "false" } ];
|descr= This operator creates a [[If Type]] which is used in the if-construct as described [[Control_Structures#if-Statement|here]].
[[hint]] _val;</code>|EXAMPLE2=
____________________________________________________________________________________________


| [[else]], [[exitWith]], [[then]], [[Control Structures]], [[Code_Optimisation#Lazy_evaluation|Lazy evaluation]] |SEEALSO=
|s1= [[if]] condition


|p1= condition: [[Boolean]] - if it evaluates as [[true]], the [[then]] clause is executed.  Otherwise, the [[else]] clause (if present) is executed
|r1= [[If Type]] - predicate which will execute 1st or 2nd option when used. This predicate is used in [[then]] or [[exitWith]] commands
|x1= <sqf>
_retVal = if (1 > 0) then { "It's true" } else { "It's false" };
hint str _retVal;
</sqf>
|x2= <sqf>
_val = if (true) then [{ "true" }, { "false" }];
hint _val;
</sqf>
|seealso= [[else]] [[exitWith]] [[then]] [[Control Structures]] [[Code_Optimisation#Lazy_evaluation|Lazy evaluation]]
}}
}}


<h3 style="display:none">Notes</h3>
{{Note
<dl class="command_description">
|user= Ceeeb
<!-- Note Section BEGIN -->
|timestamp= 20070131040800
<dd class="notedate">Posted on Jan 31, 2007 - 04:08
|text= Any _local variables you declare within the body of an [[if]]/[[then]] statement (ie between the curly braces) are local to that 'if' statement, and are destroyed at the end of the statement. If you know you want to use the variable outside the 'if' statement, make sure your declare it before the 'if' statement.
<dt class="note">[[User:Ceeeb|Ceeeb]]<dd class="note">
}}
Any _local variables you declare within the body of an [[if]]/[[then]] statement (ie between the curly braces) are local to that 'if' statement, and are destroyed at the end of the statement. If you know you want to use the variable outside the 'if' statement, make sure your declare it before the 'if' statement.
 
<dd class="notedate">Posted on Jan 17, 2010 - 02:40
{{Note
<dt class="note">[[User:Galzohar|Galzohar]]<dd class="note">
|user= Galzohar
(A2 1.05) If the condition is nil then neither the "then" nor the "else" section get executed, but the script will proceed with no error messages.<br><br>
|timestamp= 20100117024000
|text= If the condition is nil then neither the "then" nor the "else" section get executed, but the script will proceed with no error messages.<br>
Example code:
Example code:
<code>
<sqf>
[[hint]] "script started"; //will get executed
systemChat "script started"; // will get executed
[[if]] (nil) [[then]]
if (nil) then
{
{
[[hint]] "true"; // will never get executed
systemChat "true"; // will never get executed
}
}
[[else]]
else
{
{
[[hint]] "false"; // will never get executed
systemChat "false"; // will never get executed
};
};
[[sleep]] 3;
systemChat "script ended"; // will get executed
[[hint]] "script ended"; //will get executed</code>
</sqf>
<!-- Note Section END -->
|game= arma2
</dl>
|version= 1.05
}}


<h3 style="display:none">Bottom Section</h3>
{{Note
|user= AgentRevolution
|timestamp= 20150605093500
|text= If you only need to choose between 2 raw values, it is possible to use the following trick to avoid using code blocks, as required by the if command, which results in greater atomicity and faster execution:
<sqf>_result = [falseValue, trueValue] select condition;</sqf>
The select command treats "false" as 0 and "true" as 1, therefore you can feed it a condition determining the array index of the value to be returned. Here is another example:
<sqf>_result = [1,-1] select (_this < 0); // if _this is less than 0, _result will be equal to -1, otherwise it will be 1</sqf>
}}


 
{{Note
[[Category:Scripting Commands|IF]]
|user= DreadedEntity
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
|timestamp= 20220519011146
[[Category:Scripting Commands OFP 1.96|IF]]
|text= When using '''if''' to assign values to a variable, if you not have an [[else]] block it is treated as [[nil]] and returned, setting the variable value to [[nil]]. A3 2.08.149102
{{GameCategory|arma1|Scripting Commands}}
<sqf>private _myVar = "value";
{{GameCategory|arma2|Scripting Commands}}
private _condition = false;
{{GameCategory|arma3|Scripting Commands}}
_myVar = if (_condition) then { "another value" }; //perfectly valid sqf
{{GameCategory|tkoh|Scripting Commands}}
systemChat str (isNil "_myVar"); //returns true
 
//_myVar is now nil
<!-- CONTINUE Notes -->
_myVar = if (_condition) then { "another value" } else { "value" };
<dl class="command_description">
systemChat _myVar; //returns "value"</sqf>
<dd class="notedate">Posted on June 5, 2015 - 09:35 (UTC)</dd>
This behavior can be both desirable and undesirable depending on your needs
<dt class="note">[[User:AgentRevolution|AgentRevolution]]</dt>
}}
<dd class="note">
If you only need to choose between 2 raw values, it is possible to use the following trick to avoid using code blocks, as required by the if command, which results in greater atomicity and faster execution:
<code>_result = [falseValue, trueValue] [[select]] condition;</code>
The select command treats "false" as 0 and "true" as 1, therefore you can feed it a condition determining the array index of the value to be returned. Here is another example:
<code>_result = [1,-1] select (_this < 0); // If _this is less than 0, _result will be equal to -1, otherwise it will be 1</code>
This feature was added in Arma 3.
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 03:11, 19 May 2022

Hover & click on the images for description

Description

Description:
This operator creates a If Type which is used in the if-construct as described here.
Groups:
Program Flow

Syntax

Syntax:
if condition
Parameters:
condition: Boolean - if it evaluates as true, the then clause is executed. Otherwise, the else clause (if present) is executed
Return Value:
If Type - predicate which will execute 1st or 2nd option when used. This predicate is used in then or exitWith commands

Examples

Example 1:
_retVal = if (1 > 0) then { "It's true" } else { "It's false" }; hint str _retVal;
Example 2:
_val = if (true) then [{ "true" }, { "false" }]; hint _val;

Additional Information

See also:
else exitWith then Control Structures Lazy evaluation

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
Ceeeb - c
Posted on Jan 31, 2007 - 04:08 (UTC)
Any _local variables you declare within the body of an if/then statement (ie between the curly braces) are local to that 'if' statement, and are destroyed at the end of the statement. If you know you want to use the variable outside the 'if' statement, make sure your declare it before the 'if' statement.
Galzohar - c
Posted on Jan 17, 2010 - 02:40 (UTC)

If the condition is nil then neither the "then" nor the "else" section get executed, but the script will proceed with no error messages.
Example code:

systemChat "script started"; // will get executed if (nil) then { systemChat "true"; // will never get executed } else { systemChat "false"; // will never get executed }; systemChat "script ended"; // will get executed

AgentRevolution - c
Posted on Jun 05, 2015 - 09:35 (UTC)
If you only need to choose between 2 raw values, it is possible to use the following trick to avoid using code blocks, as required by the if command, which results in greater atomicity and faster execution:
_result = [falseValue, trueValue] select condition;
The select command treats "false" as 0 and "true" as 1, therefore you can feed it a condition determining the array index of the value to be returned. Here is another example:
_result = [1,-1] select (_this < 0); // if _this is less than 0, _result will be equal to -1, otherwise it will be 1
DreadedEntity - c
Posted on May 19, 2022 - 01:11 (UTC)
When using if to assign values to a variable, if you not have an else block it is treated as nil and returned, setting the variable value to nil. A3 2.08.149102
private _myVar = "value"; private _condition = false; _myVar = if (_condition) then { "another value" }; //perfectly valid sqf systemChat str (isNil "_myVar"); //returns true //_myVar is now nil _myVar = if (_condition) then { "another value" } else { "value" }; systemChat _myVar; //returns "value"
This behavior can be both desirable and undesirable depending on your needs