2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: KoffeinFlummi
|
2015-01-12 10:02:44 +00:00
|
|
|
*
|
2015-01-11 16:42:31 +00:00
|
|
|
* Adjusts the currently zeroed distance.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: The vehicle in question
|
|
|
|
* 1: The amount to add to the distance (can be negative)
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*/
|
|
|
|
|
2015-01-12 10:02:44 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-02-04 02:20:55 +00:00
|
|
|
private ["_vehicle", "_turret", "_delta", "_turretConfig", "_min", "_max", "_distance"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
_vehicle = _this select 0;
|
2015-02-04 02:20:55 +00:00
|
|
|
_turret = _this select 1;
|
|
|
|
_delta = _this select 2;
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-02-04 02:20:55 +00:00
|
|
|
_turretConfig = [configFile >> "CfgVehicles" >> typeOf _vehicle, _turret] call EFUNC(common,getTurretConfigPath);
|
|
|
|
|
|
|
|
_min = getNumber (_turretConfig >> QGVAR(MinDistance));
|
|
|
|
_max = getNumber (_turretConfig >> QGVAR(MaxDistance));
|
|
|
|
_distance = _vehicle getVariable [format ["%1_%2", QGVAR(Distance), _turret], _min];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
_distance = _distance + _delta;
|
|
|
|
_distance = _distance min _max;
|
|
|
|
_distance = _distance max _min;
|
|
|
|
|
2015-02-04 02:20:55 +00:00
|
|
|
[_vehicle, _turret, _distance] call FUNC(keyUp);
|