inAreaArray: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Text replacement - "<dl class="command_description"> <dd class="notedate">" to "<dl class="command_description"> <dt></dt> <dd class="notedate">")
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| arma3 |Game=
| arma3


|1.66|Game Version (number surrounded by NO SPACES)=
|1.66


|arg= |Multiplayer Arguments= ("local" or "global")
|arg=


|eff= |Multiplayer Effects= ("local" or "global")
|eff=


|serverExec= |= Multiplayer Execution ("server" or empty)
|serverExec=


|gr1= Triggers |GROUP1=
|gr1= Triggers


|gr2= Markers |GROUP2=
|gr2= Markers


|gr3= Locations |GROUP3=
|gr3= Locations


|gr4= Positions |GROUP4=
|gr4= Positions
____________________________________________________________________________________________


| Filters given list of [[Object]]s and/or [[Position]]s in relation to the given area, defined by a trigger, marker, location or array. Returns array of [[Object]]s and/or [[Position]]s from the list that are inside the area |DESCRIPTION=
| Returns given list of [[Object]]s and/or [[Position]]s that are in the given area, area defined by a trigger, marker, location or array.
____________________________________________________________________________________________


|positions '''inAreaArray''' trigger |SYNTAX=
| positions '''inAreaArray''' area


|p1= positions: [[Array]] - [[Object]]s and/or [[Position]]s to check|PARAMETER1=
|p1= positions: [[Array]] of [[Object]]s and/or [[Position]]s


|p2= trigger: [[Object]] - trigger with given area |PARAMETER2=
|p2= area: [[Object]], [[Location]] or [[String]] - the defined area:
* [[Object]] - trigger
* [[Location]] - location
* [[String]] - marker name


| [[Array]]: [[Object]]s and/or [[Position]]s inside the trigger area|RETURNVALUE=
| [[Array]]: [[Object]]s and/or [[Position]]s inside the trigger area


|s2=positions '''inAreaArray''' marker |SYNTAX2=
|s2= positions '''inAreaArray''' [center, a, b, angle, isRectangle, c]


|p21= positions: [[Array]] - [[Object]]s and/or [[Position]]s to check|PARAMETER21=
|p21= positions: [[Array]] - [[Object]]s and/or [[Position]]s to check


|p22= marker: [[String]] - marker with given area |PARAMETER22=
|p22= center: [[Array]] - center of the area in format [[Position3D]], [[Position2D]]


|r2= [[Array]]: [[Object]]s and/or [[Position]]s inside the marker area|RETURNVALUE2=
|p23= a: [[Number]] - x axis (x / 2)


|s3=positions '''inAreaArray''' location |SYNTAX3=
|p24= b: [[Number]] - y axis (y / 2)


|p31= positions: [[Array]] - [[Object]]s and/or [[Position]]s to check|PARAMETER31=
|p25= angle: [[Number]] - (Optional, default 0) rotation angle


|p32= location: [[Location]] - location with given area |PARAMETER32=
|p26= isRectangle: [[Boolean]] - (Optional, default [[false]]) [[true]] if rectangle, [[false]] if ellipse


|r3= [[Array]]: [[Object]]s and/or [[Position]]s inside the location area|RETURNVALUE3=
|p27= c: [[Number]] - (Optional, default -1: unlimited) z axis (z / 2)


|s4= positions '''inAreaArray''' [center, a, b, angle, isRectangle, c]|SYNTAX4=
|r2= [[Array]]: [[Object]]s and/or [[Position]]s inside the area


|p41= positions: [[Array]] - [[Object]]s and/or [[Position]]s to check|PARAMETER41=
|x1= <code>[[vehicles]] [[inAreaArray]] myTrigger;</code>


|p42= [center, a, b, angle, isRectangle, c]: [[Array]]|PARAMETER42=
|x2= <code>[[allUnits]] [[inAreaArray]] "myMarker";</code>


|p43= center: [[Array]] - center of the area in format [[Position3D]], [[Position2D]] |PARAMETER43=
|x3= <code>[[allPlayers]] [[inAreaArray]] myLocation;</code>


