mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
314b0d23d6
*Added Gun and Ammo Data Screen *Added Atomospheric and Environmental Data Screen *Added Target Data Screen *Added support for coriolis- and spin drift *Added a second option (AT) to enter atmospheric data *Target data is now saved/restored in/from the profileNamespace *Atmosphere data is now saved/restored in/from the profileNamespace *Selected gun profile is now saved/restored in/from the profileNamespace *Fixed several bugs in the dual-/imperial unit systems *Minor bug fixes in the target range assist screen *Minor bug fix in the target speed assist screen
75 lines
2.3 KiB
Plaintext
75 lines
2.3 KiB
Plaintext
/*
|
|
* Author: Ruthberg
|
|
* Updates the result input and output fields
|
|
*
|
|
* Arguments:
|
|
* Nothing
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* call ace_atragmx_fnc_update_result
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_elevationAbs", "_elevationRel", "_elevationCur", "_windageAbs", "_windageRel", "_windageCur", "_lead", "_elevationScopeStep", "_windageScopeStep"];
|
|
_elevationAbs = (GVAR(elevationOutput) select GVAR(currentTarget));
|
|
_windageAbs = (GVAR(windageOutput) select GVAR(currentTarget));
|
|
|
|
_elevationCur = GVAR(workingMemory) select 10;
|
|
_windageCur = GVAR(workingMemory) select 11;
|
|
|
|
_elevationRel = _elevationAbs - _elevationCur;
|
|
_windageRel = _windageAbs - _windageCur;
|
|
|
|
_lead = (GVAR(leadOutput) select GVAR(currentTarget));
|
|
|
|
switch (GVAR(currentScopeUnit)) do {
|
|
case 0: {
|
|
_elevationAbs = _elevationAbs / 3.38;
|
|
_windageAbs = _windageAbs / 3.38;
|
|
|
|
_elevationRel = _elevationRel / 3.38;
|
|
_windageRel = _windageRel / 3.38;
|
|
|
|
_elevationCur = _elevationCur / 3.38;
|
|
_windageCur = _windageCur / 3.38;
|
|
};
|
|
case 2: {
|
|
_elevationAbs = _elevationAbs * 1.047;
|
|
_windageAbs = _windageAbs * 1.047;
|
|
|
|
_elevationRel = _elevationRel * 1.047;
|
|
_windageRel = _windageRel * 1.047;
|
|
|
|
_elevationCur = _elevationCur * 1.047;
|
|
_windageCur = _windageCur * 1.047;
|
|
};
|
|
case 3: {
|
|
_elevationScopeStep = (GVAR(workingMemory) select 7);
|
|
_windageScopeStep = (GVAR(workingMemory) select 8);
|
|
|
|
_elevationAbs = Round(_elevationAbs / _elevationScopeStep);
|
|
_windageAbs = Round(_windageAbs / _windageScopeStep);
|
|
|
|
_elevationRel = Round(_elevationRel / _elevationScopeStep);
|
|
_windageRel = Round(_windageRel / _windageScopeStep);
|
|
|
|
_elevationCur = Round(_elevationCur / _elevationScopeStep);
|
|
_windageCur = Round(_windageCur / _windageScopeStep);
|
|
};
|
|
};
|
|
|
|
ctrlSetText [400, Str(Round(_elevationAbs * 100) / 100)];
|
|
ctrlSetText [401, Str(Round(_elevationRel * 100) / 100)];
|
|
ctrlSetText [402, Str(Round(_elevationCur * 100) / 100)];
|
|
|
|
ctrlSetText [410, Str(Round(_windageAbs * 100) / 100)];
|
|
ctrlSetText [411, Str(Round(_windageRel * 100) / 100)];
|
|
ctrlSetText [412, Str(Round(_windageCur * 100) / 100)];
|
|
|
|
ctrlSetText [420, Str(Round(_lead * 100) / 100)];
|