ACE3/addons/mk6mortar/functions/fnc_dev_formatNumber.sqf

77 lines
1.8 KiB
Plaintext
Raw Normal View History

2015-04-05 21:28:12 +00:00
/*
* Author: Pabst Mirror
* Converts numbers into nicely formated strings.
*
* Arguments:
* 0: Input number <NUMBER>
* 1: Output type (see case statement) <STRING>
* 2: If output type is mil, convert input type from deg->mil <BOOL>
*
* Return Value:
* Formatted number <STRING>
*
* Example:
* [45, "mil4", true] call ace_mk6mortar_fnc_dev_formatNumber = "0800"
*
* Public: No
2015-04-06 06:05:28 +00:00
*/
2015-04-05 21:28:12 +00:00
#include "script_component.hpp"
params ["_theNumber", "_inputType", "_convertToMils"];
2015-04-05 21:28:12 +00:00
private _decimalPlaces = -1;
private _integerPlaces = -1;
2015-04-05 21:28:12 +00:00
switch (toLower _inputType) do {
case ("meters"): {
2015-04-06 06:05:28 +00:00
_decimalPlaces = 0;
_integerPlaces = 1;
};
2015-04-05 21:28:12 +00:00
case ("metersprecise"): {
2015-04-06 06:05:28 +00:00
_decimalPlaces = 1;
_integerPlaces = 1;
};
2015-04-05 21:28:12 +00:00
case ("meters4"): {
2015-04-06 06:05:28 +00:00
_decimalPlaces = 0;
_integerPlaces = 4;
};
2015-04-05 21:28:12 +00:00
case ("deg3precise"): {
2015-04-06 06:05:28 +00:00
_decimalPlaces = 2;
_integerPlaces = 3;
};
2015-04-05 21:28:12 +00:00
case ("mil"): {
2015-04-06 06:05:28 +00:00
_decimalPlaces = 0;
_integerPlaces = 1;
if (_convertToMils) then {
_theNumber = _theNumber * (6400 / 360);
};
2015-04-05 21:28:12 +00:00
};
case ("mil4"): {
2015-04-06 06:05:28 +00:00
_decimalPlaces = 0;
_integerPlaces = 4;
if (_convertToMils) then {
_theNumber = _theNumber * (6400 / 360);
};
2015-04-05 21:28:12 +00:00
};
case ("milprecise"): {
2015-04-06 06:05:28 +00:00
_decimalPlaces = 1;
_integerPlaces = 1;
if (_convertToMils) then {
_theNumber = _theNumber * (6400 / 360);
};
2015-04-05 21:28:12 +00:00
};
case ("sec"): {
2015-04-06 06:05:28 +00:00
_decimalPlaces = 1;
_integerPlaces = 1;
};
default {systemChat format ["badtype %1", _inputType];};
2015-04-05 21:28:12 +00:00
};
2015-04-08 00:30:07 +00:00
//CBA_fnc_formatNumber is silly: [-9.58545, 1, 1, false] call CBA_fnc_formatNumber == "-9.-6"
2015-04-05 21:28:12 +00:00
private _prefix = if (_theNumber < 0) then {"-"} else {""};
2015-04-05 21:28:12 +00:00
private _return = [abs (_theNumber), _integerPlaces, _decimalPlaces, false] call CBA_fnc_formatNumber;
2015-04-05 21:28:12 +00:00
(_prefix + _return)