BIS fnc decodeFlags2: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "{{Function|= Comments " to "{{Function|Comments= ") |
Lou Montana (talk | contribs) (Page filling) |
||
Line 5: | Line 5: | ||
|1.00|Game version= | |1.00|Game version= | ||
< | | Decodes a single scalar into array of unique binary flags (zeroes or ones). | ||
{{Informative | The maximal decodable number is '''16777215''' (2<sup>24</sup> - 1).}} |Description= | |||
| [value, size] call [[BIS_fnc_decodeFlags2]] |Syntax= | |||
| | |p1= value: [[Number]] - (Optional, default 0) the value to be converted |Parameter 1= | ||
|p2= size: [[Number]] - (Optional, default 1) wanted array size |Parameter 2= | |||
| [[Array]] of [[Number]]s - "boolean" flags where 0 {{=}} false and 1 {{=}} true |Return value= | |||
|[] call [[BIS_fnc_decodeFlags2]]| | |x1= <code>[[private]] _result = 13 [[call]] [[BIS_fnc_decodeFlags2]]; {{cc|returns [1,0,1,1]}}</code> |Example 1= | ||
| | |x2= <code>[[private]] _result = [13, 8] [[call]] [[BIS_fnc_decodeFlags2]]; {{cc|returns [1,0,1,1,0,0,0,0]}}</code> |Example 2= | ||
| | | [[BIS_fnc_encodeFlags]] [[BIS_fnc_encodeFlags2]] [[BIS_fnc_encodeFlags4]] [[BIS_fnc_encodeFlags8]] | ||
[[BIS_fnc_decodeFlags]] [[BIS_fnc_decodeFlags4]] [[BIS_fnc_decodeFlags8]] |See also= | |||
}} | |||
[[Category:Function Group: Misc|{{uc:decodeFlags2}}]] | [[Category:Function Group: Misc|{{uc:decodeFlags2}}]] | ||
Revision as of 19:31, 28 June 2020
Description
- Description:
- Decodes a single scalar into array of unique binary flags (zeroes or ones).
- Execution:
- call
- Groups:
- Uncategorised
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