Skip to content

Commit

Permalink
Merge pull request #489 from Sniperhid/master
Browse files Browse the repository at this point in the history
Improve 'CBA_fnc_formatNumber'
  • Loading branch information
Killswitch00 committed Aug 30, 2016
2 parents 369cd00 + 646e2f0 commit adf5b58
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions addons/strings/fnc_formatNumber.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,22 @@ SCRIPT(formatNumber);

params ["_number", ["_integerWidth",DEFAULT_INTEGER_WIDTH], ["_decimalPlaces",DEFAULT_DECIMAL_PLACES], ["_separateThousands",DEFAULT_SEPARATE_THOUSANDS]];

private ["_integerPart", "_string", "_numIntegerDigits", "_decimalPoint",
"_thousandsSeparator", "_basePlaces"];
private ["_integerPart"];

_decimalPoint = localize "STR_CBA_FORMAT_NUMBER_DECIMAL_POINT";
_thousandsSeparator = localize "STR_CBA_FORMAT_NUMBER_THOUSANDS_SEPARATOR";
private _decimalPoint = localize "STR_CBA_FORMAT_NUMBER_DECIMAL_POINT";
private _thousandsSeparator = localize "STR_CBA_FORMAT_NUMBER_THOUSANDS_SEPARATOR";

// Start by working out how to display the integer part of the number.
if (_decimalPlaces > 0) then {
_basePlaces = 10 ^ _decimalPlaces;
private _basePlaces = 10 ^ _decimalPlaces;
_number = round(_number * _basePlaces) / _basePlaces;
_integerPart = floor (abs _number);
} else {
_integerPart = round (abs _number);
};

_string = "";
_numIntegerDigits = 0;
private _string = "";
private _numIntegerDigits = 0;

while {_integerPart > 0} do {
if (_numIntegerDigits > 0 && {(_numIntegerDigits mod 3) == 0} && {_separateThousands}) then {
Expand Down Expand Up @@ -115,23 +114,22 @@ if (_number < 0) then {

// Add decimal digits, if necessary.
if (_decimalPlaces > 0) then {
private ["_digit", "_multiplier", "_i"];

//Use abs to prevent extra `-` signs and so floor doesn't get wrong value
_number = abs _number;

// Round number to correct for floating point precision and disable correct value.
_number = round ((_number - (floor _number)) * (10 ^ _decimalPlaces));
_string = _string + _decimalPoint;

_multiplier = 10;

for "_i" from 1 to _decimalPlaces do {
_digit = floor ((_number * _multiplier) mod 10);
private _multiplier = 10;
for "_i" from _decimalPlaces to 1 step -1 do {
private _digit = floor ((_number mod (10^_i))/10^(_i -1));

// If the digit has become infintesimal, pad to the end with zeroes.
if (!(finite _digit)) exitWith {
private "_j";

for "_j" from _i to _decimalPlaces do {
for "_j" from _decimalPlaces to _i step -1 do {
_string = _string + "0";
};
};
Expand Down

0 comments on commit adf5b58

Please sign in to comment.