mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
87cfd9632e
* Speedlimit - Stop calling setCruiseControl every frame * Added TRACE logging for cruiseControl changes
69 lines
2.0 KiB
Plaintext
69 lines
2.0 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: commy2
|
|
* Toggle speed limiter for Driver in Vehicle.
|
|
*
|
|
* Arguments:
|
|
* 0: Driver <OBJECT>
|
|
* 1: Vehicle <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player, car] call ace_vehicles_fnc_speedLimiter
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_driver", "_vehicle"];
|
|
|
|
if (GVAR(isSpeedLimiter)) exitWith {
|
|
[localize LSTRING(Off)] call EFUNC(common,displayTextStructured);
|
|
playSound "ACE_Sound_Click";
|
|
_vehicle setCruiseControl [0, false];
|
|
GVAR(isSpeedLimiter) = false;
|
|
};
|
|
|
|
(getCruiseControl _vehicle) params ["_speedLimit"];
|
|
if (_speedLimit != 0) exitWith { TRACE_1("speed limit set by external source",_speedLimit); };
|
|
|
|
[localize LSTRING(On)] call EFUNC(common,displayTextStructured);
|
|
playSound "ACE_Sound_Click";
|
|
GVAR(isSpeedLimiter) = true;
|
|
|
|
GVAR(speedLimit) = round (speed _vehicle max 5);
|
|
|
|
[{
|
|
params ["_args", "_idPFH"];
|
|
_args params ["_driver", "_vehicle"];
|
|
|
|
if (GVAR(isUAV)) then {
|
|
private _uavControll = UAVControl _vehicle;
|
|
if ((_uavControll select 0) != _driver || _uavControll select 1 != "DRIVER") then {
|
|
GVAR(isSpeedLimiter) = false;
|
|
TRACE_1("UAV driver changed, disabling speedlimit",_vehicle);
|
|
_vehicle setCruiseControl [0, false];
|
|
};
|
|
} else {
|
|
if (_driver != driver _vehicle) then {
|
|
GVAR(isSpeedLimiter) = false;
|
|
TRACE_3("Vehicle driver changed, disabling speedlimit",_driver,driver _vehicle,_vehicle);
|
|
_vehicle setCruiseControl [0, false];
|
|
};
|
|
};
|
|
|
|
if (!GVAR(isSpeedLimiter)) exitWith {
|
|
_vehicle setCruiseControl [0, false];
|
|
[_idPFH] call CBA_fnc_removePerFrameHandler;
|
|
};
|
|
|
|
getCruiseControl _vehicle params ["_currentSpeedLimit"];
|
|
if (round _currentSpeedLimit != GVAR(speedLimit)) then {
|
|
TRACE_2("Updating speed limit",GVAR(speedLimit),_vehicle);
|
|
_vehicle setCruiseControl [GVAR(speedLimit), false];
|
|
};
|
|
|
|
|
|
}, 0, [_driver, _vehicle]] call CBA_fnc_addPerFrameHandler;
|