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)
m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *S([a-z ])" to "$1 - s$2")
 
(26 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=function


{{Function|= Comments
|game1= arma3
____________________________________________________________________________________________
|version1= 1.00


| arma3 |= Game name
|gr1= Bitwise


|1.00|= Game version
|descr= Decodes a single scalar into array of unique binary flags with indexes between 0-15.
____________________________________________________________________________________________


| <pre>/*
|s1= scalar call [[BIS_fnc_decodeFlags]]


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).
|p1= scalar: [[Number]] - scalar (max. 65535, 2^16-1)


Syntax:
|r1= [[Array]] - flags (See parameter of [[BIS_fnc_encodeFlags]])
-------
_flags:array = _encodedFlags:scalar call bis_fnc_decodeFlags;


Example:
|x1= <sqf>private _decodedFlags = 13 call BIS_fnc_decodeFlags;//Returns [0,2,3]</sqf>
--------
[0,2,3] = 13 call bis_fnc_decodeFlags;
 
*/
 
</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
____________________________________________________________________________________________
 
| <!-- [] call [[BIS_fnc_decodeFlags]]; --> |= Syntax
|p1= |= Parameter 1
 
| |= Return value
____________________________________________________________________________________________
 
|x1= <code></code> |=
____________________________________________________________________________________________
 
| |= See also


|seealso= [[BIS_fnc_encodeFlags]]
}}
}}
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Function Group: Misc|{{uc:decodeFlags}}]]
[[Category:Functions|{{uc:decodeFlags}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:decodeFlags}}]]

Latest revision as of 16:49, 8 November 2023

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:
Bitwise

Syntax

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

Examples

Example 1:
private _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