param: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>")
m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *A([a-z ])" to "$1 - a$2")
 
(9 intermediate revisions by the same user not shown)
Line 16: Line 16:
|p1= index: [[Number]] - index of required item in the input array.
|p1= index: [[Number]] - index of required item in the input array.


|p2= defaultValue (Optional): [[Anything]] - a default value to return if input is undefined, of the wrong type or of the wrong length (if the item is an array).
|p2= defaultValue: [[Anything]] - (Optional) a default value to return if input is undefined, of the wrong type or of the wrong length (if the item is an array).


|p3= expectedDataTypes (Optional): [[Array]] of direct [[:Category: Data Types| Data Types]] - checks if passed value is one of listed [[:Category: Data Types| Data Types]]. If not, default value is used instead. Empty array [] means every data type is accepted.
|p3= expectedDataTypes: [[Array]] of direct [[:Category: Data Types| Data Types]] - (Optional) checks if passed value is one of listed [[:Category: Data Types| Data Types]]. If not, default value is used instead. Empty array [] means every data type is accepted.


|p4= expectedArrayCount (Optional): [[Number]] or [[Array]] - a single size or array of sizes. If passed input value is an array, checks that it has a certain number of elements. If not, default value is used instead. Empty array [] means any size is accepted.
|p4= expectedArrayCount: [[Number]] or [[Array]] - (Optional) a single size or array of sizes. If passed input value is an array, checks that it has a certain number of elements. If not, default value is used instead. Empty array [] means any size is accepted.


|r1= [[Anything]] - extracted value on success or default value otherwise. [[Nothing]] if syntax error occurred.
|r1= [[Anything]] - extracted value on success or default value otherwise. [[Nothing]] if syntax error occurred.
Line 26: Line 26:
|s2= argument [[param]] [index, defaultValue, expectedDataTypes, expectedArrayCount]
|s2= argument [[param]] [index, defaultValue, expectedDataTypes, expectedArrayCount]


|p21= argument: [[Anything]] - A usual array of params is expected. If a non-array value is passed, it will be converted to 1 element array
|p21= argument: [[Anything]] - a usual array of params is expected. If a non-array value is passed, it will be converted to 1 element array


|p22= index: [[Number]] - index of required item in the input array.
|p22= index: [[Number]] - index of required item in the input array.


|p23= defaultValue (Optional): [[Anything]] - a default value to return if input is undefined, of the wrong type or of the wrong length (if the item is an array).
|p23= defaultValue: [[Anything]] - (Optional) a default value to return if input is undefined, of the wrong type or of the wrong length (if the item is an array).


|p24= expectedDataTypes (Optional): [[Array]] of direct [[:Category: Data Types| Data Types]] - checks if passed value is one of listed [[:Category: Data Types| Data Types]]. If not, default value is used instead. Empty array [] means every data type is accepted.
|p24= expectedDataTypes: [[Array]] of direct [[:Category: Data Types| Data Types]] - (Optional) checks if passed value is one of listed [[:Category: Data Types| Data Types]]. If not, default value is used instead. Empty array [] means every data type is accepted.


|p25= expectedArrayCount (Optional): [[Number]] or [[Array]] - a single size or array of sizes. If passed input value is an array, checks that it has a certain number of elements. If not, default value is used instead. Empty array [] means any size is accepted.
|p25= expectedArrayCount: [[Number]] or [[Array]] - (Optional) a single size or array of sizes. If passed input value is an array, checks that it has a certain number of elements. If not, default value is used instead. Empty array [] means any size is accepted.


|r2= [[Anything]] - extracted value on success or default value otherwise. [[Nothing]] if syntax error occurred.
|r2= [[Anything]] - extracted value on success or default value otherwise. [[Nothing]] if syntax error occurred.


|x1= <code>[1, 2, 3] call  
|x1= <sqf>[1, 2, 3] call  
{
{
[[private]] _one = [[param]] [0, 1];
private _one = param [0, 1];
[[private]] _two = [[param]] [1, 2];
private _two = param [1, 2];
[[private]] _three = [[param]] [2, 3];
private _three = param [2, 3];
// ...
// ...
};</code>
};</sqf>


|x2= <code>[123] call  
|x2= <sqf>[123] call  
{
{
[[private]] _val = [[param]] [0];
private _val = param [0];
};
};


// Below would produce the same result as above
// Below would produce the same result as above
123 [[call]]
123 call  
{
{
[[private]] _val = [[param]] [0];
private _val = param [0];
};</code>
};</sqf>


|x3= <code>_z = position [[player]] [[param]] [2, 0];
|x3= <sqf>_z = position player param [2, 0];
[[if]] (_z > 10) [[then]]
if (_z > 10) then  
{
{
[[hint]] "YOU ARE FLYING!";
hint "YOU ARE FLYING!";
};</code>
};</sqf>


