2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2017-06-08 13:31:51 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Unknown <UNKNOWN>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [?] call ace_vector_fnc_showFallOfShot
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2015-01-17 21:49:06 +00:00
|
|
|
GVAR(FOSState) = _this select 0;
|
2015-01-17 18:25:12 +00:00
|
|
|
|
|
|
|
disableSerialization;
|
2016-09-04 14:44:22 +00:00
|
|
|
private _dlgVector = GETUVAR(ACE_dlgVector,displayNull);
|
2015-01-17 18:25:12 +00:00
|
|
|
|
2016-09-04 14:44:22 +00:00
|
|
|
private _fosData = GVAR(FOSData);
|
2015-01-17 18:25:12 +00:00
|
|
|
|
2015-01-17 21:49:06 +00:00
|
|
|
if !(_this select 0) then {
|
2015-04-06 14:18:59 +00:00
|
|
|
// of ordinate
|
2016-09-04 14:44:22 +00:00
|
|
|
private _digits = [_fosData, 1] call FUNC(convertToTexturesFOS);
|
2015-01-17 18:25:12 +00:00
|
|
|
|
2019-05-27 15:46:07 +00:00
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_0) ctrlSetText (_digits select 0);
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_1) ctrlSetText (_digits select 1);
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_2) ctrlSetText (_digits select 2);
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_3) ctrlSetText (_digits select 3);
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_4) ctrlSetText (_digits select 4);
|
2015-01-17 18:25:12 +00:00
|
|
|
|
2015-04-06 14:18:59 +00:00
|
|
|
// of abscissa
|
|
|
|
_digits = [_fosData, 0] call FUNC(convertToTexturesFOS);
|
2015-01-17 18:25:12 +00:00
|
|
|
|
2019-05-27 15:46:07 +00:00
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_5) ctrlSetText (_digits select 0);
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_6) ctrlSetText (_digits select 1);
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_7) ctrlSetText (_digits select 2);
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_8) ctrlSetText (_digits select 3);
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_9) ctrlSetText (_digits select 4);
|
2015-01-17 18:25:12 +00:00
|
|
|
|
2015-01-17 21:49:06 +00:00
|
|
|
} else {
|
|
|
|
// applicate
|
2016-09-04 14:44:22 +00:00
|
|
|
private _digits = [_fosData, 2] call FUNC(convertToTexturesFOS);
|
2015-01-17 18:25:12 +00:00
|
|
|
|
2019-05-27 15:46:07 +00:00
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_0) ctrlSetText (_digits select 0);
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_1) ctrlSetText (_digits select 1);
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_2) ctrlSetText (_digits select 2);
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_3) ctrlSetText (_digits select 3);
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_4) ctrlSetText (_digits select 4);
|
2015-01-17 18:25:12 +00:00
|
|
|
|
2015-01-17 21:49:06 +00:00
|
|
|
// nothing
|
2019-05-27 15:46:07 +00:00
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_5) ctrlSetText "";
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_6) ctrlSetText "";
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_7) ctrlSetText "";
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_8) ctrlSetText "";
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_9) ctrlSetText "";
|
2015-01-17 18:25:12 +00:00
|
|
|
|
|
|
|
};
|
2015-04-12 11:56:01 +00:00
|
|
|
|
|
|
|
[GVAR(illuminate)] call FUNC(illuminate);
|