BIS fnc encodeFlags2: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "\[\[Category\:Function Group\: Misc(\|\{\{[a-zA-Z0-9_:]+\}\})?\]\]" to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...) |
||
Line 1: | Line 1: | ||
{{Function | {{Function | ||
| arma3 | | arma3 | ||
|1.00 | |1.00 | ||
|gr1 = Bitwise | |gr1 = Bitwise | ||
| Encodes array of unique binary flags (zeroes or ones) into a single scalar. | | Encodes array of unique binary flags (zeroes or ones) into a single scalar. | ||
{{Important | Note that the input array is in {{Wikipedia|Endianness#Definition|Big Endian}}, meaning that the smallest value is '''to the left'''.}} | {{Important | Note that the input array is in {{Wikipedia|Endianness#Definition|Big Endian}}, meaning that the smallest value is '''to the left'''.}} | ||
| arrayOfNumbers call [[BIS_fnc_encodeFlags2]] | | arrayOfNumbers call [[BIS_fnc_encodeFlags2]] | ||
|p1= arrayOfNumbers: [[Array]] of [[Number]]s - "boolean" flags where 0 = false and 1 = true | |p1= arrayOfNumbers: [[Array]] of [[Number]]s - "boolean" flags where 0 = false and 1 = true | ||
| [[Number]] - the calculated number | | [[Number]] - the calculated number | ||
|x1= <code>[[private]] _result = [1,0,1,1] [[call]] [[BIS_fnc_encodeFlags2]]; | |x1= <code>[[private]] _result = [1,0,1,1] [[call]] [[BIS_fnc_encodeFlags2]]; | ||
[[hint]] [[str]] _result; {{cc|Displays 13}}</code> | [[hint]] [[str]] _result; {{cc|Displays 13}}</code> | ||
| [[BIS_fnc_encodeFlags]] [[BIS_fnc_encodeFlags4]] [[BIS_fnc_encodeFlags8]] | | [[BIS_fnc_encodeFlags]] [[BIS_fnc_encodeFlags4]] [[BIS_fnc_encodeFlags8]] | ||
[[BIS_fnc_decodeFlags]] [[BIS_fnc_decodeFlags2]] [[BIS_fnc_decodeFlags4]] [[BIS_fnc_decodeFlags8]] | [[BIS_fnc_decodeFlags]] [[BIS_fnc_decodeFlags2]] [[BIS_fnc_decodeFlags4]] [[BIS_fnc_decodeFlags8]] | ||
}} | }} |
Revision as of 23:01, 17 January 2021
Description
- Description:
- Encodes array of unique binary flags (zeroes or ones) into a single scalar.
- Execution:
- call
- Groups:
- Bitwise
Syntax
- Syntax:
- arrayOfNumbers call BIS_fnc_encodeFlags2
- Parameters:
- arrayOfNumbers: Array of Numbers - "boolean" flags where 0 = false and 1 = true
- Return Value:
- Number - the calculated number
Examples
- Example 1:
private _result = [1,0,1,1] call BIS_fnc_encodeFlags2; hint str _result; // Displays 13
Additional Information
- See also:
- BIS_fnc_encodeFlags BIS_fnc_encodeFlags4 BIS_fnc_encodeFlags8 BIS_fnc_decodeFlags BIS_fnc_decodeFlags2 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