From e5c4d3596999a5b1ca60969e528e049efc8bf496 Mon Sep 17 00:00:00 2001
From: commy2
Date: Sun, 29 Nov 2015 16:33:25 +0100
Subject: [PATCH 01/64] 1.55 use new selectRandom command
---
addons/backpacks/functions/fnc_backpackOpened.sqf | 2 +-
addons/interaction/CfgVehicles.hpp | 6 +++---
addons/medical/functions/fnc_createLitter.sqf | 2 +-
addons/medical/functions/fnc_handleDamage.sqf | 2 +-
addons/medical/functions/fnc_handleDamage_caching.sqf | 4 ++--
addons/medical/functions/fnc_handleDamage_woundsOld.sqf | 2 +-
addons/medical/functions/fnc_playInjuredSound.sqf | 4 ++--
addons/scopes/functions/fnc_applyScopeAdjustment.sqf | 2 +-
addons/sitting/functions/fnc_getRandomAnimation.sqf | 2 +-
addons/spectator/functions/fnc_transitionCamera.sqf | 2 +-
addons/zeus/functions/fnc_bi_moduleProjectile.sqf | 2 +-
11 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/addons/backpacks/functions/fnc_backpackOpened.sqf b/addons/backpacks/functions/fnc_backpackOpened.sqf
index 4e61e8fbcc..c2f2721bc7 100644
--- a/addons/backpacks/functions/fnc_backpackOpened.sqf
+++ b/addons/backpacks/functions/fnc_backpackOpened.sqf
@@ -37,7 +37,7 @@ _sounds = [
_position = AGLToASL (_target modelToWorldVisual (_target selectionPosition "Spine3"));
playSound3D [
- _sounds select floor random count _sounds,
+ selectRandom _sounds,
objNull,
false,
_position,
diff --git a/addons/interaction/CfgVehicles.hpp b/addons/interaction/CfgVehicles.hpp
index dfe4f2025e..e9ad20c1b1 100644
--- a/addons/interaction/CfgVehicles.hpp
+++ b/addons/interaction/CfgVehicles.hpp
@@ -299,7 +299,7 @@ class CfgVehicles {
class ACE_Gesture_Go {
displayName = CSTRING(Gestures_Go);
condition = QUOTE(canStand _target);
- statement = QUOTE(_target playActionNow ([ARR_2('gestureGo','gestureGoB')] select floor random 2););
+ statement = QUOTE(_target playActionNow selectRandom [ARR_2('gestureGo','gestureGoB')];);
showDisabled = 1;
priority = 1.8;
hotkey = "2";
@@ -354,7 +354,7 @@ class CfgVehicles {
class ACE_Gesture_Yes {
displayName = ECSTRING(common,Yes);
condition = QUOTE(canStand _target);
- statement = QUOTE(_target playActionNow ([ARR_2('gestureYes','gestureNod')] select floor random 2););
+ statement = QUOTE(_target playActionNow selectRandom [ARR_2('gestureYes','gestureNod')];);
showDisabled = 1;
priority = 1.1;
hotkey = "8";
@@ -370,7 +370,7 @@ class CfgVehicles {
class ACE_Gesture_Hi {
displayName = CSTRING(Gestures_Hi);
condition = QUOTE(canStand _target);
- statement = QUOTE(_target playActionNow ([ARR_3('gestureHi','gestureHiB','gestureHiC')] select floor random 3););
+ statement = QUOTE(_target playActionNow selectRandom [ARR_3('gestureHi','gestureHiB','gestureHiC')];);
showDisabled = 1;
priority = 0.9;
hotkey = "0";
diff --git a/addons/medical/functions/fnc_createLitter.sqf b/addons/medical/functions/fnc_createLitter.sqf
index 54fd6694dd..29c62d1442 100644
--- a/addons/medical/functions/fnc_createLitter.sqf
+++ b/addons/medical/functions/fnc_createLitter.sqf
@@ -78,7 +78,7 @@ _createdLitter = [];
// Loop through through the litter options and place the litter
{
if (typeName _x == "ARRAY" && {(count _x > 0)}) then {
- [_target, _x select (floor(random(count _x)))] call _createLitter;
+ [_target, selectRandom _x] call _createLitter;
};
if (typeName _x == "STRING") then {
[_target, _x] call _createLitter;
diff --git a/addons/medical/functions/fnc_handleDamage.sqf b/addons/medical/functions/fnc_handleDamage.sqf
index 6d955e72fd..faf7d3273c 100644
--- a/addons/medical/functions/fnc_handleDamage.sqf
+++ b/addons/medical/functions/fnc_handleDamage.sqf
@@ -77,7 +77,7 @@ _minLethalDamage = if (_typeIndex >= 0) then {
if (vehicle _unit != _unit && {!(vehicle _unit isKindOf "StaticWeapon")} && {isNull _shooter} && {_projectile == ""} && {_selection == ""}) then {
if (GVAR(enableVehicleCrashes)) then {
- _selection = GVAR(SELECTIONS) select (floor(random(count GVAR(SELECTIONS))));
+ _selection = selectRandom GVAR(SELECTIONS);
};
};
diff --git a/addons/medical/functions/fnc_handleDamage_caching.sqf b/addons/medical/functions/fnc_handleDamage_caching.sqf
index 910221a850..c97a1725a3 100644
--- a/addons/medical/functions/fnc_handleDamage_caching.sqf
+++ b/addons/medical/functions/fnc_handleDamage_caching.sqf
@@ -35,7 +35,7 @@ if (_selectionName in _hitSelections) then {
// Check for vehicle crash
if (vehicle _unit != _unit && {!(vehicle _unit isKindOf "StaticWeapon")} && {isNull _source} && {_projectile == ""} && {_selectionName == ""}) then {
if (GVAR(enableVehicleCrashes)) then {
- _selectionName = _hitSelections select (floor(random(count _hitSelections)));
+ _selectionName = selectRandom _hitSelections;
_projectile = "vehiclecrash";
_this set [1, _selectionName];
_this set [4, _projectile];
@@ -57,7 +57,7 @@ if (_unit getVariable [QGVAR(isFalling), false]) then {
};
} else {
if (_selectionName == "") then {
- _selectionName = ["leg_l", "leg_r"] select (floor(random 2));
+ _selectionName = selectRandom ["leg_l", "leg_r"];
_this set [1, _selectionName];
};
_newDamage = _newDamage * 0.7;
diff --git a/addons/medical/functions/fnc_handleDamage_woundsOld.sqf b/addons/medical/functions/fnc_handleDamage_woundsOld.sqf
index dc21012dd6..016cb7982d 100644
--- a/addons/medical/functions/fnc_handleDamage_woundsOld.sqf
+++ b/addons/medical/functions/fnc_handleDamage_woundsOld.sqf
@@ -83,7 +83,7 @@ _woundsCreated = [];
for "_i" from 0 to (1+ floor(random(_x select 1)-1)) /* step +1 */ do {
// Find the injury we are going to add. Format [ classID, allowdSelections, bloodloss, painOfInjury, minimalDamage]
- _toAddInjury = if (random(1) >= 0.85) then {_allInjuriesForDamageType select _highestPossibleSpot} else {_allPossibleInjuries select (floor(random (count _allPossibleInjuries)));};
+ _toAddInjury = if (random(1) >= 0.85) then {_allInjuriesForDamageType select _highestPossibleSpot} else {selectRandom _allPossibleInjuries};
_toAddClassID = _toAddInjury select 0;
_foundIndex = -1;
diff --git a/addons/medical/functions/fnc_playInjuredSound.sqf b/addons/medical/functions/fnc_playInjuredSound.sqf
index 4792f879ec..3dcb7c270b 100644
--- a/addons/medical/functions/fnc_playInjuredSound.sqf
+++ b/addons/medical/functions/fnc_playInjuredSound.sqf
@@ -59,9 +59,9 @@ if (_pain > 0 && {[_unit] call EFUNC(common,isAwake)}) exitwith {
// Select the to be played sound based upon damage amount.
if (_pain > 0.5) then {
if (random(1) > 0.5) then {
- _sound = _availableSounds_A select (round(random((count _availableSounds_A) - 1)));
+ _sound = selectRandom _availableSounds_A;
} else {
- _sound = _availableSounds_B select (round(random((count _availableSounds_B) - 1)));
+ _sound = selectRandom _availableSounds_B;
};
} else {
_sound = _availableSounds_B select (round(random((count _availableSounds_B) - 1)));
diff --git a/addons/scopes/functions/fnc_applyScopeAdjustment.sqf b/addons/scopes/functions/fnc_applyScopeAdjustment.sqf
index fbd3e1b636..15f0e8f981 100644
--- a/addons/scopes/functions/fnc_applyScopeAdjustment.sqf
+++ b/addons/scopes/functions/fnc_applyScopeAdjustment.sqf
@@ -36,7 +36,7 @@ _adjustmentDifference = (_adjustment select _weaponIndex) vectorDiff [_elevation
_adjustment set [_weaponIndex, [_elevation, _windage, _zero]];
[_unit, QGVAR(Adjustment), _adjustment, 0.5] call EFUNC(common,setVariablePublic);
-playSound (["ACE_Scopes_Click_1", "ACE_Scopes_Click_2", "ACE_Scopes_Click_3"] select floor random 3);
+playSound selectRandom ["ACE_Scopes_Click_1", "ACE_Scopes_Click_2", "ACE_Scopes_Click_3"];
// slightly rotate the player if looking through optic
if (cameraView == "GUNNER") then {
diff --git a/addons/sitting/functions/fnc_getRandomAnimation.sqf b/addons/sitting/functions/fnc_getRandomAnimation.sqf
index ca9a9ccfb1..ce95819575 100644
--- a/addons/sitting/functions/fnc_getRandomAnimation.sqf
+++ b/addons/sitting/functions/fnc_getRandomAnimation.sqf
@@ -46,4 +46,4 @@ _animations = [
];
// Select random animation
-(_animations select (floor (random (count _animations))))
+selectRandom _animations
diff --git a/addons/spectator/functions/fnc_transitionCamera.sqf b/addons/spectator/functions/fnc_transitionCamera.sqf
index 0f6eb3ffc7..d5e28cc355 100644
--- a/addons/spectator/functions/fnc_transitionCamera.sqf
+++ b/addons/spectator/functions/fnc_transitionCamera.sqf
@@ -67,7 +67,7 @@ if (_newMode == 0) then { // Free
// When null unit is given choose random
if (isNull _newUnit) then {
- _newUnit = GVAR(unitList) select floor(random(count GVAR(unitList)));
+ _newUnit = selectRandom GVAR(unitList);
};
// Switch camera view to internal unit view (external uses the camera)
diff --git a/addons/zeus/functions/fnc_bi_moduleProjectile.sqf b/addons/zeus/functions/fnc_bi_moduleProjectile.sqf
index 7150856154..e429c0b531 100644
--- a/addons/zeus/functions/fnc_bi_moduleProjectile.sqf
+++ b/addons/zeus/functions/fnc_bi_moduleProjectile.sqf
@@ -66,7 +66,7 @@ if (_activated) then {
_velocity = [0,0,-100];
_radio = "SentGenIncoming";
_sounds = if (getnumber (_cfgAmmo >> "hit") < 200) then {["mortar1","mortar2"]} else {["shell1","shell2","shell3","shell4"]};
- _sound = _sounds call bis_fnc_selectrandom;
+ _sound = selectRandom _sounds;
_hint = ["Curator","PlaceOrdnance"];
_shakeStrength = 0.01;
_shakeRadius = 300;
From caa55850440b1939e49715aafe7971f35e5ea4f2 Mon Sep 17 00:00:00 2001
From: commy2
Date: Sun, 29 Nov 2015 16:50:08 +0100
Subject: [PATCH 02/64] simplify getRandomAnimation in sitting
---
addons/sitting/functions/fnc_getRandomAnimation.sqf | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/addons/sitting/functions/fnc_getRandomAnimation.sqf b/addons/sitting/functions/fnc_getRandomAnimation.sqf
index ce95819575..236977a1de 100644
--- a/addons/sitting/functions/fnc_getRandomAnimation.sqf
+++ b/addons/sitting/functions/fnc_getRandomAnimation.sqf
@@ -17,8 +17,8 @@
private "_animations";
-// Animations Pool
-_animations = [
+// Select random animation from Animations Pool
+selectRandom [
QGVAR(HubSittingChairA_idle1),
QGVAR(HubSittingChairA_idle2),
QGVAR(HubSittingChairA_idle3),
@@ -43,7 +43,4 @@ _animations = [
QGVAR(HubSittingChairUC_idle2),
QGVAR(HubSittingChairUC_idle3),
QGVAR(HubSittingChairUC_move1)
-];
-
-// Select random animation
-selectRandom _animations
+]
From ae1f35c042c85256623c03f33f16c64b5d24591a Mon Sep 17 00:00:00 2001
From: commy2
Date: Sun, 29 Nov 2015 16:55:44 +0100
Subject: [PATCH 03/64] remove superfluous private
---
addons/sitting/functions/fnc_getRandomAnimation.sqf | 2 --
1 file changed, 2 deletions(-)
diff --git a/addons/sitting/functions/fnc_getRandomAnimation.sqf b/addons/sitting/functions/fnc_getRandomAnimation.sqf
index 236977a1de..8dfe4b8cb3 100644
--- a/addons/sitting/functions/fnc_getRandomAnimation.sqf
+++ b/addons/sitting/functions/fnc_getRandomAnimation.sqf
@@ -15,8 +15,6 @@
*/
#include "script_component.hpp"
-private "_animations";
-
// Select random animation from Animations Pool
selectRandom [
QGVAR(HubSittingChairA_idle1),
From 56e919dccc48e34d720a38e4ace0e662798dab2f Mon Sep 17 00:00:00 2001
From: gienkov
Date: Sun, 6 Dec 2015 06:47:19 +0100
Subject: [PATCH 04/64] nozzle additonal check condition
---
addons/refuel/functions/fnc_canConnectNozzle.sqf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/addons/refuel/functions/fnc_canConnectNozzle.sqf b/addons/refuel/functions/fnc_canConnectNozzle.sqf
index 812234818e..f8503c821f 100644
--- a/addons/refuel/functions/fnc_canConnectNozzle.sqf
+++ b/addons/refuel/functions/fnc_canConnectNozzle.sqf
@@ -23,4 +23,4 @@ _nozzle = _unit getVariable [QGVAR(nozzle), objNull];
!(isNull _nozzle ||
{(_target distance _unit) > REFUEL_ACTION_DISTANCE} ||
- {!isNull (_target getVariable [QGVAR(nozzle), objNull])}) // TODO verify cant connect multiple fuel lines
+ {!isNull (_target getVariable [QGVAR(nozzle), objNull])} || isEngineOn _target) // TODO verify cant connect multiple fuel lines
From a3e1e124f244479e5f49f1fffe299851b21dba03 Mon Sep 17 00:00:00 2001
From: licht-im-Norden87
Date: Mon, 14 Dec 2015 16:56:47 +0100
Subject: [PATCH 05/64] Update README_DE.md
---
docs/README_DE.md | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
diff --git a/docs/README_DE.md b/docs/README_DE.md
index a51c562de8..4eda6546c7 100644
--- a/docs/README_DE.md
+++ b/docs/README_DE.md
@@ -1,21 +1,22 @@
+
-
+
-
-
+
+
-
+
-
+
@@ -24,7 +25,11 @@
-Benötigt die aktuellste Version von CBA A3 . Besucht uns auf Facebook | YouTube | Twitter | Reddit
+
+
+ Benötigt die aktuellste Version vonCBA A3 .
+ Besucht uns auf Twitter | Facebook | YouTube | Reddit
+
**ACE3** ist ein Gemeinschaftsprojekt der sich zusammengeschlossenen Moddinggruppen von **ACE2**, **AGM** und **CSE** mit dem Ziel den Realismus und die Spieltiefe von Arma 3 zu steigern.
From 999a6cd29d6b7ffcf8b404e85a0191b104dc4558 Mon Sep 17 00:00:00 2001
From: licht-im-Norden87
Date: Mon, 14 Dec 2015 16:58:00 +0100
Subject: [PATCH 06/64] Update README_DE.md
---
docs/README_DE.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/docs/README_DE.md b/docs/README_DE.md
index 4eda6546c7..98e41d1ae0 100644
--- a/docs/README_DE.md
+++ b/docs/README_DE.md
@@ -10,7 +10,7 @@
-
+
@@ -25,7 +25,6 @@
-
Benötigt die aktuellste Version vonCBA A3 .
Besucht uns auf Twitter | Facebook | YouTube | Reddit
From 276aea04c14045474a5a3115925d700cd8f67832 Mon Sep 17 00:00:00 2001
From: PabstMirror
Date: Sun, 24 Jan 2016 11:41:10 -0600
Subject: [PATCH 07/64] Changes for CBA 2.3
---
addons/dragging/CfgVehicles.hpp | 1 -
addons/interact_menu/XEH_clientInit.sqf | 25 -------------------------
2 files changed, 26 deletions(-)
diff --git a/addons/dragging/CfgVehicles.hpp b/addons/dragging/CfgVehicles.hpp
index bbd362f758..0a963df433 100644
--- a/addons/dragging/CfgVehicles.hpp
+++ b/addons/dragging/CfgVehicles.hpp
@@ -32,7 +32,6 @@ class CfgVehicles {
// ammo boxes
class ThingX;
class ReammoBox_F: ThingX {
- XEH_ENABLED;
GVAR(canCarry) = 0;
GVAR(carryPosition[]) = {0,1,1};
GVAR(carryDirection) = 0;
diff --git a/addons/interact_menu/XEH_clientInit.sqf b/addons/interact_menu/XEH_clientInit.sqf
index fe3b33feb5..017c2b05b8 100644
--- a/addons/interact_menu/XEH_clientInit.sqf
+++ b/addons/interact_menu/XEH_clientInit.sqf
@@ -76,28 +76,3 @@ GVAR(ParsedTextCached) = [];
if (GVAR(menuBackground)==1) then {[QGVAR(menuBackground), false] call EFUNC(common,blurScreen);};
if (GVAR(menuBackground)==2) then {(uiNamespace getVariable [QGVAR(menuBackground), displayNull]) closeDisplay 0;};
}] call EFUNC(common,addEventHandler);
-
-//Debug to help end users identify mods that break CBA's XEH
-[{
- private _badClassnames = [];
- {
- //Only check Land objects (WeaponHolderSimulated show up in `vehicles` for some reason)
- if ((_x isKindOf "Land") && {(isNil (format [QGVAR(Act_%1), typeOf _x])) || {isNil (format [QGVAR(SelfAct_%1), typeOf _x])}}) then {
- if (!((typeOf _x) in _badClassnames)) then {
- _badClassnames pushBack (typeOf _x);
- ACE_LOGERROR_3("Compile checks bad for (classname: %1)(addon: %2) %3", (typeOf _x), (unitAddons (typeOf _x)), _x);
- };
- };
- } forEach (allUnits + allDeadMen + vehicles);
- if ((count _badClassnames) == 0) then {
- ACE_LOGINFO("All compile checks passed");
- } else {
- ACE_LOGERROR_1("%1 Classnames failed compile check!!! (bad XEH / missing cba_enable_auto_xeh.pbo)", (count _badClassnames));
-
- //Only show visual error if they are actually missing the pbo:
- #define SUPMON configFile>>"CfgSettings">>"CBA">>"XEH">>"supportMonitor"
- if ((!isNumber(SUPMON)) || {getNumber(SUPMON) != 1}) then {
- ["ACE Interaction failed to compile for some units (try adding cba_enable_auto_xeh.pbo)"] call BIS_fnc_error;
- };
- };
-}, [], 5] call EFUNC(common,waitAndExecute); //ensure CBASupMon has time to run first
From 7f6b17cdbc84ab5099e2a5cc16715f125d9b6423 Mon Sep 17 00:00:00 2001
From: commy2
Date: Fri, 5 Feb 2016 22:19:27 +0100
Subject: [PATCH 08/64] correct name for wheeled apc 01 cannon
---
addons/realisticnames/CfgVehicles.hpp | 2 +-
addons/realisticnames/CfgWeapons.hpp | 4 ++--
addons/realisticnames/stringtable.xml | 22 +++++++++++-----------
3 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/addons/realisticnames/CfgVehicles.hpp b/addons/realisticnames/CfgVehicles.hpp
index 9aea632247..61864a8259 100644
--- a/addons/realisticnames/CfgVehicles.hpp
+++ b/addons/realisticnames/CfgVehicles.hpp
@@ -170,7 +170,7 @@ class CfgVehicles {
// wheeled apcs
class B_APC_Wheeled_01_base_F;
class B_APC_Wheeled_01_cannon_F: B_APC_Wheeled_01_base_F {
- displayName = CSTRING(APC_Wheeled_cannon_Name);
+ displayName = CSTRING(APC_Wheeled_01_cannon_Name);
};
class O_APC_Wheeled_02_base_F;
diff --git a/addons/realisticnames/CfgWeapons.hpp b/addons/realisticnames/CfgWeapons.hpp
index 2adff28a41..645b6a8984 100644
--- a/addons/realisticnames/CfgWeapons.hpp
+++ b/addons/realisticnames/CfgWeapons.hpp
@@ -527,10 +527,10 @@ class CfgWeapons {
};
// class ACE_LMG_coax_PKT_mem2: LMG_coax {};
class ACE_LMG_coax_MAG58_mem2: LMG_coax {
- displayName = "MAG 58";
+ displayName = "MAG 58M";
};
class ACE_LMG_coax_MAG58_mem3: LMG_coax {
- displayName = "MAG 58";
+ displayName = "MAG 58M";
};
class ACE_LMG_coax_L94A1_mem3: LMG_coax {
displayName = "L94A1";
diff --git a/addons/realisticnames/stringtable.xml b/addons/realisticnames/stringtable.xml
index b02d2a2822..b13a2a87cd 100644
--- a/addons/realisticnames/stringtable.xml
+++ b/addons/realisticnames/stringtable.xml
@@ -229,17 +229,17 @@
Bardelas
Bardelas
-
- Patria AMV
- Patria AMV
- Patria AMV
- Patria AMV
- Patria AMV
- Patria AMV
- Patria AMV
- Patria AMV
- Patria AMV
- Patria AMV
+
+ Badger IFV
+ SpZ Badger
+ Badger IFV
+ Badger IFV
+ Badger IFV
+ Badger IFV
+ БМП Badger
+ Badger IFV
+ Badger IFV
+ Badger IFV
Nemmera
From ec4a4ef67f77b01ccebdbb2419c5884ce4aac049 Mon Sep 17 00:00:00 2001
From: commy2
Date: Fri, 5 Feb 2016 22:21:27 +0100
Subject: [PATCH 09/64] correct capitalization for German translation
---
addons/realisticnames/stringtable.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/addons/realisticnames/stringtable.xml b/addons/realisticnames/stringtable.xml
index b13a2a87cd..b9f6c85b93 100644
--- a/addons/realisticnames/stringtable.xml
+++ b/addons/realisticnames/stringtable.xml
@@ -231,7 +231,7 @@
Badger IFV
- SpZ Badger
+ SPz Badger
Badger IFV
Badger IFV
Badger IFV
From 2ebd2f90467e3f2bc07d65e2d74160d43a326ec0 Mon Sep 17 00:00:00 2001
From: commy2
Date: Sat, 6 Feb 2016 11:42:35 +0100
Subject: [PATCH 10/64] replace filter and map with select and apply
---
addons/common/functions/fnc_canInteractWith.sqf | 2 +-
addons/common/functions/fnc_checkFiles.sqf | 6 +++---
addons/common/functions/fnc_filter.sqf | 7 ++++---
addons/common/functions/fnc_getChildren.sqf | 2 +-
addons/common/functions/fnc_getVehicleUAVCrew.sqf | 2 +-
addons/common/functions/fnc_map.sqf | 9 +++++----
addons/common/functions/fnc_removeSpecificMagazine.sqf | 6 +++---
7 files changed, 18 insertions(+), 16 deletions(-)
diff --git a/addons/common/functions/fnc_canInteractWith.sqf b/addons/common/functions/fnc_canInteractWith.sqf
index 4b4382a14e..7603452965 100644
--- a/addons/common/functions/fnc_canInteractWith.sqf
+++ b/addons/common/functions/fnc_canInteractWith.sqf
@@ -16,7 +16,7 @@
params ["_unit", "_target", ["_exceptions", []]];
-_exceptions = [_exceptions, {toLower _this}] call FUNC(map);
+_exceptions = _exceptions apply {toLower _x};
private _owner = _target getVariable [QGVAR(owner), objNull];
diff --git a/addons/common/functions/fnc_checkFiles.sqf b/addons/common/functions/fnc_checkFiles.sqf
index cdf5cb3d93..19a4c6f72a 100644
--- a/addons/common/functions/fnc_checkFiles.sqf
+++ b/addons/common/functions/fnc_checkFiles.sqf
@@ -21,8 +21,8 @@ ACE_LOGINFO_1("ACE is version %1.",_version);
//private _addons = activatedAddons; // broken with High-Command module, see #2134
private _addons = "true" configClasses (configFile >> "CfgPatches");//
-_addons = [_addons, {toLower configName _this}] call FUNC(map);//
-_addons = [_addons, {_this find "ace_" == 0}] call FUNC(filter);
+_addons = _addons apply {toLower configName _x};//
+_addons = _addons select {_x find "ace_" == 0};
{
if (getText (configFile >> "CfgPatches" >> _x >> "versionStr") != _version) then {
@@ -63,7 +63,7 @@ _addons = [_addons, {_this find "ace_" == 0}] call FUNC(filter);
///////////////
if (isMultiplayer) then {
// don't check optional addons
- _addons = [_addons, {getNumber (configFile >> "CfgPatches" >> _this >> "ACE_isOptional") != 1}] call FUNC(filter);
+ _addons = _addons select {getNumber (configFile >> "CfgPatches" >> _x >> "ACE_isOptional") != 1};
if (isServer) then {
// send servers version of ACE to all clients
diff --git a/addons/common/functions/fnc_filter.sqf b/addons/common/functions/fnc_filter.sqf
index 36ff328ef0..acee28eaa2 100644
--- a/addons/common/functions/fnc_filter.sqf
+++ b/addons/common/functions/fnc_filter.sqf
@@ -9,15 +9,16 @@
* Return Value:
* Final array
*
- * Usage:
- * [[0,1,2,3,4], {_this > 2}] call FUNC(filter) ==> [3,4]
- *
* Public: Yes
+ *
+ * Deprecated
*/
#include "script_component.hpp"
params [["_array", [], [[]]], ["_code", {}, [{}]]];
+ACE_DEPRECATED("ace_common_fnc_filter","3.7.0","select CODE");
+
private _result = [];
{
diff --git a/addons/common/functions/fnc_getChildren.sqf b/addons/common/functions/fnc_getChildren.sqf
index 19fdf287fe..f2930b015d 100644
--- a/addons/common/functions/fnc_getChildren.sqf
+++ b/addons/common/functions/fnc_getChildren.sqf
@@ -16,4 +16,4 @@ params ["_name", "_cfgClass"];
private _classes = format ["configName inheritsFrom _x == '%1'", _name] configClasses (configFile >> _cfgClass);
-[_classes, {configName _this}] call FUNC(map) // return
+_classes apply {configName _x} // return
diff --git a/addons/common/functions/fnc_getVehicleUAVCrew.sqf b/addons/common/functions/fnc_getVehicleUAVCrew.sqf
index fcb48ee216..2b2281ed10 100644
--- a/addons/common/functions/fnc_getVehicleUAVCrew.sqf
+++ b/addons/common/functions/fnc_getVehicleUAVCrew.sqf
@@ -14,4 +14,4 @@
params [["_vehicle", objNull, [objNull]]];
-[crew _vehicle, {getText (configFile >> "CfgVehicles" >> typeOf _this >> "simulation") == "UAVPilot"}] call FUNC(filter) // return
+crew _vehicle select {getText (configFile >> "CfgVehicles" >> typeOf _x >> "simulation") == "UAVPilot"} // return
diff --git a/addons/common/functions/fnc_map.sqf b/addons/common/functions/fnc_map.sqf
index 5d24e13b38..ab9e61cba7 100644
--- a/addons/common/functions/fnc_map.sqf
+++ b/addons/common/functions/fnc_map.sqf
@@ -1,6 +1,6 @@
/*
* Author: KoffeinFlummi, commy2
- * Applies given code to every element in an array, LIKE SOMETHING SQF SHOULD HAVE BY DEFAULT.
+ * Applies given code to every element in an array, LIKE SOMETHING SQF SHOULD HAVE BY DEFAULT. <- :kappa:
*
* Arguments:
* 0: Array to be thingied.
@@ -9,15 +9,16 @@
* Return Value:
* Final array
*
- * Usage:
- * [["2", "gobblecock", "25"], {parseNumber _this}] call FUNC(map) ==> [2, 0, 25]
- *
* Public: Yes
+ *
+ * Deprecated
*/
#include "script_component.hpp"
params [["_array", [], [[]]], ["_code", {}, [{}]]];
+ACE_DEPRECATED("ace_common_fnc_filter","3.7.0","apply");
+
// copy array to not alter the original one
_array = + _array;
diff --git a/addons/common/functions/fnc_removeSpecificMagazine.sqf b/addons/common/functions/fnc_removeSpecificMagazine.sqf
index e703a56296..4ca5eec6d7 100644
--- a/addons/common/functions/fnc_removeSpecificMagazine.sqf
+++ b/addons/common/functions/fnc_removeSpecificMagazine.sqf
@@ -19,7 +19,7 @@ params [["_unit", objNull, [objNull]], ["_magazineType", "", [""]], ["_ammoCount
private _isRemoved = false;
// Check uniform
-private _magazines = [magazinesAmmoCargo uniformContainer _unit, {_this select 0 == _magazineType}] call FUNC(filter);
+private _magazines = magazinesAmmoCargo uniformContainer _unit select {_x select 0 == _magazineType};
private _index = _magazines find [_magazineType, _ammoCount];
if (_index > -1) exitWith {
@@ -39,7 +39,7 @@ if (_index > -1) exitWith {
};
// Check vest
-_magazines = [magazinesAmmoCargo vestContainer _unit, {_this select 0 == _magazineType}] call FUNC(filter);
+_magazines = magazinesAmmoCargo vestContainer _unit select {_x select 0 == _magazineType};
_index = _magazines find [_magazineType, _ammoCount];
if (_index > -1) exitWith {
@@ -59,7 +59,7 @@ if (_index > -1) exitWith {
};
// Check backpack
-_magazines = [magazinesAmmoCargo backpackContainer _unit, {_this select 0 == _magazineType}] call FUNC(filter);
+_magazines = magazinesAmmoCargo backpackContainer _unit select {_x select 0 == _magazineType};
_index = _magazines find [_magazineType, _ammoCount];
if (_index > -1) exitWith {
From 41e39c9c3a85b0e354a2157da759c6f8c20582f2 Mon Sep 17 00:00:00 2001
From: commy2
Date: Sat, 6 Feb 2016 11:58:31 +0100
Subject: [PATCH 11/64] replace more filter with select
---
addons/common/functions/fnc_map.sqf | 2 +-
addons/interaction/functions/fnc_passMagazine.sqf | 5 +----
addons/map/functions/fnc_blueForceTrackingUpdate.sqf | 10 +++++-----
addons/map/functions/fnc_determineMapLight.sqf | 11 ++++++-----
addons/reload/functions/fnc_canLinkBelt.sqf | 2 +-
addons/reload/functions/fnc_startLinkingBelt.sqf | 2 +-
.../functions/fnc_getLoadableMissiles.sqf | 2 +-
addons/switchunits/functions/fnc_switchUnit.sqf | 2 +-
.../weaponselect/functions/fnc_selectNextGrenade.sqf | 6 +++---
9 files changed, 20 insertions(+), 22 deletions(-)
diff --git a/addons/common/functions/fnc_map.sqf b/addons/common/functions/fnc_map.sqf
index ab9e61cba7..c92a4eb588 100644
--- a/addons/common/functions/fnc_map.sqf
+++ b/addons/common/functions/fnc_map.sqf
@@ -17,7 +17,7 @@
params [["_array", [], [[]]], ["_code", {}, [{}]]];
-ACE_DEPRECATED("ace_common_fnc_filter","3.7.0","apply");
+ACE_DEPRECATED("ace_common_fnc_map","3.7.0","apply");
// copy array to not alter the original one
_array = + _array;
diff --git a/addons/interaction/functions/fnc_passMagazine.sqf b/addons/interaction/functions/fnc_passMagazine.sqf
index 2afe2f3817..7e2f7b9356 100644
--- a/addons/interaction/functions/fnc_passMagazine.sqf
+++ b/addons/interaction/functions/fnc_passMagazine.sqf
@@ -21,10 +21,7 @@ params ["_player", "_target", "_weapon"];
private ["_compatibleMags", "_filteredMags", "_magToPass", "_magToPassIndex", "_playerName", "_magToPassDisplayName"];
_compatibleMags = getArray (configfile >> "CfgWeapons" >> _weapon >> "magazines");
-_filteredMags = [magazinesAmmoFull _player, {
- params ["_className", "", "_loaded"];
- _className in _compatibleMags && !_loaded
-}] call EFUNC(common,filter);
+_filteredMags = magazinesAmmoFull _player select {(_x select 0) in _compatibleMags && {!(_x select 2)}};
//select magazine with most ammo
_magToPass = _filteredMags select 0;
diff --git a/addons/map/functions/fnc_blueForceTrackingUpdate.sqf b/addons/map/functions/fnc_blueForceTrackingUpdate.sqf
index e9a619b5a4..bf2c413837 100644
--- a/addons/map/functions/fnc_blueForceTrackingUpdate.sqf
+++ b/addons/map/functions/fnc_blueForceTrackingUpdate.sqf
@@ -17,14 +17,14 @@ if (GVAR(BFT_Enabled) and {(!isNil "ACE_player") and {alive ACE_player}}) then {
_playerSide = call EFUNC(common,playerSide);
if !(GVAR(BFT_HideAiGroups)) then {
- _groupsToDrawMarkers = [allGroups, {side _this == _playerSide}] call EFUNC(common,filter);
+ _groupsToDrawMarkers = allGroups select {side _x == _playerSide};
} else {
- _groupsToDrawMarkers = [allGroups, {
+ _groupsToDrawMarkers = allGroups select {
_anyPlayers = {
[_x] call EFUNC(common,isPlayer);
- } count units _this;
- (side _this == _playerSide) && _anyPlayers > 0
- }] call EFUNC(common,filter);
+ } count units _x;
+ (side _x == _playerSide) && _anyPlayers > 0
+ }; // @todo, simplify this
};
{
diff --git a/addons/map/functions/fnc_determineMapLight.sqf b/addons/map/functions/fnc_determineMapLight.sqf
index 9712b84515..a844cdad07 100644
--- a/addons/map/functions/fnc_determineMapLight.sqf
+++ b/addons/map/functions/fnc_determineMapLight.sqf
@@ -95,11 +95,12 @@ TRACE_1("Player is on foot or in an open vehicle","");
// Using chemlights
-_nearObjects = [_unit nearObjects ["SmokeShell", 4], {
- alive _this && {(typeOf _this == "Chemlight_red") || {
- (typeOf _this == "Chemlight_green") || {
- (typeOf _this == "Chemlight_blue") || {
- (typeOf _this == "Chemlight_yellow")}}}}}] call EFUNC(common,filter);
+_nearObjects = (_unit nearObjects ["SmokeShell", 4]) select {
+ alive _x && {(typeOf _x == "Chemlight_red") || {
+ (typeOf _x == "Chemlight_green") || {
+ (typeOf _x == "Chemlight_blue") || {
+ (typeOf _x == "Chemlight_yellow")}}}}}; // @todo, simplify this
+
if (count (_nearObjects) > 0) then {
_light = _nearObjects select 0;
diff --git a/addons/reload/functions/fnc_canLinkBelt.sqf b/addons/reload/functions/fnc_canLinkBelt.sqf
index b36959e4e1..13fad4d460 100644
--- a/addons/reload/functions/fnc_canLinkBelt.sqf
+++ b/addons/reload/functions/fnc_canLinkBelt.sqf
@@ -32,6 +32,6 @@ private _maxAmmo = 0;
{
_maxAmmo = _maxAmmo max (_x select 1);
-} forEach ([magazinesAmmo _player, {_this select 0 == _magazineType}] call EFUNC(common,filter));
+} forEach (magazinesAmmo _player select {_x select 0 == _magazineType});
_maxAmmo > 0
diff --git a/addons/reload/functions/fnc_startLinkingBelt.sqf b/addons/reload/functions/fnc_startLinkingBelt.sqf
index ebee6fd350..5924e1b4e1 100644
--- a/addons/reload/functions/fnc_startLinkingBelt.sqf
+++ b/addons/reload/functions/fnc_startLinkingBelt.sqf
@@ -32,7 +32,7 @@ private _maxAmmo = 0;
{
_maxAmmo = _maxAmmo max (_x select 1);
-} forEach ([magazinesAmmo _player, {_this select 0 == _magazineType}] call EFUNC(common,filter));
+} forEach (magazinesAmmo _player select {_x select 0 == _magazineType});
if (_maxAmmo == 0) exitWith {};
diff --git a/addons/reloadlaunchers/functions/fnc_getLoadableMissiles.sqf b/addons/reloadlaunchers/functions/fnc_getLoadableMissiles.sqf
index 9b083a04c6..ed1f11bdf3 100644
--- a/addons/reloadlaunchers/functions/fnc_getLoadableMissiles.sqf
+++ b/addons/reloadlaunchers/functions/fnc_getLoadableMissiles.sqf
@@ -25,4 +25,4 @@ _magazines = magazines _unit;
_magazines = [_magazines, {toLower _this}] call EFUNC(common,map);
// get reloaders magazine types compatible with targets launcher. No duplicates.
-[getArray (configFile >> "CfgWeapons" >> _weapon >> "magazines"), {toLower _this in _magazines}] call EFUNC(common,filter)
+getArray (configFile >> "CfgWeapons" >> _weapon >> "magazines") select {toLower _x in _magazines} // return
diff --git a/addons/switchunits/functions/fnc_switchUnit.sqf b/addons/switchunits/functions/fnc_switchUnit.sqf
index 903207652c..a26b2d474a 100644
--- a/addons/switchunits/functions/fnc_switchUnit.sqf
+++ b/addons/switchunits/functions/fnc_switchUnit.sqf
@@ -25,7 +25,7 @@ private _leave = false;
if (GVAR(EnableSafeZone)) then {
private _allNearestPlayers = [position _unit, GVAR(SafeZoneRadius)] call FUNC(nearestPlayers);
- private _nearestEnemyPlayers = [_allNearestPlayers, {((side GVAR(OriginalGroup)) getFriend (side _this) < 0.6) && !(_this getVariable [QGVAR(IsPlayerControlled), false])}] call EFUNC(common,filter);
+ private _nearestEnemyPlayers = _allNearestPlayers select {((side GVAR(OriginalGroup)) getFriend side _x < 0.6) && !(_x getVariable [QGVAR(IsPlayerControlled), false])};
if (count _nearestEnemyPlayers > 0) exitWith {
_leave = true;
diff --git a/addons/weaponselect/functions/fnc_selectNextGrenade.sqf b/addons/weaponselect/functions/fnc_selectNextGrenade.sqf
index a4e93814a9..f4b48a1b1e 100644
--- a/addons/weaponselect/functions/fnc_selectNextGrenade.sqf
+++ b/addons/weaponselect/functions/fnc_selectNextGrenade.sqf
@@ -57,9 +57,9 @@ private _nextGrenade = _grenades select _nextGrenadeIndex;
if (_currentGrenade == _nextGrenade) exitWith {false};
// current best method to select a grenade: remove all grenades except the one you want to select, then add them back
-private _uniformGrenades = [uniformItems _unit, {_x in GVAR(GrenadesAll) && {_x != _nextGrenade}}] call EFUNC(common,filter);
-private _vestGrenades = [vestItems _unit, {_x in GVAR(GrenadesAll) && {_x != _nextGrenade}}] call EFUNC(common,filter);
-private _backpackGrenades = [backpackItems _unit, {_x in GVAR(GrenadesAll) && {_x != _nextGrenade}}] call EFUNC(common,filter);
+private _uniformGrenades = uniformItems _unit select {_x in GVAR(GrenadesAll) && {_x != _nextGrenade}};
+private _vestGrenades = vestItems _unit select {_x in GVAR(GrenadesAll) && {_x != _nextGrenade}};
+private _backpackGrenades = backpackItems _unit select {_x in GVAR(GrenadesAll) && {_x != _nextGrenade}};
// remove all grenades except those we are switching to --> this breaks the selector
{_unit removeItemFromUniform _x; false} count _uniformGrenades;
From ac007e6995bf60af8400d6539a590a766f48e68a Mon Sep 17 00:00:00 2001
From: commy2
Date: Sat, 6 Feb 2016 12:08:04 +0100
Subject: [PATCH 12/64] replace more map with apply
---
addons/inventory/XEH_postInit.sqf | 6 ++++--
addons/medical/functions/fnc_setHitPointDamage.sqf | 3 +--
addons/nametags/functions/fnc_doShow.sqf | 11 ++---------
.../functions/fnc_getLoadableMissiles.sqf | 2 +-
addons/scopes/functions/fnc_applyScopeAdjustment.sqf | 2 +-
5 files changed, 9 insertions(+), 15 deletions(-)
diff --git a/addons/inventory/XEH_postInit.sqf b/addons/inventory/XEH_postInit.sqf
index d0e3fb042a..7d7bfb23dd 100644
--- a/addons/inventory/XEH_postInit.sqf
+++ b/addons/inventory/XEH_postInit.sqf
@@ -18,7 +18,7 @@ GVAR(Grenades_ItemList) = [];
} count getArray (configFile >> "CfgWeapons" >> "Throw" >> "muzzles");
// make list case insensitive
-GVAR(Grenades_ItemList) = [GVAR(Grenades_ItemList), {toLower _this}] call EFUNC(common,map);
+GVAR(Grenades_ItemList) = GVAR(Grenades_ItemList) apply {toLower _x};
// filter duplicates
GVAR(Grenades_ItemList) = GVAR(Grenades_ItemList) arrayIntersect GVAR(Grenades_ItemList);
@@ -42,7 +42,9 @@ GVAR(Medical_ItemList) = [];
);
// make list case insensitive
-GVAR(Medical_ItemList) = [GVAR(Medical_ItemList), {if (_this isEqualType "") then {toLower _this}}] call EFUNC(common,map);
+GVAR(Medical_ItemList) = GVAR(Medical_ItemList) apply {
+ if (_x isEqualType "") then {toLower _x};
+};
// filter duplicates
GVAR(Medical_ItemList) = GVAR(Medical_ItemList) arrayIntersect GVAR(Medical_ItemList);
diff --git a/addons/medical/functions/fnc_setHitPointDamage.sqf b/addons/medical/functions/fnc_setHitPointDamage.sqf
index f8698a7fe0..44da08f233 100644
--- a/addons/medical/functions/fnc_setHitPointDamage.sqf
+++ b/addons/medical/functions/fnc_setHitPointDamage.sqf
@@ -47,8 +47,7 @@ if !(_selection in _selections) exitWith {
_unit setHitPointDamage [_selection, _damage];
};
-GVAR(unit) = _unit;
-_damages = [_selections, {GVAR(unit) getHitPointDamage _this}] call EFUNC(common,map);
+_damages = _selections apply {_unit getHitPointDamage _x};
_damageOld = damage _unit;
_damageSumOld = 0;
diff --git a/addons/nametags/functions/fnc_doShow.sqf b/addons/nametags/functions/fnc_doShow.sqf
index 1b7323921f..615916de7f 100644
--- a/addons/nametags/functions/fnc_doShow.sqf
+++ b/addons/nametags/functions/fnc_doShow.sqf
@@ -18,23 +18,19 @@
private["_roleImages", "_player", "_vehicle", "_type", "_config", "_text", "_data", "_isAir", "_turretUnits", "_turretRoles", "_index", "_roleType", "_unit", "_toShow"];
-
_player = ACE_player;
_vehicle = vehicle _player;
_type = typeOf _vehicle;
_config = configFile >> "CfgVehicles" >> _type;
_text = format[" %2 ", getText(_config>>"picture"), getText (_config >> "DisplayName")];
-
-
_data = [_type] call FUNC(getVehicleData);
_isAir = _data select 0;
_data = _data select 1;
-_turretUnits = [_data, { _vehicle turretUnit (_x select 0) } ] call EFUNC(common,map);
-_turretRoles = [_data, { _x select 1 } ] call EFUNC(common,map);
-
+_turretUnits = _data apply {_vehicle turretUnit (_x select 0)};
+_turretRoles = _data apply {_x select 1};
_roleType = CARGO;
_toShow = [];
@@ -61,7 +57,6 @@ _toShow = [];
_toShow pushBack [_x, _roleType];
} forEach crew _vehicle;
-
_toShow = [
_toShow,
[],
@@ -75,7 +70,6 @@ _toShow = [
}
] call BIS_fnc_sortBy;
-
_roleImages = ROLE_IMAGES;
{
_unit = _x select 0;
@@ -83,7 +77,6 @@ _roleImages = ROLE_IMAGES;
_text = _text + format["%1 ", [_unit] call EFUNC(common,getName), _roleImages select _roleType];
} forEach _toShow;
-
("ACE_CrewInfo_CrewInfo" call BIS_fnc_rscLayer) cutRsc ["ACE_CrewInfo_dialog", "PLAIN", 1, false];
terminate (missionNamespace getVariable [QGVAR(hideCrewInfoHandle), scriptNull]);
diff --git a/addons/reloadlaunchers/functions/fnc_getLoadableMissiles.sqf b/addons/reloadlaunchers/functions/fnc_getLoadableMissiles.sqf
index ed1f11bdf3..e75d826513 100644
--- a/addons/reloadlaunchers/functions/fnc_getLoadableMissiles.sqf
+++ b/addons/reloadlaunchers/functions/fnc_getLoadableMissiles.sqf
@@ -22,7 +22,7 @@ private "_magazines";
_magazines = magazines _unit;
// case sensitvity
-_magazines = [_magazines, {toLower _this}] call EFUNC(common,map);
+_magazines = _magazines apply {toLower _x};
// get reloaders magazine types compatible with targets launcher. No duplicates.
getArray (configFile >> "CfgWeapons" >> _weapon >> "magazines") select {toLower _x in _magazines} // return
diff --git a/addons/scopes/functions/fnc_applyScopeAdjustment.sqf b/addons/scopes/functions/fnc_applyScopeAdjustment.sqf
index 7fdb671859..f4040073a9 100644
--- a/addons/scopes/functions/fnc_applyScopeAdjustment.sqf
+++ b/addons/scopes/functions/fnc_applyScopeAdjustment.sqf
@@ -42,7 +42,7 @@ playSound (["ACE_Scopes_Click_1", "ACE_Scopes_Click_2", "ACE_Scopes_Click_3"] se
// slightly rotate the player if looking through optic
if (cameraView == "GUNNER") then {
// Convert adjustmentDifference from mils to degrees
- _adjustmentDifference = [_adjustmentDifference, {_this * 0.05625}] call EFUNC(common,map);
+ _adjustmentDifference = _adjustmentDifference apply {_x * 0.05625};
_adjustmentDifference params ["_elevationDifference", "_windageDifference"];
_pitchBankYaw = [_unit] call EFUNC(common,getPitchBankYaw);
_pitchBankYaw params ["_pitch", "_bank", "_yaw"];
From 0a9048815bff611e703bc1103bcb59b22eb5f1fe Mon Sep 17 00:00:00 2001
From: commy2
Date: Sat, 6 Feb 2016 14:59:31 +0100
Subject: [PATCH 13/64] simlify some select CODE statements
---
addons/inventory/XEH_postInit.sqf | 7 ++++---
.../functions/fnc_blueForceTrackingUpdate.sqf | 17 ++++++++---------
addons/map/functions/fnc_determineMapLight.sqf | 18 ++++++------------
3 files changed, 18 insertions(+), 24 deletions(-)
diff --git a/addons/inventory/XEH_postInit.sqf b/addons/inventory/XEH_postInit.sqf
index 7d7bfb23dd..586f10fc28 100644
--- a/addons/inventory/XEH_postInit.sqf
+++ b/addons/inventory/XEH_postInit.sqf
@@ -41,10 +41,11 @@ GVAR(Medical_ItemList) = [];
("true" configClasses (configFile >> QEGVAR(Medical,Actions) >> "Advanced"))
);
+// remove all numbers from list
+GVAR(Medical_ItemList) = GVAR(Medical_ItemList) select {_x isEqualType ""};
+
// make list case insensitive
-GVAR(Medical_ItemList) = GVAR(Medical_ItemList) apply {
- if (_x isEqualType "") then {toLower _x};
-};
+GVAR(Medical_ItemList) = GVAR(Medical_ItemList) apply {toLower _x};
// filter duplicates
GVAR(Medical_ItemList) = GVAR(Medical_ItemList) arrayIntersect GVAR(Medical_ItemList);
diff --git a/addons/map/functions/fnc_blueForceTrackingUpdate.sqf b/addons/map/functions/fnc_blueForceTrackingUpdate.sqf
index bf2c413837..3e966ca5f6 100644
--- a/addons/map/functions/fnc_blueForceTrackingUpdate.sqf
+++ b/addons/map/functions/fnc_blueForceTrackingUpdate.sqf
@@ -16,15 +16,14 @@ if (GVAR(BFT_Enabled) and {(!isNil "ACE_player") and {alive ACE_player}}) then {
_groupsToDrawMarkers = [];
_playerSide = call EFUNC(common,playerSide);
- if !(GVAR(BFT_HideAiGroups)) then {
- _groupsToDrawMarkers = allGroups select {side _x == _playerSide};
- } else {
- _groupsToDrawMarkers = allGroups select {
- _anyPlayers = {
- [_x] call EFUNC(common,isPlayer);
- } count units _x;
- (side _x == _playerSide) && _anyPlayers > 0
- }; // @todo, simplify this
+ _groupsToDrawMarkers = allGroups select {side _x == _playerSide};
+
+ if (GVAR(BFT_HideAiGroups)) then {
+ _groupsToDrawMarkers = _groupsToDrawMarkers select {
+ {
+ _x call EFUNC(common,isPlayer);
+ } count units _x > 0;
+ };
};
{
diff --git a/addons/map/functions/fnc_determineMapLight.sqf b/addons/map/functions/fnc_determineMapLight.sqf
index a844cdad07..c647e93e0c 100644
--- a/addons/map/functions/fnc_determineMapLight.sqf
+++ b/addons/map/functions/fnc_determineMapLight.sqf
@@ -90,27 +90,21 @@ TRACE_1("Player is on foot or in an open vehicle","");
_lightLevel = _lightLevel max ([_unit, _x] call EFUNC(common,lightIntensityFromObject));
} forEach nearestObjects [_unit, ["All"], 40];
-
// @todo: Illumination flares (timed)
-
// Using chemlights
-_nearObjects = (_unit nearObjects ["SmokeShell", 4]) select {
- alive _x && {(typeOf _x == "Chemlight_red") || {
- (typeOf _x == "Chemlight_green") || {
- (typeOf _x == "Chemlight_blue") || {
- (typeOf _x == "Chemlight_yellow")}}}}}; // @todo, simplify this
+_nearObjects = (_unit nearObjects ["SmokeShell", 4]) select {alive _x && {toLower typeOf _x in ["chemlight_red", "chemlight_green", "chemlight_blue", "chemlight_yellow"]}};
if (count (_nearObjects) > 0) then {
_light = _nearObjects select 0;
_ll = (1 - ((((_unit distance _light) - 2)/2) max 0)) * 0.4;
if (_ll > _lightLevel) then {
- _flareTint = switch (typeOf _light) do {
- case "Chemlight_red" : {[1,0,0,1]};
- case "Chemlight_green" : {[0,1,0,1]};
- case "Chemlight_blue" : {[0,0,1,1]};
- case "Chemlight_yellow" : {[1,1,0,1]};
+ _flareTint = switch (toLower typeOf _light) do {
+ case "chemlight_red" : {[1,0,0,1]};
+ case "chemlight_green" : {[0,1,0,1]};
+ case "chemlight_blue" : {[0,0,1,1]};
+ case "chemlight_yellow" : {[1,1,0,1]};
};
_lightTint = [_lightTint, _flareTint, (_ll - _lightLevel)/(1 - _lightLevel)] call _fnc_blendColor;
_lightLevel = _ll;
From d326b1b6f150ee93048c84914af3bb77e5dccd92 Mon Sep 17 00:00:00 2001
From: commy2
Date: Sat, 6 Feb 2016 17:31:41 +0100
Subject: [PATCH 14/64] update cba files under tools
---
addons/dragging/CfgVehicles.hpp | 1 -
.../cba/addons/main/script_macros_common.hpp | 36 +-
tools/cba/addons/xeh/init_pre.sqf | 366 ------------------
tools/cba/addons/xeh/script_xeh.hpp | 169 ++++----
4 files changed, 94 insertions(+), 478 deletions(-)
delete mode 100644 tools/cba/addons/xeh/init_pre.sqf
diff --git a/addons/dragging/CfgVehicles.hpp b/addons/dragging/CfgVehicles.hpp
index bbd362f758..0a963df433 100644
--- a/addons/dragging/CfgVehicles.hpp
+++ b/addons/dragging/CfgVehicles.hpp
@@ -32,7 +32,6 @@ class CfgVehicles {
// ammo boxes
class ThingX;
class ReammoBox_F: ThingX {
- XEH_ENABLED;
GVAR(canCarry) = 0;
GVAR(carryPosition[]) = {0,1,1};
GVAR(carryDirection) = 0;
diff --git a/tools/cba/addons/main/script_macros_common.hpp b/tools/cba/addons/main/script_macros_common.hpp
index d205bfc975..fa24f29432 100644
--- a/tools/cba/addons/main/script_macros_common.hpp
+++ b/tools/cba/addons/main/script_macros_common.hpp
@@ -621,9 +621,6 @@ Author:
#define LSTR(var1) TRIPLES(ADDON,STR,var1)
-#define CACHE_DIS_SYS(var1,var2) (isNumber(var1 >> "CfgSettings" >> "CBA" >> "caching" >> QUOTE(var2)) && getNumber(var1 >> "CfgSettings" >> "CBA" >> "caching" >> QUOTE(var2)) != 1)
-#define CACHE_DIS(var1) (!isNil "CBA_RECOMPILE" || CACHE_DIS_SYS(configFile,var1) || CACHE_DIS_SYS(missionConfigFile,var1))
-
#ifndef DEBUG_SETTINGS
#define DEBUG_SETTINGS [false, true, false]
#endif
@@ -829,21 +826,21 @@ Parameters:
Author:
Spooner
------------------------------------------- */
-#define IS_META_SYS(VAR,TYPE) (if (isNil {VAR}) then { false } else { (typeName (VAR)) == TYPE })
-#define IS_ARRAY(VAR) IS_META_SYS(VAR,"ARRAY")
-#define IS_BOOL(VAR) IS_META_SYS(VAR,"BOOL")
-#define IS_CODE(VAR) IS_META_SYS(VAR,"CODE")
-#define IS_CONFIG(VAR) IS_META_SYS(VAR,"CONFIG")
-#define IS_CONTROL(VAR) IS_META_SYS(VAR,"CONTROL")
-#define IS_DISPLAY(VAR) IS_META_SYS(VAR,"DISPLAY")
-#define IS_GROUP(VAR) IS_META_SYS(VAR,"GROUP")
-#define IS_OBJECT(VAR) IS_META_SYS(VAR,"OBJECT")
-#define IS_SCALAR(VAR) IS_META_SYS(VAR,"SCALAR")
-#define IS_SCRIPT(VAR) IS_META_SYS(VAR,"SCRIPT")
-#define IS_SIDE(VAR) IS_META_SYS(VAR,"SIDE")
+#define IS_META_SYS(VAR,TYPE) (if (isNil {VAR}) then { false } else { (VAR) isEqualType TYPE })
+#define IS_ARRAY(VAR) IS_META_SYS(VAR,[])
+#define IS_BOOL(VAR) IS_META_SYS(VAR,false)
+#define IS_CODE(VAR) IS_META_SYS(VAR,{})
+#define IS_CONFIG(VAR) IS_META_SYS(VAR,configNull)
+#define IS_CONTROL(VAR) IS_META_SYS(VAR,controlNull)
+#define IS_DISPLAY(VAR) IS_META_SYS(VAR,displayNull)
+#define IS_GROUP(VAR) IS_META_SYS(VAR,grpNull)
+#define IS_OBJECT(VAR) IS_META_SYS(VAR,objNull)
+#define IS_SCALAR(VAR) IS_META_SYS(VAR,0)
+#define IS_SCRIPT(VAR) IS_META_SYS(VAR,scriptNull)
+#define IS_SIDE(VAR) IS_META_SYS(VAR,west)
#define IS_STRING(VAR) IS_META_SYS(VAR,"STRING")
-#define IS_TEXT(VAR) IS_META_SYS(VAR,"TEXT")
-#define IS_LOCATION(VAR) IS_META_SYS(VAR,"LOCATION")
+#define IS_TEXT(VAR) IS_META_SYS(VAR,text "")
+#define IS_LOCATION(VAR) IS_META_SYS(VAR,locationNull)
#define IS_BOOLEAN(VAR) IS_BOOL(VAR)
#define IS_FUNCTION(VAR) IS_CODE(VAR)
@@ -1408,8 +1405,9 @@ Author:
}
// XEH Specific
-#define XEH_DISABLED class EventHandlers {}; SLX_XEH_DISABLED = 1
-#define XEH_ENABLED class EventHandlers { EXTENDED_EVENTHANDLERS }; delete SLX_XEH_DISABLED
+#define XEH_CLASS CBA_Extended_EventHandlers
+#define XEH_DISABLED class EventHandlers { class XEH_CLASS {}; }; SLX_XEH_DISABLED = 1
+#define XEH_ENABLED class EventHandlers { class XEH_CLASS { EXTENDED_EVENTHANDLERS }; }; SLX_XEH_DISABLED = 0
// TODO: These are actually outdated; _Once ?
#define XEH_PRE_INIT QUOTE(call COMPILE_FILE(XEH_PreInit_Once))
diff --git a/tools/cba/addons/xeh/init_pre.sqf b/tools/cba/addons/xeh/init_pre.sqf
deleted file mode 100644
index 1b6642c777..0000000000
--- a/tools/cba/addons/xeh/init_pre.sqf
+++ /dev/null
@@ -1,366 +0,0 @@
-// #define DEBUG_MODE_FULL
-#include "script_component.hpp"
-SCRIPT(init_pre);
-
-if !(isNil'SLX_XEH_MACHINE') exitWith {}; // Doublecheck..
-
-LOG(MSG_INIT);
-// No _this in pre/PostInit, also fixes call to init_compile
-private "_this";
-_this = nil;
-
-private ["_id", "_cfgRespawn", "_respawn", "_level"];
-
-// UNIQUE Session ID since start of game
-_id = uiNamespace getVariable "SLX_XEH_ID";
-if (isNil "_id") then { _id = 1 } else { if (typeName _id != "SCALAR") then { _id = 0 }; if (_id < 0) then { _id = 0 }; INC(_id) };
-uiNamespace setVariable ["SLX_XEH_ID", _id];
-
-CBA_isCached = uiNamespace getVariable "CBA_isCached";
-CBA_isCached = if (isNil "CBA_isCached" && {isMultiplayer} && {!isDedicated}) then { -1 } else { _id };
-uiNamespace setVariable ["CBA_isCached", CBA_isCached];
-
-if (isNil "SLX_XEH_RECOMPILE") then { SLX_XEH_RECOMPILE = CACHE_DIS(xeh) };
-
-if (!isMultiplayer || {isDedicated} || {CBA_isCached == -1}) then {
- uiNamespace setVariable ["SLX_XEH_CACHE_KEYS", []];
- uiNamespace setVariable ["SLX_XEH_CACHE_KEYS2", []];
- uiNamespace setVariable ["SLX_XEH_CACHE_KEYS3", []];
- uiNamespace setVariable ["CBA_CACHE_KEYS", []];
-};
-
-SLX_XEH_CACHE_KEYS = uiNamespace getVariable "SLX_XEH_CACHE_KEYS";
-SLX_XEH_CACHE_KEYS2 = uiNamespace getVariable "SLX_XEH_CACHE_KEYS2";
-SLX_XEH_CACHE_KEYS3 = uiNamespace getVariable "SLX_XEH_CACHE_KEYS3";
-CBA_CACHE_KEYS = uiNamespace getVariable "CBA_CACHE_KEYS";
-
-// Always compile cache function once
-call compile preProcessFileLineNumbers 'x\cba\addons\xeh\init_compile.sqf';
-
-// Log
-SLX_XEH_DisableLogging = isClass(configFile/"CfgPatches"/"Disable_XEH_Logging");
-
-// Backup functions for macros
-// TODO: Cleanup...
-// CBA_fnc_log = { diag_log [diag_frameNo, diag_tickTime, time, _this] };
-
-
-/* CBA_fnc_defaultParam = {
- params ["_params","_index","_defaultValue"];
-
- private "_value";
-
- if (!isNil "_defaultValue") then {
- _value = _defaultValue;
- };
-
- if (!isNil "_params" && {(typeName _params) == "ARRAY"} && {count _params > _index} && {!isNil { _params select _index }}) then {
- _value = _params select _index;
- };
-
- // Return.
- if (isNil "_value") then {
- nil;
- } else {
- _value;
- };
-};
-*/
-
-XEH_LOG("XEH: PreInit Started. v"+getText(configFile >> "CfgPatches" >> "CBA_XEH" >> "version")+". "+PFORMAT_5("MISSINIT",missionName,worldName,isMultiplayer,isServer,isDedicated));
-if (time > 0) then { XEH_LOG("XEH WARNING: Time > 0; This probably means there are no XEH compatible units by default on the map, perhaps add the SLX_XEH_Logic module.") };
-
-// Compile all necessary scripts and start one vehicle crew initialisation thread
-_cfgRespawn = (missionConfigFile/"respawn");
-_respawn = false;
-if ( isNumber(_cfgRespawn) ) then {
- _respawn = !(getNumber(_cfgRespawn) in [0, 1, 4, 5]);
-};
-if ( isText(_cfgRespawn) ) then {
- _respawn = !(getText(_cfgRespawn) in ["none", "bird", "group", "side"]);
-};
-
-SLX_XEH_objects = []; // Temporary array, to track InitPosts at mission initialization
-SLX_XEH_INIT_MEN = []; // Temporary array, to track ManBased inits - to workaround JIP issue "Double init eh ran for crew units"
-SLX_XEH_DELAYED = []; // Temporary array, to track Delayed Inits at mission initialization
-
-
-// Game version detection
-_level = 0; // pre v1.60
-// TODO: Improve v1.60 detection
-// TODO: Temporary disabled due to #28652
-//if ((isNumber (configFile >> "CfgDifficulties" >> "recruit" >> "recoilCoef")) && (isNumber (configFile >> "CfgVehicles" >> "Car" >> "turnCoef"))) then {
- //_level = 1; // v1.60
-//};
-
-FUNC(determineProductVersion) = {
- private "_pv";
- _pv = call {productVersion};
-
- // A2 (and OA pre 1.61beta, and TOH pre 1.05?) does not support productVersion so we deal with it manually
- if (isNil "_pv") then {
- _pv = if (isClass(configFile >> "CfgPatches" >> "A3_Map_Stratis")) then {
- // A3 Backup
- ["Arma 3 Alpha","Arma3Alpha", -1, -1]; //,5,102571]
-
- } else {
- if (isClass(configFile >> "CfgPatches" >> "United_States_H")) then {
- // TOH Backup
- ["TakeOn H", "TakeOnH", -1, -1];
- } else {
- if (isClass(configFile >> "CfgPatches" >> "Takistan")) then {
- // OA Backup
- ["ArmA 2OA", "ArmA2OA", -1, -1];
- } else {
- // A2 Backup
- ["ArmA 2", "ArmA2", -1, -1];
- };
- };
- };
- };
-
- _pv;
-};
-
-FUNC(determineGame) = {
- // 0 = A2
- // 1 = OA
- // 2 = TOH
- // 3 = A3 :P
- private "_pv";
- _pv = call FUNC(determineProductVersion);
-
- switch (_pv select 1) do {
- case "ArmA2": {0};
- case "ArmA2OA": {1};
- case "TakeOnH": {2};
- case "Arma3Alpha": {3};
- case "Arma3": {3};
- default {0};
- };
-};
-
-// System array with machine / mission / session information
-SLX_XEH_MACHINE =
-[
- !isDedicated, // 0 - isClient (and thus has player)
- false, // 1 - isJip
- !isServer, // 2 - isDedicatedClient (and thus not a Client-Server)
- isServer, // 3 - isServer
- isDedicated, // 4 - isDedicatedServer (and thus not a Client-Server)
- false, // 5 - Player Check Finished
- !isMultiplayer, // 6 - SP?
- false, // 7 - StartInit Passed
- false, // 8 - Postinit Passed
- isMultiplayer && {_respawn}, // 9 - Multiplayer && respawn?
- if (isDedicated) then { 0 } else { if (isServer) then { 1 } else { 2 } }, // 10 - Machine type (only 3 possible configurations)
- _id, // 11 - SESSION_ID
- _level, // 12 - LEVEL - Used for version determination
- false, // 13 - TIMEOUT - PostInit timedOut
- call FUNC(determineGame), // 14 - Game
- call FUNC(determineProductVersion) // 15 - Product+Version
-];
-
-SLX_XEH_DUMMY = switch (SLX_XEH_MACHINE select 14) do {
- case 2: {"Helipad_Invisible_H" };
- case 3: {"Land_HelipadEmpty_F" };
- default { "HeliHEmpty" };
-};
-
-SLX_XEH_STR = ""; // Empty string
-SLX_XEH_STR_INIT_EH = "Extended_Init_EventHandlers";
-SLX_XEH_STR_INIT_POST_EH = "Extended_InitPost_EventHandlers";
-SLX_XEH_STR_PreInit = "Extended_PreInit_EventHandlers";
-SLX_XEH_STR_PostInit = "Extended_PostInit_EventHandlers";
-SLX_XEH_STR_DEH = "DefaultEventhandlers";
-SLX_XEH_STR_TAG = "SLX_XEH_";
-SLX_XEH_STR_PLAYABLE = "SLX_XEH_PLAYABLE";
-
-SLX_XEH_STR_PROCESSED = "SLX_XEH_PROCESSED";
-SLX_XEH_AR_FALSE = [SLX_XEH_STR_PROCESSED, false];
-SLX_XEH_AR_TRUE = [SLX_XEH_STR_PROCESSED, true];
-
-SLX_XEH_OTHER_EVENTS = [XEH_EVENTS,XEH_CUSTOM_EVENTS]; // All events except the init event
-SLX_XEH_OTHER_EVENTS_FULL = [];
-{ SLX_XEH_OTHER_EVENTS_FULL pushBack format["Extended_%1_EventHandlers", _x] } forEach SLX_XEH_OTHER_EVENTS;
-SLX_XEH_OTHER_EVENTS_XEH = [];
-{ SLX_XEH_OTHER_EVENTS_XEH pushBack format["Extended_%1EH", _x] } forEach SLX_XEH_OTHER_EVENTS;
-SLX_XEH_OTHER_EVENTS_XEH_PLAYERS = [];
-{ SLX_XEH_OTHER_EVENTS_XEH_PLAYERS pushBack format["Extended_%1EH_Player", _x] } forEach SLX_XEH_OTHER_EVENTS;
-SLX_XEH_OTHER_EVENTS_PLAYERS = [];
-
-// HitPart is special in that the passed parameter to the event handler is an array of arrays
-{
- if (_x == "HitPart") then
- {
- SLX_XEH_OTHER_EVENTS_PLAYERS pushBack (compile format["{ { _this call _x } forEach (((_this select 0) select 0) getVariable [SLX_XEH_STR_%1_Player,[]]) }",_x])
- }
- else
- {
- SLX_XEH_OTHER_EVENTS_PLAYERS pushBack (compile format["{ { _this call _x } forEach ((_this select 0) getVariable [SLX_XEH_STR_%1_Player,[]]) }",_x])
- }
-} forEach SLX_XEH_OTHER_EVENTS;
-
-SLX_XEH_CONFIG_FILES = [configFile, campaignConfigFile, missionConfigFile];
-SLX_XEH_CONFIG_FILES_VARIABLE = [campaignConfigFile, missionConfigFile];
-
-SLX_XEH_DEF_CLASSES = [SLX_XEH_STR, "All"];
-
-// XEH for non XEH supported addons
-// Only works until someone uses removeAllEventhandlers on the object
-// Only works if there is at least 1 XEH-enabled object on the Map - Place SLX_XEH_Logic to make sure XEH initializes.
-// TODO: Perhaps do a config verification - if no custom eventhandlers detected in _all_ CfgVehicles classes, don't run this XEH handler - might be too much processing.
-SLX_XEH_EVENTS_NAT = [XEH_EVENTS];
-SLX_XEH_EVENTS_FULL_NAT = [];
-{ SLX_XEH_EVENTS_FULL_NAT pushBack format["Extended_%1_EventHandlers", _x] } forEach SLX_XEH_EVENTS_NAT;
-
-SLX_XEH_EXCLUDES = []; // TODO: Anything else?? - Ammo crates for instance have no XEH by default due to crashes) - however, they don't appear in 'vehicles' list anyway.
-SLX_XEH_CLASSES = []; // Used to cache classes that have full XEH setup - TODO: Performance test.. Could use object with a variable space, classname as key
-SLX_XEH_FULL_CLASSES = []; // Used to cache classes that NEED full XEH setup
-SLX_XEH_EXCL_CLASSES = []; // Used for exclusion classes
-
-
-// Function Compilation
-SLX_XEH_LOG = { XEH_LOG(_this); };
-
-PREP(init_once); // Pre and PostInits
-
-PREP(init_delayed);
-PREP(init_playable);
-
-// Inits and InitPosts
-PREP(init);
-PREP(init_enum);
-PREP(init_enum_cache);
-PREP(init_post);
-
-// Init Others
-PREP(init_others);
-PREP(init_others_enum);
-PREP(init_others_enum_cache);
-
-PREP(addPlayerEvents); // Add / Remove the playerEvents
-PREP(removePlayerEvents);
-PREP(support_monitor);
-PREP(support_monitor2);
-
-call COMPILE_FILE(init_eh); // All XEH Event functions
-
-
-/*
-* Process the crews of vehicles. This "thread" will run just
-* before PostInit and the mission init.sqf is processed. The order of execution is
-*
-* 1) all config.cpp init EHs (including all Extended_Init_Eventhandlers)
-* 2) all the init lines in the mission.sqm
-* 3) spawn:ed "threads" are started
-* 4) the mission's init.sqf/sqs is run
-*/
-
-GVAR(init_obj) = SLX_XEH_DUMMY createVehicleLocal [0, 0, 0];
-GVAR(init_obj) addEventHandler ["killed", {
- #ifdef DEBUG_MODE_FULL
- XEH_LOG("XEH: VehicleCrewInit: "+str(count vehicles));
- #endif
-
- {
- _sim = getText(configFile/"CfgVehicles"/(typeOf _x)/"simulation");
- _crew = crew _x;
- /*
- * If it's a vehicle then start event handlers for the crew.
- * (Vehicles have crew and are neither humanoids nor game logics)
- */
- if (count _crew > 0 && {{ _sim == _x }count["soldier", "invisible"] == 0}) then {
- { if !(_x in SLX_XEH_INIT_MEN) then { [_x] call SLX_XEH_EH_Init } } forEach _crew;
- };
- } forEach vehicles;
- SLX_XEH_INIT_MEN = nil;
-
- deleteVehicle GVAR(init_obj);GVAR(init_obj) = nil
-}];
-
-GVAR(init_obj) setDamage 1; // Schedule to run itsy bitsy later
-
-// Prepare postInit
-GVAR(init_obj2) = SLX_XEH_DUMMY createVehicleLocal [0, 0, 0];
-GVAR(init_obj2) addEventHandler ["killed", {
- call COMPILE_FILE(init_post);
- deleteVehicle GVAR(init_obj2);GVAR(init_obj2) = nil;
-}];
-
-// Schedule PostInit
-SLX_XEH_STR spawn {
- // Warn if PostInit takes longer than 10 tickTime seconds
- SLX_XEH_STR spawn {
- private["_time2Wait"];
- _time2Wait = diag_ticktime + 10;
- waituntil {diag_ticktime > _time2Wait};
- if !(SLX_XEH_MACHINE select 8) then {
- XEH_LOG("WARNING: PostInit did not finish in a timely fashion");
- waitUntil {time > 0};
- // Consider there will be no player if neither PostInit-Ready, nor PlayerCheck-Ready
- if !(SLX_XEH_MACHINE select 8 || {SLX_XEH_MACHINE select 5}) then { SLX_XEH_MACHINE set [13, true]; };
- };
- };
-
- // On Server + Non JIP Client, we are now after all objects have inited
- // and at the briefing, still time == 0
- if (isNull player) then {
- #ifdef DEBUG_MODE_FULL
- "NULL PLAYER" call SLX_XEH_LOG;
- #endif
- if !((SLX_XEH_MACHINE select 4) || {(SLX_XEH_MACHINE select 6)}) then { // only if MultiPlayer and not dedicated
- #ifdef DEBUG_MODE_FULL
- "JIP" call SLX_XEH_LOG;
- #endif
-
- // TEST for weird jip-is-server-issue :S
- if (!(SLX_XEH_MACHINE select 2) || {SLX_XEH_MACHINE select 3} || {SLX_XEH_MACHINE select 4}) then {
- str(["WARNING: JIP Client, yet wrong detection", SLX_XEH_MACHINE]) call SLX_XEH_LOG;
- SLX_XEH_MACHINE set [2, true]; // set Dedicated client
- SLX_XEH_MACHINE set [3, false]; // set server
- SLX_XEH_MACHINE set [4, false]; // set dedicatedserver
- };
- waitUntil { !(isNull player) || {SLX_XEH_MACHINE select 13} };
- if (SLX_XEH_MACHINE select 13) then { XEH_LOG("WARNING: TimedOut waiting for player object to be ready. Continueing PostInit without Player ready") };
- };
- };
-
- if !(isNull player) then {
- if (isNull (group player) && {player isKindOf "CAManBase"}) then {
- // DEBUG TEST: Crashing due to JIP, or when going from briefing
- // into game
- #ifdef DEBUG_MODE_FULL
- "NULLGROUP" call SLX_XEH_LOG;
- #endif
- waitUntil { !(isNull (group player)) };
- };
- waitUntil { local player };
- };
-
- // set JIP
- SLX_XEH_MACHINE set [1, !isDedicated && getClientState in ["BRIEFING SHOWN","BRIEFING READ","GAME FINISHED","DEBRIEFING READ"]];
-
- GVAR(init_obj2) setDamage 1; // Schedule to run itsy bitsy later
-
- SLX_XEH_MACHINE set [5, true]; // set player check = complete
-};
-
-// Load and call any "pre-init", run-once event handlers
-/*
- Compile code strings in the Extended_PreInit_EventHandlers class and call
- them. This is done once per mission and before any extended init event
- handler code is run. An addon maker can put run-once initialisation code
- in such a pre-init "EH" rather than in a normal XEH init EH which might be
- called several times.
-*/
-{ (_x/SLX_XEH_STR_PreInit) call FUNC(init_once) } forEach SLX_XEH_CONFIG_FILES;
-
-private "_s";
-// Normally, full caching is enabled. If not, log an informative message.
-_s = if (SLX_XEH_RECOMPILE || CBA_COMPILE_RECOMPILE || CBA_FUNC_RECOMPILE) then {
- PFORMAT_3(" CACHE DISABLED? (Disable caching with cba_cache_disable.pbo)",SLX_XEH_RECOMPILE,CBA_COMPILE_RECOMPILE,CBA_FUNC_RECOMPILE)
-} else {
- ""
-};
-XEH_LOG("XEH: PreInit Finished." + _s);
diff --git a/tools/cba/addons/xeh/script_xeh.hpp b/tools/cba/addons/xeh/script_xeh.hpp
index 4f242b492e..82fb724c03 100644
--- a/tools/cba/addons/xeh/script_xeh.hpp
+++ b/tools/cba/addons/xeh/script_xeh.hpp
@@ -8,103 +8,88 @@
// MACRO: EXTENDED_EVENTHANDLERS
// Add all XEH event handlers
/////////////////////////////////////////////////////////////////////////////////
-#define EXTENDED_EVENTHANDLERS init = "_this call SLX_XEH_EH_Init"; \
-fired = "_this call SLX_XEH_EH_Fired"; \
-animChanged = "_this call SLX_XEH_EH_AnimChanged"; \
-animDone = "_this call SLX_XEH_EH_AnimDone"; \
-animStateChanged = "_this call SLX_XEH_EH_AnimStateChanged"; \
-containerClosed = "_this call SLX_XEH_EH_ContainerClosed"; \
-containerOpened = "_this call SLX_XEH_EH_ContainerOpened"; \
-controlsShifted = "_this call SLX_XEH_EH_ControlsShifted"; \
-dammaged = "_this call SLX_XEH_EH_Dammaged"; \
-engine = "_this call SLX_XEH_EH_Engine"; \
-epeContact = "_this call SLX_XEH_EH_EpeContact"; \
-epeContactEnd = "_this call SLX_XEH_EH_EpeContactEnd"; \
-epeContactStart = "_this call SLX_XEH_EH_EpeContactStart"; \
-explosion = "_this call SLX_XEH_EH_Explosion"; \
-firedNear = "_this call SLX_XEH_EH_FiredNear"; \
-fuel = "_this call SLX_XEH_EH_Fuel"; \
-gear = "_this call SLX_XEH_EH_Gear"; \
-getIn = "_this call SLX_XEH_EH_GetIn"; \
-getOut = "_this call SLX_XEH_EH_GetOut"; \
-handleHeal = "_this call SLX_XEH_EH_HandleHeal"; \
-hit = "_this call SLX_XEH_EH_Hit"; \
-hitPart = "_this call SLX_XEH_EH_HitPart"; \
-incomingMissile = "_this call SLX_XEH_EH_IncomingMissile"; \
-inventoryClosed = "_this call SLX_XEH_EH_InventoryClosed"; \
-inventoryOpened = "_this call SLX_XEH_EH_InventoryOpened"; \
-killed = "_this call SLX_XEH_EH_Killed"; \
-landedTouchDown = "_this call SLX_XEH_EH_LandedTouchDown"; \
-landedStopped = "_this call SLX_XEH_EH_LandedStopped"; \
-local = "_this call SLX_XEH_EH_Local"; \
-respawn = "_this call SLX_XEH_EH_Respawn"; \
-put = "_this call SLX_XEH_EH_Put"; \
-take = "_this call SLX_XEH_EH_Take"; \
-seatSwitched = "_this call SLX_XEH_EH_SeatSwitched"; \
-soundPlayed = "_this call SLX_XEH_EH_SoundPlayed"; \
-weaponAssembled = "_this call SLX_XEH_EH_WeaponAssembled"; \
-weaponDisAssembled = "_this call SLX_XEH_EH_WeaponDisassembled";
-
-//handleDamage = "_this call SLX_XEH_EH_HandleDamage"; \
-//mpHit = "_this call SLX_XEH_EH_MPHit"; \
-//mpKilled = "_this call SLX_XEH_EH_MPKilled"; \
-//mpRespawn = "_this call SLX_XEH_EH_MPRespawn";
+#define EXTENDED_EVENTHANDLERS init = "(_this select 0) call CBA_fnc_initEvents; (_this select 0) call CBA_fnc_init"; \
+fired = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_fired"")"; \
+animChanged = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_animChanged"")"; \
+animDone = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_animDone"")"; \
+animStateChanged = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_animStateChanged"")"; \
+containerClosed = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_containerClosed"")"; \
+containerOpened = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_containerOpened"")"; \
+controlsShifted = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_controlsShifted"")"; \
+dammaged = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_dammaged"")"; \
+engine = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_engine"")"; \
+epeContact = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_epeContact"")"; \
+epeContactEnd = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_epeContactEnd"")"; \
+epeContactStart = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_epeContactStart"")"; \
+explosion = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_explosion"")"; \
+firedNear = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_firedNear"")"; \
+fuel = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_cba_xeh_fuel"")"; \
+gear = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_gear"")"; \
+getIn = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_getIn"")"; \
+getOut = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_getOut"")"; \
+handleHeal = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_handleHeal"")"; \
+hit = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_hit"")"; \
+hitPart = "{_this call _x} forEach ((_this select 0 select 0) getVariable ""cba_xeh_hitPart"")"; \
+incomingMissile = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_incomingMissile"")"; \
+inventoryClosed = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_inventoryClosed"")"; \
+inventoryOpened = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_inventoryOpened"")"; \
+killed = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_killed"")"; \
+landedTouchDown = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_landedTouchDown"")"; \
+landedStopped = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_landedStopped"")"; \
+local = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_local"")"; \
+respawn = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_respawn"")"; \
+put = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_put"")"; \
+take = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_take"")"; \
+seatSwitched = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_seatSwitched"")"; \
+soundPlayed = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_soundPlayed"")"; \
+weaponAssembled = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_weaponAssembled"")"; \
+weaponDisassembled = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_weaponDisassembled"")"; \
+weaponDeployed = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_weaponDeployed"")"; \
+weaponRested = "{_this call _x} forEach ((_this select 0) getVariable ""cba_xeh_weaponRested"")";
/*
MACRO: DELETE_EVENTHANDLERS
- Removes all event handlers.
-
- Example:
- (begin example)
- class DefaultEventhandlers;
- class Car_F;
- class MRAP_01_base_F: Car_F {
- class EventHandlers;
- };
- class B_MRAP_01_F: MRAP_01_base_F {
- class Eventhandlers: EventHandlers {
- DELETE_EVENTHANDLERS
- };
- };
- (end example)
+ Removes all event handlers.
*/
-#define DELETE_EVENTHANDLERS delete init; \
-delete fired; \
-delete animChanged; \
-delete animDone; \
-delete animStateChanged; \
-delete containerClosed; \
-delete containerOpened; \
-delete controlsShifted; \
-delete dammaged; \
-delete engine; \
-delete epeContact; \
-delete epeContactEnd; \
-delete epeContactStart; \
-delete explosion; \
-delete firedNear; \
-delete fuel; \
-delete gear; \
-delete getIn; \
-delete getOut; \
-delete handleHeal; \
-delete hit; \
-delete hitPart; \
-delete incomingMissile; \
-delete inventoryClosed; \
-delete inventoryOpened; \
-delete killed; \
-delete landedTouchDown; \
-delete landedStopped; \
-delete local; \
-delete respawn; \
-delete put; \
-delete take; \
-delete seatSwitched; \
-delete soundPlayed; \
-delete weaponAssembled; \
-delete weaponDisAssembled;
+#define DELETE_EVENTHANDLERS init = ""; \
+fired = ""; \
+animChanged = ""; \
+animDone = ""; \
+animStateChanged = ""; \
+containerClosed = ""; \
+containerOpened = ""; \
+controlsShifted = ""; \
+dammaged = ""; \
+engine = ""; \
+epeContact = ""; \
+epeContactEnd = ""; \
+epeContactStart = ""; \
+explosion = ""; \
+firedNear = ""; \
+fuel = ""; \
+gear = ""; \
+getIn = ""; \
+getOut = ""; \
+handleHeal = ""; \
+hit = ""; \
+hitPart = ""; \
+incomingMissile = ""; \
+inventoryClosed = ""; \
+inventoryOpened = ""; \
+killed = ""; \
+landedTouchDown = ""; \
+landedStopped = ""; \
+local = ""; \
+respawn = ""; \
+put = ""; \
+take = ""; \
+seatSwitched = ""; \
+soundPlayed = ""; \
+weaponAssembled = ""; \
+weaponDisassembled = ""; \
+weaponDeployed = ""; \
+weaponRested = "";
From baf979064ae7758bebc61c90b4c39f4efc003c57 Mon Sep 17 00:00:00 2001
From: commy2
Date: Sat, 6 Feb 2016 17:45:47 +0100
Subject: [PATCH 15/64] remove old ragdoll tweaks
---
addons/ragdolls/$PBOPREFIX$ | 1 -
addons/ragdolls/README.md | 12 -
addons/ragdolls/config.cpp | 801 ---------------------------
addons/ragdolls/script_component.hpp | 17 -
4 files changed, 831 deletions(-)
delete mode 100644 addons/ragdolls/$PBOPREFIX$
delete mode 100644 addons/ragdolls/README.md
delete mode 100644 addons/ragdolls/config.cpp
delete mode 100644 addons/ragdolls/script_component.hpp
diff --git a/addons/ragdolls/$PBOPREFIX$ b/addons/ragdolls/$PBOPREFIX$
deleted file mode 100644
index 4c2fcd3ef9..0000000000
--- a/addons/ragdolls/$PBOPREFIX$
+++ /dev/null
@@ -1 +0,0 @@
-z\ace\addons\ragdolls
\ No newline at end of file
diff --git a/addons/ragdolls/README.md b/addons/ragdolls/README.md
deleted file mode 100644
index 86739775c3..0000000000
--- a/addons/ragdolls/README.md
+++ /dev/null
@@ -1,12 +0,0 @@
-ace_ragdolls
-============
-
-Tweaks the ragdoll behaviour to be more responsive to bullet impacts and explosions.
-
-
-## Maintainers
-
-The people responsible for merging changes to this component or answering potential questions.
-
-- [KoffeinFlummi](https://github.com/KoffeinFlummi)
-- [commy2](https://github.com/commy2)
diff --git a/addons/ragdolls/config.cpp b/addons/ragdolls/config.cpp
deleted file mode 100644
index 3d9198a41d..0000000000
--- a/addons/ragdolls/config.cpp
+++ /dev/null
@@ -1,801 +0,0 @@
-#include "script_component.hpp"
-
-class CfgPatches {
- class ADDON {
- units[] = {};
- weapons[] = {};
- requiredVersion = REQUIRED_VERSION;
- requiredAddons[] = {"ace_common"};
- author[] = {"KoffeinFlummi", "Opticalsnare"};
- authorUrl = "https://github.com/KoffeinFlummi/";
- VERSION_CONFIG;
- };
-};
-
-/*
- * BASED ON OPTICALSNARE'S WORK
- * He gave permission to use his code here:
- * http://forums.bistudio.com/showthread.php?171771-Flying-bodies-Physics-Mod&p=2603042#post2603042
- */
-
-class PhysXParams {
- epeImpulseDamageCoef = 1320.0;
- impulseForceRagdollCoef = 200;
- impulseTorqueRagdollCoef = 100;
- maxRagdollImpulseForceMagnitude = 500;
- maxRagdollImpulseTorqueMagnitude = 150;
- ragdollHitDmgLimit = "0.01f";
- ragdollHitForceCoef = "20f";
- ragdollHitTime = "0.05f";
- ragdollOnCollideForceCoef = "20.0f";
- ragdollOnCollideMassLimit = "0.0f";
- ragdollOnCollideMaxForce = "25.0f";
- ragdollOnCollideMaxOffset = "2.0f";
- ragdollOnCollideMaxOffsetSpeed = "50.0f";
- ragdollOnCollideSpeedLimit = "2500.0f";
- ragdollOnCollideVehicleImpulseCoef = "0.5f";
- ragdollUnconsciousSleepCoef = "0f";
- ragdollUnderwaterBuoyancyCoef = 9.7;
- ragdollUnderwaterResistanceCoef = 0.005;
- ragdollVehicleCollision = 1;
-};
-
-class RagDollDefaultLimit {
- value = 0;
- restitution = 0.9;
- hardness = 0.5;
-};
-
-class RagDollDefaultSpring {
- enabled = 0;
- value = 0.5;
- damper = 1;
- targetValue = 0;
-};
-
-class RagDollSphericalJoint {
- class TwistLimitLow : RagDollDefaultLimit {};
-
- class TwistLimitHigh : RagDollDefaultLimit {};
-
- class SwingLimit : RagDollDefaultLimit {};
-
- class TwistSpring : RagDollDefaultSpring {
- enabled = 1;
- };
-
- class SwingSpring : RagDollDefaultSpring {
- enabled = 1;
- damper = 2;
- };
-
- class JointSpring : RagDollDefaultSpring {
- enabled = 0;
- };
- type = "spherical";
- enableCollision = 0;
- projectionDistance = 0.05;
- projectionMode = "point";
-};
-
-class RagDollRevoluteJoint {
- class LimitLow : RagDollDefaultLimit {};
-
- class LimitHigh : RagDollDefaultLimit {};
-
- class Spring : RagDollDefaultSpring {
- enabled = 0;
- };
- type = "revolute";
- enableCollision = 0;
- projectionDistance = 0.05;
- projectionMode = "point";
-};
-
-class RagDollD6Joint_PX3 {
- type = "D6";
- enableCollision = 0;
- projectionDistance = 0.05;
- projectionMode = "point";
- swingLimitY = "0.0f";
- swingLimitZ = "0.0f";
- swingSpring = "0.0f";
- swingDamping = "0.0f";
- swingRestitution = "0.6f";
- swingContactDistance = "0.05f";
- twistLimitLower = "0.0f";
- twistLimitUpper = "0.0f";
- twistSpring = "0.0f";
- twistDamping = "0.0f";
- twistRestitution = "0.6f";
- twistContactDistance = "0.05f";
- driveSpring = "20.0f";
- driveDamping = "20.0f";
- driveMaxForce = "1000000.0f";
- driveUseAcceleration = 1;
- driveLinearVelocity[] = {0, 0, 0};
- driveAngularVelocity[] = {0, 0, 0};
-};
-
-class CfgRagDollSkeletons {
- class BaseRagdoll {
- primaryWeaponBone = "";
- secondaryWeaponBone = "";
- networkBonePrimary = "";
- networkBoneSecondary = "";
- weaponSleepLinearVelocity = 20;
- weaponSleepAngularVelocity = 20;
- weaponDropMinTime = 1.0;
- weaponDropMaxTime = 100.0;
- weaponDistanceLimit = "10f";
- weaponDistanceLimitTime = "5.0f";
- sleepLinearVelocity = 0.05;
- sleepAngularVelocity = 0.05;
- simulateMinTime = 30;
- simulateMaxTime = 100.0;
- simulateDistanceLimit = "0.05f";
- simulateDistanceLimitTime = "5.0f";
- recoveryBlendTime = "0.5f";
- recoveryCosLimit = "0.3f";
- recoveryDistLimit = "0.7f";
- animBlendTime = "0.0f";
- };
-
- class Soldier : BaseRagdoll {
- primaryWeaponBone = "weapon";
- secondaryWeaponBone = "launcher";
- networkBonePrimary = "chest";
- networkBoneSecondary = "pelvis";
- draggingMask = "dragging";
- hitMask = "hit";
- hitMaskUnderwater = "hitUnderwater";
-
- class WeaponLinkBones {
- class LinkBone1 {
- bone = "leftHand";
- canBeDropped = 1;
- prefference = "1.0f";
- };
-
- class LinkBone2 {
- bone = "rightHand";
- canBeDropped = 1;
- prefference = "2.0f";
- };
-
- class LinkBone3 {
- bone = "chest";
- canBeDropped = 1;
- prefference = "1.0f";
- };
- };
-
- class Masks {
- class DraggingMask {
- name = "dragging";
- mask[] = {{"pelvis", 0, 1}, {"chest", 0, 1}, {"head", "0.6f", 0}, {"leftArm", 1, 0}, {"leftForeArm", 1, 0}, {"leftHand", 1, 0}, {"rightArm", 1, 0}, {"rightForeArm", 1, 0}, {"rightHand", 1, 0}, {"leftUpLeg", 1, 0}, {"leftLeg", 1, 0}, {"leftFoot", 1, 0}, {"rightUpLeg", 1, 0}, {"rightLeg", 1, 0}, {"rightFoot", 1, 0}, {"weapon", 0, 1}, {"launcher", 0, 1}};
- };
-
- class HitMask {
- name = "hit";
- mask[] = {{"pelvis", 1, 0}, {"chest", 1, 0}, {"head", 1, 0}, {"leftArm", 1, 0}, {"leftForeArm", 1, 0}, {"leftHand", 1, 0}, {"rightArm", 1, 0}, {"rightForeArm", 1, 0}, {"rightHand", 1, 0}, {"leftUpLeg", 1, 0}, {"leftLeg", 1, 0}, {"leftFoot", 1, 1}, {"rightUpLeg", 1, 0}, {"rightLeg", 1, 0}, {"rightFoot", 1, 1}, {"weapon", 1, 0}, {"launcher", 1, 0}};
- };
-
- class HitMaskUnderwater {
- name = "hitUnderwater";
- mask[] = {{"pelvis", 1, 1}, {"chest", 1, 1}, {"head", 1, 0}, {"leftArm", 1, 0}, {"leftForeArm", 1, 0}, {"leftHand", 1, 0}, {"rightArm", 1, 0}, {"rightForeArm", 1, 0}, {"rightHand", 1, 0}, {"leftUpLeg", 1, 0}, {"leftLeg", 1, 0}, {"leftFoot", 1, 0}, {"rightUpLeg", 1, 0}, {"rightLeg", 1, 0}, {"rightFoot", 1, 0}, {"weapon", 1, 0}, {"launcher", 1, 0}};
- };
- };
-
- class BaseRagdollBone {
- material = "Ragdoll";
- childrenUseStartTrans = 1;
- };
-
- class Bones {
- class Pelvis : BaseRagdollBone {
- name = "pelvis";
- type = "capsule";
- startBone = "pelvis";
- endBone = "spine2";
- mass = 15;
- radius = 0.12;
- networkType = "root";
- };
-
- class Chest : BaseRagdollBone {
- name = "chest";
- type = "capsule";
- startBone = "spine1";
- endBone = "neck";
- radius = 0.16;
- mass = 15;
- };
-
- class Head : BaseRagdollBone {
- name = "head";
- type = "sphere";
- startBone = "head";
- mass = 8;
- radius = 0.16;
- };
-
- class LeftArm : BaseRagdollBone {
- name = "leftArm";
- type = "capsule";
- startBone = "leftArm";
- endBone = "leftForeArm";
- mass = 8;
- };
-
- class LeftForeArm : BaseRagdollBone {
- name = "leftForeArm";
- type = "capsule";
- startBone = "leftForeArm";
- endBone = "leftHand";
- mass = 6;
- };
-
- class LeftHand : BaseRagdollBone {
- name = "leftHand";
- type = "sphere";
- startBone = "leftHand";
- mass = 6;
- radius = 0.08;
- childrenUseStartTrans = 0;
- networkType = "leftHand";
- };
-
- class RightArm : BaseRagdollBone {
- name = "rightArm";
- type = "capsule";
- startBone = "rightArm";
- endBone = "rightForeArm";
- mass = 8;
- };
-
- class RightForeArm : BaseRagdollBone {
- name = "rightForeArm";
- type = "capsule";
- startBone = "rightForeArm";
- endBone = "rightHand";
- mass = 6;
- };
-
- class RightHand : BaseRagdollBone {
- name = "rightHand";
- type = "sphere";
- startBone = "rightHand";
- mass = 6;
- radius = 0.08;
- childrenUseStartTrans = 0;
- networkType = "rightHand";
- };
-
- class LeftUpLeg : BaseRagdollBone {
- name = "leftUpLeg";
- type = "capsule";
- startBone = "leftUpLeg";
- endBone = "leftLeg";
- mass = 15;
- };
-
- class LeftLeg : BaseRagdollBone {
- name = "leftLeg";
- type = "capsule";
- startBone = "leftLeg";
- endBone = "leftFoot";
- mass = 10;
- };
-
- class LeftFoot : BaseRagdollBone {
- name = "leftFoot";
- type = "box";
- startBone = "leftFoot";
- size[] = {0.15, 0.035, 0.07};
- mass = 8;
- networkType = "leftFoot";
- };
-
- class RightUpLeg : BaseRagdollBone {
- name = "rightUpLeg";
- type = "capsule";
- startBone = "rightUpLeg";
- endBone = "rightLeg";
- mass = 15;
- };
-
- class RightLeg : BaseRagdollBone {
- name = "rightLeg";
- type = "capsule";
- startBone = "rightLeg";
- endBone = "rightFoot";
- mass = 10;
- };
-
- class RightFoot : BaseRagdollBone {
- name = "rightFoot";
- type = "box";
- startBone = "rightFoot";
- size[] = {0.15, 0.035, 0.07};
- mass = 8;
- networkType = "rightFoot";
- };
-
- class Weapon : BaseRagdollBone {
- name = "weapon";
- type = "weapon";
- startBone = "weapon";
- endPosRelToStart[] = {0.0, 1.0, 0.0};
- mass = 3;
- };
-
- class Launcher : BaseRagdollBone {
- name = "launcher";
- type = "weapon";
- startBone = "launcher";
- endPosRelToStart[] = {1.0, 0.0, 0.0};
- mass = 3;
- };
- };
-
- class JointsPX2 {
- class Pelvis_Chest_PX2 : RagDollSphericalJoint {
- name = "pelvis_chest";
- bone1 = "pelvis";
- bone2 = "chest";
- axis[] = {0, 1, 0.3};
-
- class SwingLimit : SwingLimit {
- value = 25;
- };
-
- class TwistLimitLow : TwistLimitLow {
- value = -15;
- };
-
- class TwistLimitHigh : TwistLimitHigh {
- value = 25;
- };
- };
-
- class Chest_Head_PX2 : RagDollSphericalJoint {
- name = "chest_head";
- bone1 = "chest";
- bone2 = "head";
-
- class SwingLimit : SwingLimit {
- value = 20;
- };
-
- class TwistLimitLow : TwistLimitLow {
- value = -15;
- };
-
- class TwistLimitHigh : TwistLimitHigh {
- value = 15;
- };
- };
-
- class Chest_LeftArm_PX2 : RagDollSphericalJoint {
- name = "chest_leftArm";
- bone1 = "chest";
- bone2 = "leftArm";
- axis[] = {-1, 0.0, 0.5};
- enableCollision = 1;
-
- class SwingLimit : SwingLimit {
- value = 60;
- };
-
- class TwistLimitLow : TwistLimitLow {
- value = -20;
- };
-
- class TwistLimitHigh : TwistLimitHigh {
- value = 20;
- };
- };
-
- class LeftArm_LeftForeArm_PX2 : RagDollRevoluteJoint {
- name = "leftArm_leftForeArm";
- bone1 = "leftArm";
- bone2 = "leftForeArm";
- axis[] = {1, -1, 0.2};
-
- class LimitLow : LimitLow {
- value = -2;
- };
-
- class LimitHigh : LimitHigh {
- value = 60;
- };
- };
-
- class LeftForeArm_LeftHand_PX2 : RagDollSphericalJoint {
- name = "leftForeArm_leftHand";
- bone1 = "leftForeArm";
- bone2 = "leftHand";
-
- class SwingLimit : SwingLimit {
- value = 20;
- };
-
- class TwistLimitLow : TwistLimitLow {
- value = -5;
- };
-
- class TwistLimitHigh : TwistLimitHigh {
- value = 5;
- };
- };
-
- class Chest_RightArm_PX2 : RagDollSphericalJoint {
- name = "chest_rightArm";
- bone1 = "chest";
- bone2 = "rightArm";
- axis[] = {1, 0.0, 0.5};
- enableCollision = 1;
-
- class SwingLimit : SwingLimit {
- value = 60;
- };
-
- class TwistLimitLow : TwistLimitLow {
- value = -20;
- };
-
- class TwistLimitHigh : TwistLimitHigh {
- value = 20;
- };
- };
-
- class RightArm_RightForeArm_PX2 : RagDollRevoluteJoint {
- name = "rightArm_rightForeArm";
- bone1 = "rightArm";
- bone2 = "rightForeArm";
- axis[] = {1, 1, -0.2};
-
- class LimitLow : LimitLow {
- value = -2;
- };
-
- class LimitHigh : LimitHigh {
- value = 60;
- };
- };
-
- class RightForeArm_RightHand_PX2 : RagDollSphericalJoint {
- name = "rightForeArm_rightHand";
- bone1 = "rightForeArm";
- bone2 = "rightHand";
-
- class SwingLimit : SwingLimit {
- value = 20;
- };
-
- class TwistLimitLow : TwistLimitLow {
- value = -5;
- };
-
- class TwistLimitHigh : TwistLimitHigh {
- value = 5;
- };
- };
-
- class Pelvis_LeftUpLeg_PX2 : RagDollSphericalJoint {
- name = "pelvis_leftUpLeg";
- bone1 = "pelvis";
- bone2 = "leftUpLeg";
- axis[] = {-1.5, -1.1, 2};
- enableCollision = 1;
-
- class SwingLimit : SwingLimit {
- value = 45;
- };
-
- class TwistLimitLow : TwistLimitLow {
- value = -10;
- };
-
- class TwistLimitHigh : TwistLimitHigh {
- value = 20;
- };
- };
-
- class LeftUpLeg_LeftLeg_PX2 : RagDollRevoluteJoint {
- name = "leftUpLeg_leftLeg";
- bone1 = "leftUpLeg";
- bone2 = "leftLeg";
- axis[] = {-1, 0, 0};
-
- class LimitLow : LimitLow {
- value = -5;
- };
-
- class LimitHigh : LimitHigh {
- value = 110;
- };
- };
-
- class LeftLeg_LeftFoot_PX2 : RagDollRevoluteJoint {
- name = "leftLeg_leftFoot";
- bone1 = "leftLeg";
- bone2 = "leftFoot";
- axis[] = {-1, 0, 0};
-
- class LimitLow : LimitLow {
- value = -15;
- };
-
- class LimitHigh : LimitHigh {
- value = 45;
- };
- };
-
- class Pelvis_RightUpLeg_PX2 : RagDollSphericalJoint {
- name = "pelvis_rightUpLeg";
- bone1 = "pelvis";
- bone2 = "rightUpLeg";
- axis[] = {1.5, -1.1, 2};
- enableCollision = 1;
-
- class SwingLimit : SwingLimit {
- value = 45;
- };
-
- class TwistLimitLow : TwistLimitLow {
- value = -10;
- };
-
- class TwistLimitHigh : TwistLimitHigh {
- value = 20;
- };
- };
-
- class RightUpLeg_RightLeg_PX2 : RagDollRevoluteJoint {
- name = "rightUpLeg_rightLeg";
- bone1 = "rightUpLeg";
- bone2 = "rightLeg";
- axis[] = {-1, 0, 0};
-
- class LimitLow : LimitLow {
- value = -5;
- };
-
- class LimitHigh : LimitHigh {
- value = 110;
- };
- };
-
- class RightLeg_RightFoot_PX2 : RagDollRevoluteJoint {
- name = "rightLeg_rightFoot";
- bone1 = "rightLeg";
- bone2 = "rightFoot";
- axis[] = {-1, 0, 0};
-
- class LimitLow : LimitLow {
- value = -15;
- };
-
- class LimitHigh : LimitHigh {
- value = 45;
- };
- };
- };
-
- class JointsPX3 {
- class Pelvis_Chest_PX3 : RagDollD6Joint_PX3 {
- name = "pelvis_chest";
- bone1 = "pelvis";
- bone2 = "chest";
- axis[] = {0, 1, 0.3};
- enableCollision = 0;
- swingLimitY = 30;
- swingLimitZ = 30;
- twistLimitLower = -25;
- twistLimitUpper = 25;
- driveSpring = 30;
- driveDamping = 30;
- driveSpringWater = 5;
- driveDampingWater = 5;
- };
-
- class Chest_Head_PX3 : RagDollD6Joint_PX3 {
- name = "chest_head";
- bone1 = "chest";
- bone2 = "head";
- swingLimitY = 45;
- swingLimitZ = 45;
- twistLimitLower = -40;
- twistLimitUpper = 40;
- driveSpring = 15.0;
- driveDamping = 30;
- driveSpringWater = 1.5;
- driveDampingWater = 3.0;
- twistSpring = 15.0;
- twistDamping = 30.0;
- };
-
- class Chest_LeftArm_PX3 : RagDollD6Joint_PX3 {
- name = "chest_leftArm";
- bone1 = "chest";
- bone2 = "leftArm";
- enableCollision = 1;
- swingLimitY = 85;
- swingLimitZ = 85;
- twistLimitLower = -60;
- twistLimitUpper = 60;
- driveSpring = 30;
- driveDamping = 30;
- driveSpringWater = 3;
- driveDampingWater = 3;
- };
-
- class LeftArm_LeftForeArm_PX3 : RagDollD6Joint_PX3 {
- name = "leftArm_leftForeArm";
- bone1 = "leftArm";
- bone2 = "leftForeArm";
- axis[] = {-1, 1, -0.2};
- swingLimitY = 10;
- swingLimitZ = 10;
- twistLimitLower = -5;
- twistLimitUpper = 150;
- driveSpring = 10;
- driveDamping = 10;
- driveSpringWater = 1;
- driveDampingWater = 1;
- };
-
- class LeftForeArm_LeftHand_PX3 : RagDollD6Joint_PX3 {
- name = "leftForeArm_leftHand";
- bone1 = "leftForeArm";
- bone2 = "leftHand";
- swingLimitY = 10;
- swingLimitZ = 10;
- twistLimitLower = -20;
- twistLimitUpper = 20;
- driveSpring = 10;
- driveDamping = 10;
- driveSpringWater = 1;
- driveDampingWater = 1;
- };
-
- class Chest_RightArm_PX3 : RagDollD6Joint_PX3 {
- name = "chest_rightArm";
- bone1 = "chest";
- bone2 = "rightArm";
- enableCollision = 1;
- swingLimitY = 85;
- swingLimitZ = 85;
- twistLimitLower = -60;
- twistLimitUpper = 60;
- driveSpring = 30;
- driveDamping = 30;
- driveSpringWater = 3;
- driveDampingWater = 3;
- };
-
- class RightArm_RightForeArm_PX3 : RagDollD6Joint_PX3 {
- name = "rightArm_rightForeArm";
- bone1 = "rightArm";
- bone2 = "rightForeArm";
- axis[] = {-1, -1, 0.2};
- swingLimitY = 10;
- swingLimitZ = 10;
- twistLimitLower = -5;
- twistLimitUpper = 150;
- driveSpring = 10;
- driveDamping = 10;
- driveSpringWater = 1;
- driveDampingWater = 1;
- };
-
- class RightForeArm_RightHand_PX3 : RagDollD6Joint_PX3 {
- name = "rightForeArm_rightHand";
- bone1 = "rightForeArm";
- bone2 = "rightHand";
- swingLimitY = 10;
- swingLimitZ = 10;
- twistLimitLower = -20;
- twistLimitUpper = 20;
- driveSpring = 10;
- driveDamping = 10;
- driveSpringWater = 1;
- driveDampingWater = 1;
- };
-
- class Pelvis_LeftUpLeg_PX3 : RagDollD6Joint_PX3 {
- name = "pelvis_leftUpLeg";
- bone1 = "pelvis";
- bone2 = "leftUpLeg";
- enableCollision = 1;
- swingLimitY = 35;
- swingLimitZ = 35;
- twistLimitLower = -10;
- twistLimitUpper = 60;
- driveSpring = 30;
- driveDamping = 30;
- driveSpringWater = 3;
- driveDampingWater = 3;
- twistDamping = 30.0;
- };
-
- class LeftUpLeg_LeftLeg_PX3 : RagDollD6Joint_PX3 {
- name = "leftUpLeg_leftLeg";
- bone1 = "leftUpLeg";
- bone2 = "leftLeg";
- axis[] = {1, 0, 0};
- swingLimitY = 10;
- swingLimitZ = 10;
- twistLimitLower = -5;
- twistLimitUpper = 120;
- driveSpring = 20;
- driveDamping = 20;
- driveSpringWater = 2;
- driveDampingWater = 2;
- };
-
- class LeftLeg_LeftFoot_PX3 : RagDollD6Joint_PX3 {
- name = "leftLeg_leftFoot";
- bone1 = "leftLeg";
- bone2 = "leftFoot";
- axis[] = {1, 0, 0};
- swingLimitY = 10;
- swingLimitZ = 10;
- twistLimitLower = -15;
- twistLimitUpper = 45;
- driveSpring = 20;
- driveDamping = 20;
- driveSpringWater = 2;
- driveDampingWater = 2;
- };
-
- class Pelvis_RightUpLeg_PX3 : RagDollD6Joint_PX3 {
- name = "pelvis_rightUpLeg";
- bone1 = "pelvis";
- bone2 = "rightUpLeg";
- enableCollision = 1;
- swingLimitY = 35;
- swingLimitZ = 35;
- twistLimitLower = -10;
- twistLimitUpper = 60;
- driveSpring = 30;
- driveDamping = 30;
- driveSpringWater = 3;
- driveDampingWater = 3;
- twistDamping = 30.0;
- };
-
- class RightUpLeg_RightLeg_PX3 : RagDollD6Joint_PX3 {
- name = "rightUpLeg_rightLeg";
- bone1 = "rightUpLeg";
- bone2 = "rightLeg";
- axis[] = {1, 0, 0};
- swingLimitY = 10;
- swingLimitZ = 10;
- twistLimitLower = -5;
- twistLimitUpper = 120;
- driveSpring = 20;
- driveDamping = 20;
- driveSpringWater = 2;
- driveDampingWater = 2;
- };
-
- class RightLeg_RightFoot_PX3 : RagDollD6Joint_PX3 {
- name = "rightLeg_rightFoot";
- bone1 = "rightLeg";
- bone2 = "rightFoot";
- axis[] = {1, 0, 0};
- swingLimitY = 10;
- swingLimitZ = 10;
- twistLimitLower = -15;
- twistLimitUpper = 45;
- driveSpring = 20;
- driveDamping = 20;
- driveSpringWater = 2;
- driveDampingWater = 2;
- };
- };
- };
-};
diff --git a/addons/ragdolls/script_component.hpp b/addons/ragdolls/script_component.hpp
deleted file mode 100644
index e433e8d098..0000000000
--- a/addons/ragdolls/script_component.hpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#define COMPONENT ragdolls
-#include "\z\ace\addons\main\script_mod.hpp"
-
-// #define DEBUG_MODE_FULL
-// #define DISABLE_COMPILE_CACHE
-// #define CBA_DEBUG_SYNCHRONOUS
-// #define ENABLE_PERFORMANCE_COUNTERS
-
-#ifdef DEBUG_ENABLED_RAGDOLLS
- #define DEBUG_MODE_FULL
-#endif
-
-#ifdef DEBUG_SETTINGS_RAGDOLLS
- #define DEBUG_SETTINGS DEBUG_SETTINGS_RAGDOLLS
-#endif
-
-#include "\z\ace\addons\main\script_macros.hpp"
\ No newline at end of file
From 89354e25c86f478bb6bb2030db5d2b10315faf98 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 16:09:48 -0300
Subject: [PATCH 16/64] Unified fired event handler
---
addons/common/CfgEventHandlers.hpp | 5 +++
addons/common/XEH_preInit.sqf | 1 +
addons/common/functions/fnc_firedEH.sqf | 51 +++++++++++++++++++++++++
3 files changed, 57 insertions(+)
create mode 100644 addons/common/functions/fnc_firedEH.sqf
diff --git a/addons/common/CfgEventHandlers.hpp b/addons/common/CfgEventHandlers.hpp
index 55a1df4c7c..1afbe16512 100644
--- a/addons/common/CfgEventHandlers.hpp
+++ b/addons/common/CfgEventHandlers.hpp
@@ -59,3 +59,8 @@ class Extended_Local_EventHandlers {
};
};
+class Extended_FiredBIS_EventHandlers {
+ class All {
+ ADDON = QUOTE(_this call FUNC(firedEH));
+ };
+};
diff --git a/addons/common/XEH_preInit.sqf b/addons/common/XEH_preInit.sqf
index ea5157c2e6..f119b99468 100644
--- a/addons/common/XEH_preInit.sqf
+++ b/addons/common/XEH_preInit.sqf
@@ -47,6 +47,7 @@ PREP(execRemoteFnc);
PREP(executePersistent);
PREP(filter);
PREP(findUnloadPosition);
+PREP(firedEH);
PREP(fixCollision);
PREP(fixFloating);
PREP(fixLoweredRifleAnimation);
diff --git a/addons/common/functions/fnc_firedEH.sqf b/addons/common/functions/fnc_firedEH.sqf
new file mode 100644
index 0000000000..c1bb1d77dc
--- /dev/null
+++ b/addons/common/functions/fnc_firedEH.sqf
@@ -0,0 +1,51 @@
+/*
+ * Author: esteldunedain
+ * Unfied handling of weapon fire
+ *
+ * Argument:
+ * 0: unit - Object the event handler is assigned to
+ * 1: weapon - Fired weapon
+ * 2: muzzle - Muzzle that was used
+ * 3: mode - Current mode of the fired weapon
+ * 4: ammo - Ammo used
+ * 5: magazine - magazine name which was used
+ * 6: projectile - Object of the projectile that was shot
+ *
+ * Return value:
+ * None
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+BEGIN_COUNTER(firedEH);
+
+params ["_firedEHUnit", "_firedEHWeapon", "_firedEHMuzzle", "_firedEHMode", "_firedEHAmmo", "_firedEHMagazine", "_firedEHProjectile"];
+TRACE_5("firedEH:",_firedEHUnit, _firedEHWeapon, _firedEHMuzzle, _firedEHMode, _firedEHAmmo, _firedEHMagazine, _firedEHProjectile);
+
+if (_firedEHUnit isKindOf "CAManBase") then {
+ // The unit it on foot
+ if (_firedEHUnit == ACE_player) then {
+ ["firedPlayer", this] call FUNC(localEvent);
+ } else {
+ if ([_firedEHUnit] call EFUNC(common,isPlayer)) then {
+ ["firedPlayerNonLocal", this] call FUNC(localEvent);
+ } else {
+ ["firedNonPlayer", this] call FUNC(localEvent);
+ };
+ };
+} else {
+ // The unit is a vehicle
+ private _firedEHGunner = [_firedEHUnit, _firedEHWeapon] call EFUNC(common,getGunner);
+ if (_firedEHGunner == ACE_player) then {
+ ["firedPlayerVehicle", this] call FUNC(localEvent);
+ } else {
+ if ([_firedEHGunner] call EFUNC(common,isPlayer)) then {
+ ["firedPlayerVehicleNonLocal", this] call FUNC(localEvent);
+ } else {
+ ["firedNonPlayerVehicle", this] call FUNC(localEvent);
+ };
+ };
+};
+
+END_COUNTER(firedEH);
From 588f76b3f13bd6622aa4bf752f5f3160cb465b25 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 16:12:18 -0300
Subject: [PATCH 17/64] Learning to count
---
addons/common/functions/fnc_firedEH.sqf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/addons/common/functions/fnc_firedEH.sqf b/addons/common/functions/fnc_firedEH.sqf
index c1bb1d77dc..911e122214 100644
--- a/addons/common/functions/fnc_firedEH.sqf
+++ b/addons/common/functions/fnc_firedEH.sqf
@@ -21,7 +21,7 @@
BEGIN_COUNTER(firedEH);
params ["_firedEHUnit", "_firedEHWeapon", "_firedEHMuzzle", "_firedEHMode", "_firedEHAmmo", "_firedEHMagazine", "_firedEHProjectile"];
-TRACE_5("firedEH:",_firedEHUnit, _firedEHWeapon, _firedEHMuzzle, _firedEHMode, _firedEHAmmo, _firedEHMagazine, _firedEHProjectile);
+TRACE_7("firedEH:",_firedEHUnit, _firedEHWeapon, _firedEHMuzzle, _firedEHMode, _firedEHAmmo, _firedEHMagazine, _firedEHProjectile);
if (_firedEHUnit isKindOf "CAManBase") then {
// The unit it on foot
From 72b262f634d7b64347787f3516e7f4eae7166c22 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 16:22:23 -0300
Subject: [PATCH 18/64] Simplified parameter names
---
addons/common/functions/fnc_firedEH.sqf | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/addons/common/functions/fnc_firedEH.sqf b/addons/common/functions/fnc_firedEH.sqf
index 911e122214..6a6b36116e 100644
--- a/addons/common/functions/fnc_firedEH.sqf
+++ b/addons/common/functions/fnc_firedEH.sqf
@@ -20,15 +20,15 @@
BEGIN_COUNTER(firedEH);
-params ["_firedEHUnit", "_firedEHWeapon", "_firedEHMuzzle", "_firedEHMode", "_firedEHAmmo", "_firedEHMagazine", "_firedEHProjectile"];
-TRACE_7("firedEH:",_firedEHUnit, _firedEHWeapon, _firedEHMuzzle, _firedEHMode, _firedEHAmmo, _firedEHMagazine, _firedEHProjectile);
+params ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile"];
+TRACE_7("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile);
-if (_firedEHUnit isKindOf "CAManBase") then {
+if (_unit isKindOf "CAManBase") then {
// The unit it on foot
- if (_firedEHUnit == ACE_player) then {
+ if (_unit == ACE_player) then {
["firedPlayer", this] call FUNC(localEvent);
} else {
- if ([_firedEHUnit] call EFUNC(common,isPlayer)) then {
+ if ([_unit] call EFUNC(common,isPlayer)) then {
["firedPlayerNonLocal", this] call FUNC(localEvent);
} else {
["firedNonPlayer", this] call FUNC(localEvent);
@@ -36,11 +36,11 @@ if (_firedEHUnit isKindOf "CAManBase") then {
};
} else {
// The unit is a vehicle
- private _firedEHGunner = [_firedEHUnit, _firedEHWeapon] call EFUNC(common,getGunner);
- if (_firedEHGunner == ACE_player) then {
+ private _Gunner = [_unit, _weapon] call EFUNC(common,getGunner);
+ if (_Gunner == ACE_player) then {
["firedPlayerVehicle", this] call FUNC(localEvent);
} else {
- if ([_firedEHGunner] call EFUNC(common,isPlayer)) then {
+ if ([_Gunner] call EFUNC(common,isPlayer)) then {
["firedPlayerVehicleNonLocal", this] call FUNC(localEvent);
} else {
["firedNonPlayerVehicle", this] call FUNC(localEvent);
From 6d9068e3068e84101804db01b6dfb1885a12d4a2 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 16:26:57 -0300
Subject: [PATCH 19/64] gunner to lowercase
---
addons/common/functions/fnc_firedEH.sqf | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/addons/common/functions/fnc_firedEH.sqf b/addons/common/functions/fnc_firedEH.sqf
index 6a6b36116e..5e6e5bb833 100644
--- a/addons/common/functions/fnc_firedEH.sqf
+++ b/addons/common/functions/fnc_firedEH.sqf
@@ -36,11 +36,11 @@ if (_unit isKindOf "CAManBase") then {
};
} else {
// The unit is a vehicle
- private _Gunner = [_unit, _weapon] call EFUNC(common,getGunner);
- if (_Gunner == ACE_player) then {
+ private _gunner = [_unit, _weapon] call EFUNC(common,getGunner);
+ if (_gunner == ACE_player) then {
["firedPlayerVehicle", this] call FUNC(localEvent);
} else {
- if ([_Gunner] call EFUNC(common,isPlayer)) then {
+ if ([_gunner] call EFUNC(common,isPlayer)) then {
["firedPlayerVehicleNonLocal", this] call FUNC(localEvent);
} else {
["firedNonPlayerVehicle", this] call FUNC(localEvent);
From b2bd11ed77086dbcf9885ef5d0bf8377a8a6b2b4 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 16:29:58 -0300
Subject: [PATCH 20/64] Apply the ufeh to ACE_FCS
---
addons/fcs/CfgEventHandlers.hpp | 33 ----------------------------
addons/fcs/XEH_postInit.sqf | 4 ++++
addons/fcs/functions/fnc_firedEH.sqf | 9 +++-----
3 files changed, 7 insertions(+), 39 deletions(-)
diff --git a/addons/fcs/CfgEventHandlers.hpp b/addons/fcs/CfgEventHandlers.hpp
index ab41fa904b..8c5b768ca9 100644
--- a/addons/fcs/CfgEventHandlers.hpp
+++ b/addons/fcs/CfgEventHandlers.hpp
@@ -76,36 +76,3 @@ class Extended_Respawn_EventHandlers {
};
};
};
-
-class Extended_FiredBIS_EventHandlers {
- class Tank {
- class ADDON {
- firedBIS = QUOTE(_this call FUNC(firedEH));
- };
- };
- class Car {
- class ADDON {
- firedBIS = QUOTE(_this call FUNC(firedEH));
- };
- };
- class Helicopter {
- class ADDON {
- firedBIS = QUOTE(_this call FUNC(firedEH));
- };
- };
- class Plane {
- class ADDON {
- firedBIS = QUOTE(_this call FUNC(firedEH));
- };
- };
- class Ship_F {
- class ADDON {
- firedBIS = QUOTE(_this call FUNC(firedEH));
- };
- };
- class StaticWeapon {
- class ADDON {
- firedBIS = QUOTE(_this call FUNC(firedEH));
- };
- };
-};
diff --git a/addons/fcs/XEH_postInit.sqf b/addons/fcs/XEH_postInit.sqf
index a4f8020a9f..25fd09ba8c 100644
--- a/addons/fcs/XEH_postInit.sqf
+++ b/addons/fcs/XEH_postInit.sqf
@@ -15,5 +15,9 @@ if (!hasInterface) exitWith {};
};
}] call EFUNC(common,addEventHandler);
+// Register fire event handler
+["firedPlayerVehicle", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
+["firedPlayerVehicleNonLocal", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
+
// Register event for global updates
[QGVAR(forceUpdate), {[ACE_player] call FUNC(onForceUpdate)}] call EFUNC(common,addEventHandler);
diff --git a/addons/fcs/functions/fnc_firedEH.sqf b/addons/fcs/functions/fnc_firedEH.sqf
index 237aed8ac1..e407b44293 100644
--- a/addons/fcs/functions/fnc_firedEH.sqf
+++ b/addons/fcs/functions/fnc_firedEH.sqf
@@ -1,9 +1,9 @@
/*
* Author: KoffeinFlummi
- * Adjusts the direction of a shell.
+ * Adjusts the direction of a shell. Only gets called if the gunner is a player
*
* Arguments:
- * -> arguments of the FiredBIS EH
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* None
@@ -12,9 +12,6 @@
*/
#include "script_component.hpp"
-params ["_vehicle", "_weapon", "", "", "_ammo", "_magazine", "_projectile"];
-
-private _gunner = [_vehicle, _weapon] call EFUNC(common,getGunner);
private _turret = _gunner call EFUNC(common,getTurretIndex);
// Exit if the unit isn't a player
@@ -36,7 +33,7 @@ private _offset = 0;
[_projectile, (_vehicle getVariable format ["%1_%2", QGVAR(Azimuth), _turret]), _offset, 0] call EFUNC(common,changeProjectileDirection);
-// Remove the platform velocity
+// Remove the platform velocity
if (vectorMagnitude velocity _vehicle > 2) then {
private _sumVelocity = (velocity _projectile) vectorDiff (velocity _vehicle);
From a084373574edc1d0b79635e304520df40dfedc0b Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 16:39:08 -0300
Subject: [PATCH 21/64] Apply the ufeh to ACE_Disposable
---
addons/disposable/CfgEventHandlers.hpp | 8 --------
addons/disposable/XEH_postInit.sqf | 5 +++++
addons/disposable/functions/fnc_replaceATWeapon.sqf | 11 +----------
3 files changed, 6 insertions(+), 18 deletions(-)
diff --git a/addons/disposable/CfgEventHandlers.hpp b/addons/disposable/CfgEventHandlers.hpp
index 98fec255c2..c236fb6f57 100644
--- a/addons/disposable/CfgEventHandlers.hpp
+++ b/addons/disposable/CfgEventHandlers.hpp
@@ -10,14 +10,6 @@ class Extended_PostInit_EventHandlers {
};
};
-class Extended_FiredBIS_EventHandlers {
- class CAManBase {
- class ADDON {
- firedBIS = QUOTE(_this call FUNC(replaceATWeapon));
- };
- };
-};
-
// handle preloaded missile
class Extended_InitPost_EventHandlers {
class CAManBase {
diff --git a/addons/disposable/XEH_postInit.sqf b/addons/disposable/XEH_postInit.sqf
index 800d749d06..5c4ddafe95 100644
--- a/addons/disposable/XEH_postInit.sqf
+++ b/addons/disposable/XEH_postInit.sqf
@@ -12,3 +12,8 @@ if (!hasInterface) exitWith {};
[_unit] call FUNC(takeLoadedATWeapon);
[_unit] call FUNC(updateInventoryDisplay);
}] call EFUNC(common,addEventHandler);
+
+// Register fire event handler
+// Only for the local player and for AI. Non-local players will handle it themselves
+["firedPlayer", DFUNC(replaceATWeapon)] call EFUNC(common,addEventHandler);
+["firedNonPlayer", DFUNC(replaceATWeapon)] call EFUNC(common,addEventHandler);
diff --git a/addons/disposable/functions/fnc_replaceATWeapon.sqf b/addons/disposable/functions/fnc_replaceATWeapon.sqf
index 88e27190ed..3e1b8afff8 100644
--- a/addons/disposable/functions/fnc_replaceATWeapon.sqf
+++ b/addons/disposable/functions/fnc_replaceATWeapon.sqf
@@ -3,13 +3,7 @@
* Replace the disposable launcher with the used dummy.
*
* Arguments:
- * 0: unit - Object the event handler is assigned to
- * 1: weapon - Fired weapon
- * 2: muzzle - Muzzle that was used
- * 3: mode - Current mode of the fired weapon
- * 4: ammo - Ammo used
- * 5: magazine - magazine name which was used
- * 6: projectile - Object of the projectile that was shot
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* Nothing
@@ -21,9 +15,6 @@
*/
#include "script_component.hpp"
-params ["_unit", "_weapon", "", "", "", "", "_projectile"];
-TRACE_3("params",_unit,_weapon,_projectile);
-
if (!local _unit || {_weapon != secondaryWeapon _unit}) exitWith {};
private _replacementTube = getText (configFile >> "CfgWeapons" >> _weapon >> "ACE_UsedTube");
From 59cbc6da10e91ceadf23181cecc3a12711190bf2 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 16:49:27 -0300
Subject: [PATCH 22/64] Remove unneeded test in FCS fireEH
---
addons/fcs/functions/fnc_firedEH.sqf | 3 ---
1 file changed, 3 deletions(-)
diff --git a/addons/fcs/functions/fnc_firedEH.sqf b/addons/fcs/functions/fnc_firedEH.sqf
index e407b44293..4c101b9292 100644
--- a/addons/fcs/functions/fnc_firedEH.sqf
+++ b/addons/fcs/functions/fnc_firedEH.sqf
@@ -14,9 +14,6 @@
private _turret = _gunner call EFUNC(common,getTurretIndex);
-// Exit if the unit isn't a player
-if !([_gunner] call EFUNC(common,isPlayer)) exitWith {};
-
private _FCSMagazines = _vehicle getVariable [format ["%1_%2", QGVAR(Magazines), _turret], []];
private _FCSElevation = _vehicle getVariable format ["%1_%2", QGVAR(Elevation), _turret];
From efbff8cc231db1d30bc2aeaf3fca2e8ac8dbdeaf Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 16:49:53 -0300
Subject: [PATCH 23/64] Pass the turret path too
---
addons/common/functions/fnc_firedEH.sqf | 18 +++++++++++++++++-
addons/fcs/functions/fnc_firedEH.sqf | 2 --
2 files changed, 17 insertions(+), 3 deletions(-)
diff --git a/addons/common/functions/fnc_firedEH.sqf b/addons/common/functions/fnc_firedEH.sqf
index 5e6e5bb833..ce16b6dc2c 100644
--- a/addons/common/functions/fnc_firedEH.sqf
+++ b/addons/common/functions/fnc_firedEH.sqf
@@ -36,7 +36,23 @@ if (_unit isKindOf "CAManBase") then {
};
} else {
// The unit is a vehicle
- private _gunner = [_unit, _weapon] call EFUNC(common,getGunner);
+
+ // Get the gunner and turret path.
+ // Code based on FUNC(getGunner), extracted for efficency.
+ private _gunner = objNull;
+ private _turret = [];
+ {
+ if (_weapon in (_unit weaponsTurret _x)) exitWith {
+ _gunner = _unit turretUnit _x;
+ _turret = _x;
+ };
+ false
+ } count allTurrets [_unit, true];
+ // Ensure that at least the pilot is returned if there is no gunner
+ if (isManualFire _unit && {isNull _gunner}) then {
+ _gunner = driver _unit;
+ };
+
if (_gunner == ACE_player) then {
["firedPlayerVehicle", this] call FUNC(localEvent);
} else {
diff --git a/addons/fcs/functions/fnc_firedEH.sqf b/addons/fcs/functions/fnc_firedEH.sqf
index 4c101b9292..29149eb19b 100644
--- a/addons/fcs/functions/fnc_firedEH.sqf
+++ b/addons/fcs/functions/fnc_firedEH.sqf
@@ -12,8 +12,6 @@
*/
#include "script_component.hpp"
-private _turret = _gunner call EFUNC(common,getTurretIndex);
-
private _FCSMagazines = _vehicle getVariable [format ["%1_%2", QGVAR(Magazines), _turret], []];
private _FCSElevation = _vehicle getVariable format ["%1_%2", QGVAR(Elevation), _turret];
From 37bc67c951e9272e6fa328185a11c4771122d876 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 16:55:36 -0300
Subject: [PATCH 24/64] Create a _vehicle variable
---
addons/common/functions/fnc_firedEH.sqf | 1 +
1 file changed, 1 insertion(+)
diff --git a/addons/common/functions/fnc_firedEH.sqf b/addons/common/functions/fnc_firedEH.sqf
index ce16b6dc2c..749364ee86 100644
--- a/addons/common/functions/fnc_firedEH.sqf
+++ b/addons/common/functions/fnc_firedEH.sqf
@@ -36,6 +36,7 @@ if (_unit isKindOf "CAManBase") then {
};
} else {
// The unit is a vehicle
+ private _vehicle = _unit;
// Get the gunner and turret path.
// Code based on FUNC(getGunner), extracted for efficency.
From fe66d932758673c584904d5debe100f17360295b Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 17:07:05 -0300
Subject: [PATCH 25/64] Added ignore private warnings + trace
---
addons/disposable/functions/fnc_replaceATWeapon.sqf | 5 ++++-
addons/fcs/functions/fnc_firedEH.sqf | 5 ++++-
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/addons/disposable/functions/fnc_replaceATWeapon.sqf b/addons/disposable/functions/fnc_replaceATWeapon.sqf
index 3e1b8afff8..58c58a6056 100644
--- a/addons/disposable/functions/fnc_replaceATWeapon.sqf
+++ b/addons/disposable/functions/fnc_replaceATWeapon.sqf
@@ -1,6 +1,6 @@
/*
* Author: bux, commy2
- * Replace the disposable launcher with the used dummy.
+ * Replace the disposable launcher with the used dummy. Called from the unified fired EH.
*
* Arguments:
* None. Parameters inherited from EFUNC(common,firedEH)
@@ -15,6 +15,9 @@
*/
#include "script_component.hpp"
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
+
if (!local _unit || {_weapon != secondaryWeapon _unit}) exitWith {};
private _replacementTube = getText (configFile >> "CfgWeapons" >> _weapon >> "ACE_UsedTube");
diff --git a/addons/fcs/functions/fnc_firedEH.sqf b/addons/fcs/functions/fnc_firedEH.sqf
index 29149eb19b..a9f4975780 100644
--- a/addons/fcs/functions/fnc_firedEH.sqf
+++ b/addons/fcs/functions/fnc_firedEH.sqf
@@ -1,6 +1,6 @@
/*
* Author: KoffeinFlummi
- * Adjusts the direction of a shell. Only gets called if the gunner is a player
+ * Adjusts the direction of a shell. Called from the unified fired EH only if the gunner is a player.
*
* Arguments:
* None. Parameters inherited from EFUNC(common,firedEH)
@@ -12,6 +12,9 @@
*/
#include "script_component.hpp"
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
+
private _FCSMagazines = _vehicle getVariable [format ["%1_%2", QGVAR(Magazines), _turret], []];
private _FCSElevation = _vehicle getVariable format ["%1_%2", QGVAR(Elevation), _turret];
From b70ae9207c9ac6b14bce17023d1f38bce8ed19b4 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 17:12:28 -0300
Subject: [PATCH 26/64] Apply the ufeh to ACE_Frag
---
addons/frag/CfgEventhandlers.hpp | 6 -----
addons/frag/XEH_postInit.sqf | 16 ++++++++++++-
addons/frag/functions/fnc_fired.sqf | 35 ++++++++++++++---------------
3 files changed, 32 insertions(+), 25 deletions(-)
diff --git a/addons/frag/CfgEventhandlers.hpp b/addons/frag/CfgEventhandlers.hpp
index df7eaeacd1..3b3f4898e5 100644
--- a/addons/frag/CfgEventhandlers.hpp
+++ b/addons/frag/CfgEventhandlers.hpp
@@ -9,9 +9,3 @@ class Extended_PostInit_EventHandlers {
init = QUOTE(call COMPILE_FILE(XEH_postInit));
};
};
-
-class Extended_FiredBIS_EventHandlers {
- class AllVehicles {
- ADDON = QUOTE(_this call FUNC(fired));
- };
-};
diff --git a/addons/frag/XEH_postInit.sqf b/addons/frag/XEH_postInit.sqf
index f49e5d1e3e..46910c519d 100644
--- a/addons/frag/XEH_postInit.sqf
+++ b/addons/frag/XEH_postInit.sqf
@@ -9,7 +9,21 @@ if(isServer) then {
[QGVAR(frag_eh), { _this call FUNC(frago); }] call EFUNC(common,addEventHandler);
};
-[FUNC(masterPFH), 0, []] call CBA_fnc_addPerFrameHandler;
+["SettingsInitialized", {
+ //If not enabled, exit
+ if (!GVAR(enabled)) exitWith {};
+
+ // Register fire event handler
+ ["firedPlayer", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
+ ["firedPlayerNonLocal", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
+ ["firedNonPlayer", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
+ ["firedPlayerVehicle", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
+ ["firedPlayerVehicleNonLocal", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
+ ["firedNonPlayerVehicle", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
+
+ [FUNC(masterPFH), 0, []] call CBA_fnc_addPerFrameHandler;
+
+}] call EFUNC(common,addEventHandler);
//Cache for ammo type configs
GVAR(cacheRoundsTypesToTrack) = createLocation ["ACE_HashLocation", [-10000,-10000,-10000], 0, 0];
diff --git a/addons/frag/functions/fnc_fired.sqf b/addons/frag/functions/fnc_fired.sqf
index 3e82544430..dbe1ab6347 100644
--- a/addons/frag/functions/fnc_fired.sqf
+++ b/addons/frag/functions/fnc_fired.sqf
@@ -1,12 +1,10 @@
/*
* Author: nou, jaynus, PabstMirror
- * Called from FiredBIS event on AllVehicles
+ * Called from the unified fired EH for all.
* If spall is not enabled (default), then cache and only track those that will actually trigger fragmentation.
*
* Arguments:
- * 0: gun - Object the event handler is assigned to
- * 4: type - Ammo used
- * 6: round - Object of the projectile that was shot
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* Nothing
@@ -19,38 +17,39 @@
// #define DEBUG_ENABLED_FRAG
#include "script_component.hpp"
-params ["_gun", "", "", "", "_type", "", "_round"];
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
-private _shouldAdd = GVAR(cacheRoundsTypesToTrack) getVariable _type;
+private _shouldAdd = GVAR(cacheRoundsTypesToTrack) getVariable _ammo;
if (isNil "_shouldAdd") then {
- TRACE_1("no cache for round",_type);
+ TRACE_1("no cache for round",_ammo);
if (!EGVAR(common,settingsInitFinished)) exitWith {
//Just incase fired event happens before settings init, don't want to set cache wrong if spall setting changes
- TRACE_1("Settings not init yet - exit without setting cache",_type);
+ TRACE_1("Settings not init yet - exit without setting cache",_ammo);
_shouldAdd = false;
};
if (GVAR(SpallEnabled)) exitWith {
//Always want to run whenever spall is enabled?
_shouldAdd = true;
- TRACE_2("SettingCache[spallEnabled]",_type,_shouldAdd);
- GVAR(cacheRoundsTypesToTrack) setVariable [_type, _shouldAdd];
+ TRACE_2("SettingCache[spallEnabled]",_ammo,_shouldAdd);
+ GVAR(cacheRoundsTypesToTrack) setVariable [_ammo, _shouldAdd];
};
//Read configs and test if it would actually cause a frag, using same logic as FUNC(pfhRound)
- private _skip = getNumber (configFile >> "CfgAmmo" >> _type >> QGVAR(skip));
- private _explosive = getNumber (configFile >> "CfgAmmo" >> _type >> "explosive");
- private _indirectRange = getNumber (configFile >> "CfgAmmo" >> _type >> "indirectHitRange");
- private _force = getNumber (configFile >> "CfgAmmo" >> _type >> QGVAR(force));
- private _fragPower = getNumber(configFile >> "CfgAmmo" >> _type >> "indirecthit")*(sqrt((getNumber (configFile >> "CfgAmmo" >> _type >> "indirectHitRange"))));
+ private _skip = getNumber (configFile >> "CfgAmmo" >> _ammo >> QGVAR(skip));
+ private _explosive = getNumber (configFile >> "CfgAmmo" >> _ammo >> "explosive");
+ private _indirectRange = getNumber (configFile >> "CfgAmmo" >> _ammo >> "indirectHitRange");
+ private _force = getNumber (configFile >> "CfgAmmo" >> _ammo >> QGVAR(force));
+ private _fragPower = getNumber(configFile >> "CfgAmmo" >> _ammo >> "indirecthit")*(sqrt((getNumber (configFile >> "CfgAmmo" >> _ammo >> "indirectHitRange"))));
_shouldAdd = (_skip == 0) && {(_force == 1) || {_explosive > 0.5 && {_indirectRange >= 4.5} && {_fragPower >= 35}}};
TRACE_6("SettingCache[willFrag?]",_skip,_explosive,_indirectRange,_force,_fragPower,_shouldAdd);
- GVAR(cacheRoundsTypesToTrack) setVariable [_type, _shouldAdd];
+ GVAR(cacheRoundsTypesToTrack) setVariable [_ammo, _shouldAdd];
};
if (_shouldAdd) then {
- TRACE_3("Running Frag Tracking",_gun,_type,_round);
- [_gun, _type, _round] call FUNC(addPfhRound);
+ TRACE_3("Running Frag Tracking",_unit,_ammo,_projectile);
+ [_unit, _ammo, _projectile] call FUNC(addPfhRound);
};
From ac3f75c8b450f403ddb89b894da879650c6c756f Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 17:16:10 -0300
Subject: [PATCH 27/64] Apply the ufeh to ACE_Goggles
---
addons/goggles/CfgEventHandlers.hpp | 8 --------
addons/goggles/XEH_postInit.sqf | 3 +++
addons/goggles/functions/fnc_handleFired.sqf | 7 +++----
3 files changed, 6 insertions(+), 12 deletions(-)
diff --git a/addons/goggles/CfgEventHandlers.hpp b/addons/goggles/CfgEventHandlers.hpp
index 8c24b6d5ec..36bbadbb3e 100644
--- a/addons/goggles/CfgEventHandlers.hpp
+++ b/addons/goggles/CfgEventHandlers.hpp
@@ -19,14 +19,6 @@ class Extended_Killed_EventHandlers {
};
};
-class Extended_FiredBIS_EventHandlers {
- class CAManBase {
- class ADDON {
- clientFiredBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(handleFired)});
- };
- };
-};
-
class Extended_Explosion_EventHandlers {
class CAManBase {
class ADDON {
diff --git a/addons/goggles/XEH_postInit.sqf b/addons/goggles/XEH_postInit.sqf
index a4872f6a3f..832c961178 100644
--- a/addons/goggles/XEH_postInit.sqf
+++ b/addons/goggles/XEH_postInit.sqf
@@ -131,3 +131,6 @@ private _fnc_checkGoggles = {
END_COUNTER(goggles);
}, 0.5, []] call CBA_fnc_addPerFrameHandler;
+
+// Register fire event handler
+["firedPlayer", DFUNC(handleFired)] call EFUNC(common,addEventHandler);
diff --git a/addons/goggles/functions/fnc_handleFired.sqf b/addons/goggles/functions/fnc_handleFired.sqf
index 793849822f..23a1b66f48 100644
--- a/addons/goggles/functions/fnc_handleFired.sqf
+++ b/addons/goggles/functions/fnc_handleFired.sqf
@@ -1,6 +1,6 @@
/*
* Author: Garth 'L-H' de Wet, commy2
- * Determines whether to place dust on the goggles, based on calibre of weapon fired and other requirements.
+ * Determines whether to place dust on the goggles, based on calibre of weapon fired and other requirements. Called from the unified fired EH only for the local player.
*
* Arguments:
* 0: Unit
@@ -13,9 +13,8 @@
*/
#include "script_component.hpp"
-params ["_unit", "_weapon"];
-
-if (_unit != ACE_player) exitWith {true};
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
// no dust in rain
if (rain > 0.1) exitWith {true};
From 0b9695ce70acff4abceb548d5a84148cf3f789fa Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 17:20:30 -0300
Subject: [PATCH 28/64] Apply the ufeh to ACE_Grenades
---
addons/goggles/functions/fnc_handleFired.sqf | 3 +--
addons/grenades/CfgEventHandlers.hpp | 8 --------
addons/grenades/XEH_postInit.sqf | 6 ++++++
addons/grenades/functions/fnc_throwGrenade.sqf | 13 ++++---------
4 files changed, 11 insertions(+), 19 deletions(-)
diff --git a/addons/goggles/functions/fnc_handleFired.sqf b/addons/goggles/functions/fnc_handleFired.sqf
index 23a1b66f48..dcfcc51bec 100644
--- a/addons/goggles/functions/fnc_handleFired.sqf
+++ b/addons/goggles/functions/fnc_handleFired.sqf
@@ -3,8 +3,7 @@
* Determines whether to place dust on the goggles, based on calibre of weapon fired and other requirements. Called from the unified fired EH only for the local player.
*
* Arguments:
- * 0: Unit
- * 1: Weapon
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* Function is handled?
diff --git a/addons/grenades/CfgEventHandlers.hpp b/addons/grenades/CfgEventHandlers.hpp
index d93f8469bc..0cd959a047 100644
--- a/addons/grenades/CfgEventHandlers.hpp
+++ b/addons/grenades/CfgEventHandlers.hpp
@@ -10,11 +10,3 @@ class Extended_PostInit_EventHandlers {
init = QUOTE(call COMPILE_FILE(XEH_postInit));
};
};
-
-class Extended_FiredBIS_EventHandlers {
- class CAManBase {
- class ADDON {
- firedBIS = QUOTE(_this call FUNC(throwGrenade));
- };
- };
-};
diff --git a/addons/grenades/XEH_postInit.sqf b/addons/grenades/XEH_postInit.sqf
index 54c2b06e8b..38945ccc11 100644
--- a/addons/grenades/XEH_postInit.sqf
+++ b/addons/grenades/XEH_postInit.sqf
@@ -22,3 +22,9 @@ GVAR(flashbangPPEffectCC) ppEffectForceInNVG true;
},
{false},
[9, [false, false, false]], false] call CBA_fnc_addKeybind; //8 Key
+
+
+// Register fire event handler
+["firedPlayer", DFUNC(throwGrenade)] call EFUNC(common,addEventHandler);
+["firedPlayerNonLocal", DFUNC(throwGrenade)] call EFUNC(common,addEventHandler);
+["firedNonPlayer", DFUNC(throwGrenade)] call EFUNC(common,addEventHandler);
diff --git a/addons/grenades/functions/fnc_throwGrenade.sqf b/addons/grenades/functions/fnc_throwGrenade.sqf
index 1d7d470b80..284c573c2e 100644
--- a/addons/grenades/functions/fnc_throwGrenade.sqf
+++ b/addons/grenades/functions/fnc_throwGrenade.sqf
@@ -1,15 +1,9 @@
/*
* Author: commy2
- * Adjust the grenades throwing direction and speed to the selected throwing mode.
+ * Adjust the grenades throwing direction and speed to the selected throwing mode. Called from the unified fired EH only for CAManBase
*
* Arguments:
- * 0: unit - Object the event handler is assigned to
- * 1: weapon - Fired weapon
- * 2: muzzle - Muzzle that was used
- * 3: mode - Current mode of the fired weapon
- * 4: ammo - Ammo used
- * 5: magazine - magazine name which was used
- * 6: projectile - Object of the projectile that was shot
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* None
@@ -21,7 +15,8 @@
*/
#include "script_component.hpp"
-params ["_unit", "_weapon", "", "", "_ammo", "", "_projectile"];
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
if (_weapon != "Throw") exitWith {};
From 7ace1738c006eb5e036c26e7704ab2e350314de3 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 17:29:05 -0300
Subject: [PATCH 29/64] Apply the ufeh to ACE_HuntIr
---
addons/huntir/CfgEventhandlers.hpp | 8 --------
addons/huntir/XEH_postInit.sqf | 5 +++++
addons/huntir/functions/fnc_handleFired.sqf | 15 ++++++---------
3 files changed, 11 insertions(+), 17 deletions(-)
diff --git a/addons/huntir/CfgEventhandlers.hpp b/addons/huntir/CfgEventhandlers.hpp
index 308df09c1b..44b6e8e6ff 100644
--- a/addons/huntir/CfgEventhandlers.hpp
+++ b/addons/huntir/CfgEventhandlers.hpp
@@ -9,11 +9,3 @@ class Extended_PostInit_EventHandlers {
init = QUOTE( call COMPILE_FILE(XEH_postInit) );
};
};
-
-class Extended_FiredBIS_EventHandlers {
- class CAManBase {
- class ADDON {
- clientFiredBIS = QUOTE(_this call FUNC(handleFired));
- };
- };
-};
\ No newline at end of file
diff --git a/addons/huntir/XEH_postInit.sqf b/addons/huntir/XEH_postInit.sqf
index c5526500ac..0c518dfcea 100644
--- a/addons/huntir/XEH_postInit.sqf
+++ b/addons/huntir/XEH_postInit.sqf
@@ -7,3 +7,8 @@ GVAR(TI) = 0;
GVAR(cur_cam) = 0;
GVAR(ROTATE) = 0;
GVAR(ELEVAT) = 0.01;
+
+// Register fire event handler
+// Don't run for non players, as they are too dumb to launch huntirs anyway
+["firedPlayer", DFUNC(handleFired)] call EFUNC(common,addEventHandler);
+["firedPlayerNonLocal", DFUNC(handleFired)] call EFUNC(common,addEventHandler);
diff --git a/addons/huntir/functions/fnc_handleFired.sqf b/addons/huntir/functions/fnc_handleFired.sqf
index 1919b4547c..551b9975b6 100644
--- a/addons/huntir/functions/fnc_handleFired.sqf
+++ b/addons/huntir/functions/fnc_handleFired.sqf
@@ -1,16 +1,10 @@
/*
* Author: Norrin, Rocko, Ruthberg
*
- * Handles HuntIR projectiles
+ * Handles HuntIR projectiles. Called from the unified fired EH for all CAManBase.
*
* Arguments:
- * 0: unit - Object the event handler is assigned to
- * 1: weapon - Fired weapon
- * 2: muzzle - Muzzle that was used
- * 3: mode - Current mode of the fired weapon
- * 4: ammo - Ammo used
- * 5: magazine - magazine name which was used
- * 6: projectile - Object of the projectile that was shot
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* None
@@ -19,10 +13,13 @@
*/
#include "script_component.hpp"
-params ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile"];
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
if (_ammo != "F_HuntIR") exitWith {};
+if (!hasInterface) exitWith {};
+
[{
params ["_projectile"];
From 45b6b8467d5e65b3c7bb8ce80f6cf48649324dca Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 17:42:44 -0300
Subject: [PATCH 30/64] Apply the ufeh to ACE_Nightvision
---
addons/nightvision/CfgEventHandlers.hpp | 8 --------
addons/nightvision/XEH_postInitClient.sqf | 4 ++++
addons/nightvision/functions/fnc_blending.sqf | 19 +++++--------------
3 files changed, 9 insertions(+), 22 deletions(-)
diff --git a/addons/nightvision/CfgEventHandlers.hpp b/addons/nightvision/CfgEventHandlers.hpp
index 380f190f47..49b87fb4fd 100644
--- a/addons/nightvision/CfgEventHandlers.hpp
+++ b/addons/nightvision/CfgEventHandlers.hpp
@@ -9,11 +9,3 @@ class Extended_PostInit_EventHandlers {
clientInit = QUOTE(call COMPILE_FILE(XEH_postInitClient) );
};
};
-
-class Extended_FiredBIS_EventHandlers {
- class AllVehicles {
- class ADDON {
- clientFiredBIS = QUOTE( _this call FUNC(blending) );
- };
- };
-};
diff --git a/addons/nightvision/XEH_postInitClient.sqf b/addons/nightvision/XEH_postInitClient.sqf
index 0df7270317..1f73b12e93 100644
--- a/addons/nightvision/XEH_postInitClient.sqf
+++ b/addons/nightvision/XEH_postInitClient.sqf
@@ -70,3 +70,7 @@ GVAR(ppEffectMuzzleFlash) ppEffectCommit 0;
},
{false},
[209, [false, false, true]], false] call CBA_fnc_addKeybind; //PageDown + ALT
+
+// Register fire event handler
+["firedPlayer", DFUNC(blending)] call EFUNC(common,addEventHandler);
+["firedPlayerVehicle", DFUNC(blending)] call EFUNC(common,addEventHandler);
diff --git a/addons/nightvision/functions/fnc_blending.sqf b/addons/nightvision/functions/fnc_blending.sqf
index 42d586248d..5c205fce5c 100644
--- a/addons/nightvision/functions/fnc_blending.sqf
+++ b/addons/nightvision/functions/fnc_blending.sqf
@@ -1,15 +1,9 @@
/*
* Author: commy2
- * Change the blending when the player fires??
+ * Change the blending when the player fires??. Called from the unified fired EH only for the local player and his vehicle.
*
* Arguments:
- * 0: unit - Object the event handler is assigned to
- * 1: weapon - Fired weapon
- * 2: muzzle - Muzzle that was used
- * 3: mode - Current mode of the fired weapon
- * 4: ammo - Ammo used
- * 5: magazine - magazine name which was used
- * 6: projectile - Object of the projectile that was shot
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* Nothing
@@ -21,17 +15,14 @@
*/
#include "script_component.hpp"
-if (!hasInterface) exitWith {};
-
-params ["_vehicle", "_weapon", "", "", "_ammo", "_magazine"];
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
private "_player";
_player = ACE_player;
//If our vehicle didn't shoot, or we're not in NVG mode, exit
-if ((_vehicle != (vehicle _player)) || {(currentVisionMode _player) != 1}) exitWith {};
-//If we are mounted, and it wasn't our weapon system that fired, exit
-if (_player != _vehicle && {!(_weapon in (_vehicle weaponsTurret ([_player] call EFUNC(common,getTurretIndex))))}) exitWith {};
+if (currentVisionMode _player) != 1} exitWith {};
private["_darkness", "_nvgBrightnessCoef", "_silencer", "_visibleFire", "_visibleFireCoef", "_visibleFireTime", "_visibleFireTimeCoef"];
From 33bcd6d9f9b2dc817996a8c947697ce433528fb5 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 17:44:34 -0300
Subject: [PATCH 31/64] Fix
---
addons/nightvision/functions/fnc_blending.sqf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/addons/nightvision/functions/fnc_blending.sqf b/addons/nightvision/functions/fnc_blending.sqf
index 5c205fce5c..b34584a5d0 100644
--- a/addons/nightvision/functions/fnc_blending.sqf
+++ b/addons/nightvision/functions/fnc_blending.sqf
@@ -22,7 +22,7 @@ private "_player";
_player = ACE_player;
//If our vehicle didn't shoot, or we're not in NVG mode, exit
-if (currentVisionMode _player) != 1} exitWith {};
+if ((currentVisionMode _player) != 1) exitWith {};
private["_darkness", "_nvgBrightnessCoef", "_silencer", "_visibleFire", "_visibleFireCoef", "_visibleFireTime", "_visibleFireTimeCoef"];
From 5b3df2bcf7d621401453ae6795171ad6d407738e Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 17:50:35 -0300
Subject: [PATCH 32/64] Apply the ufeh to ACE_Optics
---
addons/optics/CfgEventHandlers.hpp | 8 --------
addons/optics/XEH_postInit.sqf | 5 ++++-
addons/optics/functions/fnc_handleFired.sqf | 16 ++++------------
3 files changed, 8 insertions(+), 21 deletions(-)
diff --git a/addons/optics/CfgEventHandlers.hpp b/addons/optics/CfgEventHandlers.hpp
index 68962af2c4..e75956f440 100644
--- a/addons/optics/CfgEventHandlers.hpp
+++ b/addons/optics/CfgEventHandlers.hpp
@@ -9,11 +9,3 @@ class Extended_PostInit_EventHandlers {
init = QUOTE(call COMPILE_FILE(XEH_postInit));
};
};
-
-class Extended_FiredBIS_EventHandlers {
- class CAManBase {
- class AGM_Optics {
- clientFiredBIS = QUOTE(if (_this select 0 == ACE_player) then {_this call DFUNC(handleFired)};);
- };
- };
-};
diff --git a/addons/optics/XEH_postInit.sqf b/addons/optics/XEH_postInit.sqf
index 2048db76c6..c9667f3931 100644
--- a/addons/optics/XEH_postInit.sqf
+++ b/addons/optics/XEH_postInit.sqf
@@ -10,7 +10,7 @@ GVAR(camera) = objNull;
if ((!isNil {is3DEN}) && {is3DEN}) exitWith {
ACE_LOGINFO("Eden detected: disabling Optics PIP Camera");
};
-
+
waitUntil {!isNull ACE_player};
waitUntil {sleep 1; {_x != GVAR(camera)} count allMissionObjects "camera" == 0 && {isNull curatorCamera}};
@@ -50,3 +50,6 @@ GVAR(camera) = objNull;
GVAR(camera) cameraEffect ["INTERNAL", "BACK", "ace_optics_rendertarget0"];
};
}] call EFUNC(common,addEventHandler);
+
+// Register fire event handler
+["firedPlayer", DFUNC(handleFired)] call EFUNC(common,addEventHandler);
diff --git a/addons/optics/functions/fnc_handleFired.sqf b/addons/optics/functions/fnc_handleFired.sqf
index f0399c37fc..299b2c30f4 100644
--- a/addons/optics/functions/fnc_handleFired.sqf
+++ b/addons/optics/functions/fnc_handleFired.sqf
@@ -2,26 +2,18 @@
* Original Author: Taosenai
* Adapted By: KoffeinFlummi, commy2
*
- * Animates the scope when firing.
+ * Animates the scope when firing. Called from the unified fired EH only for the local player.
*
* Arguments:
- * 0: Unit (Object)
- * 1: Weapon (String)
- * 2: Muzzle (String)
- * 3: Mode (String)
- * 4: Ammo (Object)
- * 5: Magazine (String)
- * 6: Projectile (Object)
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* None
*/
#include "script_component.hpp"
-private ["_unit", "_weapon"];
-
-_unit = _this select 0;
-_weapon = _this select 1;
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
// check if compatible scope is used
private "_display";
From 5aa763f0c639ce5411114642fa950b0bc41d0f80 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 17:59:54 -0300
Subject: [PATCH 33/64] Apply the ufeh to ACE_Overheating
---
addons/overheating/CfgEventHandlers.hpp | 8 -------
addons/overheating/XEH_postInit.sqf | 9 ++++++++
addons/overheating/functions/fnc_firedEH.sqf | 22 +++++++-------------
3 files changed, 16 insertions(+), 23 deletions(-)
diff --git a/addons/overheating/CfgEventHandlers.hpp b/addons/overheating/CfgEventHandlers.hpp
index 7e4e0b35c7..7f43c8b903 100644
--- a/addons/overheating/CfgEventHandlers.hpp
+++ b/addons/overheating/CfgEventHandlers.hpp
@@ -10,14 +10,6 @@ class Extended_PostInit_EventHandlers {
};
};
-class Extended_FiredBIS_EventHandlers {
- class CAManBase {
- class GVAR(Overheat) {
- clientFiredBIS = QUOTE(_this call FUNC(firedEH));
- };
- };
-};
-
class Extended_Take_EventHandlers {
class CAManBase {
class GVAR(UnjamReload) {
diff --git a/addons/overheating/XEH_postInit.sqf b/addons/overheating/XEH_postInit.sqf
index 76cdb090bb..38c0298b0f 100644
--- a/addons/overheating/XEH_postInit.sqf
+++ b/addons/overheating/XEH_postInit.sqf
@@ -36,3 +36,12 @@ GVAR(cacheWeaponData) setText QGVAR(cacheWeaponData);
// Schedule cool down calculation of player weapons at (infrequent) regular intervals
[] call FUNC(updateTemperatureThread);
+
+["SettingsInitialized", {
+ // Register fire event handler
+ ["firedPlayer", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
+ // Only add eh to non local players if dispersion is enabled
+ if (GVAR(overheatingDispersion)) then {
+ ["firedPlayerNonLocal", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
+ };
+}] call EFUNC(common,addEventHandler);
diff --git a/addons/overheating/functions/fnc_firedEH.sqf b/addons/overheating/functions/fnc_firedEH.sqf
index b37e87c66d..604a2bb31d 100644
--- a/addons/overheating/functions/fnc_firedEH.sqf
+++ b/addons/overheating/functions/fnc_firedEH.sqf
@@ -1,15 +1,9 @@
/*
* Author: Commy2 and esteldunedain
- * Handle weapon fire
+ * Handle weapon fire. Called from the unified fired EH 1- always for the local player 2- and for non local players if dispersion is simulated.
*
* Argument:
- * 0: unit - Object the event handler is assigned to
- * 1: weapon - Fired weapon
- * 2: muzzle - Muzzle that was used
- * 3: mode - Current mode of the fired weapon
- * 4: ammo - Ammo used
- * 5: magazine - magazine name which was used
- * 6: projectile - Object of the projectile that was shot
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return value:
* None
@@ -18,15 +12,13 @@
*/
#include "script_component.hpp"
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
+
BEGIN_COUNTER(firedEH);
-params ["_unit", "_weapon", "_muzzle", "", "_ammo", "", "_projectile"];
-TRACE_5("params",_unit,_weapon,_muzzle,_ammo,_projectile);
-
-if (((!GVAR(overheatingDispersion)) && {_unit != ACE_player}) //If no dispersion, only run when local
- || {!([_unit] call EFUNC(common,isPlayer))} //Ignore AI
- || {(_unit distance ACE_player) > 3000} //Ignore far away shots
- || {(_muzzle != (primaryWeapon _unit)) && {_muzzle != (handgunWeapon _unit)}}) exitWith { // Only rifle or pistol muzzles (ignore grenades / GLs)
+if ((_unit distance ACE_player) > 3000 //Ignore far away shots
+ || {(_muzzle != (primaryWeapon _unit)) && {_muzzle != (handgunWeapon _unit)}}) exitWith { // Only rifle or pistol muzzles (ignore grenades / GLs)
END_COUNTER(firedEH);
};
From 69dea087ca68756ed50546a48e2e8fc9d301ddd5 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 18:17:27 -0300
Subject: [PATCH 34/64] Apply the ufeh to ACE_Overpressure
---
addons/overpressure/CfgEventHandlers.hpp | 39 --------
addons/overpressure/XEH_postInit.sqf | 4 +
addons/overpressure/XEH_preInit.sqf | 2 -
.../functions/fnc_fireLauncherBackblast.sqf | 95 -------------------
.../functions/fnc_fireOverpressureZone.sqf | 75 ---------------
.../overpressure/functions/fnc_firedEHBB.sqf | 89 +++++++++++++----
.../overpressure/functions/fnc_firedEHOP.sqf | 64 ++++++++++---
7 files changed, 123 insertions(+), 245 deletions(-)
delete mode 100644 addons/overpressure/functions/fnc_fireLauncherBackblast.sqf
delete mode 100644 addons/overpressure/functions/fnc_fireOverpressureZone.sqf
diff --git a/addons/overpressure/CfgEventHandlers.hpp b/addons/overpressure/CfgEventHandlers.hpp
index 472c253f7d..0cd959a047 100644
--- a/addons/overpressure/CfgEventHandlers.hpp
+++ b/addons/overpressure/CfgEventHandlers.hpp
@@ -10,42 +10,3 @@ class Extended_PostInit_EventHandlers {
init = QUOTE(call COMPILE_FILE(XEH_postInit));
};
};
-
-class Extended_FiredBIS_EventHandlers {
- class CAManBase {
- class ADDON {
- clientFiredBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHBB);};);
- };
- };
-
- class Tank {
- class ADDON {
- firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
- };
- };
- class Car {
- class ADDON {
- firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
- };
- };
- class Helicopter {
- class ADDON {
- firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
- };
- };
- class Plane {
- class ADDON {
- firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
- };
- };
- class Ship_F {
- class ADDON {
- firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
- };
- };
- class StaticWeapon {
- class ADDON {
- firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
- };
- };
-};
diff --git a/addons/overpressure/XEH_postInit.sqf b/addons/overpressure/XEH_postInit.sqf
index 33c2e679c9..f7f0bc2ace 100644
--- a/addons/overpressure/XEH_postInit.sqf
+++ b/addons/overpressure/XEH_postInit.sqf
@@ -1,3 +1,7 @@
#include "script_component.hpp"
["overpressure", FUNC(overpressureDamage)] call EFUNC(common,addEventHandler);
+
+// Register fire event handler
+["firedPlayer", DFUNC(firedEHBB)] call EFUNC(common,addEventHandler);
+["firedPlayerVehicle", DFUNC(firedEHOP)] call EFUNC(common,addEventHandler);
diff --git a/addons/overpressure/XEH_preInit.sqf b/addons/overpressure/XEH_preInit.sqf
index d0ce7cbcf1..37f44a2e9a 100644
--- a/addons/overpressure/XEH_preInit.sqf
+++ b/addons/overpressure/XEH_preInit.sqf
@@ -2,8 +2,6 @@
ADDON = false;
-PREP(fireLauncherBackblast);
-PREP(fireOverpressureZone);
PREP(getDistance);
PREP(overpressureDamage);
PREP(cacheOverPressureValues);
diff --git a/addons/overpressure/functions/fnc_fireLauncherBackblast.sqf b/addons/overpressure/functions/fnc_fireLauncherBackblast.sqf
deleted file mode 100644
index 3b6691fb81..0000000000
--- a/addons/overpressure/functions/fnc_fireLauncherBackblast.sqf
+++ /dev/null
@@ -1,95 +0,0 @@
-/*
- * Author: commy2 and esteldunedain
- * Handle fire of local launchers
- * Called from firedEHBB, only for ace_player with shot that will cause damage
- *
- * Arguments:
- * 0: Unit that fired
- * 1: Weapon fired
- * 2: Muzzle
- * 3: Mode
- * 4: Ammo
- * 5: Magazine
- * 6: Projectile
- *
- * Return value:
- * None
- *
- * Example:
- * [player, "launch_RPG32_F", "launch_RPG32_F", "Single", "R_PG32V_F", "RPG32_F", projectile] call ace_overpressure_fnc_fireLauncherBackblast;
- *
- * Public: No
- */
-#include "script_component.hpp"
-
-params ["_firer", "_weapon", "_muzzle", "", "_ammo", "_magazine", "_projectile"];
-TRACE_6("params",_firer,_weapon,_muzzle,_ammo,_magazine,_projectile);
-
-private _position = getPosASL _projectile;
-private _direction = [0, 0, 0] vectorDiff (vectorDir _projectile);
-
-// Bake variable name and check if the variable exists, call the caching function otherwise
-private _varName = format [QGVAR(values%1%2%3), _weapon, _ammo, _magazine];
-private _var = if (isNil _varName) then {
- [_weapon, _ammo, _magazine] call FUNC(cacheOverPressureValues);
-} else {
- missionNameSpace getVariable _varName;
-};
-_var params["_backblastAngle","_backblastRange","_backblastDamage"];
-TRACE_3("cache",_backblastAngle,_backblastRange,_backblastDamage);
-
-// Damage to others
-private _affected = (ASLtoAGL _position) nearEntities ["CAManBase", _backblastRange];
-
-// Let each client handle their own affected units
-["overpressure", _affected, [_firer, _position, _direction, _weapon, _magazine, _ammo]] call EFUNC(common,targetEvent);
-
-// Damage to the firer
-private _distance = 2 * ([_position, _direction, _backblastRange, _firer] call FUNC(getDistance));
-
-TRACE_1("Distance",_distance);
-
-if (_distance < _backblastRange) then {
- private _alpha = sqrt (1 - _distance / _backblastRange);
- private _beta = sqrt 0.5;
-
- private _damage = _alpha * _beta * _backblastDamage;
- [_damage * 100] call BIS_fnc_bloodEffect;
-
- if (isClass (configFile >> "CfgPatches" >> "ACE_Medical") && {([_firer] call EFUNC(medical,hasMedicalEnabled))}) then {
- [_firer, _damage, "body", "backblast"] call EFUNC(medical,addDamageToUnit);
- } else {
- _firer setDamage (damage _firer + _damage);
- };
-};
-
-// Draw debug lines
-#ifdef DEBUG_MODE_FULL
- [ _position,
- _position vectorAdd (_direction vectorMultiply _backblastRange),
- [1,1,0,1]
- ] call EFUNC(common,addLineToDebugDraw);
-
- private _ref = _direction call EFUNC(common,createOrthonormalReference);
- [ _position,
- _position vectorAdd (_direction vectorMultiply _backblastRange) vectorAdd ((_ref select 1) vectorMultiply _backblastRange * tan _backblastAngle),
- [1,1,0,1]
- ] call EFUNC(common,addLineToDebugDraw);
- [ _position,
- _position vectorAdd (_direction vectorMultiply _backblastRange) vectorDiff ((_ref select 1) vectorMultiply _backblastRange * tan _backblastAngle),
- [1,1,0,1]
- ] call EFUNC(common,addLineToDebugDraw);
- [ _position,
- _position vectorAdd (_direction vectorMultiply _backblastRange) vectorAdd ((_ref select 2) vectorMultiply _backblastRange * tan _backblastAngle),
- [1,1,0,1]
- ] call EFUNC(common,addLineToDebugDraw);
- [ _position,
- _position vectorAdd (_direction vectorMultiply _backblastRange) vectorDiff ((_ref select 2) vectorMultiply _backblastRange * tan _backblastAngle),
- [1,1,0,1]
- ] call EFUNC(common,addLineToDebugDraw);
-
- [ _position,
- _position vectorAdd (_direction vectorMultiply ((_distance/2) min _backblastRange)),
- [1,0,0,1]
- ] call EFUNC(common,addLineToDebugDraw);
-#endif
diff --git a/addons/overpressure/functions/fnc_fireOverpressureZone.sqf b/addons/overpressure/functions/fnc_fireOverpressureZone.sqf
deleted file mode 100644
index f254151307..0000000000
--- a/addons/overpressure/functions/fnc_fireOverpressureZone.sqf
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * Author: commy2 and esteldunedain
- * Handle fire of local vehicle weapons creating overpressure zones
- * Called from firedEHOP, only for local vehicles
- *
- * Arguments:
- * 0: Vehicle that fired
- * 1: Weapon fired
- * 2: Muzzle
- * 3: Mode
- * 4: Ammo
- * 5: Magazine
- * 6: Projectile
- *
- * Return value:
- * None
- *
- * Example:
- * [tank, "cannon_125mm", "cannon_125mm", "player", "Sh_125mm_APFSDS_T_Green", "24Rnd_125mm_APFSDS_T_Green", projectile] call ace_overpressure_fnc_fireOverpressureZone
- *
- * Public: No
- */
-#include "script_component.hpp"
-
-params ["_firer", "_weapon", "_muzzle", "", "_ammo", "_magazine", "_projectile"];
-TRACE_6("params",_firer,_weapon,_muzzle,_ammo,_magazine,_projectile);
-
-// Prevent AI from causing overpressure damage (NOTE: Vehicle is local, but turret gunner may not be)
-if !([gunner _firer] call EFUNC(common,isPlayer)) exitWith {};
-
-private _position = getPosASL _projectile;
-private _direction = vectorDir _projectile;
-
-// Bake variable name and check if the variable exists, call the caching function otherwise
-private _varName = format [QGVAR(values%1%2%3), _weapon, _ammo, _magazine];
-private _var = if (isNil _varName) then {
- [_weapon, _ammo, _magazine] call FUNC(cacheOverPressureValues);
-} else {
- missionNameSpace getVariable _varName;
-};
-_var params["_dangerZoneAngle","_dangerZoneRange","_dangerZoneDamage"];
-TRACE_3("cache",_dangerZoneAngle,_dangerZoneRange,_dangerZoneDamage);
-
-// Damage to others
-private _affected = (ASLtoAGL _position) nearEntities ["CAManBase", _dangerZoneRange];
-
-// Let each client handle their own affected units
-["overpressure", _affected, [_firer, _position, _direction, _weapon, _magazine, _ammo]] call EFUNC(common,targetEvent);
-
-// Draw debug lines
-#ifdef DEBUG_MODE_FULL
- [ _position,
- _position vectorAdd (_direction vectorMultiply _dangerZoneRange),
- [1,0,0,1]
- ] call EFUNC(common,addLineToDebugDraw);
-
- private _ref = _direction call EFUNC(common,createOrthonormalReference);
- [ _position,
- _position vectorAdd (_direction vectorMultiply _dangerZoneRange) vectorAdd ((_ref select 1) vectorMultiply _dangerZoneRange * tan _dangerZoneAngle),
- [1,1,0,1]
- ] call EFUNC(common,addLineToDebugDraw);
- [ _position,
- _position vectorAdd (_direction vectorMultiply _dangerZoneRange) vectorDiff ((_ref select 1) vectorMultiply _dangerZoneRange * tan _dangerZoneAngle),
- [1,1,0,1]
- ] call EFUNC(common,addLineToDebugDraw);
- [ _position,
- _position vectorAdd (_direction vectorMultiply _dangerZoneRange) vectorAdd ((_ref select 2) vectorMultiply _dangerZoneRange * tan _dangerZoneAngle),
- [1,1,0,1]
- ] call EFUNC(common,addLineToDebugDraw);
- [ _position,
- _position vectorAdd (_direction vectorMultiply _dangerZoneRange) vectorDiff ((_ref select 2) vectorMultiply _dangerZoneRange * tan _dangerZoneAngle),
- [1,1,0,1]
- ] call EFUNC(common,addLineToDebugDraw);
-
-#endif
diff --git a/addons/overpressure/functions/fnc_firedEHBB.sqf b/addons/overpressure/functions/fnc_firedEHBB.sqf
index 6327cc67c9..8dc15e0f0a 100644
--- a/addons/overpressure/functions/fnc_firedEHBB.sqf
+++ b/addons/overpressure/functions/fnc_firedEHBB.sqf
@@ -1,39 +1,90 @@
/*
* Author: joko // Jonas
- * Handle fire of local launchers
+ * Handle fire of local launchers. Called from the unified fired EH only for the local player.
*
* Arguments:
- * 0: Unit that fired
- * 1: Weapon fired
- * 2: Muzzle
- * 3: Mode
- * 4: Ammo
- * 5: Magazine
- * 6: Projectile
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return value:
* None
*
- * Example:
+ * Example:
* [player, "launch_RPG32_F", "launch_RPG32_F", "Single", "R_PG32V_F", "RPG32_F", projectile] call ace_overpressure_fnc_firedEHBB;
*
* Public: No
*/
#include "script_component.hpp"
-params ["_firer", "_weapon", "", "", "_ammo", "_magazine", ""];
-
-// Prevent AI from causing backblast damage (fast exit to only run for local players)
-if (_firer != ACE_player) exitWith {};
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
// Bake variable name and check if the variable exists, call the caching function otherwise
private _varName = format [QGVAR(values%1%2%3), _weapon, _ammo, _magazine];
-private _damage = if (isNil _varName) then {
- ([_weapon, _ammo, _magazine] call FUNC(cacheOverPressureValues)) select 2;
+private _var = if (isNil _varName) then {
+ [_weapon, _ammo, _magazine] call FUNC(cacheOverPressureValues);
} else {
- (missionNameSpace getVariable _varName) select 2;
+ missionNameSpace getVariable _varName;
+};
+_var params["_backblastAngle","_backblastRange","_backblastDamage"];
+TRACE_3("cache",_backblastAngle,_backblastRange,_backblastDamage);
+
+if (_backblastDamage <= 0) exitWith {};
+
+private _position = getPosASL _projectile;
+private _direction = [0, 0, 0] vectorDiff (vectorDir _projectile);
+
+// Damage to others
+private _affected = (ASLtoAGL _position) nearEntities ["CAManBase", _backblastRange];
+
+// Let each client handle their own affected units
+["overpressure", _affected, [_unit, _position, _direction, _weapon, _magazine, _ammo]] call EFUNC(common,targetEvent);
+
+// Damage to the firer
+private _distance = 2 * ([_position, _direction, _backblastRange, _unit] call FUNC(getDistance));
+
+TRACE_1("Distance",_distance);
+
+if (_distance < _backblastRange) then {
+ private _alpha = sqrt (1 - _distance / _backblastRange);
+ private _beta = sqrt 0.5;
+
+ private _damage = _alpha * _beta * _backblastDamage;
+ [_damage * 100] call BIS_fnc_bloodEffect;
+
+ if (isClass (configFile >> "CfgPatches" >> "ACE_Medical") && {([_unit] call EFUNC(medical,hasMedicalEnabled))}) then {
+ [_unit, _damage, "body", "backblast"] call EFUNC(medical,addDamageToUnit);
+ } else {
+ _unit setDamage (damage _unit + _damage);
+ };
};
-if (_damage > 0) then {
- _this call DFUNC(fireLauncherBackblast)
-};
+// Draw debug lines
+#ifdef DEBUG_MODE_FULL
+ [ _position,
+ _position vectorAdd (_direction vectorMultiply _backblastRange),
+ [1,1,0,1]
+ ] call EFUNC(common,addLineToDebugDraw);
+
+ private _ref = _direction call EFUNC(common,createOrthonormalReference);
+ [ _position,
+ _position vectorAdd (_direction vectorMultiply _backblastRange) vectorAdd ((_ref select 1) vectorMultiply _backblastRange * tan _backblastAngle),
+ [1,1,0,1]
+ ] call EFUNC(common,addLineToDebugDraw);
+ [ _position,
+ _position vectorAdd (_direction vectorMultiply _backblastRange) vectorDiff ((_ref select 1) vectorMultiply _backblastRange * tan _backblastAngle),
+ [1,1,0,1]
+ ] call EFUNC(common,addLineToDebugDraw);
+ [ _position,
+ _position vectorAdd (_direction vectorMultiply _backblastRange) vectorAdd ((_ref select 2) vectorMultiply _backblastRange * tan _backblastAngle),
+ [1,1,0,1]
+ ] call EFUNC(common,addLineToDebugDraw);
+ [ _position,
+ _position vectorAdd (_direction vectorMultiply _backblastRange) vectorDiff ((_ref select 2) vectorMultiply _backblastRange * tan _backblastAngle),
+ [1,1,0,1]
+ ] call EFUNC(common,addLineToDebugDraw);
+
+ [ _position,
+ _position vectorAdd (_direction vectorMultiply ((_distance/2) min _backblastRange)),
+ [1,0,0,1]
+ ] call EFUNC(common,addLineToDebugDraw);
+#endif
diff --git a/addons/overpressure/functions/fnc_firedEHOP.sqf b/addons/overpressure/functions/fnc_firedEHOP.sqf
index fbcb034279..dff9215a52 100644
--- a/addons/overpressure/functions/fnc_firedEHOP.sqf
+++ b/addons/overpressure/functions/fnc_firedEHOP.sqf
@@ -1,15 +1,9 @@
/*
* Author: joko // Jonas
- * Handle fire of Vehicle Weapons
+ * Handle fire of Vehicle Weapons. Called from the unified fired EH only for the local player vehicle.
*
* Arguments:
- * 0: Vehicle that fired (XEH will filter only local)
- * 1: Weapon fired
- * 2: Muzzle
- * 3: Mode
- * 4: Ammo
- * 5: Magazine
- * 6: Projectile
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return value:
* None
@@ -21,16 +15,56 @@
*/
#include "script_component.hpp"
-params ["", "_weapon", "", "", "_ammo", "_magazine", ""];
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
// Bake variable name and check if the variable exists, call the caching function otherwise
private _varName = format [QGVAR(values%1%2%3), _weapon, _ammo, _magazine];
-private _damage = if (isNil _varName) then {
- ([_weapon, _ammo, _magazine] call FUNC(cacheOverPressureValues)) select 2;
+private _var = if (isNil _varName) then {
+ [_weapon, _ammo, _magazine] call FUNC(cacheOverPressureValues);
} else {
- (missionNameSpace getVariable _varName) select 2;
+ missionNameSpace getVariable _varName;
};
+_var params["_dangerZoneAngle","_dangerZoneRange","_dangerZoneDamage"];
+TRACE_3("cache",_dangerZoneAngle,_dangerZoneRange,_dangerZoneDamage);
-if (_damage > 0) then {
- _this call DFUNC(fireOverpressureZone)
-};
+if (_dangerZoneDamage <= 0) exitWith {};
+
+
+
+// The weapon produces overpressure, calculate
+private _position = getPosASL _projectile;
+private _direction = vectorDir _projectile;
+
+// Damage to others
+private _affected = (ASLtoAGL _position) nearEntities ["CAManBase", _dangerZoneRange];
+
+// Let each client handle their own affected units
+["overpressure", _affected, [_unit, _position, _direction, _weapon, _magazine, _ammo]] call EFUNC(common,targetEvent);
+
+// Draw debug lines
+#ifdef DEBUG_MODE_FULL
+ [ _position,
+ _position vectorAdd (_direction vectorMultiply _dangerZoneRange),
+ [1,0,0,1]
+ ] call EFUNC(common,addLineToDebugDraw);
+
+ private _ref = _direction call EFUNC(common,createOrthonormalReference);
+ [ _position,
+ _position vectorAdd (_direction vectorMultiply _dangerZoneRange) vectorAdd ((_ref select 1) vectorMultiply _dangerZoneRange * tan _dangerZoneAngle),
+ [1,1,0,1]
+ ] call EFUNC(common,addLineToDebugDraw);
+ [ _position,
+ _position vectorAdd (_direction vectorMultiply _dangerZoneRange) vectorDiff ((_ref select 1) vectorMultiply _dangerZoneRange * tan _dangerZoneAngle),
+ [1,1,0,1]
+ ] call EFUNC(common,addLineToDebugDraw);
+ [ _position,
+ _position vectorAdd (_direction vectorMultiply _dangerZoneRange) vectorAdd ((_ref select 2) vectorMultiply _dangerZoneRange * tan _dangerZoneAngle),
+ [1,1,0,1]
+ ] call EFUNC(common,addLineToDebugDraw);
+ [ _position,
+ _position vectorAdd (_direction vectorMultiply _dangerZoneRange) vectorDiff ((_ref select 2) vectorMultiply _dangerZoneRange * tan _dangerZoneAngle),
+ [1,1,0,1]
+ ] call EFUNC(common,addLineToDebugDraw);
+
+#endif
From 12d7a171e5edf140ef15199112b41ba86caf09c3 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 18:21:43 -0300
Subject: [PATCH 35/64] Apply the ufeh to ACE_Recoil
---
addons/recoil/CfgEventHandlers.hpp | 9 +++------
addons/recoil/XEH_postInit.sqf | 4 ++++
addons/recoil/functions/fnc_camshake.sqf | 11 +++++------
3 files changed, 12 insertions(+), 12 deletions(-)
create mode 100644 addons/recoil/XEH_postInit.sqf
diff --git a/addons/recoil/CfgEventHandlers.hpp b/addons/recoil/CfgEventHandlers.hpp
index 60fc3892fc..76963cf182 100644
--- a/addons/recoil/CfgEventHandlers.hpp
+++ b/addons/recoil/CfgEventHandlers.hpp
@@ -1,14 +1,11 @@
-
class Extended_PreInit_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_preInit));
};
};
-class Extended_FiredBIS_EventHandlers {
- class CAManBase {
- class ADDON {
- clientFiredBIS = QUOTE(if (_this select 0 == ACE_player) then {_this call FUNC(camshake)};);
- };
+class Extended_PostInit_EventHandlers {
+ class ADDON {
+ init = QUOTE( call COMPILE_FILE(XEH_postInit) );
};
};
diff --git a/addons/recoil/XEH_postInit.sqf b/addons/recoil/XEH_postInit.sqf
new file mode 100644
index 0000000000..e6b694646f
--- /dev/null
+++ b/addons/recoil/XEH_postInit.sqf
@@ -0,0 +1,4 @@
+#include "script_component.hpp"
+
+// Register fire event handler
+["firedPlayer", DFUNC(camShake)] call EFUNC(common,addEventHandler);
diff --git a/addons/recoil/functions/fnc_camshake.sqf b/addons/recoil/functions/fnc_camshake.sqf
index a8e1af75d9..deb454df71 100644
--- a/addons/recoil/functions/fnc_camshake.sqf
+++ b/addons/recoil/functions/fnc_camshake.sqf
@@ -1,12 +1,10 @@
/*
* Author: Orginal by Ryan Schultz, edited by KoffeinFlummi, commy2
- * Adds camera shake when firing
+ * Adds camera shake when firing. Called from the unified fired EH only for the local player.
* From TMR: Small Arms
*
* Arguments:
- * 0: Unit
- * 1: Weapon
- * 3: Muzzle
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* Nothing
@@ -18,13 +16,14 @@
*/
#include "script_component.hpp"
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
+
#define BASE_POWER 0.40
#define BASE_TIME 0.19
#define BASE_FREQ 13
#define RECOIL_COEF 40
-params ["_unit", "_weapon", "_muzzle"];
-
if (toLower _weapon in ["throw", "put"]) exitWith {};
private _powerMod = ([0, -0.1, -0.1, 0, -0.2] select (["STAND", "CROUCH", "PRONE", "UNDEFINED", ""] find stance _unit)) + ([0, -1, 0, -1] select (["INTERNAL", "EXTERNAL", "GUNNER", "GROUP"] find cameraView));
From cdfdfffff62c7eab0eb003af30342de7626145ad Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 18:24:48 -0300
Subject: [PATCH 36/64] Apply the ufeh to ACE_Scopes
---
addons/scopes/CfgEventHandlers.hpp | 8 --------
addons/scopes/XEH_postInit.sqf | 5 +++++
addons/scopes/functions/fnc_firedEH.sqf | 17 +++++------------
3 files changed, 10 insertions(+), 20 deletions(-)
diff --git a/addons/scopes/CfgEventHandlers.hpp b/addons/scopes/CfgEventHandlers.hpp
index 5c23e0c462..e75956f440 100644
--- a/addons/scopes/CfgEventHandlers.hpp
+++ b/addons/scopes/CfgEventHandlers.hpp
@@ -9,11 +9,3 @@ class Extended_PostInit_EventHandlers {
init = QUOTE(call COMPILE_FILE(XEH_postInit));
};
};
-
-class Extended_FiredBIS_EventHandlers {
- class CAManBase {
- class ADDON {
- firedBIS = QUOTE(_this call FUNC(firedEH););
- };
- };
-};
diff --git a/addons/scopes/XEH_postInit.sqf b/addons/scopes/XEH_postInit.sqf
index 41e7d53e17..8f2adeb0b7 100644
--- a/addons/scopes/XEH_postInit.sqf
+++ b/addons/scopes/XEH_postInit.sqf
@@ -136,3 +136,8 @@ if (!hasInterface) exitWith {};
},
{false},
[201, [true, true, false]], true] call CBA_fnc_addKeybind;
+
+
+// Register fire event handler
+["firedPlayer", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
+["firedPlayerNonLocal", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
diff --git a/addons/scopes/functions/fnc_firedEH.sqf b/addons/scopes/functions/fnc_firedEH.sqf
index bb9c37a1af..d28c0dee7e 100644
--- a/addons/scopes/functions/fnc_firedEH.sqf
+++ b/addons/scopes/functions/fnc_firedEH.sqf
@@ -1,15 +1,9 @@
/*
* Author: KoffeinFlummi, esteldunedain
- * Adjusts the flight path of the bullet according to the zeroing
+ * Adjusts the flight path of the bullet according to the zeroing. Called from the unified fired EH only for local and non-local players on foot.
*
* Argument:
- * 0: unit - Object the event handler is assigned to
- * 1: weapon - Fired weapon
- * 2: muzzle - Muzzle that was used
- * 3: mode - Current mode of the fired weapon
- * 4: ammo - Ammo used
- * 5: magazine - magazine name which was used
- * 6: projectile - Object of the projectile that was shot
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return value:
* None
@@ -18,12 +12,11 @@
*/
#include "script_component.hpp"
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
+
private ["_adjustment", "_weaponIndex", "_zeroing", "_adjustment"];
-params ["_unit", "", "", "", "", "", "_projectile"];
-
-if (!([_unit] call EFUNC(common,isPlayer))) exitWith {};
-
_adjustment = _unit getVariable [QGVAR(Adjustment), []];
if (_adjustment isEqualTo []) exitWith {};
From 25b767a16bd1513ae5b9d1566d02f4e46087580a Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 18:27:43 -0300
Subject: [PATCH 37/64] Apply the ufeh to ACE_WeaponSelect
---
addons/weaponselect/CfgEventHandlers.hpp | 8 --------
addons/weaponselect/XEH_postInit.sqf | 4 ++++
addons/weaponselect/functions/fnc_throwGrenade.sqf | 13 ++++---------
3 files changed, 8 insertions(+), 17 deletions(-)
diff --git a/addons/weaponselect/CfgEventHandlers.hpp b/addons/weaponselect/CfgEventHandlers.hpp
index fd928fde2a..0cd959a047 100644
--- a/addons/weaponselect/CfgEventHandlers.hpp
+++ b/addons/weaponselect/CfgEventHandlers.hpp
@@ -10,11 +10,3 @@ class Extended_PostInit_EventHandlers {
init = QUOTE(call COMPILE_FILE(XEH_postInit));
};
};
-
-class Extended_FiredBIS_EventHandlers {
- class CAManBase {
- class GVAR(throwGrenade) {
- clientFiredBIS = QUOTE(if (_this select 0 == ACE_player) then {_this call FUNC(throwGrenade)});
- };
- };
-};
diff --git a/addons/weaponselect/XEH_postInit.sqf b/addons/weaponselect/XEH_postInit.sqf
index 450086aa91..87084ddf28 100644
--- a/addons/weaponselect/XEH_postInit.sqf
+++ b/addons/weaponselect/XEH_postInit.sqf
@@ -195,3 +195,7 @@ if (!hasInterface) exitWith {};
},
{false},
[10, [false, false, false]], false] call CBA_fnc_addKeybind; //9 Key
+
+
+// Register fire event handler
+["firedPlayer", DFUNC(throwGrenade)] call EFUNC(common,addEventHandler);
diff --git a/addons/weaponselect/functions/fnc_throwGrenade.sqf b/addons/weaponselect/functions/fnc_throwGrenade.sqf
index a99b06879b..3f55e02f51 100644
--- a/addons/weaponselect/functions/fnc_throwGrenade.sqf
+++ b/addons/weaponselect/functions/fnc_throwGrenade.sqf
@@ -1,15 +1,9 @@
/*
* Author: commy2
- * Display Grenade information on grenade throw.
+ * Display Grenade information on grenade throw. Called from the unified fired EH only for the local player.
*
* Arguments:
- * 0: unit - Object the event handler is assigned to
- * 1: weapon - Fired weapon
- * 2: muzzle - Muzzle that was used
- * 3: mode - Current mode of the fired weapon
- * 4: ammo - Ammo used
- * 5: magazine - magazine name which was used
- * 6: projectile - Object of the projectile that was shot
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* None
@@ -21,7 +15,8 @@
*/
#include "script_component.hpp"
-params ["_unit", "_weapon", "", "", "", "_magazine"];
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
if (_weapon != "Throw") exitWith {};
From 1e66cd406b65fbeb0432d3536f0a6df630698618 Mon Sep 17 00:00:00 2001
From: PabstMirror
Date: Sat, 6 Feb 2016 14:18:01 -0600
Subject: [PATCH 38/64] Use location hash for ace events
---
addons/common/XEH_preInit.sqf | 3 +-
.../common/functions/fnc__handleNetEvent.sqf | 9 +--
.../common/functions/fnc_addEventHandler.sqf | 15 +---
addons/common/functions/fnc_localEvent.sqf | 9 +--
.../functions/fnc_removeAllEventHandlers.sqf | 9 +--
.../functions/fnc_removeEventHandler.sqf | 11 +--
addons/common/tests/script_component.hpp | 1 +
addons/common/tests/test_eventHandlers.sqf | 78 +++++++++++++++++++
8 files changed, 96 insertions(+), 39 deletions(-)
create mode 100644 addons/common/tests/script_component.hpp
create mode 100644 addons/common/tests/test_eventHandlers.sqf
diff --git a/addons/common/XEH_preInit.sqf b/addons/common/XEH_preInit.sqf
index ea5157c2e6..0ee560420f 100644
--- a/addons/common/XEH_preInit.sqf
+++ b/addons/common/XEH_preInit.sqf
@@ -256,7 +256,8 @@ PREP(addCuratorUnloadEventhandler);
PREP(fixCrateContent);
//ACE events global variables
-GVAR(events) = [[],[]];
+GVAR(eventsLocation) = createLocation ["ACE_HashLocation", [-10000,-10000,-10000], 0, 0];
+GVAR(eventsLocation) setText QGVAR(eventsLocation);
PREP(globalEvent);
PREP(_handleNetEvent);
diff --git a/addons/common/functions/fnc__handleNetEvent.sqf b/addons/common/functions/fnc__handleNetEvent.sqf
index e3b2ac609c..54cef66228 100644
--- a/addons/common/functions/fnc__handleNetEvent.sqf
+++ b/addons/common/functions/fnc__handleNetEvent.sqf
@@ -16,12 +16,9 @@ params ["_eventType", "_event"];
if (_eventType == "ACEg") then {
_event params ["_eventName", "_eventArgs"];
- GVAR(events) params ["_eventNames"];
- private _eventIndex = _eventNames find _eventName;
-
- if (_eventIndex != -1) then {
- private _events = (GVAR(events) select 1) select _eventIndex;
+ private _eventFunctions = GVAR(eventsLocation) getVariable _eventName;
+ if (!isNil "_eventFunctions") then {
#ifdef DEBUG_EVENTS
ACE_LOGINFO_1("* Net Event %1",_eventName);
@@ -35,7 +32,7 @@ if (_eventType == "ACEg") then {
ACE_LOGINFO_1(" ID: %1",_forEachIndex);
#endif
};
- } forEach _events;
+ } forEach _eventFunctions;
};
};
diff --git a/addons/common/functions/fnc_addEventHandler.sqf b/addons/common/functions/fnc_addEventHandler.sqf
index 128f489701..e7df00f5ff 100644
--- a/addons/common/functions/fnc_addEventHandler.sqf
+++ b/addons/common/functions/fnc_addEventHandler.sqf
@@ -15,18 +15,11 @@
params ["_eventName", "_eventCode"];
-GVAR(events) params ["_eventNames"];
+private _eventFunctions = GVAR(eventsLocation) getVariable _eventName;
-private _eventFunctions = [];
-private _eventIndex = _eventNames find _eventName;
-
-if (_eventIndex != -1) then {
- _eventFunctions = (GVAR(events) select 1) select _eventIndex;
-} else {
- private _eventNameCount = count _eventNames;
-
- _eventNames set [_eventNameCount, _eventName];
- (GVAR(events) select 1) set [_eventNameCount, _eventFunctions];
+if (isNil "_eventFunctions") then {
+ _eventFunctions = [];
+ GVAR(eventsLocation) setVariable [_eventName, _eventFunctions];
};
_eventFunctions pushBack _eventCode // Return event function count
diff --git a/addons/common/functions/fnc_localEvent.sqf b/addons/common/functions/fnc_localEvent.sqf
index 43f6209d0d..bf17cc0d0e 100644
--- a/addons/common/functions/fnc_localEvent.sqf
+++ b/addons/common/functions/fnc_localEvent.sqf
@@ -15,12 +15,9 @@
params ["_eventName", "_eventArgs"];
-GVAR(events) params ["_eventNames", "_eventArray"];
+private _eventFunctions = GVAR(eventsLocation) getVariable _eventName;
-private _eventIndex = _eventNames find _eventName;
-
-if (_eventIndex != -1) then {
- private _events = _eventArray select _eventIndex;
+if (!isNil "_eventFunctions") then {
#ifdef DEBUG_EVENTS
ACE_LOGINFO_1("* Local Event: %1",_eventName);
@@ -35,5 +32,5 @@ if (_eventIndex != -1) then {
ACE_LOGINFO_1(" ID: %1",_forEachIndex);
#endif
};
- } forEach _events;
+ } forEach _eventFunctions;
};
diff --git a/addons/common/functions/fnc_removeAllEventHandlers.sqf b/addons/common/functions/fnc_removeAllEventHandlers.sqf
index a309d18d02..ed1cce278c 100644
--- a/addons/common/functions/fnc_removeAllEventHandlers.sqf
+++ b/addons/common/functions/fnc_removeAllEventHandlers.sqf
@@ -14,11 +14,4 @@
params ["_eventName"];
-GVAR(events) params ["_eventNames", "_events"];
-
-private _eventFunctions = [];
-private _eventIndex = _eventNames find _eventName;
-
-if (_eventIndex != -1) then {
- _events set [_eventIndex, []];
-};
+GVAR(eventsLocation) setVariable [_eventName, nil];
diff --git a/addons/common/functions/fnc_removeEventHandler.sqf b/addons/common/functions/fnc_removeEventHandler.sqf
index 5e307ad896..a0b5ed5333 100644
--- a/addons/common/functions/fnc_removeEventHandler.sqf
+++ b/addons/common/functions/fnc_removeEventHandler.sqf
@@ -15,12 +15,9 @@
params ["_eventName", "_eventCodeIndex"];
-GVAR(events) params ["_eventNames", "_events"];
+private _eventFunctions = GVAR(eventsLocation) getVariable _eventName;
-private _eventFunctions = [];
-private _eventIndex = _eventNames find _eventName;
+if (isNil "_eventFunctions") exitWith {TRACE_1("eventName not found",_eventName);};
+if ((_eventCodeIndex < 0) || {(count _eventFunctions) <= _eventCodeIndex}) exitWith {TRACE_2("index out of bounds",_eventName,_eventCodeIndex);};
-if (_eventIndex != -1) then {
- _eventFunctions = _events select _eventIndex;
- _eventFunctions set [_eventCodeIndex, nil];
-};
+_eventFunctions set [_eventCodeIndex, nil];
diff --git a/addons/common/tests/script_component.hpp b/addons/common/tests/script_component.hpp
new file mode 100644
index 0000000000..6a1bf9154d
--- /dev/null
+++ b/addons/common/tests/script_component.hpp
@@ -0,0 +1 @@
+#include "\z\ace\addons\common\script_component.hpp"
diff --git a/addons/common/tests/test_eventHandlers.sqf b/addons/common/tests/test_eventHandlers.sqf
new file mode 100644
index 0000000000..5a75cb0a06
--- /dev/null
+++ b/addons/common/tests/test_eventHandlers.sqf
@@ -0,0 +1,78 @@
+// ----------------------------------------------------------------------------
+#define DEBUG_MODE_FULL
+#include "script_component.hpp"
+
+#ifndef TEST_DEFINED_AND_OP
+if (true) exitWith {};
+#endif
+
+// ----------------------------------------------------------------------------
+
+LOG('Testing EventHandlers');
+
+TEST_DEFINED(QFUNC(_handleNetEvent),"");
+TEST_DEFINED(QFUNC(addEventHandler),"");
+TEST_DEFINED(QFUNC(localEvent),"");
+TEST_DEFINED(QFUNC(targetEvent),"");
+TEST_DEFINED(QFUNC(globalEvent),"");
+TEST_DEFINED(QFUNC(serverEvent),"");
+TEST_DEFINED(QFUNC(removeAllEventHandlers),"");
+TEST_DEFINED(QFUNC(removeEventHandler),"");
+
+private _result = ["A", {}] call ace_common_fnc_addEventHandler;
+private _expected = 0;
+TEST_DEFINED_AND_OP(_result,==,_expected,"Adding first A EH");
+
+_result = ["A", {GVAR(test_A2) = _this}] call ace_common_fnc_addEventHandler;
+_expected = 1;
+TEST_DEFINED_AND_OP(_result,==,_expected,"Adding second A EH");
+
+_result = ["A", {GVAR(test_A3) = _this}] call ace_common_fnc_addEventHandler;
+_expected = 2;
+TEST_DEFINED_AND_OP(_result,==,_expected,"Adding third A EH");
+
+GVAR(test_A2) = -1;
+["A", 11] call FUNC(localEvent);
+_expected = 11;
+_result = GVAR(test_A2);
+TEST_DEFINED_AND_OP(_result,==,_expected,"Test Local Event");
+
+//Remove 2nd EH
+["A", 1] call FUNC(removeEventHandler);
+
+GVAR(test_A2) = -1;
+GVAR(test_A3) = -1;
+["A", 22] call FUNC(localEvent);
+_expected = -1;
+_result = GVAR(test_A2);
+TEST_DEFINED_AND_OP(_result,==,_expected,"Test 2nd (removed) EH");
+_expected = 22;
+_result = GVAR(test_A3);
+TEST_DEFINED_AND_OP(_result,==,_expected,"Test 3rd Event");
+
+//Remove All EH:
+["A"] call FUNC(removeAllEventHandlers);
+
+GVAR(test_A3) = -1;
+["A", 77] call FUNC(localEvent);
+_expected = -1;
+_result = GVAR(test_A3);
+TEST_DEFINED_AND_OP(_result,==,_expected,"Test 3rd is removed after removeAll");
+
+//Much harder to test network events
+TRACE_2("testing network events",isServer,isDedicated);
+
+["B", {GVAR(test_B) = _this}] call ace_common_fnc_addEventHandler;
+
+GVAR(test_B) = -1;
+["B", 33] call FUNC(globalEvent);
+_expected = 33;
+_result = GVAR(test_B);
+TEST_DEFINED_AND_OP(_result,==,_expected,"Test globalEvent");
+
+GVAR(test_B) = -1;
+["B", 44] call FUNC(serverEvent);
+_expected = if (isServer) then {44} else {-1};
+_result = GVAR(test_B);
+TEST_DEFINED_AND_OP(_result,==,_expected,"Test serverEvent");
+
From 94ef0c5659d23dad96a38b61ea4e9ccdb80f94de Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 18:36:20 -0300
Subject: [PATCH 39/64] Apply the ufeh to ACE_WindDeflection
---
addons/winddeflection/CfgEventHandlers.hpp | 7 -------
addons/winddeflection/XEH_postInit.sqf | 9 +++++++++
.../functions/fnc_handleFired.sqf | 19 ++++---------------
3 files changed, 13 insertions(+), 22 deletions(-)
diff --git a/addons/winddeflection/CfgEventHandlers.hpp b/addons/winddeflection/CfgEventHandlers.hpp
index a835fd0e88..917a0acbd7 100644
--- a/addons/winddeflection/CfgEventHandlers.hpp
+++ b/addons/winddeflection/CfgEventHandlers.hpp
@@ -8,10 +8,3 @@ class Extended_PostInit_EventHandlers {
init = QUOTE(call COMPILE_FILE(XEH_postInit));
};
};
-class Extended_FiredBIS_EventHandlers {
- class AllVehicles {
- class ADDON {
- firedBIS = QUOTE(_this call FUNC(handleFired));
- };
- };
-};
diff --git a/addons/winddeflection/XEH_postInit.sqf b/addons/winddeflection/XEH_postInit.sqf
index ff9e2427f4..14b4db1def 100644
--- a/addons/winddeflection/XEH_postInit.sqf
+++ b/addons/winddeflection/XEH_postInit.sqf
@@ -8,6 +8,15 @@ GVAR(trackedBullets) = [];
//If not enabled, dont't add PFEH
if (!GVAR(enabled)) exitWith {};
+ // Register fire event handler
+ ["firedPlayer", DFUNC(handleFired)] call EFUNC(common,addEventHandler);
+ ["firedPlayerNonLocal", DFUNC(handleFired)] call EFUNC(common,addEventHandler);
+
+ if (GVAR(vehicleEnabled)) then {
+ ["firedPlayerVehicle", DFUNC(handleFired)] call EFUNC(common,addEventHandler);
+ ["firedPlayerVehicleNonLocal", DFUNC(handleFired)] call EFUNC(common,addEventHandler);
+ };
+
[] call FUNC(updateTrajectoryPFH);
}] call EFUNC(common,addEventHandler);
diff --git a/addons/winddeflection/functions/fnc_handleFired.sqf b/addons/winddeflection/functions/fnc_handleFired.sqf
index a3c51054ee..6910d4e830 100644
--- a/addons/winddeflection/functions/fnc_handleFired.sqf
+++ b/addons/winddeflection/functions/fnc_handleFired.sqf
@@ -1,15 +1,9 @@
/*
* Author: Glowbal, Ruthberg
- * Handles wind deflection for projectiles.
+ * Handles wind deflection for projectiles. Called from the unified fired EH only for players on foot and their vehicles if required by settings.
*
* Arguments:
- * 0: unit - Object the event handler is assigned to
- * 1: weapon - Fired weapon
- * 2: muzzle - Muzzle that was used
- * 3: mode - Current mode of the fired weapon
- * 4: ammo - Ammo used
- * 5: magazine - magazine name which was used
- * 6: projectile - Object of the projectile that was shot
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* Nothing
@@ -21,17 +15,12 @@
*/
#include "script_component.hpp"
-params ["_unit", "", "", "", "_ammo", "", "_bullet"];
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
if (missionNamespace getVariable [QEGVAR(advanced_ballistics,enabled), false] && (_bullet isKindOf "BulletBase") && (_unit isKindOf "Man")) exitWith {false};
-if (!hasInterface) exitWith {false};
-if (!(GVAR(enabled))) exitWith {false};
-if (!(GVAR(vehicleEnabled)) && !(_unit isKindOf "Man")) exitWith {false};
if (!((_bullet isKindOf "BulletBase") || (_bullet isKindOf "GrenadeBase"))) exitWith {false};
if (_unit distance ACE_player > GVAR(simulationRadius)) exitWith {false};
-if (!([_unit] call EFUNC(common,isPlayer))) exitWith {false};
GVAR(trackedBullets) pushBack [_bullet, getNumber(configFile >> "CfgAmmo" >> _ammo >> "airFriction")];
-
-true;
\ No newline at end of file
From b7d94f53630fe397b1e02f0c2d84a6ba32840136 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 18:48:26 -0300
Subject: [PATCH 40/64] Apply the ufeh to ACE_Advanced_Ballistics
---
.../advanced_ballistics/CfgEventHandlers.hpp | 8 -----
addons/advanced_ballistics/XEH_postInit.sqf | 14 ++++++++
.../functions/fnc_handleFired.sqf | 32 +++++++------------
3 files changed, 25 insertions(+), 29 deletions(-)
diff --git a/addons/advanced_ballistics/CfgEventHandlers.hpp b/addons/advanced_ballistics/CfgEventHandlers.hpp
index cc1414eb8f..44b6e8e6ff 100644
--- a/addons/advanced_ballistics/CfgEventHandlers.hpp
+++ b/addons/advanced_ballistics/CfgEventHandlers.hpp
@@ -9,11 +9,3 @@ class Extended_PostInit_EventHandlers {
init = QUOTE( call COMPILE_FILE(XEH_postInit) );
};
};
-
-class Extended_FiredBIS_EventHandlers {
- class CAManBase {
- class ADDON {
- firedBIS = QUOTE(_this call FUNC(handleFired));
- };
- };
-};
\ No newline at end of file
diff --git a/addons/advanced_ballistics/XEH_postInit.sqf b/addons/advanced_ballistics/XEH_postInit.sqf
index 1f9002e606..20c0622eac 100644
--- a/addons/advanced_ballistics/XEH_postInit.sqf
+++ b/addons/advanced_ballistics/XEH_postInit.sqf
@@ -22,3 +22,17 @@ if (!GVAR(extensionAvailable)) exitWith {
};
*/
[] call FUNC(initializeTerrainExtension);
+
+if (!hasInterface) exitWith {};
+
+["SettingsInitialized", {
+ //If not enabled, dont't add PFEH
+ if (!GVAR(enabled)) exitWith {};
+
+ // Register fire event handler
+ ["firedPlayer", DFUNC(handleFired)] call EFUNC(common,addEventHandler);
+ ["firedPlayerNonLocal", DFUNC(handleFired)] call EFUNC(common,addEventHandler);
+
+ [] call FUNC(updateTrajectoryPFH);
+
+}] call EFUNC(common,addEventHandler);
diff --git a/addons/advanced_ballistics/functions/fnc_handleFired.sqf b/addons/advanced_ballistics/functions/fnc_handleFired.sqf
index 90eacf2928..9646f065d4 100644
--- a/addons/advanced_ballistics/functions/fnc_handleFired.sqf
+++ b/addons/advanced_ballistics/functions/fnc_handleFired.sqf
@@ -1,16 +1,10 @@
/*
* Author: Glowbal, Ruthberg
*
- * Handles advanced ballistics for (BulletBase) projectiles
+ * Handles advanced ballistics for (BulletBase) projectiles. Called from the unified fired EH only for players.
*
* Arguments:
- * 0: unit - Object the event handler is assigned to
- * 1: weapon - Fired weapon
- * 2: muzzle - Muzzle that was used
- * 3: mode - Current mode of the fired weapon
- * 4: ammo - Ammo used
- * 5: magazine - magazine name which was used
- * 6: projectile - Object of the projectile that was shot
+ * None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* None
@@ -19,20 +13,16 @@
*/
#include "script_component.hpp"
-// Early Quiting
-if (!hasInterface) exitWith {};
-if (!GVAR(enabled)) exitWith {};
+//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
+TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
// Parameterization
private ["_abort", "_AmmoCacheEntry", "_WeaponCacheEntry", "_opticsName", "_opticType", "_bulletTraceVisible", "_temperature", "_barometricPressure", "_bulletMass", "_bulletLength", "_muzzleVelocity", "_muzzleVelocityShift", "_bulletVelocity", "_bulletLength", "_barrelTwist", "_stabilityFactor", "_aceTimeSecond", "_barrelVelocityShift", "_ammoTemperatureVelocityShift"];
-params ["_unit", "_weapon", "", "_mode", "_ammo", "_magazine", "_bullet"];
-
_abort = false;
if (!(_ammo isKindOf "BulletBase")) exitWith {};
-if (!alive _bullet) exitWith {};
-if (!([_unit] call EFUNC(common,isPlayer))) exitWith {};
+if (!alive _projectile) exitWith {};
if (_unit distance ACE_player > GVAR(simulationRadius)) exitWith {};
if (underwater _unit) exitWith {};
if (!GVAR(simulateForEveryone) && !(local _unit)) then {
@@ -54,7 +44,7 @@ if (GVAR(disabledInFullAutoMode) && getNumber(configFile >> "CfgWeapons" >> _wea
if (_abort || !(GVAR(extensionAvailable))) exitWith {
if (missionNamespace getVariable [QEGVAR(windDeflection,enabled), false]) then {
- EGVAR(windDeflection,trackedBullets) pushBack [_bullet, getNumber(configFile >> "CfgAmmo" >> _ammo >> "airFriction")];
+ EGVAR(windDeflection,trackedBullets) pushBack [_projectile, getNumber(configFile >> "CfgAmmo" >> _ammo >> "airFriction")];
};
};
@@ -72,7 +62,7 @@ _AmmoCacheEntry params ["_airFriction", "_caliber", "_bulletLength", "_bulletMas
_WeaponCacheEntry params ["_barrelTwist", "_twistDirection", "_barrelLength"];
-_bulletVelocity = velocity _bullet;
+_bulletVelocity = velocity _projectile;
_muzzleVelocity = vectorMagnitude _bulletVelocity;
_barrelVelocityShift = 0;
@@ -92,7 +82,7 @@ if (GVAR(ammoTemperatureEnabled) || GVAR(barrelLengthInfluenceEnabled)) then {
if (_muzzleVelocityShift != 0) then {
_muzzleVelocity = _muzzleVelocity + _muzzleVelocityShift;
_bulletVelocity = _bulletVelocity vectorAdd ((vectorNormalized _bulletVelocity) vectorMultiply (_muzzleVelocityShift));
- _bullet setVelocity _bulletVelocity;
+ _projectile setVelocity _bulletVelocity;
};
};
@@ -114,16 +104,16 @@ if (_caliber > 0 && _bulletLength > 0 && _bulletMass > 0 && _barrelTwist > 0) th
if (isNil "_temperature") then {
_temperature = ((getPosASL _unit) select 2) call EFUNC(weather,calculateTemperatureAtHeight);
};
- _barometricPressure = ((getPosASL _bullet) select 2) call EFUNC(weather,calculateBarometricPressure);
+ _barometricPressure = ((getPosASL _projectile) select 2) call EFUNC(weather,calculateBarometricPressure);
_stabilityFactor = [_caliber, _bulletLength, _bulletMass, _barrelTwist, _muzzleVelocity, _temperature, _barometricPressure] call FUNC(calculateStabilityFactor);
};
GVAR(currentbulletID) = (GVAR(currentbulletID) + 1) % 10000;
_aceTimeSecond = floor ACE_time;
-"ace_advanced_ballistics" callExtension format["new:%1:%2:%3:%4:%5:%6:%7:%8:%9:%10:%11:%12:%13:%14:%15:%16:%17:%18", GVAR(currentbulletID), _airFriction, _ballisticCoefficients, _velocityBoundaries, _atmosphereModel, _dragModel, _stabilityFactor, _twistDirection, _muzzleVelocity, _transonicStabilityCoef, getPosASL _bullet, EGVAR(common,mapLatitude), EGVAR(weather,currentTemperature), EGVAR(common,mapAltitude), EGVAR(weather,currentHumidity), overcast, _aceTimeSecond, ACE_time - _aceTimeSecond];
+"ace_advanced_ballistics" callExtension format["new:%1:%2:%3:%4:%5:%6:%7:%8:%9:%10:%11:%12:%13:%14:%15:%16:%17:%18", GVAR(currentbulletID), _airFriction, _ballisticCoefficients, _velocityBoundaries, _atmosphereModel, _dragModel, _stabilityFactor, _twistDirection, _muzzleVelocity, _transonicStabilityCoef, getPosASL _projectile, EGVAR(common,mapLatitude), EGVAR(weather,currentTemperature), EGVAR(common,mapAltitude), EGVAR(weather,currentHumidity), overcast, _aceTimeSecond, ACE_time - _aceTimeSecond];
-GVAR(allBullets) pushBack [_bullet, _caliber, _bulletTraceVisible, GVAR(currentbulletID)];
+GVAR(allBullets) pushBack [_projectile, _caliber, _bulletTraceVisible, GVAR(currentbulletID)];
if (isNil QGVAR(BulletPFH)) then {
GVAR(BulletPFH) = [FUNC(handleFirePFH), GVAR(simulationInterval), []] call CBA_fnc_addPerFrameHandler;
From a51372a6b3751e9a7ddce442bc884b4580e6c7d6 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 20:28:16 -0300
Subject: [PATCH 41/64] Add the TRACE_10 macro
---
addons/main/script_macros.hpp | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/addons/main/script_macros.hpp b/addons/main/script_macros.hpp
index 3d4bc31c99..544cff6842 100644
--- a/addons/main/script_macros.hpp
+++ b/addons/main/script_macros.hpp
@@ -198,4 +198,13 @@
#define ACE_DEPRECATED(arg1,arg2,arg3) ACE_LOGWARNING_3("%1 is deprecated. Support will be dropped in version %2. Replaced by: %3",arg1,arg2,arg3)
+#define PFORMAT_10(MESSAGE,A,B,C,D,E,F,G,H,I,J) \
+ format ['%1: A=%2, B=%3, C=%4, D=%5, E=%6, F=%7, G=%8, H=%9, I=%10 J=%11', MESSAGE, RETNIL(A), RETNIL(B), RETNIL(C), RETNIL(D), RETNIL(E), RETNIL(F), RETNIL(G), RETNIL(H), RETNIL(I), RETNIL(J)]
+#ifdef DEBUG_MODE_FULL
+#define TRACE_10(MESSAGE,A,B,C,D,E,F,G,H,I,J) \
+ [THIS_FILE_, __LINE__, PFORMAT_10(MESSAGE,A,B,C,D,E,F,G,H,I,J)] call CBA_fnc_log
+#else
+ #define TRACE_10(MESSAGE,A,B,C,D,E,F,G,H,I,J) /* disabled */
+#endif
+
#include "script_debug.hpp"
From 8fbb6cd72e9a2aa077f287bf2852108a6133c68e Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 20:49:18 -0300
Subject: [PATCH 42/64] Fixed event parameters
---
addons/common/functions/fnc_firedEH.sqf | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/addons/common/functions/fnc_firedEH.sqf b/addons/common/functions/fnc_firedEH.sqf
index 749364ee86..c11f6d990f 100644
--- a/addons/common/functions/fnc_firedEH.sqf
+++ b/addons/common/functions/fnc_firedEH.sqf
@@ -26,12 +26,12 @@ TRACE_7("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile
if (_unit isKindOf "CAManBase") then {
// The unit it on foot
if (_unit == ACE_player) then {
- ["firedPlayer", this] call FUNC(localEvent);
+ ["firedPlayer", _this] call FUNC(localEvent);
} else {
if ([_unit] call EFUNC(common,isPlayer)) then {
- ["firedPlayerNonLocal", this] call FUNC(localEvent);
+ ["firedPlayerNonLocal", _this] call FUNC(localEvent);
} else {
- ["firedNonPlayer", this] call FUNC(localEvent);
+ ["firedNonPlayer", _this] call FUNC(localEvent);
};
};
} else {
@@ -55,12 +55,12 @@ if (_unit isKindOf "CAManBase") then {
};
if (_gunner == ACE_player) then {
- ["firedPlayerVehicle", this] call FUNC(localEvent);
+ ["firedPlayerVehicle", _this] call FUNC(localEvent);
} else {
if ([_gunner] call EFUNC(common,isPlayer)) then {
- ["firedPlayerVehicleNonLocal", this] call FUNC(localEvent);
+ ["firedPlayerVehicleNonLocal", _this] call FUNC(localEvent);
} else {
- ["firedNonPlayerVehicle", this] call FUNC(localEvent);
+ ["firedNonPlayerVehicle", _this] call FUNC(localEvent);
};
};
};
From e4122cf42f8d004c56c187003a5a8bab6976c880 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 21:00:42 -0300
Subject: [PATCH 43/64] Fix winddeflection fire eh
---
addons/winddeflection/functions/fnc_handleFired.sqf | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/addons/winddeflection/functions/fnc_handleFired.sqf b/addons/winddeflection/functions/fnc_handleFired.sqf
index 6910d4e830..e2bfca394f 100644
--- a/addons/winddeflection/functions/fnc_handleFired.sqf
+++ b/addons/winddeflection/functions/fnc_handleFired.sqf
@@ -18,9 +18,9 @@
//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
-if (missionNamespace getVariable [QEGVAR(advanced_ballistics,enabled), false] && (_bullet isKindOf "BulletBase") && (_unit isKindOf "Man")) exitWith {false};
+if (missionNamespace getVariable [QEGVAR(advanced_ballistics,enabled), false] && (_projectile isKindOf "BulletBase") && (_unit isKindOf "Man")) exitWith {false};
-if (!((_bullet isKindOf "BulletBase") || (_bullet isKindOf "GrenadeBase"))) exitWith {false};
+if (!((_projectile isKindOf "BulletBase") || (_projectile isKindOf "GrenadeBase"))) exitWith {false};
if (_unit distance ACE_player > GVAR(simulationRadius)) exitWith {false};
-GVAR(trackedBullets) pushBack [_bullet, getNumber(configFile >> "CfgAmmo" >> _ammo >> "airFriction")];
+GVAR(trackedBullets) pushBack [_projectile, getNumber(configFile >> "CfgAmmo" >> _ammo >> "airFriction")];
From b6058242c8be6539e93fbd19d61d5b03d5cde024 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 6 Feb 2016 22:20:08 -0300
Subject: [PATCH 44/64] Fix frag fired EH name
---
addons/frag/XEH_postInit.sqf | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/addons/frag/XEH_postInit.sqf b/addons/frag/XEH_postInit.sqf
index 46910c519d..977866e24e 100644
--- a/addons/frag/XEH_postInit.sqf
+++ b/addons/frag/XEH_postInit.sqf
@@ -14,12 +14,12 @@ if(isServer) then {
if (!GVAR(enabled)) exitWith {};
// Register fire event handler
- ["firedPlayer", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
- ["firedPlayerNonLocal", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
- ["firedNonPlayer", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
- ["firedPlayerVehicle", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
- ["firedPlayerVehicleNonLocal", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
- ["firedNonPlayerVehicle", DFUNC(firedEH)] call EFUNC(common,addEventHandler);
+ ["firedPlayer", DFUNC(fired)] call EFUNC(common,addEventHandler);
+ ["firedPlayerNonLocal", DFUNC(fired)] call EFUNC(common,addEventHandler);
+ ["firedNonPlayer", DFUNC(fired)] call EFUNC(common,addEventHandler);
+ ["firedPlayerVehicle", DFUNC(fired)] call EFUNC(common,addEventHandler);
+ ["firedPlayerVehicleNonLocal", DFUNC(fired)] call EFUNC(common,addEventHandler);
+ ["firedNonPlayerVehicle", DFUNC(fired)] call EFUNC(common,addEventHandler);
[FUNC(masterPFH), 0, []] call CBA_fnc_addPerFrameHandler;
From f1cc2ddd51817c838109ff63194ab2035f45a5ad Mon Sep 17 00:00:00 2001
From: VKing
Date: Sun, 7 Feb 2016 13:08:31 +0100
Subject: [PATCH 45/64] Change to apply in fcs
---
addons/fcs/functions/fnc_calculateSolution.sqf | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/addons/fcs/functions/fnc_calculateSolution.sqf b/addons/fcs/functions/fnc_calculateSolution.sqf
index f59b4f6fbc..9908832824 100644
--- a/addons/fcs/functions/fnc_calculateSolution.sqf
+++ b/addons/fcs/functions/fnc_calculateSolution.sqf
@@ -43,10 +43,7 @@ private _turretConfig = [configFile >> "CfgVehicles" >> typeOf _vehicle, _turret
} count _muzzles;
// Fix the `in` operator being case sensitive and BI fucking up the spelling of their own classnames
- private _weaponMagazinesCheck = [];
- {
- _weaponMagazinesCheck pushBack (toLower _x);
- } forEach _weaponMagazines;
+ private _weaponMagazinesCheck = _weaponMagazines apply {toLower _x};
// Another BIS fix: ShotBullet simulation uses weapon initSpeed, others ignore it
if (toLower _magazine in _weaponMagazinesCheck && {_bulletSimulation == "shotBullet"}) exitWith {
From f92b79858654279b54cb949412a2485c0468c9d0 Mon Sep 17 00:00:00 2001
From: VKing
Date: Sun, 7 Feb 2016 13:09:01 +0100
Subject: [PATCH 46/64] Switch to select (is even slightly faster)
---
addons/explosives/functions/fnc_getDetonators.sqf | 13 ++-----------
1 file changed, 2 insertions(+), 11 deletions(-)
diff --git a/addons/explosives/functions/fnc_getDetonators.sqf b/addons/explosives/functions/fnc_getDetonators.sqf
index 22360c875e..d8c095e6f0 100644
--- a/addons/explosives/functions/fnc_getDetonators.sqf
+++ b/addons/explosives/functions/fnc_getDetonators.sqf
@@ -19,16 +19,7 @@
params ["_unit"];
TRACE_1("params",_unit);
-private ["_items", "_result", "_config"];
-
-_items = (items _unit);
-_result = [];
-
-{
- _config = ConfigFile >> "CfgWeapons" >> _x;
- if (getNumber (_config >> QGVAR(Detonator)) == 1 && {!(_x in _result)}) then {
- _result pushBack _x;
- };
-} forEach _items;
+private _result = (items _unit) select {getNumber (ConfigFile >> "CfgWeapons" >> _x >> QGVAR(Detonator)) == 1};
+_result = _result arrayIntersect _result;
_result
From cebc8a2d07c443da2baa89fc4891407fa2c551d9 Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Mon, 8 Feb 2016 19:19:10 -0300
Subject: [PATCH 47/64] Slightly reduce the distance for which the LOS check is
skipped. Fix #3270
---
addons/interact_menu/functions/fnc_renderBaseMenu.sqf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/addons/interact_menu/functions/fnc_renderBaseMenu.sqf b/addons/interact_menu/functions/fnc_renderBaseMenu.sqf
index 2bb2808b28..57ded33be0 100644
--- a/addons/interact_menu/functions/fnc_renderBaseMenu.sqf
+++ b/addons/interact_menu/functions/fnc_renderBaseMenu.sqf
@@ -41,8 +41,8 @@ if ((GVAR(openedMenuType) == 0) && {vehicle ACE_player == ACE_player} && {isNull
if (_distanceToBasePoint > _distance) exitWith {true};
- if ((_distanceToBasePoint > 1.5) && {!(_params select 4)}) exitWith {
- // If distance to action is greater than 1.5 m and check isn't disabled in params, check LOS
+ if ((_distanceToBasePoint > 1.2) && {!(_params select 4)}) exitWith {
+ // If distance to action is greater than 1.2 m and check isn't disabled in params, check LOS
lineIntersects [AGLtoASL _headPos, AGLtoASL _pos, _object, ACE_player]
};
false
From 8048b2ecbd6355d9bcb40fe4537b7180bd185e58 Mon Sep 17 00:00:00 2001
From: gienkov
Date: Tue, 9 Feb 2016 09:35:16 +0100
Subject: [PATCH 48/64] lazy evaluation fix
---
addons/refuel/functions/fnc_canConnectNozzle.sqf | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/addons/refuel/functions/fnc_canConnectNozzle.sqf b/addons/refuel/functions/fnc_canConnectNozzle.sqf
index f8503c821f..d2111fdb66 100644
--- a/addons/refuel/functions/fnc_canConnectNozzle.sqf
+++ b/addons/refuel/functions/fnc_canConnectNozzle.sqf
@@ -22,5 +22,6 @@ params ["_unit", "_target"];
_nozzle = _unit getVariable [QGVAR(nozzle), objNull];
!(isNull _nozzle ||
+ {isEngineOn _target} ||
{(_target distance _unit) > REFUEL_ACTION_DISTANCE} ||
- {!isNull (_target getVariable [QGVAR(nozzle), objNull])} || isEngineOn _target) // TODO verify cant connect multiple fuel lines
+ {!isNull (_target getVariable [QGVAR(nozzle), objNull])}) // TODO verify cant connect multiple fuel lines
From 34d9b7d4ea14c37a195466069eeb6a982090857a Mon Sep 17 00:00:00 2001
From: licht-im-Norden87
Date: Wed, 10 Feb 2016 04:26:21 +0100
Subject: [PATCH 49/64] Update README_DE.md
---
docs/README_DE.md | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/docs/README_DE.md b/docs/README_DE.md
index 98e41d1ae0..0ec65d61c6 100644
--- a/docs/README_DE.md
+++ b/docs/README_DE.md
@@ -1,12 +1,12 @@
-
+
-
+
-
+
@@ -25,6 +25,7 @@
+
Benötigt die aktuellste Version vonCBA A3 .
Besucht uns auf Twitter | Facebook | YouTube | Reddit
From e1b83b8172d3f1bf95c22baec9339219334198cb Mon Sep 17 00:00:00 2001
From: PabstMirror
Date: Tue, 9 Feb 2016 22:43:38 -0600
Subject: [PATCH 50/64] Manually pre-load for StaticWeapons and Car
Fix #3168
---
addons/medical/XEH_preInit.sqf | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/addons/medical/XEH_preInit.sqf b/addons/medical/XEH_preInit.sqf
index 5deaf77ceb..b8a223510f 100644
--- a/addons/medical/XEH_preInit.sqf
+++ b/addons/medical/XEH_preInit.sqf
@@ -125,4 +125,25 @@ call FUNC(parseConfigForInjuries);
GVAR(HITPOINTS) = ["HitHead", "HitBody", "HitLeftArm", "HitRightArm", "HitLeftLeg", "HitRightLeg"];
GVAR(SELECTIONS) = ["head", "body", "hand_l", "hand_r", "leg_l", "leg_r"];
+//Hack for #3168 (units in static weapons do not take any damage):
+//doing a manual pre-load with a small distance seems to fix the LOD problems with handle damage not returning full results
+GVAR(fixedStatics) = [];
+private _fixStatic = {
+ params ["_vehicle"];
+ private _vehType = typeOf _vehicle;
+ TRACE_2("",_vehicle,_vehType);
+ if (!(_vehType in GVAR(fixedStatics))) then {
+ GVAR(fixedStatics) pushBack _vehType;
+ TRACE_1("starting preload",_vehType);
+ [{
+ 1 preloadObject (_this select 0);
+ }, {
+ TRACE_1("preload done",_this);
+ }, [_vehType]] call EFUNC(common,waitUntilAndExecute);
+ };
+};
+["StaticWeapon", "init", _fixStatic] call CBA_fnc_addClassEventHandler;
+["Car", "init", _fixStatic] call CBA_fnc_addClassEventHandler;
+
+
ADDON = true;
From ff4ba98e6830b42a8f68851a1dbf099933a17ea7 Mon Sep 17 00:00:00 2001
From: PabstMirror
Date: Wed, 10 Feb 2016 11:50:30 -0600
Subject: [PATCH 51/64] Pre-load again on mission load (save game)
---
addons/medical/XEH_preInit.sqf | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/addons/medical/XEH_preInit.sqf b/addons/medical/XEH_preInit.sqf
index b8a223510f..189d6b207d 100644
--- a/addons/medical/XEH_preInit.sqf
+++ b/addons/medical/XEH_preInit.sqf
@@ -144,6 +144,16 @@ private _fixStatic = {
};
["StaticWeapon", "init", _fixStatic] call CBA_fnc_addClassEventHandler;
["Car", "init", _fixStatic] call CBA_fnc_addClassEventHandler;
+addMissionEventHandler ["Loaded",{
+ {
+ TRACE_1("starting preload (save load)",_x);
+ [{
+ 1 preloadObject (_this select 0);
+ }, {
+ TRACE_1("preload done",_this);
+ }, [_x]] call EFUNC(common,waitUntilAndExecute);
+ } forEach GVAR(fixedStatics);
+}];
ADDON = true;
From 54b350a6c05d90c17165f9f97837f2fc6026ace9 Mon Sep 17 00:00:00 2001
From: PabstMirror
Date: Fri, 12 Feb 2016 15:48:06 -0600
Subject: [PATCH 52/64] Only get passenger actions for selected unit
Fix #1690 #3309
---
.../functions/fnc_addPassengerActions.sqf | 8 ++---
.../functions/fnc_addPassengersActions.sqf | 33 ++++++++++++-------
2 files changed, 25 insertions(+), 16 deletions(-)
diff --git a/addons/interaction/functions/fnc_addPassengerActions.sqf b/addons/interaction/functions/fnc_addPassengerActions.sqf
index 20de00e315..47a845601b 100644
--- a/addons/interaction/functions/fnc_addPassengerActions.sqf
+++ b/addons/interaction/functions/fnc_addPassengerActions.sqf
@@ -20,12 +20,10 @@
params ["", "", "_parameters"];
_parameters params ["_unit"];
-private ["_varName", "_actionTrees", "_actions"];
+private _varName = format [QEGVAR(interact_menu,Act_%1), typeOf _unit];
+private _actionTrees = missionNamespace getVariable [_varName, []];
-_varName = format [QEGVAR(interact_menu,Act_%1), typeOf _unit];
-_actionTrees = missionNamespace getVariable [_varName, []];
-
-_actions = [];
+private _actions = [];
// Mount unit MainActions menu
{
diff --git a/addons/interaction/functions/fnc_addPassengersActions.sqf b/addons/interaction/functions/fnc_addPassengersActions.sqf
index 7296b34fa2..8ee95b7eb9 100644
--- a/addons/interaction/functions/fnc_addPassengersActions.sqf
+++ b/addons/interaction/functions/fnc_addPassengersActions.sqf
@@ -23,12 +23,10 @@ private "_actions";
_actions = [];
{
- private ["_unit", "_icon"];
-
- _unit = _x;
+ private _unit = _x;
if (_unit != _player && {getText (configFile >> "CfgVehicles" >> typeOf _unit >> "simulation") != "UAVPilot"}) then {
- _icon = [
+ private _icon = [
"",
"A3\ui_f\data\IGUI\RscIngameUI\RscUnitInfo\role_driver_ca.paa",
"A3\ui_f\data\IGUI\RscIngameUI\RscUnitInfo\role_gunner_ca.paa",
@@ -44,14 +42,27 @@ _actions = [];
format ["%1", _unit],
[_unit, true] call EFUNC(common,getName),
_icon,
- {},
+ {
+ //statement (Run on hover) - reset the cache so we will insert actions immedietly when hovering over new unit
+ TRACE_2("Cleaning Cache",_target,vehicle _target);
+ [vehicle _target, QEGVAR(interact_menu,ATCache_ACE_SelfActions)] call EFUNC(common,eraseCache);
+ },
{true},
- {_this call FUNC(addPassengerActions)},
- [_unit]
- ] call EFUNC(interact_menu,createAction),
- [],
- _unit
- ];
+ {
+ if (EGVAR(interact_menu,selectedTarget) isEqualTo _target) then {
+ _this call FUNC(addPassengerActions)
+ } else {
+ [] //not selected, don't waste time on actions
+ };
+ },
+ [_unit],
+ {[0, 0, 0]},
+ 2,
+ [false,false,false,true,false] //add run on hover (4th bit true)
+ ] call EFUNC(interact_menu,createAction),
+ [],
+ _unit
+ ];
};
false
} count crew _vehicle;
From 0a226b5ee9f317c5c89f76bb29ef9dd5776cbc70 Mon Sep 17 00:00:00 2001
From: Ivan Krouglyi
Date: Sat, 13 Feb 2016 03:29:42 +0300
Subject: [PATCH 53/64] Update fnc_treatment_success.sqf
Error at 84 line - you forget ";"
---
addons/medical/functions/fnc_treatment_success.sqf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/addons/medical/functions/fnc_treatment_success.sqf b/addons/medical/functions/fnc_treatment_success.sqf
index 55ddfa394e..81c3a588ba 100644
--- a/addons/medical/functions/fnc_treatment_success.sqf
+++ b/addons/medical/functions/fnc_treatment_success.sqf
@@ -81,7 +81,7 @@ if ((GVAR(level) >= 2) && {([_target] call FUNC(hasMedicalEnabled))}) then {
} else {
//Basic Medical (just use blodyPartStatus):
private _damageBodyParts = _target getvariable [QGVAR(bodyPartStatus), [0,0,0,0,0,0]];
- _bloodLossOnSelection = _damageBodyParts select _partNumber
+ _bloodLossOnSelection = _damageBodyParts select _partNumber;
TRACE_1("basic",_bloodLossOnSelection);
};
From e2ed38609d71b9f1caff0613c7d0e521a1f51b4e Mon Sep 17 00:00:00 2001
From: esteldunedain
Date: Sat, 13 Feb 2016 15:04:43 -0300
Subject: [PATCH 54/64] Replace driver by effectivCommander on
EFUNC(common,getGunner) and EFUNC(common,firedEH)
---
addons/common/functions/fnc_firedEH.sqf | 2 +-
addons/common/functions/fnc_getGunner.sqf | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/addons/common/functions/fnc_firedEH.sqf b/addons/common/functions/fnc_firedEH.sqf
index c11f6d990f..d70f0a8650 100644
--- a/addons/common/functions/fnc_firedEH.sqf
+++ b/addons/common/functions/fnc_firedEH.sqf
@@ -51,7 +51,7 @@ if (_unit isKindOf "CAManBase") then {
} count allTurrets [_unit, true];
// Ensure that at least the pilot is returned if there is no gunner
if (isManualFire _unit && {isNull _gunner}) then {
- _gunner = driver _unit;
+ _gunner = effectiveCommander _unit;
};
if (_gunner == ACE_player) then {
diff --git a/addons/common/functions/fnc_getGunner.sqf b/addons/common/functions/fnc_getGunner.sqf
index fb8c19ce45..c11f2882ca 100644
--- a/addons/common/functions/fnc_getGunner.sqf
+++ b/addons/common/functions/fnc_getGunner.sqf
@@ -30,7 +30,7 @@ private _gunner = objNull;
// ensure that at least the pilot is returned if there is no gunner
if (isManualFire _vehicle && {isNull _gunner}) then {
- _gunner = driver _vehicle;
+ _gunner = effectiveCommander _vehicle;
};
_gunner
From 4a8b032c1fab8321fad12504d412f59c7dbaeeec Mon Sep 17 00:00:00 2001
From: PabstMirror
Date: Sun, 14 Feb 2016 14:53:04 -0600
Subject: [PATCH 55/64] Don't allow passing mags when not in same veh
---
addons/interaction/functions/fnc_canPassMagazine.sqf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/addons/interaction/functions/fnc_canPassMagazine.sqf b/addons/interaction/functions/fnc_canPassMagazine.sqf
index 1c1dd1bb2d..66c560c271 100644
--- a/addons/interaction/functions/fnc_canPassMagazine.sqf
+++ b/addons/interaction/functions/fnc_canPassMagazine.sqf
@@ -18,11 +18,11 @@
#include "script_component.hpp"
params ["_player", "_target", "_weapon"];
-private ["_compatibleMags"];
if (!GVAR(enableMagazinePassing)) exitWith {false};
+if (((vehicle _target) != _target) && {(vehicle _target) != (vehicle _player)}) exitWith {false};
-_compatibleMags = getArray (configfile >> "CfgWeapons" >> _weapon >> "magazines");
+private _compatibleMags = getArray (configfile >> "CfgWeapons" >> _weapon >> "magazines");
{
_x params ["_className", "", "_loaded"];
if ((_className in _compatibleMags) && {!_loaded} && {_target canAdd _className}) exitWith {true};
From 9441b548be201cce08a48470f16bef609ccd5db6 Mon Sep 17 00:00:00 2001
From: PabstMirror
Date: Mon, 15 Feb 2016 17:11:04 -0600
Subject: [PATCH 56/64] Fix vehicle crashes not being fatal to non-drivers
Fix #3306
---
addons/medical/functions/fnc_handleDamage.sqf | 6 ++++--
addons/medical/functions/fnc_handleDamage_caching.sqf | 6 ++++--
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/addons/medical/functions/fnc_handleDamage.sqf b/addons/medical/functions/fnc_handleDamage.sqf
index 628c1cb92e..e993dd181b 100644
--- a/addons/medical/functions/fnc_handleDamage.sqf
+++ b/addons/medical/functions/fnc_handleDamage.sqf
@@ -77,9 +77,11 @@ _minLethalDamage = if (_typeIndex >= 0) then {
0.01
};
-if (vehicle _unit != _unit && {!(vehicle _unit isKindOf "StaticWeapon")} && {isNull _shooter} && {_projectile == ""} && {_selection == ""}) then {
+private _vehicle = vehicle _unit;
+if ((_vehicle != _unit) && {!(_vehicle isKindOf "StaticWeapon")} && {_shooter in [objNull, driver _vehicle, _vehicle]} && {_projectile == ""} && {_selection == ""}) then {
if (GVAR(enableVehicleCrashes)) then {
- _selection = GVAR(SELECTIONS) select (floor(random(count GVAR(SELECTIONS))));
+ _selection = _this select 1; //pull random selection from HDC
+ TRACE_1("Veh Crash",_selection);
};
};
diff --git a/addons/medical/functions/fnc_handleDamage_caching.sqf b/addons/medical/functions/fnc_handleDamage_caching.sqf
index 1eae9544ad..155e7dc687 100644
--- a/addons/medical/functions/fnc_handleDamage_caching.sqf
+++ b/addons/medical/functions/fnc_handleDamage_caching.sqf
@@ -29,9 +29,11 @@ if (_hitPointIndex >= 0) then {_newDamage = _damage - (_unit getHitIndex _hitPoi
TRACE_7("ACE_DEBUG: HandleDamage_Caching Called",_unit, _selectionName, _damage, _source, _projectile,_hitPointIndex,_newDamage);
// Check for vehicle crash
-if (vehicle _unit != _unit && {!(vehicle _unit isKindOf "StaticWeapon")} && {isNull _source} && {_projectile == ""} && {_selectionName == ""}) then {
+private _vehicle = vehicle _unit;
+if ((_vehicle != _unit) && {!(_vehicle isKindOf "StaticWeapon")} && {_source in [objNull, driver _vehicle, _vehicle]} && {_projectile == ""} && {_selectionName == ""}) then {
if (GVAR(enableVehicleCrashes)) then {
_selectionName = _hitSelections select (floor(random(count _hitSelections)));
+ TRACE_1("Veh Crash",_selectionName);
_projectile = "vehiclecrash";
_this set [1, _selectionName];
_this set [4, _projectile];
@@ -40,7 +42,7 @@ if (vehicle _unit != _unit && {!(vehicle _unit isKindOf "StaticWeapon")} && {isN
// Handle falling damage
_impactVelocity = (velocity _unit) select 2;
-if (_impactVelocity < -5 && {vehicle _unit == _unit}) then {
+if (_impactVelocity < -5 && {_vehicle == _unit}) then {
TRACE_1("Starting isFalling", time);
_unit setVariable [QGVAR(isFalling), true];
_unit setVariable [QGVAR(impactVelocity), _impactVelocity];
From 5c9dfd7dc5cb0405f88b5d4d7a5992c0331c7d09 Mon Sep 17 00:00:00 2001
From: PabstMirror
Date: Mon, 15 Feb 2016 22:23:04 -0600
Subject: [PATCH 57/64] Handle enemy causing veh explode, fix revive unload
Fix #3269
---
.../functions/fnc_determineIfFatal.sqf | 2 +-
addons/medical/functions/fnc_handleDamage.sqf | 19 ++++++++-----------
.../functions/fnc_handleDamage_caching.sqf | 1 -
addons/medical/functions/fnc_setDead.sqf | 6 ++++++
4 files changed, 15 insertions(+), 13 deletions(-)
diff --git a/addons/medical/functions/fnc_determineIfFatal.sqf b/addons/medical/functions/fnc_determineIfFatal.sqf
index 8be0e00903..8a70d336c2 100644
--- a/addons/medical/functions/fnc_determineIfFatal.sqf
+++ b/addons/medical/functions/fnc_determineIfFatal.sqf
@@ -26,8 +26,8 @@ private ["_damageThreshold", "_damageBodyPart", "_chanceFatal"];
params ["_unit", "_part", ["_withDamage", 0]];
if (!alive _unit) exitWith {true};
-if (_part < 0 || _part > 5) exitWith {false};
if ((vehicle _unit != _unit) && {!alive (vehicle _unit)}) exitWith { true };
+if (_part < 0 || _part > 5) exitWith {false};
// Find the correct Damage threshold for unit.
_damageThreshold = [1,1,1];
diff --git a/addons/medical/functions/fnc_handleDamage.sqf b/addons/medical/functions/fnc_handleDamage.sqf
index e993dd181b..cf67d2add9 100644
--- a/addons/medical/functions/fnc_handleDamage.sqf
+++ b/addons/medical/functions/fnc_handleDamage.sqf
@@ -26,6 +26,8 @@ if !(local _unit) exitWith {
nil
};
+// if (alive _unit) then {diag_log text format ["HD: %1", _this];};
+
private ["_damageReturn", "_typeOfDamage", "_minLethalDamage", "_newDamage", "_typeIndex", "_preventDeath"];
// bug, assumed fixed, @todo excessive testing, if nothing happens remove
@@ -78,14 +80,14 @@ _minLethalDamage = if (_typeIndex >= 0) then {
};
private _vehicle = vehicle _unit;
+private _effectiveSelectionName = _selection;
if ((_vehicle != _unit) && {!(_vehicle isKindOf "StaticWeapon")} && {_shooter in [objNull, driver _vehicle, _vehicle]} && {_projectile == ""} && {_selection == ""}) then {
if (GVAR(enableVehicleCrashes)) then {
- _selection = _this select 1; //pull random selection from HDC
- TRACE_1("Veh Crash",_selection);
+ _effectiveSelectionName = _this select 1; //pull random selection from HDC
};
};
-if ((_minLethalDamage <= _newDamage) && {[_unit, [_selection] call FUNC(selectionNameToNumber), _newDamage] call FUNC(determineIfFatal)}) then {
+if ((_minLethalDamage <= _newDamage) && {[_unit, [_effectiveSelectionName] call FUNC(selectionNameToNumber), _newDamage] call FUNC(determineIfFatal)}) then {
if ((_unit getVariable [QGVAR(preventInstaDeath), GVAR(preventInstaDeath)])) exitwith {
_damageReturn = 0.9;
};
@@ -101,13 +103,8 @@ if ((_minLethalDamage <= _newDamage) && {[_unit, [_selection] call FUNC(selectio
[_unit] call FUNC(addToInjuredCollection);
if (_unit getVariable [QGVAR(preventInstaDeath), GVAR(preventInstaDeath)]) exitWith {
- if (vehicle _unit != _unit and {damage (vehicle _unit) >= 1}) then {
- [_unit] call EFUNC(common,unloadPerson);
- };
-
- private "_delayedUnconsicous";
- _delayedUnconsicous = false;
- if (vehicle _unit != _unit and {damage (vehicle _unit) >= 1}) then {
+ private _delayedUnconsicous = false;
+ if (_vehicle != _unit and {damage _vehicle >= 1}) then {
[_unit] call EFUNC(common,unloadPerson);
_delayedUnconsicous = true;
};
@@ -120,7 +117,7 @@ if (_unit getVariable [QGVAR(preventInstaDeath), GVAR(preventInstaDeath)]) exitW
if (_delayedUnconsicous) then {
[{
[_this select 0, true] call FUNC(setUnconscious);
- }, [_unit], 0.7, 0] call EFUNC(common,waitAndExecute);
+ }, [_unit], 0.7] call EFUNC(common,waitAndExecute);
} else {
[{
[_this select 0, true] call FUNC(setUnconscious);
diff --git a/addons/medical/functions/fnc_handleDamage_caching.sqf b/addons/medical/functions/fnc_handleDamage_caching.sqf
index 155e7dc687..e834ec272f 100644
--- a/addons/medical/functions/fnc_handleDamage_caching.sqf
+++ b/addons/medical/functions/fnc_handleDamage_caching.sqf
@@ -33,7 +33,6 @@ private _vehicle = vehicle _unit;
if ((_vehicle != _unit) && {!(_vehicle isKindOf "StaticWeapon")} && {_source in [objNull, driver _vehicle, _vehicle]} && {_projectile == ""} && {_selectionName == ""}) then {
if (GVAR(enableVehicleCrashes)) then {
_selectionName = _hitSelections select (floor(random(count _hitSelections)));
- TRACE_1("Veh Crash",_selectionName);
_projectile = "vehiclecrash";
_this set [1, _selectionName];
_this set [4, _projectile];
diff --git a/addons/medical/functions/fnc_setDead.sqf b/addons/medical/functions/fnc_setDead.sqf
index 030945daaf..7c4f94b260 100644
--- a/addons/medical/functions/fnc_setDead.sqf
+++ b/addons/medical/functions/fnc_setDead.sqf
@@ -47,6 +47,12 @@ if (((_reviveVal == 1 && {[_unit] call EFUNC(common,isPlayer)} || _reviveVal ==
_args params ["_unit"];
_startTime = _unit getVariable [QGVAR(reviveStartTime), 0];
+ //If we are in reivie state in a blown up vehicle, try to unload so that people can access the body
+ if ((alive _unit) && {(vehicle _unit) != _unit} && {!alive (vehicle _unit)}) then {
+ TRACE_2("Unloading", _unit, vehicle _unit);
+ [_unit] call EFUNC(common,unloadPerson);
+ };
+
if (GVAR(maxReviveTime) > 0 && {ACE_time - _startTime > GVAR(maxReviveTime)}) exitwith {
[_idPFH] call CBA_fnc_removePerFrameHandler;
_unit setVariable [QGVAR(inReviveState), nil, true];
From dacb5e1748d071b2b2e9f1d07cae6a3e0c181b8c Mon Sep 17 00:00:00 2001
From: bux578
Date: Tue, 16 Feb 2016 13:14:28 +0100
Subject: [PATCH 58/64] add --ci switch to make.py
to signal the end of the process to an automated build
---
tools/make.py | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tools/make.py b/tools/make.py
index da14ea026e..44e2c80de3 100644
--- a/tools/make.py
+++ b/tools/make.py
@@ -1432,4 +1432,8 @@ if __name__ == "__main__":
main(sys.argv)
d,h,m,s = Fract_Sec(timeit.default_timer() - start_time)
print("\nTotal Program time elapsed: {0:2}h {1:2}m {2:4.5f}s".format(h,m,s))
+
+ if "--ci" in sys.argv:
+ sys.exit(0)
+
input("Press Enter to continue...")
From 245a9d43d1cda46e0c5902da8a771f02d5c38990 Mon Sep 17 00:00:00 2001
From: bux578
Date: Tue, 16 Feb 2016 13:26:47 +0100
Subject: [PATCH 59/64] fix - args being recognized as modules
---
tools/make.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/make.py b/tools/make.py
index 44e2c80de3..ab2d33d514 100644
--- a/tools/make.py
+++ b/tools/make.py
@@ -949,7 +949,7 @@ See the make.cfg file for additional build options.
# See if we have been given specific modules to build from command line.
if len(argv) > 1 and not make_release_zip:
arg_modules = True
- modules = argv[1:]
+ modules = [a for a in argv[1:] if a[0] != "-"]
# Find the tools we need.
try:
From 8ec70632068195cca3341552c4810555737d1a95 Mon Sep 17 00:00:00 2001
From: bux578
Date: Tue, 16 Feb 2016 13:44:43 +0100
Subject: [PATCH 60/64] add proper exit code when build is failing
---
tools/make.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/make.py b/tools/make.py
index ab2d33d514..92ab4f02e6 100644
--- a/tools/make.py
+++ b/tools/make.py
@@ -1424,6 +1424,7 @@ See the make.cfg file for additional build options.
for failedModuleName in namesOfBuildsFailed:
print("- {} failed.".format(failedModuleName))
+ sys.exit(1)
else:
print_green("\Completed with 0 errors.")
From 067f88ff428d956486d77167f16bd5597de63363 Mon Sep 17 00:00:00 2001
From: bux578
Date: Tue, 16 Feb 2016 15:46:10 +0100
Subject: [PATCH 61/64] change make.py to accept --ci arg
---
tools/make.py | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/tools/make.py b/tools/make.py
index 92ab4f02e6..ed18085ef0 100644
--- a/tools/make.py
+++ b/tools/make.py
@@ -76,6 +76,8 @@ signature_blacklist = ["ace_server.pbo"]
importantFiles = ["mod.cpp", "README.md", "docs\\README_DE.md", "docs\\README_PL.md", "AUTHORS.txt", "LICENSE", "logo_ace3_ca.paa"]
versionFiles = ["README.md", "docs\\README_DE.md", "docs\\README_PL.md", "mod.cpp"]
+ciBuild = False # Used for CI builds
+
###############################################################################
# http://akiscode.com/articles/sha-1directoryhash.shtml
# Copyright (c) 2009 Stephen Akiki
@@ -757,6 +759,7 @@ def main(argv):
global dssignfile
global prefix
global pbo_name_prefix
+ global ciBuild
if sys.platform != "win32":
print_error("Non-Windows platform (Cygwin?). Please re-run from cmd.")
@@ -860,6 +863,10 @@ See the make.cfg file for additional build options.
else:
version_update = False
+ if "--ci" in argv:
+ argv.remove("--ci")
+ ciBuild = True
+
print_yellow("\nCheck external references is set to {}".format(str(check_external)))
# Get the directory the make script is in.
@@ -1434,7 +1441,7 @@ if __name__ == "__main__":
d,h,m,s = Fract_Sec(timeit.default_timer() - start_time)
print("\nTotal Program time elapsed: {0:2}h {1:2}m {2:4.5f}s".format(h,m,s))
- if "--ci" in sys.argv:
+ if ciBuild:
sys.exit(0)
input("Press Enter to continue...")
From 1bc73af1c94b79716f39aa24ef305acd9174abec Mon Sep 17 00:00:00 2001
From: commy2
Date: Tue, 16 Feb 2016 16:11:18 +0100
Subject: [PATCH 62/64] remove ace fake weapon from 3den cargo editor
---
addons/common/CfgWeapons.hpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/addons/common/CfgWeapons.hpp b/addons/common/CfgWeapons.hpp
index aa905bb3e6..22075e2903 100644
--- a/addons/common/CfgWeapons.hpp
+++ b/addons/common/CfgWeapons.hpp
@@ -13,7 +13,7 @@ class CfgWeapons {
};
class ACE_FakePrimaryWeapon: Rifle_Base_F {
- scope = 2;
+ scope = 1;
scopeCurator = 1;
scopeArsenal = 1;
displayName = "";
From f1797feead35a091875161c72067eed4393aa4c0 Mon Sep 17 00:00:00 2001
From: PabstMirror
Date: Tue, 16 Feb 2016 12:19:18 -0600
Subject: [PATCH 63/64] Make wound assignment consistent for dll/sqf
Dll now exits on first match for threshold damage (exitWith)
Remove random wound in sqf to match dll
Fix backblast threshold order
Add lower vehiclecrash threshold
Add dll version logging
---
ace_medical.dll | Bin 223744 -> 224768 bytes
addons/medical/ACE_Medical_Treatments.hpp | 4 ++--
addons/medical/XEH_preInit.sqf | 9 ++++++++-
.../functions/fnc_handleDamage_wounds.sqf | 2 +-
.../functions/fnc_handleDamage_woundsOld.sqf | 2 +-
extensions/CMakeLists.txt | 4 ++--
extensions/medical/handleDamage.cpp | 2 +-
7 files changed, 15 insertions(+), 8 deletions(-)
diff --git a/ace_medical.dll b/ace_medical.dll
index c54febf34f8e4d90c3dd8a704e4a638b888855ec..3b5e97ca198f1aca516900b7d8c274cea64c525c 100644
GIT binary patch
delta 41530
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
SwXlXHtT(Pp-MD_Cn$gP~PNsiURU
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