This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
4rpl:commands:getunits [2021/09/14 15:30] – added link to new wiki page Grabz | 4rpl:commands:getunits [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 9: | Line 9: | ||
Returns list of units in range of a given position. The returned list is sorted so that the first item in the list is the closest.\\ | Returns list of units in range of a given position. The returned list is sorted so that the first item in the list is the closest.\\ | ||
- | :!: **Note:** The difference between this API and [[GetUnitsInRange]] is this API takes a ' | + | ? unitType: |
- | GetUnits takes a unit type and from that it will internally find all units of that type. It then enumerates those units and checks if they are in range and if they match the state filters. So GetUnits can be used to find any unit (air, map, or neither). This method can be more performant than GetUnitsInRange | + | |
- | + | ? startPos: | |
- | :!: __**Note: 2D square search is currently broken and will find all units as long as they are close enough on X-axis, disregarding the Z-axis. Do not use this combination of parameters.**__ | + | : a V3 (vector3) indicating the point to search |
+ | ? range: | ||
+ | : a floating point number | ||
+ | ? isSquare: | ||
+ | : a boolean. | ||
+ | ? is3D: | ||
+ | : a boolean. It determines if a true 3d distance is used for range, or if only the X and Z components (2D) distance calculation is used. | ||
+ | ? requireLOS: | ||
+ | : a boolean indicating | ||
+ | ? enemyState: | ||
+ | : an int (either 0,1,2). 0 = ignore enemy status. 1 = Only find units that are enemies. 2 = Only find units that are not enemies. | ||
+ | ? builtState: | ||
+ | | ||
+ | ? imperviousState: | ||
+ | : an int (either 0,1,2). 0 = ignore impervious state. 1 = Only find units that are not impervious. 2 = Only find units that are impervious. Things like ore deposits are impervious. | ||
For short range searches refer to the [[cw4: | For short range searches refer to the [[cw4: | ||
- | |||
- | * **unitType: | ||
- | * **startPos: | ||
- | * **range:** a floating point number that is the maximum distance from startPos.\\ | ||
- | * **isSquare: | ||
- | * **is3D:** a boolean. It determines if a true 3d distance is used for range, or if only the X and Z components (2D) distance calculation is used.\\ | ||
- | * **requireLOS: | ||
- | * **enemyState: | ||
- | * **builtState: | ||
- | * **imperviousState: | ||
===== Examples ===== | ===== Examples ===== | ||
Line 42: | Line 46: | ||
GetUnits(< | GetUnits(< | ||
</ | </ | ||
+ | |||
+ | === Notes === | ||
+ | ** The difference between this API and [[GetUnitsInRange]] is this API takes a ' | ||
+ | .. GetUnits takes a unit type and from that it will internally find all units of that type. It then enumerates those units and checks if they are in range and if they match the state filters. So GetUnits can be used to find any unit (air, map, or neither). This method can be more performant than GetUnitsInRange if the unit being searched is not found in large quantities on the map. | ||
+ | * 2D square search is currently broken and will find all units as long as they are close enough on X-axis, disregarding the Z-axis. Do not use this combination of parameters. | ||
+ | |||
+ | * The units " | ||
+ | |||
=== See Also === | === See Also === |