|p44= a: [[Number]] - x axis (x / 2) |PARAMETER44=
|x4= <code>[[allDead]] [[inAreaArray]] [<nowiki/>[100, 100, 0], 20, 30, 45, [[false]], 10];</code>
 
|p45= b: [[Number]] - y axis (y / 2) |PARAMETER45=
 
|p46= angle (Optional): [[Number]] - rotation angle. Default: 0  |PARAMETER46=
 
|p47= isRectangle (Optional): [[Boolean]] - [[true]] if rectangle, [[false]] if ellipse. Default: [[false]]|PARAMETER47=
 
|p48= c (Optional): [[Number]] - z axis (z / 2). Default: -1 (unlimited)|PARAMETER48=
 
|r4= [[Array]]: [[Object]]s and/or [[Position]]s inside the area |RETURNVALUE4=
____________________________________________________________________________________________
 
|x1= <code>[[vehicles]] [[inAreaArray]] trigger_1;</code> |EXAMPLE1=
 
|x2= <code>[[allUnits]] [[inAreaArray]] marker_1;</code> |EXAMPLE2=
 
|x3= <code>[[allPlayers]] [[inAreaArray]] location_1;</code> |EXAMPLE3=
 
|x4= <code>[[allDead]] [[inAreaArray]] [<nowiki/>[100, 100, 0], 20, 30, 45, [[false]], 10];</code>|EXAMPLE4=
____________________________________________________________________________________________
 
| [[inArea]], [[triggerArea]] |SEEALSO=


|seealso= [[inArea]], [[triggerArea]]
}}
}}


<dl class="command_description">
<!-- BEGIN Note Section -->
<!-- END Note Section -->
</dl>
<h3 style="display:none">Bottom Section</h3>
<!-- Appropriate categories go here -->
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]


<!-- CONTINUE Notes -->
<dl class="command_description">
<dl class="command_description">
<dt></dt>
<dd class="notedate">Posted on June 11, 2017 - 21:33 (UTC)</dd>
<dd class="notedate">Posted on June 11, 2017 - 21:33 (UTC)</dd>
<dt class="note">[[User:Tankbuster|Tankbuster]]</dt>
<dt class="note">[[User:Tankbuster|Tankbuster]]</dt>
<dd class="note">
<dd class="note">
The array you send the command can be filtered. For example:
The array you send the command can be filtered. For example:
<code>[[vehicles]] [[inAreaArray]] "mymarker" [[select]] {_x [[isKindOf]] "StaticWeapon"}</code>
<code>[[vehicles]] [[select]] { _x [[isKindOf]] "StaticWeapon" } [[inAreaArray]] "myMarker"</code>
Will return only the statics inside the given marker
Will return only the statics inside the given marker
</dd>
</dd>
</dl>
</dl>
<!-- DISCONTINUE Notes -->

Revision as of 14:26, 5 April 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
TriggersMarkersLocationsPositions

Syntax

Syntax:
Syntax needed
Parameters:
positions: Array of Objects and/or Positions
area: Object, Location or String - the defined area:
Return Value:
Return value needed

Alternative Syntax

Syntax:
positions inAreaArray [center, a, b, angle, isRectangle, c]
Parameters:
positions: Array - Objects and/or Positions to check
center: Array - center of the area in format Position3D, Position2D
a: Number - x axis (x / 2)
b: Number - y axis (y / 2)
angle: Number - (Optional, default 0) rotation angle
isRectangle: Boolean - (Optional, default false) true if rectangle, false if ellipse
c: Number - (Optional, default -1: unlimited) z axis (z / 2)
Return Value:
Array: Objects and/or Positions inside the area

Examples

Example 1:
vehicles inAreaArray myTrigger;
Example 2:
allUnits inAreaArray "myMarker";
Example 3:
allPlayers inAreaArray myLocation;
Example 4:
allDead inAreaArray [[100, 100, 0], 20, 30, 45, false, 10];

Additional Information

See also:
inAreatriggerArea

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 June 11, 2017 - 21:33 (UTC)
Tankbuster
The array you send the command can be filtered. For example: vehicles select { _x isKindOf "StaticWeapon" } inAreaArray "myMarker" Will return only the statics inside the given marker