nearestTerrainObjects: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (updated with road data)
Line 19: Line 19:
<syntaxhighlight lang="cpp"></syntaxhighlight><!---THIS IS HERE TO MAKE SYNTAX HIGHLIGHTING WORK INSIDE THE SPOILER (BLACKMAGIC)--->
<syntaxhighlight lang="cpp"></syntaxhighlight><!---THIS IS HERE TO MAKE SYNTAX HIGHLIGHTING WORK INSIDE THE SPOILER (BLACKMAGIC)--->
<spoiler text="Terrain object counts">
<spoiler text="Terrain object counts">
{{Informative|Types which are missing are not present in the given world. [[Virtual Reality]] has no terrain objects. Last updated {{GVI|A3|1.98}}}}
{{Informative|Types which are missing are not present in the given world. [[Virtual Reality]] has no terrain objects. Last updated {{GVI|A3|1.99}}}}
<big>[[Stratis]]</big>
<big>[[Stratis]]</big>
<div style="columns: 5">
<div style="columns: 5">
Line 38: Line 38:
* ROCK: 820
* ROCK: 820
* SHIPWRECK: 11
* SHIPWRECK: 11
* ROAD: 143
* TRACK: 2063
</div>
</div>


Line 67: Line 69:
* POWERWIND: 128
* POWERWIND: 128
* SHIPWRECK: 43
* SHIPWRECK: 43
* ROAD: 4849
* MAIN ROAD: 2061
* TRACK: 26823
</div>
</div>


Line 92: Line 97:
* POWERSOLAR: 1
* POWERSOLAR: 1
* SHIPWRECK: 23
* SHIPWRECK: 23
* ROAD: 1442
* MAIN ROAD: 1050
* TRACK: 3489
</div>
</div>


Line 116: Line 124:
* POWERWIND: 19
* POWERWIND: 19
* SHIPWRECK: 58
* SHIPWRECK: 58
* TRAIL: 6936
* ROAD: 1485
* MAIN ROAD: 2921
* TRACK: 9419
* TRAIL: 6936
* TRAIL: 6936
</div>
</div>
Line 147: Line 159:
* POWERWIND: 1
* POWERWIND: 1
* SHIPWRECK: 4
* SHIPWRECK: 4
* ROAD: 5378
* MAIN ROAD: 2118
* TRACK: 12834
</div>
</div>


Line 169: Line 184:
* POWER LINES: 1958
* POWER LINES: 1958
* RAILWAY: 2324
* RAILWAY: 2324
* ROAD: 8740
* MAIN ROAD: 1535
* TRACK: 24372
</div>
</div>


Line 191: Line 209:
* POWER LINES: 1958
* POWER LINES: 1958
* RAILWAY: 2324
* RAILWAY: 2324
* ROAD: 8740
* MAIN ROAD: 1535
* TRACK: 24372
</div>
</div>


Line 196: Line 217:
"CROSS", "BUNKER", "FORTRESS", "FOUNTAIN", "VIEW-TOWER", "LIGHTHOUSE", "QUAY", "FUELSTATION", "HOSPITAL", "FENCE", "WALL", "HIDE", "BUSSTOP",
"CROSS", "BUNKER", "FORTRESS", "FOUNTAIN", "VIEW-TOWER", "LIGHTHOUSE", "QUAY", "FUELSTATION", "HOSPITAL", "FENCE", "WALL", "HIDE", "BUSSTOP",
"ROAD", "FOREST", "TRANSMITTER", "STACK", "RUIN", "TOURISM", "WATERTOWER", "TRACK", "MAIN ROAD", "ROCK", "ROCKS", "POWER LINES", "RAILWAY",
"ROAD", "FOREST", "TRANSMITTER", "STACK", "RUIN", "TOURISM", "WATERTOWER", "TRACK", "MAIN ROAD", "ROCK", "ROCKS", "POWER LINES", "RAILWAY",
"POWERSOLAR", "POWERWAVE", "POWERWIND", "SHIPWRECK", "TRAIL"];
"POWERSOLAR", "POWERWAVE", "POWERWIND", "SHIPWRECK", "TRAIL", "ROAD", "MAIN ROAD", "TRACK", "TRAIL"];