|x4= <code>fnc =  
|x4= <sqf>
fnc =  
{
{
[[private]] _pos = [[param]] [0, [0,0,0], [<nowiki/>[[objNull]], []], [2,3]];
private _pos = param [0, [0,0,0], [objNull, []], [2,3]];
[[private]] _rad = [[param]] [1, 0, [0]];
private _rad = param [1, 0, [0]];
_pos [[nearObjects]] _rad;
_pos nearObjects _rad;
};
};


[<nowiki/>[[position]] [[player]], 25] [[call]] fnc; // ok
[position player, 25] call fnc; // ok
[<nowiki/>[[player]], 25] [[call]] fnc; // ok
[player, 25] call fnc; // ok
[25, player] call fnc; // default values are used</code>
[25, player] call fnc; // default values are used
</sqf>


|seealso= [[params]] [[select]] [[set]] [[resize]] [[reverse]] [[in]] [[find]] [[findIf]] [[toArray]] [[toString]] [[forEach]] [[count]] [[deleteAt]] [[deleteRange]] [[append]] [[sort]] [[arrayIntersect]] [[splitString]] [[joinString]] [[isEqualTypeAll]] [[isEqualType]] [[isEqualTypeParams]] [[isEqualTypeArray]] [[isEqualTypeAny]] [[typeName]] [[BIS_fnc_param]]
|seealso= [[params]] [[select]] [[set]] [[resize]] [[reverse]] [[in]] [[find]] [[findIf]] [[toArray]] [[toString]] [[forEach]] [[count]] [[deleteAt]] [[deleteRange]] [[append]] [[sort]] [[arrayIntersect]] [[splitString]] [[joinString]] [[isEqualTypeAll]] [[isEqualType]] [[isEqualTypeParams]] [[isEqualTypeArray]] [[isEqualTypeAny]] [[typeName]] [[BIS_fnc_param]]
}}
}}

Latest revision as of 16:23, 8 November 2023

Hover & click on the images for description

Description

Description:
Extracts a single value with given index from input argument, similar to BIS_fnc_param. When used without argument, as shown in main syntax, internal variable _this, which is usually available inside functions and event handlers, is used as argument. If input argument is not an array, it will be converted to 1 element array.

If extracted item of input with given index is undefined, of the wrong type or of the wrong length (if the item is an array), default value is used instead. Since Arma 3 v1.54, onscreen errors are displayed for when the input is of the wrong type or size.
Groups:
VariablesArrays

Syntax

Syntax:
param [index, defaultValue, expectedDataTypes, expectedArrayCount]
Parameters:
index: Number - index of required item in the input array.
defaultValue: Anything - (Optional) a default value to return if input is undefined, of the wrong type or of the wrong length (if the item is an array).
expectedDataTypes: Array of direct Data Types - (Optional) checks if passed value is one of listed Data Types. If not, default value is used instead. Empty array [] means every data type is accepted.
expectedArrayCount: Number or Array - (Optional) a single size or array of sizes. If passed input value is an array, checks that it has a certain number of elements. If not, default value is used instead. Empty array [] means any size is accepted.
Return Value:
Anything - extracted value on success or default value otherwise. Nothing if syntax error occurred.

Alternative Syntax

Syntax:
argument param [index, defaultValue, expectedDataTypes, expectedArrayCount]
Parameters:
argument: Anything - a usual array of params is expected. If a non-array value is passed, it will be converted to 1 element array
index: Number - index of required item in the input array.
defaultValue: Anything - (Optional) a default value to return if input is undefined, of the wrong type or of the wrong length (if the item is an array).
expectedDataTypes: Array of direct Data Types - (Optional) checks if passed value is one of listed Data Types. If not, default value is used instead. Empty array [] means every data type is accepted.
expectedArrayCount: Number or Array - (Optional) a single size or array of sizes. If passed input value is an array, checks that it has a certain number of elements. If not, default value is used instead. Empty array [] means any size is accepted.
Return Value:
Anything - extracted value on success or default value otherwise. Nothing if syntax error occurred.

Examples

Example 1:
[1, 2, 3] call { private _one = param [0, 1]; private _two = param [1, 2]; private _three = param [2, 3]; // ... };
Example 2:
[123] call { private _val = param [0]; }; // Below would produce the same result as above 123 call { private _val = param [0]; };
Example 3:
_z = position player param [2, 0]; if (_z > 10) then { hint "YOU ARE FLYING!"; };
Example 4:
fnc = { private _pos = param [0, [0,0,0], [objNull, []], [2,3]]; private _rad = param [1, 0, [0]]; _pos nearObjects _rad; }; [position player, 25] call fnc; // ok [player, 25] call fnc; // ok [25, player] call fnc; // default values are used

Additional Information

See also:
params select set resize reverse in find findIf toArray toString forEach count deleteAt deleteRange append sort arrayIntersect splitString joinString isEqualTypeAll isEqualType isEqualTypeParams isEqualTypeArray isEqualTypeAny typeName BIS_fnc_param

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