2015-04-05 21:28:12 +00:00
|
|
|
/*
|
2017-06-08 13:31:51 +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"
|
|
|
|
|
|
|
|
private ["_theNumber", "_inputType", "_convertToMils", "_decimalPlaces", "_integerPlaces", "_prefix", "_return"];
|
|
|
|
|
|
|
|
_theNumber = _this select 0;
|
|
|
|
_inputType = _this select 1;
|
|
|
|
_convertToMils = _this select 2;
|
|
|
|
|
|
|
|
_decimalPlaces = -1;
|
|
|
|
_integerPlaces = -1;
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
_prefix = if (_theNumber < 0) then {"-"} else {""};
|
|
|
|
|
|
|
|
_return = [abs (_theNumber), _integerPlaces, _decimalPlaces, false] call CBA_fnc_formatNumber;
|
|
|
|
|
|
|
|
(_prefix + _return)
|