2015-01-11 16:42:31 +00:00
|
|
|
/*
|
2018-01-02 17:00:01 +00:00
|
|
|
* Author: commy2, SilentSpike
|
2015-01-11 16:42:31 +00:00
|
|
|
* Transforms a number to an array of the correspondending digits.
|
|
|
|
*
|
2015-09-17 16:25:02 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: Number to 'digitize' <NUMBER>
|
|
|
|
* 1: Set the minimal length of the returned array. Useful for getting left hand zeroes. <NUMBER>, optional
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
2015-09-17 16:25:02 +00:00
|
|
|
* Return Value:
|
2015-09-18 19:46:21 +00:00
|
|
|
* Digits. The maximum count is six digits. <ARRAY>
|
2015-09-17 16:25:02 +00:00
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
|
|
|
* [5, 5] call ace_common_fnc_numberToDigits
|
|
|
|
*
|
2015-09-17 16:25:02 +00:00
|
|
|
* Public: Yes
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-09-17 16:25:02 +00:00
|
|
|
params ["_number", "_minLength"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2018-01-02 17:00:01 +00:00
|
|
|
_number = [_number min 999999, _minLength] call CBA_fnc_formatNumber;
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2018-01-02 17:00:01 +00:00
|
|
|
(_number splitString "") apply { parseNumber _x }
|