mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
41 lines
833 B
Plaintext
41 lines
833 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Transforms a number to an array of the correspondending digits.
|
|
*
|
|
* Arguments:
|
|
* 0: Number to 'digitize' <NUMBER>
|
|
* 1: Set the minimal length of the returned array. Useful for getting left hand zeroes. <NUMBER>, optional
|
|
*
|
|
* Return Value:
|
|
* Digits. The maximum count is six digits. <ARRAY>
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_number", "_minLength"];
|
|
|
|
_number = _number min 999999;
|
|
_number = str _number;
|
|
|
|
private "_length";
|
|
_length = count _number;
|
|
|
|
if (isNil "_minLength") then {_minLength = _length};
|
|
|
|
_minLength = _minLength min 6;
|
|
|
|
while {_length < _minLength} do {
|
|
_number = "0" + _number;
|
|
_length = _length + 1;
|
|
};
|
|
|
|
private "_digits";
|
|
_digits = [];
|
|
|
|
for "_x" from 0 to (_length - 1) do {
|
|
_digits pushBack parseNumber (_number select [_x, 1]);
|
|
};
|
|
|
|
_digits
|