ACE3/addons/scopes/XEH_postInit.sqf

157 lines
5.0 KiB
Plaintext
Raw Normal View History

/*
* Author: KoffeinFlummi, esteldunedain, Ruthberg
*
2015-01-18 20:01:07 +00:00
* Watches for scope changes.
* Defines key bindings
*
*/
#include "script_component.hpp"
if (!hasInterface) exitWith {};
// Check inventory when it changes
["playerInventoryChanged", FUNC(inventoryCheck)] call CBA_fnc_addEventHandler;
// Instantly hide knobs when scoping in
["cameraViewChanged", {
EXPLODE_2_PVT(_this,_player,_newCameraView);
if (_newCameraView == "GUNNER") then {
private "_layer";
_layer = [QGVAR(Zeroing)] call BIS_fnc_rscLayer;
2015-01-18 20:01:07 +00:00
_layer cutText ["", "PLAIN", 0];
if !(isNil QGVAR(fadePFH)) then {
2015-11-30 15:45:20 +00:00
[GVAR(fadePFH)] call CBA_fnc_removePerFrameHandler;
GVAR(fadePFH) = nil;
};
};
}] call CBA_fnc_addEventHandler;
2015-01-18 20:01:07 +00:00
// Add keybinds
2015-05-28 19:59:04 +00:00
["ACE3 Scope Adjustment", QGVAR(AdjustUpMinor), localize LSTRING(AdjustUpMinor),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
2016-05-20 02:39:15 +00:00
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if (!([ACE_player] call CBA_fnc_canUseWeapon)) exitWith {false};
2016-05-20 02:39:15 +00:00
2015-03-05 07:32:26 +00:00
[ACE_player] call FUNC(inventoryCheck);
2015-04-30 20:02:20 +00:00
2015-03-05 07:32:26 +00:00
// Statement
[ACE_player, ELEVATION_UP, MINOR_INCREMENT] call FUNC(adjustScope);
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
2015-11-30 15:45:20 +00:00
[201, [false, false, false]], true] call CBA_fnc_addKeybind;
2015-01-18 20:01:07 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Scope Adjustment", QGVAR(AdjustDownMinor), localize LSTRING(AdjustDownMinor),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
2016-05-20 02:39:15 +00:00
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if (!([ACE_player] call CBA_fnc_canUseWeapon)) exitWith {false};
2016-05-20 02:39:15 +00:00
2015-03-05 07:32:26 +00:00
[ACE_player] call FUNC(inventoryCheck);
2015-01-18 20:01:07 +00:00
2015-03-05 07:32:26 +00:00
// Statement
[ACE_player, ELEVATION_DOWN, MINOR_INCREMENT] call FUNC(adjustScope);
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
2015-11-30 15:45:20 +00:00
[209, [false, false, false]], true] call CBA_fnc_addKeybind;
2015-01-18 20:01:07 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Scope Adjustment", QGVAR(AdjustLeftMinor), localize LSTRING(AdjustLeftMinor),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
2016-05-20 02:39:15 +00:00
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if (!([ACE_player] call CBA_fnc_canUseWeapon)) exitWith {false};
2016-05-20 02:39:15 +00:00
2015-03-05 07:32:26 +00:00
[ACE_player] call FUNC(inventoryCheck);
2015-01-18 20:01:07 +00:00
2015-03-05 07:32:26 +00:00
// Statement
[ACE_player, WINDAGE_LEFT, MINOR_INCREMENT] call FUNC(adjustScope);
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
2015-11-30 15:45:20 +00:00
[209, [false, true, false]], true] call CBA_fnc_addKeybind;
2015-01-18 20:01:07 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Scope Adjustment", QGVAR(AdjustRightMinor), localize LSTRING(AdjustRightMinor),
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
2016-05-20 02:39:15 +00:00
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
if (!([ACE_player] call CBA_fnc_canUseWeapon)) exitWith {false};
2016-05-20 02:39:15 +00:00
2015-03-05 07:32:26 +00:00
[ACE_player] call FUNC(inventoryCheck);
2015-01-18 20:01:07 +00:00
2015-03-05 07:32:26 +00:00
// Statement
[ACE_player, WINDAGE_RIGHT, MINOR_INCREMENT] call FUNC(adjustScope);
2015-03-05 07:32:26 +00:00
},
2015-03-05 08:51:24 +00:00
{false},
2015-11-30 15:45:20 +00:00
[201, [false, true, false]], true] call CBA_fnc_addKeybind;
2015-04-02 20:40:21 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Scope Adjustment", QGVAR(AdjustUpMajor), localize LSTRING(AdjustUpMajor),
2015-04-10 17:41:34 +00:00
{
// Conditions: canInteract
2016-05-20 02:39:15 +00:00
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-04-10 17:41:34 +00:00
// Conditions: specific
if (!([ACE_player] call CBA_fnc_canUseWeapon)) exitWith {false};
2016-05-20 02:39:15 +00:00
2015-04-10 17:41:34 +00:00
[ACE_player] call FUNC(inventoryCheck);
// Statement
[ACE_player, ELEVATION_UP, MAJOR_INCREMENT] call FUNC(adjustScope);
2015-04-10 17:41:34 +00:00
},
{false},
2015-11-30 15:45:20 +00:00
[201, [true, false, false]], true] call CBA_fnc_addKeybind;
2015-04-10 17:41:34 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Scope Adjustment", QGVAR(AdjustDownMajor), localize LSTRING(AdjustDownMajor),
2015-04-10 17:41:34 +00:00
{
// Conditions: canInteract
2016-05-20 02:39:15 +00:00
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-04-10 17:41:34 +00:00
// Conditions: specific
if (!([ACE_player] call CBA_fnc_canUseWeapon)) exitWith {false};
2016-05-20 02:39:15 +00:00
2015-04-10 17:41:34 +00:00
[ACE_player] call FUNC(inventoryCheck);
// Statement
[ACE_player, ELEVATION_DOWN, MAJOR_INCREMENT] call FUNC(adjustScope);
2015-04-10 17:41:34 +00:00
},
{false},
2015-11-30 15:45:20 +00:00
[209, [true, false, false]], true] call CBA_fnc_addKeybind;
2015-04-10 17:41:34 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Scope Adjustment", QGVAR(AdjustLeftMajor), localize LSTRING(AdjustLeftMajor),
2015-04-10 17:41:34 +00:00
{
// Conditions: canInteract
2016-05-20 02:39:15 +00:00
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-04-10 17:41:34 +00:00
// Conditions: specific
if (!([ACE_player] call CBA_fnc_canUseWeapon)) exitWith {false};
2016-05-20 02:39:15 +00:00
2015-04-10 17:41:34 +00:00
[ACE_player] call FUNC(inventoryCheck);
// Statement
[ACE_player, WINDAGE_LEFT, MAJOR_INCREMENT] call FUNC(adjustScope);
2015-04-10 17:41:34 +00:00
},
{false},
2015-11-30 15:45:20 +00:00
[209, [true, true, false]], true] call CBA_fnc_addKeybind;
2015-04-10 17:41:34 +00:00
2015-05-28 19:59:04 +00:00
["ACE3 Scope Adjustment", QGVAR(AdjustRightMajor), localize LSTRING(AdjustRightMajor),
2015-04-10 17:41:34 +00:00
{
// Conditions: canInteract
2016-05-20 02:39:15 +00:00
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-04-10 17:41:34 +00:00
// Conditions: specific
if (!([ACE_player] call CBA_fnc_canUseWeapon)) exitWith {false};
2016-05-20 02:39:15 +00:00
2015-04-10 17:41:34 +00:00
[ACE_player] call FUNC(inventoryCheck);
// Statement
[ACE_player, WINDAGE_RIGHT, MAJOR_INCREMENT] call FUNC(adjustScope);
2015-04-10 17:41:34 +00:00
},
{false},
2015-11-30 15:45:20 +00:00
[201, [true, true, false]], true] call CBA_fnc_addKeybind;
2016-02-06 21:24:48 +00:00
// Register fire event handler
["firedPlayer", DFUNC(firedEH)] call CBA_fnc_addEventHandler;
["firedPlayerNonLocal", DFUNC(firedEH)] call CBA_fnc_addEventHandler;