unitReady: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Text replacement - " |r1=[[" to " |r1= [[")
(27 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| ofp |Game name=
|game1= ofp
|version1= 1.00


|1.00|Game version=
|game2= ofpe
|version2= 1.00


|gr1= Unit Control |GROUP1=
|game3= arma1
____________________________________________________________________________________________
|version3= 1.00


| Check if the unit is ready. Unit is busy when it is given some command like [[move]], until the command is finished. |DESCRIPTION=
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| [[unitReady]] unitName |SYNTAX=
|game5= arma2oa
|version5= 1.50


|p1= unitName: [[Object]] |PARAMETER1=
|game6= tkoh
|version6= 1.00


| [[Boolean]] |RETURNVALUE=
|game7= arma3
____________________________________________________________________________________________
|version7= 0.50
 
|x1= <code>[[private]] _it = [[unitReady]] _soldierOne;</code> |EXAMPLE1=
____________________________________________________________________________________________


| [[move]] |SEEALSO=
|gr1= Unit Control
 
|descr= Check if the unit is ready. Unit is busy when it is given some command like [[move]], until the command is finished.
 
|s1= [[unitReady]] unitName
 
|p1= unitName: [[Object]]
 
|r1= [[Boolean]]
 
|x1= <code>[[private]] _it = [[unitReady]] _soldierOne;</code>
 
|seealso= [[move]]
}}
}}


<h3 style="display:none">Notes</h3>
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->


<dd class="notedate">Posted on August 26, 2010
<dt><dt>
<dt class="note">[[User:Rübe|Rübe]]
<dd class="notedate">Posted on August 26, 2010</dd>
<dt class="note">[[User:Rübe|Rübe]]</dt>
<dd class="note">
<dd class="note">
Keep in mind that a) dead units are [[unitReady]] and b) that it takes a while until it get's known to group members that a unit is not [[alive]] anymore, which leads to c) the current [[leader]] of a group might be actually dead (until another group member takes command).<br>
Keep in mind that a) dead units are [[unitReady]] and b) that it takes a while until it get's known to group members that a unit is not [[alive]] anymore, which leads to c) the current [[leader]] of a group might be actually dead (until another group member takes command).<br>
Why this is important? I'll give you an example: if you're using [[unitReady]] as a condition inside one of your fsm to advance whatever the fsm/group is doing, you really might wanna check that this unit is actually still alive. Otherwise you might end up with really fast and nasty loops in your fsm, eventually accompanied by a stream of radio commands that will last until finally a living leader is in command again.. and that could take a while... nasty, I tell you :)
Why this is important? I'll give you an example: if you're using [[unitReady]] as a condition inside one of your fsm to advance whatever the fsm/group is doing, you really might wanna check that this unit is actually still alive. Otherwise you might end up with really fast and nasty loops in your fsm, eventually accompanied by a stream of radio commands that will last until finally a living leader is in command again.. and that could take a while... nasty, I tell you :)
 
<dt><dt>
<dd class="notedate">Posted on January 17, 2011
<dd class="notedate">Posted on January 17, 2011</dd>
<dt class="note">[[User:Rübe|Rübe]]
<dt class="note">[[User:Rübe|Rübe]]</dt>
<dd class="note">
<dd class="note">
Regarding vehicles, there is only one single unit (from the vehicle crew) whose unitReady-status is affected by giving that vehicle (or that unit) commands.
Regarding vehicles, there is only one single unit (from the vehicle crew) whose unitReady-status is affected by giving that vehicle (or that unit) commands.
Line 49: Line 60:
<code>_vehicleReady = {
<code>_vehicleReady = {
[[private]] ["_veh", "_ready"];
[[private]] ["_veh", "_ready"];
_veh = [[_this]];
_veh = [[Magic Variables#this|_this]];
_ready = [[true]];
_ready = [[true]];
{
{
[[if]] (!([[isNull]] [[_x]])) [[then]]
[[if]] (!([[isNull]] [[Magic Variables#x|_x]])) [[then]]
{
{
_ready = _ready && ([[unitReady]] [[_x]]);
_ready = _ready && ([[unitReady]] [[Magic Variables#x|_x]]);
};
};
} [[forEach]] [
} [[forEach]] [
Line 63: Line 74:
_ready
_ready
};</code>
};</code>
 
<dt><dt>
<dd class="notedate">Posted on November 21, 2015 - 22:40 (UTC)</dd>
<dd class="notedate">Posted on November 21, 2015 - 22:40 (UTC)</dd>
<dt class="note">[[User:Kastenbier|Kastenbier]]</dt>
<dt class="note">[[User:Kastenbier|Kastenbier]]</dt>
Line 72: Line 83:
</dd>
</dd>


<!-- Note Section END -->
</dl>
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands OFP 1.46|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Armed Assault|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]

Revision as of 00:50, 8 August 2021

Hover & click on the images for description

Description

Description:
Check if the unit is ready. Unit is busy when it is given some command like move, until the command is finished.
Groups:
Unit Control

Syntax

Syntax:
unitReady unitName
Parameters:
unitName: Object
Return Value:
Boolean

Examples

Example 1:
private _it = unitReady _soldierOne;

Additional Information

See also:
move

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 August 26, 2010
Rübe
Keep in mind that a) dead units are unitReady and b) that it takes a while until it get's known to group members that a unit is not alive anymore, which leads to c) the current leader of a group might be actually dead (until another group member takes command).
Why this is important? I'll give you an example: if you're using unitReady as a condition inside one of your fsm to advance whatever the fsm/group is doing, you really might wanna check that this unit is actually still alive. Otherwise you might end up with really fast and nasty loops in your fsm, eventually accompanied by a stream of radio commands that will last until finally a living leader is in command again.. and that could take a while... nasty, I tell you :)
Posted on January 17, 2011
Rübe
Regarding vehicles, there is only one single unit (from the vehicle crew) whose unitReady-status is affected by giving that vehicle (or that unit) commands. While it is the driver unit for a truck, it is the gunner unit for a mg-jeep or the commander for a tank. Generally it is always the unit "in control" of the vehicle. (because it is only that unit, that is seen as "full unit" to the "outside world". Only he can be adressed with commands.)
In consequence you can't just send vehicles around and check if they've arrived with something like: waitUntil { unitReady driver _vehicle }; // don't do this! Because it is not guaranteed that the driver is in command of the vehicle and only that unit will have its unitReady status affected.
So in conclusion, if you need to check if a vehicle is ready, try something like this: _vehicleReady = { private ["_veh", "_ready"]; _veh = _this; _ready = true; { if (!(isNull _x)) then { _ready = _ready && (unitReady _x); }; } forEach [ commander _veh, gunner _veh, driver _veh ]; _ready };
Posted on November 21, 2015 - 22:40 (UTC)
Kastenbier
To check readiness of a vehicle, don't check its crew, driver, gunner, commander, etc., but the vehicle itself, e.g.: unitReady _yourVehicle; Only tested 11/21/2015 by me with A2 1.63.131129 and A3 1.52.132676 but possibly true since 1964. :P