mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Altimeter fix, division by zero when no time has passed (game paused, etc.)
This commit is contained in:
parent
4188893839
commit
e7b5218d52
@ -14,19 +14,24 @@
|
|||||||
* Public: Yes
|
* Public: Yes
|
||||||
*/
|
*/
|
||||||
#include "script_component.hpp"
|
#include "script_component.hpp"
|
||||||
|
|
||||||
private ["_unit"];
|
private ["_unit"];
|
||||||
|
|
||||||
_unit = _this select 0;
|
_unit = _this select 0;
|
||||||
(["ACE_Altimeter"] call BIS_fnc_rscLayer) cutRsc ["ACE_Altimeter", "PLAIN",0,true];
|
|
||||||
|
(["ACE_Altimeter"] call BIS_fnc_rscLayer) cutRsc ["ACE_Altimeter", "PLAIN", 0, true];
|
||||||
if (isNull (uiNamespace getVariable ["ACE_Altimeter", displayNull])) exitWith {};
|
if (isNull (uiNamespace getVariable ["ACE_Altimeter", displayNull])) exitWith {};
|
||||||
|
|
||||||
GVAR(AltimeterActive) = true;
|
GVAR(AltimeterActive) = true;
|
||||||
|
|
||||||
[{
|
[{
|
||||||
if (!GVAR(AltimeterActive)) exitWith {[_this select 1] call CALLSTACK(cba_fnc_removePerFrameEventHandler);};
|
if (!GVAR(AltimeterActive)) exitWith {[_this select 1] call CALLSTACK(cba_fnc_removePerFrameEventHandler)};
|
||||||
disableSerialization;
|
disableSerialization;
|
||||||
EXPLODE_4_PVT(_this select 0,_display,_unit,_oldHeight,_prevTime);
|
EXPLODE_4_PVT(_this select 0,_display,_unit,_oldHeight,_prevTime);
|
||||||
if !("ACE_Altimeter" in assignedItems _unit) exitWith {[_this select 1] call CALLSTACK(cba_fnc_removePerFrameEventHandler);call FUNC(hideAltimeter);};
|
if !("ACE_Altimeter" in assignedItems _unit) exitWith {[_this select 1] call CALLSTACK(cba_fnc_removePerFrameEventHandler); call FUNC(hideAltimeter)};
|
||||||
|
|
||||||
|
private ["_height", "_hour", "_minute", "_descentRate","_HeightText", "_DecendRate", "_TimeText", "_curTime", "_timeDiff"];
|
||||||
|
|
||||||
private ["_height", "_hour", "_minute", "_descentRate","_HeightText", "_DecendRate", "_TimeText", "_curTime"];
|
|
||||||
_HeightText = _display displayCtrl 1100;
|
_HeightText = _display displayCtrl 1100;
|
||||||
_DecendRate = _display displayCtrl 1000;
|
_DecendRate = _display displayCtrl 1000;
|
||||||
_TimeText = _display displayCtrl 1001;
|
_TimeText = _display displayCtrl 1001;
|
||||||
@ -35,7 +40,8 @@ GVAR(AltimeterActive) = true;
|
|||||||
|
|
||||||
_height = (getPosASL _unit) select 2;
|
_height = (getPosASL _unit) select 2;
|
||||||
_curTime = time;
|
_curTime = time;
|
||||||
_descentRate = floor ((_oldHeight - _height) / (_curTime - _prevTime));
|
_timeDiff = _curTime - _prevTime;
|
||||||
|
_descentRate = if(_timeDiff > 0) then {floor((_oldHeight - _height) / _timeDiff)} else {0};
|
||||||
|
|
||||||
_TimeText ctrlSetText (format ["%1:%2",[_hour, 2] call EFUNC(common,numberToDigitsString),[_minute, 2] call EFUNC(common,numberToDigitsString)]);
|
_TimeText ctrlSetText (format ["%1:%2",[_hour, 2] call EFUNC(common,numberToDigitsString),[_minute, 2] call EFUNC(common,numberToDigitsString)]);
|
||||||
_HeightText ctrlSetText (format ["%1", floor(_height)]);
|
_HeightText ctrlSetText (format ["%1", floor(_height)]);
|
||||||
|
Loading…
Reference in New Issue
Block a user