BIS fnc decodeFlags4: Difference between revisions
(created page) |
No edit summary |
||
(22 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{ | {{RV|type=function | ||
| arma3 | | |game1= arma3 | ||
|version1= 1.00 | |||
| | |gr1= Bitwise | ||
|descr= Decodes a single scalar into array of unique 4-state flags (values 0,1,2,3). | |||
|s1= [encodedFlags, size] call [[BIS_fnc_decodeFlags4]] | |||
| | |p1= encodedFlags: [[Number]] - non-decimal number between 0 and 16777215 | ||
|p2= size: [[Number]] - (Optional, default -1) output size. Size -1 means output will not be resized | |||
|r1= [[Number]] - decoded flags | |||
|x1= <sqf>private _decodedFlags = 225 call BIS_fnc_decodeFlags4; // [1,0,2,3]</sqf> | |||
|x2= <sqf>private _decodedFlags = [225, 8] call BIS_fnc_decodeFlags4; // [1,0,2,3,0,0,0,0]</sqf> | |||
|seealso= [[BIS_fnc_encodeFlags4]] | |||
}} | }} | ||
Latest revision as of 20:40, 24 June 2025
Description
- Description:
- Decodes a single scalar into array of unique 4-state flags (values 0,1,2,3).
- Execution:
- call
- Groups:
- Bitwise
Syntax
- Syntax:
- [encodedFlags, size] call BIS_fnc_decodeFlags4
- Parameters:
- encodedFlags: Number - non-decimal number between 0 and 16777215
- size: Number - (Optional, default -1) output size. Size -1 means output will not be resized
- Return Value:
- Number - decoded flags
Examples
- Example 1:
- Example 2:
Additional Information
- See also:
- BIS_fnc_encodeFlags4
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