ACE3/addons/scopes/XEH_postInit.sqf

166 lines
5.2 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"
2015-01-18 20:01:07 +00:00
if !(hasInterface) exitWith {};
// Check inventory when it changes
["playerInventoryChanged", {
[ACE_player] call FUNC(inventoryCheck);
}] call EFUNC(common,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 {
[GVAR(fadePFH)] call cba_fnc_removePerFrameHandler;
GVAR(fadePFH) = nil;
};
};
}] call EFUNC(common,addEventhandler);
2015-01-18 20:01:07 +00:00
// Add keybinds
["ACE3", QGVAR(AdjustUpMinor), localize "STR_ACE_Scopes_AdjustUpMinor",
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
2015-03-20 22:55:39 +00:00
if !([ACE_player, objNull, []] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
[ACE_player] call FUNC(inventoryCheck);
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-04-09 12:31:18 +00:00
[201, [false, false, false]], true] call cba_fnc_addKeybind;
2015-01-18 20:01:07 +00:00
["ACE3", QGVAR(AdjustDownMinor), localize "STR_ACE_Scopes_AdjustDownMinor",
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
2015-03-20 22:55:39 +00:00
if !([ACE_player, objNull, []] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
[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-04-09 12:31:18 +00:00
[209, [false, false, false]], true] call cba_fnc_addKeybind;
2015-01-18 20:01:07 +00:00
["ACE3", QGVAR(AdjustLeftMinor), localize "STR_ACE_Scopes_AdjustLeftMinor",
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
2015-03-20 22:55:39 +00:00
if !([ACE_player, objNull, []] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
[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-04-09 12:31:18 +00:00
[209, [false, true, false]], true] call cba_fnc_addKeybind;
2015-01-18 20:01:07 +00:00
["ACE3", QGVAR(AdjustRightMinor), localize "STR_ACE_Scopes_AdjustRightMinor",
2015-03-05 07:32:26 +00:00
{
// Conditions: canInteract
2015-03-20 22:55:39 +00:00
if !([ACE_player, objNull, []] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
// Conditions: specific
[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-04-09 12:31:18 +00:00
[201, [false, true, false]], true] call cba_fnc_addKeybind;
2015-04-02 20:40:21 +00:00
["ACE3", QGVAR(AdjustUpMajor), localize "STR_ACE_Scopes_AdjustUpMajor",
2015-04-10 17:41:34 +00:00
{
// Conditions: canInteract
if !([ACE_player, objNull, []] call EFUNC(common,canInteractWith)) exitWith {false};
// Conditions: specific
[ACE_player] call FUNC(inventoryCheck);
// Statement
[ACE_player, ELEVATION_UP, MAJOR_INCREMENT] call FUNC(adjustScope);
2015-04-10 17:41:34 +00:00
},
{false},
[201, [true, false, false]], true] call cba_fnc_addKeybind;
["ACE3", QGVAR(AdjustDownMajor), localize "STR_ACE_Scopes_AdjustDownMajor",
2015-04-10 17:41:34 +00:00
{
// Conditions: canInteract
if !([ACE_player, objNull, []] call EFUNC(common,canInteractWith)) exitWith {false};
// Conditions: specific
[ACE_player] call FUNC(inventoryCheck);
// Statement
[ACE_player, ELEVATION_DOWN, MAJOR_INCREMENT] call FUNC(adjustScope);
2015-04-10 17:41:34 +00:00
},
{false},
[209, [true, false, false]], true] call cba_fnc_addKeybind;
["ACE3", QGVAR(AdjustLeftMajor), localize "STR_ACE_Scopes_AdjustLeftMajor",
2015-04-10 17:41:34 +00:00
{
// Conditions: canInteract
if !([ACE_player, objNull, []] call EFUNC(common,canInteractWith)) exitWith {false};
// Conditions: specific
[ACE_player] call FUNC(inventoryCheck);
// Statement
[ACE_player, WINDAGE_LEFT, MAJOR_INCREMENT] call FUNC(adjustScope);
2015-04-10 17:41:34 +00:00
},
{false},
[209, [true, true, false]], true] call cba_fnc_addKeybind;
["ACE3", QGVAR(AdjustRightMajor), localize "STR_ACE_Scopes_AdjustRightMajor",
2015-04-10 17:41:34 +00:00
{
// Conditions: canInteract
if !([ACE_player, objNull, []] call EFUNC(common,canInteractWith)) exitWith {false};
// Conditions: specific
[ACE_player] call FUNC(inventoryCheck);
// Statement
[ACE_player, WINDAGE_RIGHT, MAJOR_INCREMENT] call FUNC(adjustScope);
2015-04-10 17:41:34 +00:00
},
{false},
[201, [true, true, false]], true] call cba_fnc_addKeybind;
2015-04-02 20:40:21 +00:00
// init shortdot
2015-04-02 22:03:08 +00:00
GVAR(showShortdot) = false;
2015-04-02 20:40:21 +00:00
2015-04-02 22:03:08 +00:00
["playerInventoryChanged", {
2015-04-02 22:41:11 +00:00
if (_this select 1 isEqualTo []) exitWith {}; //@todo fix eh
2015-04-02 22:03:08 +00:00
private "_showShortdot";
_showShortdot = _this select 1 select 9 select 2 == "ACE_optic_DMS";
if (GVAR(showShortdot)) then {
if (!_showShortdot) then {
// hide control and turn onDraw handler off
(uiNamespace getVariable ["ACE_ctrlShortdotReticle", controlNull]) ctrlShow false;
GVAR(showShortdot) = false;
};
} else {
if (_showShortdot) then {
// create control and turn onDraw handler on
([QGVAR(reticle)] call BIS_fnc_rscLayer) cutRsc ["ACE_Shortdot_Reticle", "PLAIN", 0, false];
(uiNamespace getVariable "ACE_ctrlShortdotReticle") ctrlSetText QUOTE(PATHTOF(data\reticles\ace_shortdot_reticle_1.paa));
GVAR(showShortdot) = true;
};
2015-04-02 20:40:21 +00:00
};
}] call EFUNC(common,addEventHandler);
2015-04-02 22:03:08 +00:00
addMissionEventHandler ["Draw3D", {if (GVAR(showShortdot)) then {call FUNC(onDrawShortdot)};}];