mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
62 lines
1.9 KiB
Plaintext
62 lines
1.9 KiB
Plaintext
|
// by commy2
|
||
|
|
||
|
private["_dlgVector", "_ctrlVectorCenter", "_ctrlDigit1", "_ctrlDigit2", "_ctrlDigit3", "_ctrlDigit4", "_ctrlDigit5", "_ctrlDigit6", "_ctrlDigit7", "_ctrlDigit8", "_exit", "_time"];
|
||
|
|
||
|
disableSerialization;
|
||
|
_dlgVector = uiNamespace getVariable "AGM_dlgVector";
|
||
|
_ctrlVectorCenter = _dlgVector displayCtrl 1;
|
||
|
_ctrlDigit1 = _dlgVector displayCtrl 11;
|
||
|
_ctrlDigit2 = _dlgVector displayCtrl 12;
|
||
|
_ctrlDigit3 = _dlgVector displayCtrl 13;
|
||
|
_ctrlDigit4 = _dlgVector displayCtrl 14;
|
||
|
_ctrlDigit5 = _dlgVector displayCtrl 15;
|
||
|
_ctrlDigit6 = _dlgVector displayCtrl 16;
|
||
|
_ctrlDigit7 = _dlgVector displayCtrl 17;
|
||
|
_ctrlDigit8 = _dlgVector displayCtrl 18;
|
||
|
|
||
|
_ctrlVectorCenter ctrlSetText "\AGM_Vector\rsc\Vector_Center.paa";
|
||
|
|
||
|
_time = -1;
|
||
|
_exit = false;
|
||
|
waitUntil {
|
||
|
if (time > _time + 0.5) then {
|
||
|
_direction = call AGM_Vector_fnc_getDirection;
|
||
|
_azimuth = _direction select 0;
|
||
|
|
||
|
_digits = _azimuth call AGM_Vector_fnc_convertDegree;
|
||
|
_ctrlDigit5 ctrlSetText (_digits select 0);
|
||
|
_ctrlDigit6 ctrlSetText (_digits select 1);
|
||
|
_ctrlDigit7 ctrlSetText (_digits select 2);
|
||
|
_ctrlDigit8 ctrlSetText (_digits select 3);
|
||
|
|
||
|
_time = time;
|
||
|
};
|
||
|
if (AGM_vectorKey select 1) then {_exit = true};
|
||
|
!(AGM_vectorKey select 0) || {_exit}
|
||
|
};
|
||
|
if (_exit) exitWith {
|
||
|
waitUntil {
|
||
|
if (time > _time + 0.5) then {
|
||
|
_direction = call AGM_Vector_fnc_getDirection;
|
||
|
_azimuth = _direction select 0;
|
||
|
|
||
|
_digits = _azimuth call AGM_Vector_fnc_convertDegree;
|
||
|
_ctrlDigit5 ctrlSetText (_digits select 0);
|
||
|
_ctrlDigit6 ctrlSetText (_digits select 1);
|
||
|
_ctrlDigit7 ctrlSetText (_digits select 2);
|
||
|
_ctrlDigit8 ctrlSetText (_digits select 3);
|
||
|
|
||
|
_time = time;
|
||
|
};
|
||
|
!(AGM_vectorKey select 1)
|
||
|
};
|
||
|
_ctrlDigit5 ctrlSetText "";
|
||
|
_ctrlDigit6 ctrlSetText "";
|
||
|
_ctrlDigit7 ctrlSetText "";
|
||
|
_ctrlDigit8 ctrlSetText "";
|
||
|
AGM_Vector_scriptHandle = 0 spawn AGM_Vector_fnc_modeRelativeAzimuthDistance;
|
||
|
};
|
||
|
_ctrlVectorCenter ctrlShow false;
|
||
|
|
||
|
AGM_isVectorReady = true;
|