2015-01-11 16:42:31 +00:00
|
|
|
/*
|
2015-02-02 22:05:03 +00:00
|
|
|
* Author: Garth 'L-H' de Wet
|
|
|
|
* Displays the altimeter on screen.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: unit <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [player] call ACE_Parachute_fnc_showAltimeter
|
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
2015-02-02 20:52:08 +00:00
|
|
|
#include "script_component.hpp"
|
2015-04-10 22:14:06 +00:00
|
|
|
|
2015-10-25 00:07:23 +00:00
|
|
|
params ["_unit"];
|
2015-04-10 22:14:06 +00:00
|
|
|
|
|
|
|
(["ACE_Altimeter"] call BIS_fnc_rscLayer) cutRsc ["ACE_Altimeter", "PLAIN", 0, true];
|
2015-02-02 20:52:08 +00:00
|
|
|
if (isNull (uiNamespace getVariable ["ACE_Altimeter", displayNull])) exitWith {};
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-02-02 21:58:24 +00:00
|
|
|
GVAR(AltimeterActive) = true;
|
2015-04-10 22:14:06 +00:00
|
|
|
|
2015-02-02 21:58:24 +00:00
|
|
|
[{
|
2015-11-30 15:45:20 +00:00
|
|
|
if (!GVAR(AltimeterActive)) exitWith {[_this select 1] call CALLSTACK(CBA_fnc_removePerFrameEventHandler)};
|
2015-04-06 16:22:43 +00:00
|
|
|
disableSerialization;
|
2015-10-25 00:07:23 +00:00
|
|
|
(_this select 0) params ["_display", "_unit", "_oldHeight", "_prevTime"];
|
2015-11-30 15:45:20 +00:00
|
|
|
if !("ACE_Altimeter" in assignedItems _unit) exitWith {[_this select 1] call CALLSTACK(CBA_fnc_removePerFrameEventHandler); call FUNC(hideAltimeter)};
|
2015-04-10 22:14:06 +00:00
|
|
|
|
|
|
|
private ["_height", "_hour", "_minute", "_descentRate","_HeightText", "_DecendRate", "_TimeText", "_curTime", "_timeDiff"];
|
2015-02-02 21:58:24 +00:00
|
|
|
|
2015-04-06 16:22:43 +00:00
|
|
|
_HeightText = _display displayCtrl 1100;
|
|
|
|
_DecendRate = _display displayCtrl 1000;
|
|
|
|
_TimeText = _display displayCtrl 1001;
|
|
|
|
_hour = floor daytime;
|
|
|
|
_minute = floor ((daytime - _hour) * 60);
|
2015-02-02 21:58:24 +00:00
|
|
|
|
2015-10-25 00:07:23 +00:00
|
|
|
_height = ((getPosASL _unit) select 2) + EGVAR(common,mapAltitude);
|
2015-05-21 16:42:44 +00:00
|
|
|
_curTime = ACE_time;
|
2015-04-10 22:14:06 +00:00
|
|
|
_timeDiff = _curTime - _prevTime;
|
|
|
|
_descentRate = if(_timeDiff > 0) then {floor((_oldHeight - _height) / _timeDiff)} else {0};
|
2015-02-02 21:58:24 +00:00
|
|
|
|
2015-04-06 16:22:43 +00:00
|
|
|
_TimeText ctrlSetText (format ["%1:%2",[_hour, 2] call EFUNC(common,numberToDigitsString),[_minute, 2] call EFUNC(common,numberToDigitsString)]);
|
|
|
|
_HeightText ctrlSetText (format ["%1", floor(_height)]);
|
|
|
|
_DecendRate ctrlSetText (format ["%1", _descentRate max 0]);
|
2015-02-02 21:58:24 +00:00
|
|
|
|
2015-04-06 16:22:43 +00:00
|
|
|
(_this select 0) set [2, _height];
|
|
|
|
(_this select 0) set [3, _curTime];
|
2015-08-04 07:34:31 +00:00
|
|
|
}, 0.2, [uiNamespace getVariable ["ACE_Altimeter", displayNull], _unit,floor ((getPosASL _unit) select 2), ACE_time]] call CALLSTACK(CBA_fnc_addPerFrameHandler);
|