2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
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-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
|
|
|
|
2017-12-02 17:02:16 +00:00
|
|
|
"ACE_Altimeter" 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
|
|
|
|
2018-12-06 22:36:35 +00:00
|
|
|
private _display = uiNamespace getVariable ["ACE_Altimeter", displayNull];
|
|
|
|
private _HeightText = _display displayCtrl 1100;
|
|
|
|
private _DecendRate = _display displayCtrl 1000;
|
|
|
|
private _TimeText = _display displayCtrl 1001;
|
|
|
|
|
2015-02-02 21:58:24 +00:00
|
|
|
[{
|
2018-12-06 22:36:35 +00:00
|
|
|
_this params ["_args", "_pfhID"];
|
|
|
|
_args params ["_unit", "_oldHeight", "_prevTime", "_HeightText", "_DecendRate", "_TimeText"];
|
|
|
|
|
|
|
|
if !(GVAR(AltimeterActive)) exitWith {
|
2022-12-08 21:37:33 +00:00
|
|
|
_pfhID call CBA_fnc_removePerFrameHandler;
|
2018-12-06 22:36:35 +00:00
|
|
|
};
|
2015-04-10 22:14:06 +00:00
|
|
|
|
2018-12-06 22:36:35 +00:00
|
|
|
if !("ACE_Altimeter" in assignedItems _unit) exitWith {
|
|
|
|
call FUNC(hideAltimeter);
|
2022-12-08 21:37:33 +00:00
|
|
|
_pfhID call CBA_fnc_removePerFrameHandler;
|
2018-12-06 22:36:35 +00:00
|
|
|
};
|
2017-12-02 17:02:16 +00:00
|
|
|
|
2017-10-10 14:39:59 +00:00
|
|
|
private _hour = floor daytime;
|
|
|
|
private _minute = floor ((daytime - _hour) * 60);
|
|
|
|
private _curTime = CBA_missionTime;
|
|
|
|
private _timeDiff = _curTime - _prevTime;
|
2018-12-06 22:36:35 +00:00
|
|
|
|
|
|
|
private _height = ((getPosASL _unit) select 2) + EGVAR(common,mapAltitude);
|
|
|
|
private _descentRate = if (_timeDiff > 0) then {
|
|
|
|
floor((_oldHeight - _height) / _timeDiff)
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
};
|
2015-02-02 21:58:24 +00:00
|
|
|
|
2018-01-02 17:00:01 +00:00
|
|
|
_TimeText ctrlSetText (format ["%1:%2", [_hour, 2] call CBA_fnc_formatNumber, [_minute, 2] call CBA_fnc_formatNumber]);
|
2017-12-02 17:02:16 +00:00
|
|
|
_HeightText ctrlSetText (format ["%1", floor _height]);
|
2015-04-06 16:22:43 +00:00
|
|
|
_DecendRate ctrlSetText (format ["%1", _descentRate max 0]);
|
2015-02-02 21:58:24 +00:00
|
|
|
|
2018-12-06 22:36:35 +00:00
|
|
|
(_this select 0) set [1, _height];
|
|
|
|
(_this select 0) set [2, _curTime];
|
|
|
|
}, 0.2, [
|
|
|
|
_unit,
|
|
|
|
floor ((getPosASL _unit) select 2),
|
|
|
|
CBA_missionTime,
|
|
|
|
_HeightText,
|
|
|
|
_DecendRate,
|
|
|
|
_TimeText
|
|
|
|
]] call CBA_fnc_addPerFrameHandler;
|