mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
81e02a7336
* Everything * Fixed missing ; * Fix missing ; and double private * Fixed cannot isNull on number * Turn _temparture back to isNil * Fix error from merge
77 lines
1.8 KiB
Plaintext
77 lines
1.8 KiB
Plaintext
/*
|
|
* 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
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_theNumber", "_inputType", "_convertToMils"];
|
|
|
|
private _decimalPlaces = -1;
|
|
private _integerPlaces = -1;
|
|
|
|
switch (toLower _inputType) do {
|
|
case ("meters"): {
|
|
_decimalPlaces = 0;
|
|
_integerPlaces = 1;
|
|
};
|
|
case ("metersprecise"): {
|
|
_decimalPlaces = 1;
|
|
_integerPlaces = 1;
|
|
};
|
|
case ("meters4"): {
|
|
_decimalPlaces = 0;
|
|
_integerPlaces = 4;
|
|
};
|
|
case ("deg3precise"): {
|
|
_decimalPlaces = 2;
|
|
_integerPlaces = 3;
|
|
};
|
|
case ("mil"): {
|
|
_decimalPlaces = 0;
|
|
_integerPlaces = 1;
|
|
if (_convertToMils) then {
|
|
_theNumber = _theNumber * (6400 / 360);
|
|
};
|
|
};
|
|
case ("mil4"): {
|
|
_decimalPlaces = 0;
|
|
_integerPlaces = 4;
|
|
if (_convertToMils) then {
|
|
_theNumber = _theNumber * (6400 / 360);
|
|
};
|
|
};
|
|
case ("milprecise"): {
|
|
_decimalPlaces = 1;
|
|
_integerPlaces = 1;
|
|
if (_convertToMils) then {
|
|
_theNumber = _theNumber * (6400 / 360);
|
|
};
|
|
};
|
|
case ("sec"): {
|
|
_decimalPlaces = 1;
|
|
_integerPlaces = 1;
|
|
};
|
|
default {systemChat format ["badtype %1", _inputType];};
|
|
};
|
|
|
|
//CBA_fnc_formatNumber is silly: [-9.58545, 1, 1, false] call CBA_fnc_formatNumber == "-9.-6"
|
|
|
|
private _prefix = if (_theNumber < 0) then {"-"} else {""};
|
|
|
|
private _return = [abs (_theNumber), _integerPlaces, _decimalPlaces, false] call CBA_fnc_formatNumber;
|
|
|
|
(_prefix + _return)
|