private _counts = [];
private _counts = [];

Revision as of 10:42, 12 June 2020

Hover & click on the images for description

Description

Description:
Returns a list of nearest terrain objects of the given types to the given position or object, within the specified distance. If more than one object is found they will be ordered according to 3D distance to the object (i.e. the closest one will be first in the array). In contrast to nearestObjects this command returns terrain placed objects like trees, rocks and buildings which don't necessarily need an associated config class.

Possible type names:"TREE", "SMALL TREE", "BUSH", "BUILDING", "HOUSE", "FOREST BORDER", "FOREST TRIANGLE", "FOREST SQUARE", "CHURCH", "CHAPEL", "CROSS", "BUNKER", "FORTRESS", "FOUNTAIN", "VIEW-TOWER", "LIGHTHOUSE", "QUAY", "FUELSTATION", "HOSPITAL", "FENCE", "WALL", "HIDE", "BUSSTOP", "ROAD", "FOREST", "TRANSMITTER", "STACK", "RUIN", "TOURISM", "WATERTOWER", "TRACK", "MAIN ROAD", "ROCK", "ROCKS", "POWER LINES", "RAILWAY", "POWERSOLAR", "POWERWAVE", "POWERWIND", "SHIPWRECK", "TRAIL"

Since Arma 3 v1.61.136035 it is possible to switch the sorting algorithm off by providing optional param, which significantly increases the performance of this command, especially if the search is performed with large radius.
Since Arma 3 v1.65.138818 it is possible to switch search and sorting mode between 2D and 3D.
Since Arma 3 v1.99.146404 this command also returns missing roads: "ROAD", "MAIN ROAD", "TRACK", "TRAIL"

Types which are missing are not present in the given world. Virtual Reality has no terrain objects. Last updated -wrong parameter ("A3") defined!-[[:Category:Introduced with A3 version 1.99|1.99]]

Stratis

  • TREE: 40110
  • BUSH: 47974
  • HOUSE: 684
  • CHAPEL: 2
  • CROSS: 1
  • LIGHTHOUSE: 3
  • FUELSTATION: 3
  • FENCE: 1728
  • WALL: 1355
  • HIDE: 70975
  • ROAD: 143
  • TRANSMITTER: 11
  • WATERTOWER: 1
  • TRACK: 2063
  • ROCK: 820
  • SHIPWRECK: 11
  • ROAD: 143
  • TRACK: 2063

Altis

  • TREE: 263630
  • BUSH: 747193
  • HOUSE: 17472
  • CHURCH: 54
  • CHAPEL: 165
  • CROSS: 48
  • LIGHTHOUSE: 7
  • FUELSTATION: 32
  • HOSPITAL: 1
  • FENCE: 47940
  • WALL: 38943
  • HIDE: 655958
  • ROAD: 4849
  • TRANSMITTER: 23
  • RUIN: 3
  • TOURISM: 1
  • WATERTOWER: 10
  • TRACK: 26823
  • MAIN ROAD: 2061
  • ROCK: 5483
  • POWER LINES: 2224
  • POWERSOLAR: 10
  • POWERWAVE: 51
  • POWERWIND: 128
  • SHIPWRECK: 43
  • ROAD: 4849
  • MAIN ROAD: 2061
  • TRACK: 26823

Malden 2035

  • TREE: 101960
  • BUSH: 288461
  • HOUSE: 4062
  • CHURCH: 14
  • CHAPEL: 14
  • CROSS: 16
  • LIGHTHOUSE: 15
  • FUELSTATION: 24
  • FENCE: 11189
  • WALL: 14189
  • HIDE: 192553
  • BUSSTOP: 45
  • ROAD: 1442
  • TRANSMITTER: 7
  • WATERTOWER: 63
  • TRACK: 3489
  • MAIN ROAD: 1050
  • ROCK: 3513
  • POWER LINES: 3427
  • POWERSOLAR: 1
  • SHIPWRECK: 23
  • ROAD: 1442
  • MAIN ROAD: 1050
  • TRACK: 3489

