nearestObject: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments( \("local" or "global"\))?|Effects|Multiplayer Effects( \("local" or "global"\))?|Multiplayer Exe...) |
||
Line 1: | Line 1: | ||
{{Command | {{Command | ||
| ofp | | ofp | ||
|1.00 | |1.00 | ||
|gr1= Object Detection | |gr1= Object Detection | ||
| Returns the nearest object of given type (or inherited classes) to given position within a sphere. Hardcoded radius is 50 meters. Unlike with [[nearestObjects]], where distance is measured in 2D space, [[nearestObject]] will be closest object in 3D space. | | Returns the nearest object of given type (or inherited classes) to given position within a sphere. Hardcoded radius is 50 meters. Unlike with [[nearestObjects]], where distance is measured in 2D space, [[nearestObject]] will be closest object in 3D space. | ||
Line 11: | Line 11: | ||
{{Informative | | {{Informative | | ||
* in OFP, only objects of the exact provided class are found. | * in OFP, only objects of the exact provided class are found. | ||
* if an object ID is used (Alternative Syntax 3, see '''Example 2''') the search range is unlimited}} | * if an object ID is used (Alternative Syntax 3, see '''Example 2''') the search range is unlimited}} | ||
| [[nearestObject]] [position, type] | | [[nearestObject]] [position, type] | ||
|p1= [position, type]: [[Array]] | |p1= [position, type]: [[Array]] | ||
|p2= position: [[Position3D]] or [[Position2D]] or [[Object]] - position to start search at | |p2= position: [[Position3D]] or [[Position2D]] or [[Object]] - position to start search at | ||
|p3= type: [[String]] - type of object (see [[typeOf]], [[CfgVehicles|class type]]) | |p3= type: [[String]] - type of object (see [[typeOf]], [[CfgVehicles|class type]]) | ||
| [[Object]] - Nearest object, [[objNull]] otherwise | | [[Object]] - Nearest object, [[objNull]] otherwise | ||
|s2= [[nearestObject]] position | |s2= [[nearestObject]] position | ||
|p21= position: [[Position3D]] or [[Position2D]] - position to start search at |PARAMETER21= | |p21= position: [[Position3D]] or [[Position2D]] - position to start search at |PARAMETER21= | ||
|r2= [[Object]] - Nearest object, [[objNull]] otherwise | |r2= [[Object]] - Nearest object, [[objNull]] otherwise | ||
|s3= position [[nearestObject]] type | |s3= position [[nearestObject]] type | ||
|p41= position: [[Position3D]] or [[Position2D]] - position to start search at |PARAMETER41= | |p41= position: [[Position3D]] or [[Position2D]] - position to start search at |PARAMETER41= | ||
Line 34: | Line 34: | ||
|p42= type: [[String]] - type of object (see [[typeOf]], [[CfgVehicles|class type]]) |PARAMETER42= | |p42= type: [[String]] - type of object (see [[typeOf]], [[CfgVehicles|class type]]) |PARAMETER42= | ||
|r3= [[Object]] - nearest object, [[objNull]] otherwise | |r3= [[Object]] - nearest object, [[objNull]] otherwise | ||
|s4= position [[nearestObject]] id | |s4= position [[nearestObject]] id | ||
|p61= position: [[Position3D]] or [[Position2D]] - position to start search at |PARAMETER61= | |p61= position: [[Position3D]] or [[Position2D]] - position to start search at |PARAMETER61= | ||
Line 42: | Line 42: | ||
|p62= id: [[Number]] - object Visitor id |PARAMETER62= | |p62= id: [[Number]] - object Visitor id |PARAMETER62= | ||
|r4= [[Object]] - nearest object, [[objNull]] otherwise | |r4= [[Object]] - nearest object, [[objNull]] otherwise | ||
|x1= <code>_nObject = [[nearestObject]] [2345, 6789]; | |x1= <code>_nObject = [[nearestObject]] [2345, 6789]; | ||
_nObject = [[nearestObject]] [<nowiki/>[[player]], "StreetLamp"];</code> | _nObject = [[nearestObject]] [<nowiki/>[[player]], "StreetLamp"];</code> | ||
|x2= Return the object with ID 123456: | |x2= Return the object with ID 123456: | ||
<code>_nObject = [0,0,0] [[nearestObject]] 123456;</code> | <code>_nObject = [0,0,0] [[nearestObject]] 123456;</code> | ||
|x3= <code>_nObject = [[getPos]] [[player]] [[nearestObject]] "StreetLamp"; </code> | |x3= <code>_nObject = [[getPos]] [[player]] [[nearestObject]] "StreetLamp"; </code> | ||
|x4= Return the nearest object with ([[typeOf]] _nObject == "#XXXX") -> #mark, #slop, etc. Unlimited search range: | |x4= Return the nearest object with ([[typeOf]] _nObject == "#XXXX") -> #mark, #slop, etc. Unlimited search range: | ||
Line 57: | Line 57: | ||
Return the nearest object with ([[typeOf]] _nObject != ""). Search range is 50m: | Return the nearest object with ([[typeOf]] _nObject != ""). Search range is 50m: | ||
<code>_nObject = [[nearestObject]] _position;</code> | <code>_nObject = [[nearestObject]] _position;</code> | ||
|x5= (See also [[allMissionObjects]]): | |x5= (See also [[allMissionObjects]]): | ||
Line 63: | Line 63: | ||
_step = [[nearestObject]] [<nowiki/>[[player]], "#mark"]; | _step = [[nearestObject]] [<nowiki/>[[player]], "#mark"]; | ||
_track = [[nearestObject]] [<nowiki/>[[player]], "#track"]; | _track = [[nearestObject]] [<nowiki/>[[player]], "#track"]; | ||
_crater = [[nearestObject]] [<nowiki/>[[player]], "#crater"];</code> | _crater = [[nearestObject]] [<nowiki/>[[player]], "#crater"];</code> | ||
| [[nearestObjects]], [[nearObjectsReady]], [[nearObjects]], [[objectFromNetId]], [[nearEntities]], [[entities]], [[object]], [[nearestBuilding]], [[nearestTerrainObjects]] | | [[nearestObjects]], [[nearObjectsReady]], [[nearObjects]], [[objectFromNetId]], [[nearEntities]], [[entities]], [[object]], [[nearestBuilding]], [[nearestTerrainObjects]] | ||
}} | }} | ||
Revision as of 01:28, 18 January 2021
Description
- Description:
- Returns the nearest object of given type (or inherited classes) to given position within a sphere. Hardcoded radius is 50 meters. Unlike with nearestObjects, where distance is measured in 2D space, nearestObject will be closest object in 3D space.
- Groups:
- Object Detection
Syntax 1
- Syntax:
- nearestObject [position, type]
- Parameters:
- [position, type]: Array
- position: Position3D or Position2D or Object - position to start search at
- type: String - type of object (see typeOf, class type)
- Return Value:
- Object - Nearest object, objNull otherwise
Syntax 2
- Syntax:
- nearestObject position
- Parameters:
- position: Position3D or Position2D - position to start search at
- Return Value:
- Object - Nearest object, objNull otherwise
Syntax 3
- Syntax:
- position nearestObject type
- Parameters:
- position: Position3D or Position2D - position to start search at
- type: String - type of object (see typeOf, class type)
- Return Value:
- Object - nearest object, objNull otherwise
Syntax 4
- Syntax:
- position nearestObject id
- Parameters:
- position: Position3D or Position2D - position to start search at
- id: Number - object Visitor id
- Return Value:
- Object - nearest object, objNull otherwise
Examples
- Example 1:
_nObject = nearestObject [2345, 6789]; _nObject = nearestObject [player, "StreetLamp"];
- Example 2:
- Return the object with ID 123456:
_nObject = [0,0,0] nearestObject 123456;
- Example 3:
_nObject = getPos player nearestObject "StreetLamp";
- Example 4:
- Return the nearest object with (typeOf _nObject == "#XXXX") -> #mark, #slop, etc. Unlimited search range:
_nObject = _position nearestObject -1;
Return the nearest object with (typeOf _nObject != ""). Search range is 50m:_nObject = nearestObject _position;
- Example 5:
- (See also allMissionObjects):
_blood = nearestObject [player, "#slop"]; _step = nearestObject [player, "#mark"]; _track = nearestObject [player, "#track"]; _crater = nearestObject [player, "#crater"];
Additional Information
- See also:
- nearestObjectsnearObjectsReadynearObjectsobjectFromNetIdnearEntitiesentitiesobjectnearestBuildingnearestTerrainObjects
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
Notes
Bottom Section
- Posted on January 29, 2019 - 15:31 (UTC)
- Gnashes
-
The ID for Alternative Syntax 3 may be dynamically obtained via the following (as of Arma 3 v1.88):
// returns Object Terrain/Visitor ID, or -1 if no ID found (invalid/null object) cursorObject call { private _obj = str (param [0, objNull]); private _id = -1; private _find = ((_obj find "#") + 2); if (_find > 1) then { private _len = ((_obj find ":") - _find); _id = _obj select [_find, _len]; parseNumber _id; }; _id };
- Posted on February 12, 2020 - 08:55 (UTC)
- blackfisch
-
Note, that if you want to check for the nearest Unit you have to check for
CAManBase
instead ofMan
, sinceMan
will also return any wildlife population in that Area:nearestObject [player, "Man"]; // could possibly return rabbits or other wildlife nearestObject [player, "CAManBase"]; // only returns units
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Command Group: Object Detection
- Scripting Commands OFP 1.46
- Scripting Commands OFP 1.96
- Scripting Commands OFP 1.99
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 3: Scripting Commands
- Take On Helicopters: Scripting Commands