2015-01-16 12:15:14 +00:00
|
|
|
/*
|
2015-04-11 12:02:44 +00:00
|
|
|
* Author: KoffeinFlummi, Ruthberg
|
2015-01-16 12:15:14 +00:00
|
|
|
* Changes the adjustment for the current scope
|
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Arguments:
|
2015-02-10 04:22:10 +00:00
|
|
|
* 0: Unit <OBJECT>
|
2015-04-11 12:02:44 +00:00
|
|
|
* 1: Turret and Direction <NUMBER>
|
|
|
|
* 2: Major Step <BOOL>
|
2015-02-10 04:22:10 +00:00
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Return Value:
|
2015-04-11 12:02:44 +00:00
|
|
|
* Did we adjust anything? <BOOL>
|
2015-01-16 12:15:14 +00:00
|
|
|
*
|
2015-08-07 14:43:06 +00:00
|
|
|
* Example:
|
|
|
|
* [player, ELEVATION_UP, false] call ace_scopes_fnc_adjustScope
|
|
|
|
*
|
2015-02-10 04:22:10 +00:00
|
|
|
* Public: No
|
2015-01-16 12:15:14 +00:00
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
2015-02-10 02:00:40 +00:00
|
|
|
|
2015-08-08 09:25:45 +00:00
|
|
|
private ["_weaponIndex", "_zeroing", "_optic", "_opticConfig", "_verticalIncrement", "_horizontalIncrement", "_maxVertical", "_maxHorizontal", "_adjustment"];
|
2015-08-07 14:43:06 +00:00
|
|
|
|
|
|
|
params ["_unit", "_turretAndDirection", "_majorStep"];
|
2015-01-16 12:15:14 +00:00
|
|
|
|
2015-04-18 21:14:40 +00:00
|
|
|
if (!(_unit isKindOf "Man")) exitWith {false};
|
2015-04-29 07:27:49 +00:00
|
|
|
if (currentMuzzle _unit != currentWeapon _unit) exitWith {false};
|
2016-11-08 13:47:12 +00:00
|
|
|
if (!GVAR(enabled)) exitWith {false};
|
2015-04-11 12:02:44 +00:00
|
|
|
|
2015-02-12 14:57:55 +00:00
|
|
|
_weaponIndex = [_unit, currentWeapon _unit] call EFUNC(common,getWeaponIndex);
|
2015-04-11 12:02:44 +00:00
|
|
|
if (_weaponIndex < 0) exitWith {false};
|
2015-01-16 12:15:14 +00:00
|
|
|
|
2016-11-12 10:23:14 +00:00
|
|
|
_adjustment = _unit getVariable [QGVAR(Adjustment), [[0, 0, 0], [0, 0, 0], [0, 0, 0]]];
|
2015-01-16 12:15:14 +00:00
|
|
|
|
2016-11-08 13:47:12 +00:00
|
|
|
if (!(GVAR(canAdjustElevation) select _weaponIndex) && (_turretAndDirection in [ELEVATION_UP, ELEVATION_DOWN])) exitWith {false};
|
|
|
|
if (!(GVAR(canAdjustWindage) select _weaponIndex) && (_turretAndDirection in [WINDAGE_UP, WINDAGE_DOWN])) exitWith {false};
|
2015-01-16 12:15:14 +00:00
|
|
|
|
2016-05-03 00:32:44 +00:00
|
|
|
_zeroing = _adjustment select _weaponIndex;
|
2015-08-07 14:43:06 +00:00
|
|
|
_zeroing params ["_elevation", "_windage", "_zero"];
|
2015-02-10 04:22:10 +00:00
|
|
|
|
2016-11-08 13:47:12 +00:00
|
|
|
(GVAR(scopeAdjust) select _weaponIndex) params ["_maxVertical", "_verticalIncrement", "_maxHorizontal", "_horizontalIncrement"];
|
|
|
|
|
2015-05-19 18:13:31 +00:00
|
|
|
switch (_turretAndDirection) do {
|
|
|
|
case ELEVATION_UP: { _elevation = _elevation + _verticalIncrement };
|
|
|
|
case ELEVATION_DOWN: { _elevation = _elevation - _verticalIncrement };
|
|
|
|
case WINDAGE_LEFT: { _windage = _windage - _horizontalIncrement };
|
|
|
|
case WINDAGE_RIGHT: { _windage = _windage + _horizontalIncrement };
|
2015-04-11 12:02:44 +00:00
|
|
|
};
|
2015-01-16 12:15:14 +00:00
|
|
|
|
2015-04-11 12:02:44 +00:00
|
|
|
if (_majorStep) then {
|
2015-05-19 18:13:31 +00:00
|
|
|
switch (_turretAndDirection) do {
|
2015-04-14 08:47:09 +00:00
|
|
|
case ELEVATION_UP: { _elevation = ceil(_elevation) };
|
|
|
|
case ELEVATION_DOWN: { _elevation = floor(_elevation) };
|
|
|
|
case WINDAGE_LEFT: { _windage = floor(_windage) };
|
|
|
|
case WINDAGE_RIGHT: { _windage = ceil(_windage) };
|
|
|
|
};
|
2015-04-11 12:02:44 +00:00
|
|
|
};
|
2015-02-10 04:22:10 +00:00
|
|
|
|
2015-04-11 12:02:44 +00:00
|
|
|
_elevation = round(_elevation * 10) / 10;
|
|
|
|
_windage = round(_windage * 10) / 10;
|
2015-02-10 04:22:10 +00:00
|
|
|
|
2015-04-13 19:17:30 +00:00
|
|
|
if ((_elevation + _zero) < _maxVertical select 0 or (_elevation + _zero) > _maxVertical select 1) exitWith {false};
|
2015-04-11 12:02:44 +00:00
|
|
|
if (_windage < _maxHorizontal select 0 or _windage > _maxHorizontal select 1) exitWith {false};
|
2015-01-16 12:15:14 +00:00
|
|
|
|
2015-04-11 12:02:44 +00:00
|
|
|
[_unit, _elevation, _windage, _zero] call FUNC(applyScopeAdjustment);
|
2015-04-14 18:17:54 +00:00
|
|
|
|
|
|
|
true
|