Tanoa

  • TREE: 506993
  • BUSH: 754347
  • HOUSE: 13389
  • CHURCH: 21
  • FUELSTATION: 85
  • FENCE: 2912
  • WALL: 20526
  • HIDE: 356904
  • ROAD: 1485
  • TRANSMITTER: 16
  • TOURISM: 35
  • WATERTOWER: 73
  • TRACK: 9419
  • MAIN ROAD: 2921
  • ROCK: 8909
  • POWER LINES: 3985
  • RAILWAY: 2138
  • POWERSOLAR: 2
  • POWERWIND: 19
  • SHIPWRECK: 58
  • TRAIL: 6936
  • ROAD: 1485
  • MAIN ROAD: 2921
  • TRACK: 9419
  • TRAIL: 6936

Livonia

  • TREE: 1.88163e+006
  • BUSH: 473543
  • BUILDING: 1262
  • HOUSE: 6762
  • CHURCH: 17
  • CHAPEL: 8
  • BUNKER: 40
  • FOUNTAIN: 36
  • VIEW-TOWER: 239
  • FUELSTATION: 7
  • FENCE: 48426
  • WALL: 4418
  • HIDE: 474123
  • BUSSTOP: 73
  • ROAD: 5378
  • TRANSMITTER: 15
  • STACK: 11
  • WATERTOWER: 7
  • TRACK: 12834
  • MAIN ROAD: 2118
  • ROCK: 744
  • POWER LINES: 2671
  • RAILWAY: 843
  • POWERSOLAR: 2
  • POWERWIND: 1
  • SHIPWRECK: 4
  • ROAD: 5378
  • MAIN ROAD: 2118
  • TRACK: 12834

Weferlingen

  • TREE: 829449
  • BUSH: 731315
  • BUILDING: 5072
  • HOUSE: 4562
  • CHURCH: 21
  • CHAPEL: 13
  • VIEW-TOWER: 34
  • FUELSTATION: 9
  • FENCE: 83908
  • HIDE: 231818
  • BUSSTOP: 106
  • ROAD: 8740
  • TRANSMITTER: 1
  • STACK: 18
  • TRACK: 24372
  • MAIN ROAD: 1535
  • POWER LINES: 1958
  • RAILWAY: 2324
  • ROAD: 8740
  • MAIN ROAD: 1535
  • TRACK: 24372

Weferlingen (Winter)

  • TREE: 829449
  • BUSH: 519827
  • BUILDING: 5072
  • HOUSE: 4562
  • CHURCH: 21
  • CHAPEL: 13
  • VIEW-TOWER: 34
  • FUELSTATION: 9
  • FENCE: 83908
  • HIDE: 229792
  • BUSSTOP: 106
  • ROAD: 8740
  • TRANSMITTER: 1
  • STACK: 18
  • TRACK: 24372
  • MAIN ROAD: 1535
  • POWER LINES: 1958
  • RAILWAY: 2324
  • ROAD: 8740
  • MAIN ROAD: 1535
  • TRACK: 24372
private _types = ["TREE", "SMALL TREE", "BUSH", "BUILDING", "HOUSE", "FOREST BORDER", "FOREST TRIANGLE", "FOREST SQUARE", "CHURCH", "CHAPEL",
"CROSS", "BUNKER", "FORTRESS", "FOUNTAIN", "VIEW-TOWER", "LIGHTHOUSE", "QUAY", "FUELSTATION", "HOSPITAL", "FENCE", "WALL", "HIDE", "BUSSTOP",
"ROAD", "FOREST", "TRANSMITTER", "STACK", "RUIN", "TOURISM", "WATERTOWER", "TRACK", "MAIN ROAD", "ROCK", "ROCKS", "POWER LINES", "RAILWAY",
"POWERSOLAR", "POWERWAVE", "POWERWIND", "SHIPWRECK", "TRAIL", "ROAD", "MAIN ROAD", "TRACK", "TRAIL"];

