2015-04-01 16:48:46 +00:00
/*
* Author: Garth 'L-H' de Wet
2015-09-18 07:38:19 +00:00
* Adds an item, weapon, or magazine to the unit's inventory or places it in a weaponHolder if no space.
2015-04-01 16:48:46 +00:00
*
* Arguments:
2015-04-12 23:27:21 +00:00
* 0: Unit <OBJECT>
* 1: Classname <STRING>
2015-09-18 07:38:19 +00:00
* 2: Container (uniform, vest, backpack) (default: "") <STRING>
* 3: Magazine Ammo Count (default: -1) <NUMBER>
2015-04-01 16:48:46 +00:00
*
* Return Value:
2015-09-18 07:38:19 +00:00
* 0: Added to player <BOOL>
* 1: weaponholder <OBJECT>
2015-04-01 16:48:46 +00:00
*
* Public: Yes
*/
#include "script_component.hpp"
2015-09-18 07:38:19 +00:00
params ["_unit", "_classname", ["_container", ""], ["_ammoCount", -1]];
2015-04-12 23:27:21 +00:00
2015-09-18 07:38:19 +00:00
private ["_type", "_canAdd", "_addedToUnit"];
2015-04-01 17:20:24 +00:00
2015-09-18 07:38:19 +00:00
_type = [_classname] call FUNC(getItemType);
2015-04-01 23:51:34 +00:00
2015-04-12 23:27:21 +00:00
switch (_container) do {
2015-09-18 07:38:19 +00:00
case "vest": {
_canAdd = _unit canAddItemToVest _classname;
};
case "backpack": {
_canAdd = _unit canAddItemToBackpack _classname;
};
case "uniform": {
_canAdd = _unit canAddItemToUniform _classname;
};
default {
_canAdd = _unit canAdd _classname;
};
2015-04-01 17:20:24 +00:00
};
2015-09-18 07:38:19 +00:00
switch (_type select 0) do {
2015-04-01 16:48:46 +00:00
case "weapon": {
2015-04-01 17:20:24 +00:00
if (_canAdd) then {
2015-09-18 07:38:19 +00:00
_addedToUnit = true;
2015-04-12 23:27:21 +00:00
switch (_container) do {
2015-09-18 07:38:19 +00:00
case "vest": {
(vestContainer _unit) addWeaponCargoGlobal [_classname, 1];
};
case "backpack": {
(backpackContainer _unit) addWeaponCargoGlobal [_classname, 1];
};
case "uniform": {
(uniformContainer _unit) addWeaponCargoGlobal [_classname, 1];
};
default {
_unit addWeaponGlobal _classname;
};
2015-04-01 17:34:38 +00:00
};
2015-04-01 16:48:46 +00:00
} else {
2015-09-18 07:38:19 +00:00
_addedToUnit = false;
private "_pos";
2015-04-03 22:26:27 +00:00
_pos = _unit modelToWorldVisual [0,1,0.05];
2015-09-18 07:38:19 +00:00
_unit = createVehicle ["WeaponHolder_Single_F", _pos, [], 0, "NONE"];
_unit addWeaponCargoGlobal [_classname, 1];
2015-04-01 16:48:46 +00:00
_unit setPosATL _pos;
};
};
2015-09-18 07:38:19 +00:00
2015-04-01 16:48:46 +00:00
case "magazine": {
2015-09-18 07:38:19 +00:00
if (_ammoCount == -1) then {
_ammoCount = getNumber (configFile >> "CfgMagazines" >> _classname >> "count");
};
2015-04-01 17:20:24 +00:00
if (_canAdd) then {
2015-09-18 07:38:19 +00:00
_addedToUnit = true;
2015-04-01 17:34:16 +00:00
switch (_container) do {
2015-09-18 07:38:19 +00:00
case "vest": {
(vestContainer _unit) addMagazineCargoGlobal [_classname, 1/*_ammoCount*/]; //@todo Bug! This isn't really the ammo, but magazine count. No such command.
};
case "backpack": {
(backpackContainer _unit) addMagazineCargoGlobal [_classname, 1/*_ammoCount*/]; //@todo Bug! This isn't really the ammo, but magazine count. No such command.
};
case "uniform": {
(uniformContainer _unit) addMagazineCargoGlobal [_classname, 1/*_ammoCount*/]; //@todo Bug! This isn't really the ammo, but magazine count. No such command.
};
default {
_unit addMagazine [_classname, _ammoCount];
};
2015-04-01 17:34:38 +00:00
};
2015-04-01 16:48:46 +00:00
} else {
2015-09-18 07:38:19 +00:00
_addedToUnit = false;
private "_pos";
2015-04-03 22:26:27 +00:00
_pos = _unit modelToWorldVisual [0,1,0.05];
2015-09-18 07:38:19 +00:00
_unit = createVehicle ["WeaponHolder_Single_F", _pos, [], 0, "NONE"];
_unit addMagazineCargoGlobal [_classname, 1/*_ammoCount*/]; //@todo Bug! This isn't really the ammo, but magazine count. No such command.
2015-04-01 16:48:46 +00:00
_unit setPosATL _pos;
};
};
2015-09-18 07:38:19 +00:00
2015-04-01 16:48:46 +00:00
case "item": {
2015-04-01 17:20:24 +00:00
if (_canAdd) then {
2015-09-18 07:38:19 +00:00
_addedToUnit = true;
2015-04-12 23:27:21 +00:00
switch (_container) do {
2015-09-18 07:38:19 +00:00
case "vest": {
_unit addItemToVest _classname;
};
case "backpack": {
_unit addItemToBackpack _classname;
};
case "uniform": {
_unit addItemToUniform _classname;
};
default {
_unit addItem _classname;
};
2015-04-01 17:34:38 +00:00
};
2015-04-01 16:48:46 +00:00
} else {
2015-09-18 07:38:19 +00:00
_addedToUnit = false;
private "_pos";
2015-04-03 22:26:27 +00:00
_pos = _unit modelToWorldVisual [0,1,0.05];
2015-09-18 07:38:19 +00:00
_unit = createVehicle ["WeaponHolder_Single_F", _pos, [], 0, "NONE"];
_unit addItemCargoGlobal [_classname, 1];
2015-04-01 16:48:46 +00:00
_unit setPosATL _pos;
};
};
2015-09-18 07:38:19 +00:00
2015-08-26 13:20:11 +00:00
default {
2015-09-18 07:38:19 +00:00
_addedToUnit = false;
2015-08-26 15:39:44 +00:00
ACE_LOGWARNING_2("Incorrect item type passed to %1, passed: %2",QFUNC(AddToInventory),_type);
2015-08-26 13:20:11 +00:00
};
2015-04-01 16:48:46 +00:00
};
2015-09-18 07:38:19 +00:00
[_addedToUnit, _unit]