BIS fnc decodeFlags: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (1 revision imported: BIS Functions update 2/7)
(pf)
Line 1: Line 1:
 
{{Function|Comments=
{{Function|= Comments
____________________________________________________________________________________________
____________________________________________________________________________________________


| arma3 |= Game name
| arma3 |Game name=


|1.00|= Game version
|1.00|Game version=
____________________________________________________________________________________________
____________________________________________________________________________________________


| <pre>/*
| Decodes a single scalar into array of unique binary flags with indexes between 0-15.|Description=
 
____________________________________________________________________________________________
Decodes a single scalar into array of unique binary flags with indexes between 0-15. Max. value of the scalar that can be decoded is 65535 (= 2^16 - 1).
 
Syntax:
-------
_flags:array = _encodedFlags:scalar call bis_fnc_decodeFlags;


Example:
| scalar call [[BIS_fnc_decodeFlags]] |Syntax=
--------
[0,2,3] = 13 call bis_fnc_decodeFlags;


*/


</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
|p1= scalar: [[Scalar]] - Scalar (max. 65535, 2^16-1) |Parameter 1=
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_decodeFlags]]; --> |= Syntax
| [[Array]] - Flags (See parameter of [[BIS_fnc_encodeFlags]]) |Return value=
|p1= |= Parameter 1


| |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code></code> |=  
|x1= <code>_decodedFlags = 13 call [[BIS_fnc_decodeFlags]];//Returns [0,2,3]</code>|Example 1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
| [[BIS_fnc_encodeFlags]] |See also=
 
}}
}}



Revision as of 15:08, 5 July 2018

Hover & click on the images for description

Description

Description:
Decodes a single scalar into array of unique binary flags with indexes between 0-15.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
scalar call BIS_fnc_decodeFlags
Parameters:
scalar: Scalar - Scalar (max. 65535, 2^16-1)
Return Value:
Array - Flags (See parameter of BIS_fnc_encodeFlags)

Examples

Example 1:
_decodedFlags = 13 call BIS_fnc_decodeFlags;//Returns [0,2,3]

Additional Information

See also:
BIS_fnc_encodeFlags

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