2015-12-15 07:09:26 +00:00
|
|
|
// by esteldunedain
|
2015-01-18 20:08:56 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2016-05-04 19:59:04 +00:00
|
|
|
if (hasInterface) then {
|
|
|
|
// Add keybinds
|
2016-07-13 09:00:31 +00:00
|
|
|
["ACE3 Weapons", QGVAR(unjamWeapon), localize LSTRING(UnjamWeapon), {
|
2016-05-04 19:59:04 +00:00
|
|
|
// Conditions: canInteract
|
|
|
|
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
|
|
|
|
// Conditions: specific
|
2016-02-27 04:46:27 +00:00
|
|
|
|
2016-05-04 19:59:04 +00:00
|
|
|
if !(GVAR(enabled) && {[ACE_player] call FUNC(canUnjam)}) exitWith {false};
|
2016-02-27 03:29:30 +00:00
|
|
|
|
2016-05-04 19:59:04 +00:00
|
|
|
// Statement
|
|
|
|
[ACE_player, currentMuzzle ACE_player, false] call FUNC(clearJam);
|
|
|
|
true
|
2016-07-13 09:00:31 +00:00
|
|
|
}, {false}, [19, [true, false, false]], false] call CBA_fnc_addKeybind; //SHIFT + R Key
|
2015-02-14 19:22:02 +00:00
|
|
|
};
|
|
|
|
|
2016-05-24 13:13:11 +00:00
|
|
|
["ace_settingsInitialized", {
|
2016-05-04 19:59:04 +00:00
|
|
|
TRACE_1("SettingsInitialized eh", GVAR(enabled));
|
|
|
|
if (!GVAR(enabled)) exitWith {};
|
2015-02-14 19:22:02 +00:00
|
|
|
|
2016-05-04 19:59:04 +00:00
|
|
|
if (isServer) then {
|
|
|
|
GVAR(pseudoRandomList) = [];
|
|
|
|
// Construct a list of pseudo random 2D vectors
|
|
|
|
for "_i" from 0 to 30 do {
|
|
|
|
GVAR(pseudoRandomList) pushBack [-1 + random 2, -1 + random 2];
|
|
|
|
};
|
|
|
|
publicVariable QGVAR(pseudoRandomList);
|
2015-01-18 20:08:56 +00:00
|
|
|
|
2016-05-04 19:59:04 +00:00
|
|
|
// Keep track of the temperature of stored spare barrels
|
|
|
|
GVAR(storedSpareBarrels) = [] call CBA_fnc_hashCreate;
|
2015-12-27 01:56:40 +00:00
|
|
|
|
2016-05-04 19:59:04 +00:00
|
|
|
// Install event handlers for spare barrels
|
2016-06-24 13:45:13 +00:00
|
|
|
[QGVAR(sendSpareBarrelTemperatureHint), FUNC(sendSpareBarrelsTemperaturesHint)] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(loadCoolestSpareBarrel), FUNC(loadCoolestSpareBarrel)] call CBA_fnc_addEventHandler;
|
2016-02-20 23:19:56 +00:00
|
|
|
|
2016-05-04 19:59:04 +00:00
|
|
|
// Schedule cool down calculation of stored spare barrels
|
|
|
|
[] call FUNC(updateSpareBarrelsTemperaturesThread);
|
|
|
|
};
|
2015-01-18 20:08:56 +00:00
|
|
|
|
2016-05-04 19:59:04 +00:00
|
|
|
if !(hasInterface) exitWith {};
|
2016-01-19 20:04:51 +00:00
|
|
|
|
2016-05-04 19:59:04 +00:00
|
|
|
GVAR(cacheWeaponData) = call CBA_fnc_createNamespace;
|
|
|
|
GVAR(cacheAmmoData) = call CBA_fnc_createNamespace;
|
|
|
|
GVAR(cacheSilencerData) = call CBA_fnc_createNamespace;
|
2016-01-19 20:04:51 +00:00
|
|
|
|
2016-05-04 19:59:04 +00:00
|
|
|
//Add Take EH (for reload)
|
|
|
|
["CAManBase", "Take", {_this call FUNC(handleTakeEH);}] call CBA_fnc_addClassEventHandler;
|
2016-02-06 20:59:54 +00:00
|
|
|
|
|
|
|
// Register fire event handler
|
2016-05-24 13:13:11 +00:00
|
|
|
["ace_firedPlayer", DFUNC(firedEH)] call CBA_fnc_addEventHandler;
|
2016-02-06 20:59:54 +00:00
|
|
|
// Only add eh to non local players if dispersion is enabled
|
|
|
|
if (GVAR(overheatingDispersion)) then {
|
2016-05-24 13:13:11 +00:00
|
|
|
["ace_firedPlayerNonLocal", DFUNC(firedEH)] call CBA_fnc_addEventHandler;
|
2016-02-06 20:59:54 +00:00
|
|
|
};
|
2016-03-01 22:27:39 +00:00
|
|
|
|
2016-05-04 19:59:04 +00:00
|
|
|
// Schedule cool down calculation of player weapons at (infrequent) regular intervals
|
|
|
|
[] call FUNC(updateTemperatureThread);
|
2016-06-24 13:45:13 +00:00
|
|
|
|
2016-05-04 19:59:04 +00:00
|
|
|
// Install event handler to display temp when a barrel was swapped
|
2016-05-25 18:13:36 +00:00
|
|
|
[QGVAR(showWeaponTemperature), DFUNC(displayTemperature)] call CBA_fnc_addEventHandler;
|
2016-05-04 19:59:04 +00:00
|
|
|
// Install event handler to initiate an assisted barrel swap
|
2016-05-25 18:13:36 +00:00
|
|
|
[QGVAR(initiateSwapBarrelAssisted), DFUNC(swapBarrel)] call CBA_fnc_addEventHandler;
|
2016-05-04 19:59:04 +00:00
|
|
|
|
2016-05-22 15:29:05 +00:00
|
|
|
}] call CBA_fnc_addEventHandler;
|