diff --git a/README.md b/README.md
index 4e11a00be7..2739ce55be 100644
--- a/README.md
+++ b/README.md
@@ -1,27 +1,21 @@
-
+
-
+
-
+
-
+
-
+
-
+
Requires the latest version of CBA A3. Visit us on Facebook | YouTube | Twitter | Reddit
diff --git a/addons/backpacks/XEH_postInit.sqf b/addons/backpacks/XEH_postInit.sqf
index 375fcd5f89..639bf74919 100644
--- a/addons/backpacks/XEH_postInit.sqf
+++ b/addons/backpacks/XEH_postInit.sqf
@@ -1,3 +1,3 @@
#include "script_component.hpp"
-["backpackOpened", {_this call FUNC(backpackOpened)}] call EFUNC(common,addEventHandler);
+["backpackOpened", DFUNC(backpackOpened)] call EFUNC(common,addEventHandler);
diff --git a/addons/backpacks/functions/fnc_backpackOpened.sqf b/addons/backpacks/functions/fnc_backpackOpened.sqf
index 3f5cf53994..9488bf6bd9 100644
--- a/addons/backpacks/functions/fnc_backpackOpened.sqf
+++ b/addons/backpacks/functions/fnc_backpackOpened.sqf
@@ -2,18 +2,18 @@
* Author: commy2
*
* Someone opened your backpack. Execute locally.
- *
+ *
* Argument:
* 0: Who accessed your inventory? (Object)
* 1: Unit that wields the backpack (Object)
* 2: The backpack object (Object)
- *
+ *
* Return value:
* None.
*/
#include "script_component.hpp"
-
-PARAMS_3(_unit,_target,_backpack);
+private ["_sounds", "_position"];
+params ["_target", "_backpack"];
// do cam shake if the target is the player
if ([_target] call EFUNC(common,isPlayer)) then {
@@ -21,7 +21,6 @@ if ([_target] call EFUNC(common,isPlayer)) then {
};
// play a rustling sound
-private ["_sounds", "_position"];
_sounds = [
/*"a3\sounds_f\characters\ingame\AinvPknlMstpSlayWpstDnon_medic.wss",
diff --git a/addons/backpacks/functions/fnc_getBackpackAssignedUnit.sqf b/addons/backpacks/functions/fnc_getBackpackAssignedUnit.sqf
index 562dc84da2..85f5966aa9 100644
--- a/addons/backpacks/functions/fnc_getBackpackAssignedUnit.sqf
+++ b/addons/backpacks/functions/fnc_getBackpackAssignedUnit.sqf
@@ -2,21 +2,21 @@
* Author: commy2
*
* Returns the unit that has the given backpack object equipped.
- *
+ *
* Argument:
- * 0: A backpack object (Object)
- *
+ * 0: Executing Unit (Object)
+ * 1: A backpack object (Object)
+ *
* Return value:
* Unit that has the backpack equipped. (Object)
*/
#include "script_component.hpp"
+scopeName "main";
-private ["_backpack", "_unit"];
-
-_backpack = _this select 0;
-
-_unit = objNull;
+params ["_unit","_backpack"];
+_target = objNull;
{
- if (backpackContainer _x == _backpack) exitWith {_unit = _x};
-} forEach (allUnits + allDeadMen);
-_unit
+ if (backpackContainer _x == _backpack) then {_target = _x; breakTo "main"};
+} count nearestObjects [_unit, ["Man"], 5];
+if (isNull _target) exitWith {ACE_Player};
+_target
diff --git a/addons/backpacks/functions/fnc_isBackpack.sqf b/addons/backpacks/functions/fnc_isBackpack.sqf
index b1d55f9ce6..3419d2ed38 100644
--- a/addons/backpacks/functions/fnc_isBackpack.sqf
+++ b/addons/backpacks/functions/fnc_isBackpack.sqf
@@ -11,9 +11,8 @@
*/
#include "script_component.hpp"
-private ["_backpack", "_config"];
-
-_backpack = _this select 0;
+private ["_config"];
+params ["_backpack"];
if (typeName _backpack == "OBJECT") then {
_backpack = typeOf _backpack;
diff --git a/addons/backpacks/functions/fnc_onOpenInventory.sqf b/addons/backpacks/functions/fnc_onOpenInventory.sqf
index 63e4aa87a3..d79f8aed9b 100644
--- a/addons/backpacks/functions/fnc_onOpenInventory.sqf
+++ b/addons/backpacks/functions/fnc_onOpenInventory.sqf
@@ -2,29 +2,27 @@
* Author: commy2
*
* Handle the open inventory event. Display message on traget client.
- *
+ *
* Argument:
* Input from "InventoryOpened" eventhandler
- *
+ *
* Return value:
* false. Always open the inventory dialog. (Bool)
*/
#include "script_component.hpp"
-private ["_unit", "_backpack"];
-
-_unit = _this select 0;
-_backpack = _this select 1;
+private "_target";
+params ["","_backpack"];
// exit if the target is not a backpack
if !([_backpack] call FUNC(isBackpack)) exitWith {};
// get the unit that wears the backpack object
-private "_target";
-_target = [_backpack] call FUNC(getBackpackAssignedUnit);
+_target = _this call FUNC(getBackpackAssignedUnit);
+if (isNull _target) exitWith {false};
// raise event on target unit
-["backpackOpened", _target, [_unit, _target, _backpack]] call EFUNC(common,targetEvent);
+["backpackOpened", _target, [_target, _backpack]] call EFUNC(common,targetEvent);
// return false to open inventory as usual
false
diff --git a/addons/captives/CfgVehicles.hpp b/addons/captives/CfgVehicles.hpp
index 187fe1a746..774ecf87e3 100644
--- a/addons/captives/CfgVehicles.hpp
+++ b/addons/captives/CfgVehicles.hpp
@@ -190,8 +190,8 @@ class CfgVehicles {
defaultValue = 1;
};
class requireSurrender {
- displayName = CSTRING(ModuleSettings_allowSurrender_name);
- description = CSTRING(ModuleSettings_allowSurrender_description);
+ displayName = CSTRING(ModuleSettings_requireSurrender_name);
+ description = CSTRING(ModuleSettings_requireSurrender_description);
typeName = "NUMBER";
class values {
class disable {
diff --git a/addons/captives/functions/fnc_canLoadCaptive.sqf b/addons/captives/functions/fnc_canLoadCaptive.sqf
index 3f2677da76..0e028ac1ec 100644
--- a/addons/captives/functions/fnc_canLoadCaptive.sqf
+++ b/addons/captives/functions/fnc_canLoadCaptive.sqf
@@ -27,7 +27,7 @@ if (isNull _target) then {
};
if (isNull _vehicle) then {
- _objects = nearestObjects [_unit, ["Car", "Tank", "Helicopter", "Plane", "Ship_F"], 10];
+ _objects = nearestObjects [_unit, ["Car", "Tank", "Helicopter", "Plane", "Ship"], 10];
if ((count _objects) > 0) then {_vehicle = _objects select 0;};
};
diff --git a/addons/captives/functions/fnc_doLoadCaptive.sqf b/addons/captives/functions/fnc_doLoadCaptive.sqf
index 69b7276142..d7df42eb0a 100644
--- a/addons/captives/functions/fnc_doLoadCaptive.sqf
+++ b/addons/captives/functions/fnc_doLoadCaptive.sqf
@@ -29,7 +29,7 @@ if (isNull _target) then {
if (isNull _target) exitWith {};
if (isNull _vehicle) then {
- _objects = nearestObjects [_unit, ["Car_F", "Tank_F", "Helicopter_F", "Boat_F", "Plane_F"], 10];
+ _objects = nearestObjects [_unit, ["Car", "Tank", "Helicopter", "Plane", "Ship"], 10];
if ((count _objects) > 0) then {_vehicle = _objects select 0;};
};
if (isNull _vehicle) exitWith {};
diff --git a/addons/cargo/$PBOPREFIX$ b/addons/cargo/$PBOPREFIX$
new file mode 100644
index 0000000000..74e5e4186e
--- /dev/null
+++ b/addons/cargo/$PBOPREFIX$
@@ -0,0 +1 @@
+z\ace\addons\cargo
\ No newline at end of file
diff --git a/addons/cargo/ACE_Settings.hpp b/addons/cargo/ACE_Settings.hpp
new file mode 100644
index 0000000000..300add74d2
--- /dev/null
+++ b/addons/cargo/ACE_Settings.hpp
@@ -0,0 +1,9 @@
+class ACE_Settings {
+ class GVAR(enable) {
+ displayName = CSTRING(ModuleSettings_enable);
+ description = CSTRING(ModuleSettings_enable_desc);
+ typeName = "BOOL";
+ value = 1;
+ category = CSTRING(settingsCategory);
+ };
+};
diff --git a/addons/cargo/CfgEventHandlers.hpp b/addons/cargo/CfgEventHandlers.hpp
new file mode 100644
index 0000000000..f5dd29da0e
--- /dev/null
+++ b/addons/cargo/CfgEventHandlers.hpp
@@ -0,0 +1,80 @@
+
+class Extended_PreInit_EventHandlers {
+ class ADDON {
+ init = QUOTE(call COMPILE_FILE(XEH_preInit));
+ };
+};
+
+class Extended_Killed_EventHandlers {
+ class All {
+ init = QUOTE(call FUNC(handleDestroyed));
+ };
+};
+
+class Extended_Init_EventHandlers {
+ class StaticWeapon {
+ class ADDON {
+ init = QUOTE(_this call DFUNC(initObject));
+ };
+ };
+
+ class ReammoBox_F {
+ class ADDON {
+ init = QUOTE(_this call DFUNC(initObject));
+ };
+ };
+
+ class Cargo_base_F {
+ class ADDON {
+ init = QUOTE(_this call DFUNC(initObject); _this call DFUNC(initVehicle));
+ };
+ };
+
+ class CargoNet_01_box_F {
+ class ADDON {
+ init = QUOTE(_this call DFUNC(initObject); _this call DFUNC(initVehicle));
+ };
+ };
+
+ class Land_CargoBox_V1_F {
+ class ADDON {
+ init = QUOTE(_this call DFUNC(initObject); _this call DFUNC(initVehicle));
+ };
+ };
+
+ class Land_PaperBox_closed_F {
+ class ADDON {
+ init = QUOTE(_this call DFUNC(initObject); _this call DFUNC(initVehicle));
+ };
+ };
+
+ class Car {
+ class ADDON {
+ init = QUOTE(_this call DFUNC(initVehicle));
+ };
+ };
+
+ class Tank {
+ class ADDON {
+ init = QUOTE(_this call DFUNC(initVehicle));
+ };
+ };
+
+ class Helicopter {
+ class ADDON {
+ init = QUOTE(_this call DFUNC(initVehicle));
+ };
+ };
+
+ class Plane {
+ class ADDON {
+ init = QUOTE(_this call DFUNC(initVehicle));
+ };
+ };
+
+ class Ship_F {
+ class ADDON {
+ init = QUOTE(_this call DFUNC(initVehicle));
+ };
+ };
+};
diff --git a/addons/cargo/CfgVehicles.hpp b/addons/cargo/CfgVehicles.hpp
new file mode 100644
index 0000000000..d8df9e7da9
--- /dev/null
+++ b/addons/cargo/CfgVehicles.hpp
@@ -0,0 +1,301 @@
+
+class CfgVehicles {
+
+ class ACE_Module;
+ class ACE_moduleCargoSettings: ACE_Module {
+ scope = 2;
+ displayName = CSTRING(SettingsModule_DisplayName);
+ icon = QUOTE(PATHTOF(UI\Icon_Module_Cargo_ca.paa));
+ category = "ACE";
+ function = QUOTE(DFUNC(moduleSettings));
+ functionPriority = 1;
+ isGlobal = 1;
+ isTriggerActivated = 0;
+ author = ECSTRING(common,ACETeam);
+ class Arguments {
+ class enable {
+ displayName = CSTRING(ModuleSettings_enable);
+ description = CSTRING(ModuleSettings_enable_desc);
+ typeName = "BOOL";
+ defaultValue = 1;
+ };
+ };
+ class ModuleDescription {
+ description = CSTRING(SettingsModule_Desc);
+ sync[] = {};
+ };
+ };
+
+
+ class LandVehicle;
+ class Car: LandVehicle {
+ GVAR(space) = 4;
+ GVAR(hasCargo) = 1;
+ class ACE_Cargo {
+ /*
+ class Cargo {
+ class ACE_medicalSupplyCrate {
+ type = "ACE_medicalSupplyCrate";
+ amount = 1;
+ };
+ };*/
+ };
+ };
+
+ class Tank: LandVehicle {
+ GVAR(space) = 4;
+ GVAR(hasCargo) = 1;
+ };
+ class Car_F;
+ class Truck_F: Car_F {
+ GVAR(space) = 8;
+ GVAR(hasCargo) = 1;
+ };
+
+ class Air;
+ // Repair helicopters
+ class Helicopter: Air {
+ GVAR(space) = 8;
+ GVAR(hasCargo) = 1;
+ };
+
+ class Heli_Transport_02_base_F;
+ class I_Heli_Transport_02_F : Heli_Transport_02_base_F {
+ GVAR(space) = 20;
+ GVAR(hasCargo) = 1;
+ };
+
+ // Repair fixed wing aircraft
+ class Plane: Air {
+ GVAR(space) = 4;
+ GVAR(hasCargo) = 1;
+ };
+
+ // boats
+ class Ship;
+ class Ship_F: Ship {
+ GVAR(space) = 4;
+ GVAR(hasCargo) = 1;
+ };
+
+ // Static weapons
+ class StaticWeapon: LandVehicle {
+ GVAR(size) = 2; // 1 = small, 2 = large
+ GVAR(canLoad) = 1;
+ };
+
+ class StaticMortar;
+ class Mortar_01_base_F: StaticMortar {
+ GVAR(size) = 2; // 1 = small, 2 = large
+ GVAR(canLoad) = 1;
+ };
+
+ // Ammo boxes
+ class ThingX;
+ class ReammoBox_F: ThingX {
+ GVAR(size) = 2; // 1 = small, 2 = large
+ GVAR(canLoad) = 1;
+ };
+
+ class Scrapyard_base_F;
+ class Land_PaperBox_closed_F: Scrapyard_base_F {
+ GVAR(space) = 10;
+ GVAR(hasCargo) = 1;
+ GVAR(size) = 11;
+ GVAR(canLoad) = 1;
+ XEH_ENABLED;
+ class ACE_Actions {
+ class ACE_MainActions {
+ displayName = ECSTRING(interaction,MainAction);
+ distance = 5;
+ condition = QUOTE(true);
+ statement = "";
+ icon = "\a3\ui_f\data\IGUI\Cfg\Actions\eject_ca.paa";
+ selection = "";
+ };
+ };
+ };
+
+ class Cargo_base_F: ThingX {
+ GVAR(space) = 4;
+ GVAR(hasCargo) = 1;
+ GVAR(size) = 4;
+ GVAR(canLoad) = 1;
+ class ACE_Actions {
+ class ACE_MainActions {
+ displayName = ECSTRING(interaction,MainAction);
+ distance = 5;
+ condition = QUOTE(true);
+ statement = "";
+ icon = "\a3\ui_f\data\IGUI\Cfg\Actions\eject_ca.paa";
+ selection = "";
+ };
+ };
+ };
+ class Cargo10_base_F: Cargo_base_F {
+ GVAR(space) = 14;
+ GVAR(size) = 15;
+ XEH_ENABLED;
+ };
+ class Land_Cargo20_blue_F: Cargo_base_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+ class Land_Cargo20_brick_red_F: Cargo_base_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+ class Land_Cargo20_cyan_F: Cargo_base_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+ class Land_Cargo20_grey_F: Cargo_base_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+ class Land_Cargo20_light_blue_F: Cargo_base_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+ class Land_Cargo20_light_green_F: Cargo_base_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+ class Land_Cargo20_military_green_F: Cargo_base_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+ class Ruins_F;
+ class Land_Cargo20_military_ruins_F: Ruins_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+ class Land_Cargo20_orange_F: Cargo_base_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+ class Land_Cargo20_red_F: Cargo_base_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+ class Land_Cargo20_sand_F: Cargo_base_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+ class Land_Cargo20_vr_F: Cargo_base_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+ class Land_Cargo20_white_F: Cargo_base_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+ class Land_Cargo20_yellow_F: Cargo_base_F {
+ GVAR(space) = 49;
+ GVAR(size) = 50;
+ XEH_ENABLED;
+ };
+
+
+ class Land_Cargo40_blue_F: Cargo_base_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ class Land_Cargo40_brick_red_F: Cargo_base_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ class Land_Cargo40_cyan_F: Cargo_base_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ class Land_Cargo40_grey_F: Cargo_base_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ class Land_Cargo40_light_blue_F: Cargo_base_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ class Land_Cargo40_light_green_F: Cargo_base_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ class Land_Cargo40_military_green_F: Cargo_base_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ class Land_Cargo40_military_ruins_F: Ruins_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ class Land_Cargo40_orange_F: Cargo_base_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ class Land_Cargo40_red_F: Cargo_base_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ class Land_Cargo40_sand_F: Cargo_base_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ class Land_Cargo40_vr_F: Cargo_base_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ class Land_Cargo40_white_F: Cargo_base_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ class Land_Cargo40_yellow_F: Cargo_base_F {
+ GVAR(space) = 99;
+ GVAR(size) = 100;
+ XEH_ENABLED;
+ };
+ // small
+ class Land_CargoBox_V1_F: ThingX {
+ GVAR(space) = 7;
+ GVAR(hasCargo) = 1;
+ GVAR(size) = 7;
+ XEH_ENABLED;
+ class ACE_Actions {
+ class ACE_MainActions {
+ displayName = ECSTRING(interaction,MainAction);
+ distance = 5;
+ condition = QUOTE(true);
+ statement = "";
+ icon = "\a3\ui_f\data\IGUI\Cfg\Actions\eject_ca.paa";
+ selection = "";
+ };
+ };
+ };
+
+};
diff --git a/addons/cargo/UI/Icon_Module_Cargo_ca.paa b/addons/cargo/UI/Icon_Module_Cargo_ca.paa
new file mode 100644
index 0000000000..a292fb4227
Binary files /dev/null and b/addons/cargo/UI/Icon_Module_Cargo_ca.paa differ
diff --git a/addons/cargo/UI/Icon_load.paa b/addons/cargo/UI/Icon_load.paa
new file mode 100644
index 0000000000..ccd77761e4
Binary files /dev/null and b/addons/cargo/UI/Icon_load.paa differ
diff --git a/addons/cargo/XEH_preInit.sqf b/addons/cargo/XEH_preInit.sqf
new file mode 100644
index 0000000000..f0cf3357cd
--- /dev/null
+++ b/addons/cargo/XEH_preInit.sqf
@@ -0,0 +1,27 @@
+#include "script_component.hpp"
+
+ADDON = false;
+
+PREP(canLoadItemIn);
+PREP(canUnloadItem);
+PREP(canLoad);
+PREP(findNearestVehicle);
+PREP(getCargoSpaceLeft);
+PREP(GetSizeItem);
+PREP(initObject);
+PREP(initVehicle);
+PREP(handleDestroyed);
+PREP(moduleSettings);
+PREP(loadItem);
+PREP(onMenuOpen);
+PREP(unloadItem);
+PREP(validateCargoSpace);
+PREP(startLoadIn);
+PREP(startUnload);
+GVAR(initializedItemClasses) = [];
+
+if (isServer) then {
+ ["cargo_hideItem", {params ["_object", "_status"]; _object hideObjectGlobal _status;}] call EFUNC(common,addEventHandler);
+};
+
+ADDON = true;
diff --git a/addons/cargo/config.cpp b/addons/cargo/config.cpp
new file mode 100644
index 0000000000..2972e8ef1b
--- /dev/null
+++ b/addons/cargo/config.cpp
@@ -0,0 +1,18 @@
+#include "script_component.hpp"
+
+class CfgPatches {
+ class ADDON {
+ units[] = {};
+ weapons[] = {};
+ requiredVersion = REQUIRED_VERSION;
+ requiredAddons[] = {"ace_interaction"};
+ author[] = {"commy2", "Glowbal"};
+ authorUrl = "https://ace3mod.com/";
+ VERSION_CONFIG;
+ };
+};
+
+#include "CfgEventHandlers.hpp"
+#include "CfgVehicles.hpp"
+#include "menu.hpp"
+#include "ACE_Settings.hpp"
diff --git a/addons/cargo/functions/fnc_canLoad.sqf b/addons/cargo/functions/fnc_canLoad.sqf
new file mode 100644
index 0000000000..88391e80da
--- /dev/null
+++ b/addons/cargo/functions/fnc_canLoad.sqf
@@ -0,0 +1,31 @@
+/*
+ * Author: Glowbal
+ * Check if player can load item into the nearest vehicle
+ *
+ * Arguments:
+ * 0: Player