2015-04-07 15:58:54 +00:00
|
|
|
/*
|
|
|
|
* Author: Ruthberg
|
|
|
|
* Updates the Kestrel 4500 dialog text boxes.
|
|
|
|
*
|
|
|
|
* Arguments:
|
2015-08-13 23:55:54 +00:00
|
|
|
* None
|
2015-04-07 15:58:54 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-13 23:55:54 +00:00
|
|
|
* None
|
2015-04-07 15:58:54 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-04-07 15:43:54 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-05-16 18:26:52 +00:00
|
|
|
#define __dsp (uiNamespace getVariable "Kestrel4500_Display")
|
|
|
|
#define __ctrlCenterLine3 (__dsp displayCtrl 74602)
|
|
|
|
#define __ctrlCenterLine4 (__dsp displayCtrl 74603)
|
|
|
|
|
2015-04-07 15:43:54 +00:00
|
|
|
private ["_outputData"];
|
|
|
|
|
|
|
|
_outputData = [] call FUNC(generateOutputData);
|
|
|
|
|
2015-08-13 23:55:54 +00:00
|
|
|
{
|
2015-11-30 16:25:16 +00:00
|
|
|
ctrlSetText [_x , _outputData select _forEachIndex];
|
2015-08-13 23:55:54 +00:00
|
|
|
} forEach [74100, 74200, 74201, 74300, 74301, 74302, 74303, 74304, 74305, 74400, 74401, 74500, 74600, 74601, 74602, 74603, 74604, 74605];
|
2015-04-07 15:43:54 +00:00
|
|
|
|
2015-05-16 18:26:52 +00:00
|
|
|
if (GVAR(referenceHeadingMenu) == 1) then {
|
|
|
|
if (GVAR(referenceHeadingAutoSet)) then {
|
|
|
|
__ctrlCenterLine3 ctrlSetTextColor [0, 0, 0, 0.6];
|
|
|
|
__ctrlCenterLine4 ctrlSetTextColor [0, 0, 0, 1.0];
|
|
|
|
} else {
|
|
|
|
__ctrlCenterLine3 ctrlSetTextColor [0, 0, 0, 1.0];
|
|
|
|
__ctrlCenterLine4 ctrlSetTextColor [0, 0, 0, 0.6];
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
__ctrlCenterLine3 ctrlSetTextColor [0, 0, 0, 1.0];
|
|
|
|
__ctrlCenterLine4 ctrlSetTextColor [0, 0, 0, 1.0];
|
|
|
|
};
|