2015-04-11 21:40:46 +00:00
|
|
|
/*
|
|
|
|
* Author: Ruthberg
|
|
|
|
* Updates all gun column input fields
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* Nothing
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Nothing
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* call ace_atragmx_fnc_update_gun
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-04-06 13:51:59 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-04-16 16:14:32 +00:00
|
|
|
ctrlSetText [1000, GVAR(workingMemory) select 0];
|
2015-04-17 22:11:53 +00:00
|
|
|
if (GVAR(currentUnit) != 2) then {
|
|
|
|
ctrlSetText [100, Str(Round((GVAR(workingMemory) select 5) / 2.54 * 100) / 100)];
|
|
|
|
} else {
|
|
|
|
ctrlSetText [100, Str(Round((GVAR(workingMemory) select 5) * 100) / 100)];
|
2015-04-06 13:51:59 +00:00
|
|
|
};
|
2015-04-17 22:11:53 +00:00
|
|
|
if (GVAR(currentUnit) != 2) then {
|
|
|
|
ctrlSetText [110, Str(Round((GVAR(workingMemory) select 12) * 15.4323584))];
|
|
|
|
} else {
|
|
|
|
ctrlSetText [110, Str(Round(GVAR(workingMemory) select 12))];
|
2015-04-06 13:51:59 +00:00
|
|
|
};
|
2015-04-10 13:17:16 +00:00
|
|
|
if ((missionNamespace getVariable [QEGVAR(advanced_ballistics,enabled), false]) && (missionNamespace getVariable [QEGVAR(advanced_ballistics,AdvancedAirDragEnabled), false])) then {
|
2015-04-17 22:11:53 +00:00
|
|
|
ctrlSetText [120, Str(Round((GVAR(workingMemory) select 15) * 1000) / 1000)];
|
2015-04-06 13:51:59 +00:00
|
|
|
} else {
|
2015-04-17 22:11:53 +00:00
|
|
|
ctrlSetText [120, Str(Round((GVAR(workingMemory) select 4) * -1000 * 1000) / 1000)];
|
2015-04-06 13:51:59 +00:00
|
|
|
};
|
2015-04-17 22:11:53 +00:00
|
|
|
if (GVAR(currentUnit) != 2) then {
|
2015-04-16 16:14:32 +00:00
|
|
|
ctrlSetText [130, Str(Round((GVAR(workingMemory) select 1) * 3.2808399))];
|
2015-04-17 22:11:53 +00:00
|
|
|
} else {
|
2015-04-16 16:14:32 +00:00
|
|
|
ctrlSetText [130, Str(Round(GVAR(workingMemory) select 1))];
|
2015-04-06 13:51:59 +00:00
|
|
|
};
|
2015-04-19 09:14:18 +00:00
|
|
|
if (GVAR(currentUnit) == 1) then {
|
|
|
|
ctrlSetText [140, format["*%1", Round((GVAR(workingMemory) select 2) * 1.0936133)]];
|
2015-04-17 22:11:53 +00:00
|
|
|
} else {
|
2015-04-19 09:14:18 +00:00
|
|
|
ctrlSetText [140, Str(Round(GVAR(workingMemory) select 2))];
|
2015-04-06 13:51:59 +00:00
|
|
|
};
|
|
|
|
|
2015-04-06 18:46:33 +00:00
|
|
|
[] call FUNC(update_scope_unit);
|