BIS fnc decodeFlags2: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>\[\[private\]\] (_?[a-zA-Z0-9_]+) = \[([^\[]*)\] \[\[(call|spawn)\]\] \[\[(BI(N|S)_fnc_[a-zA-Z0-9_]+)\]\];? \{\{cc\|([^ ]+)\}\}<\/code>" to "<sqf>private $1 = [$2] $3 $4; // $6</sqf>")
m (Some wiki formatting)
Line 7: Line 7:


|descr= Decodes a single scalar into array of unique binary flags (zeroes or ones).
|descr= Decodes a single scalar into array of unique binary flags (zeroes or ones).
{{Feature | Informative | The maximal decodable number is '''16777215''' (2<sup>24</sup> - 1).}}
{{Feature|informative|The maximal decodable number is '''16777215''' (2<sup>24</sup> - 1).}}


|s1=[value, size] call [[BIS_fnc_decodeFlags2]]
|s1=[value, size] call [[BIS_fnc_decodeFlags2]]
Line 17: Line 17:
|r1= [[Array]] of [[Number]]s - "boolean" flags where 0 {{=}} false and 1 {{=}} true
|r1= [[Array]] of [[Number]]s - "boolean" flags where 0 {{=}} false and 1 {{=}} true


|x1= <code>[[private]] _result = 13 [[call]] [[BIS_fnc_decodeFlags2]]; {{cc|returns [1,0,1,1]}}</code>
|x1= <sqf>private _result = 13 call BIS_fnc_decodeFlags2; // returns [1,0,1,1]</sqf>


|x2= <sqf>private _result = [13, 8] call BIS_fnc_decodeFlags2; // returns [1,0,1,1,0,0,0,0]</sqf>
|x2= <sqf>private _result = [13, 8] call BIS_fnc_decodeFlags2; // returns [1,0,1,1,0,0,0,0]</sqf>


|seealso= [[BIS_fnc_encodeFlags]] [[BIS_fnc_encodeFlags2]] [[BIS_fnc_encodeFlags4]] [[BIS_fnc_encodeFlags8]]
|seealso=
[[BIS_fnc_encodeFlags]] [[BIS_fnc_encodeFlags2]] [[BIS_fnc_encodeFlags4]] [[BIS_fnc_encodeFlags8]]
[[BIS_fnc_decodeFlags]] [[BIS_fnc_decodeFlags4]] [[BIS_fnc_decodeFlags8]]
[[BIS_fnc_decodeFlags]] [[BIS_fnc_decodeFlags4]] [[BIS_fnc_decodeFlags8]]
}}
}}

Revision as of 14:40, 1 July 2022

Hover & click on the images for description

Description

Description:
Decodes a single scalar into array of unique binary flags (zeroes or ones).
The maximal decodable number is 16777215 (224 - 1).
Execution:
call
Groups:
Bitwise

Syntax

Syntax:
[value, size] call BIS_fnc_decodeFlags2
Parameters:
value: Number - (Optional, default 0) the value to be converted
size: Number - (Optional, default 1) wanted array size
Return Value:
Array of Numbers - "boolean" flags where 0 = false and 1 = true

Examples

Example 1:
private _result = 13 call BIS_fnc_decodeFlags2; // returns [1,0,1,1]
Example 2:
private _result = [13, 8] call BIS_fnc_decodeFlags2; // returns [1,0,1,1,0,0,0,0]

Additional Information

See also:
BIS_fnc_encodeFlags BIS_fnc_encodeFlags2 BIS_fnc_encodeFlags4 BIS_fnc_encodeFlags8 BIS_fnc_decodeFlags BIS_fnc_decodeFlags4 BIS_fnc_decodeFlags8

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