private _counts = [];
private _countTypes = count _types;

["R3vo_GetNearestTerrainObjects",""] call BIS_fnc_startLoadingScreen;

{
	private _terrainObjects = nearestTerrainObjects
	[
		[worldSize / 2, worldSize / 2],
		[_x],
		worldSize,
		false
	];

	if (count _terrainObjects > 0) then
	{
		_counts pushBack [_x,count _terrainObjects];
	};
	((_forEachIndex + 1) / _countTypes) call BIS_fnc_progressLoadingScreen;
} forEach _types;


"R3vo_GetNearestTerrainObjects" call BIS_fnc_endLoadingScreen;

private _export = "<big>[[" + getText (configFile >> "CfgWorlds" >> worldName >> "description") + "]]</big>" + endl + '<div style="columns: 5">';

{
	_export = _export + endl + "* " + (_x # 0) + ": " + (str (_x # 1));
} forEach _counts;

_export = _export + endl + "</div>";

copyToClipboard _export;
↑ Back to spoiler's top
Groups:
Uncategorised

Syntax

Syntax:
nearestTerrainObjects [position, types, radius, sort, 2Dmode]
Parameters:
position: Object, PositionAGL or Position2D - where to find objects, center position
types: Array - list of types of the objects to search for. [] to search without filters
radius: Number - range from center position to search for objects
sort: Boolean - (Optional, default true) sort objects by distance to the center or not (Available since Arma 3 v1.61.136035)
2Dmode: Boolean - (Optional, default false) the object search and sorting mode: true - 2D, false - 3D (Available since Arma 3 v1.65.138818)
Return Value:
Array - array of terrain objects

Examples

Example 1:
nearestTerrainObjects [player, ["Tree", "Bush"], 200];
Example 2:
nearestTerrainObjects [player, ["House"], 200];
Example 3:
nearestTerrainObjects [[2716,2949,0], ["Chapel", "Fuelstation"], 100];
Example 4:
Return every terrain object in 50 metres radius around player sorted, closest first:nearestTerrainObjects [player, [], 50];
Example 5:
Return every terrain object in 50 metres radius around player unsorted:nearestTerrainObjects [player, [], 50, false];
Example 6:
Hide all terrain objects nearestTerrainObjects could find: if (isServer) then { { _x hideObjectGlobal true; } forEach nearestTerrainObjects [ [worldSize / 2, worldSize / 2], [], worldSize, false ]; };

Additional Information

See also:
nearestObjectsfindNearestEnemyhideObjectnearestBuildingnearestObjectnearObjectsnearestLocationnearEntitiesnearTargetsnearSuppliesnearestLocationWithDubbingnearObjectsReadynearRoadsroadsConnectedToroadAtisOnRoadgetRoadInfo

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 October 31, 2016 - 00:20 (UTC)
Killzone Kid
Since Arma 3 v1.65.138818 the default sorting is done according to 3D distance not distance2D as before. This is an attempt to correct some very old bug in implementation.
Posted on December 28, 2016 - 20:21 (UTC)
Demellion
Be aware that some terrain objects types might be tricky to be found, such as terrain rocks and boulders which are not considered to be "ROCKS" or "ROCK", but "HIDE". Example: nearestTerrainObjects [player, ["HIDE"], 20]; // [939688: bluntstone_01.p3d,939691: garbagebags_f.p3d,939671: wreck_car_f.p3d,939692: junkpile_f.p3d]
Posted on June 7, 2020 - 14:16 (UTC)
killzone_kid
Large bridges are map type "ROAD". Small foot bridges are not roads and not included into road net.