|
|
|
|
@@ -1,23 +1,30 @@
|
|
|
|
|
private ["_item","_config","_consumeArr","_consumeMagAmmo","_consume","_create","_item_ammo","_consume_magsize","_create_magsize","_consume_type","_slotstart","_slotend","_dialog","_qty_total_ammo","_qty_consume_ammo","_qty_create_ammo","_qty_consume_mags","_qty_create_mags","_qty_free_slots","_control","_mag","_qtynew_create_ammo","_qtynew_consume_ammo","_qtynew_create_mags","_qtynew_consume_mags","_qtynew_consume_mags_full","_qtynew_create_mags_full","_qtynew_consume_ammo_rest","_qtynew_create_ammo_rest"];
|
|
|
|
|
|
|
|
|
|
private ["_item","_config","_consume","_create","_item_ammo","_consume_magsize","_create_magsize","_consume_type","_slotstart","_slotend","_dialog","_qty_total_ammo","_qty_consume_ammo","_qty_create_ammo","_qty_consume_mags","_qty_create_mags","_qty_free_slots","_control","_mag","_qtynew_create_ammo","_qtynew_consume_ammo","_qtynew_create_mags","_qtynew_consume_mags","_qtynew_consume_mags_full","_qtynew_create_mags_full","_qtynew_consume_ammo_rest","_qtynew_create_ammo_rest"];
|
|
|
|
|
disableSerialization;
|
|
|
|
|
call gear_ui_init;
|
|
|
|
|
|
|
|
|
|
//note - one slot ammo can be used!
|
|
|
|
|
|
|
|
|
|
r_action_count = r_action_count + 1;
|
|
|
|
|
if (r_action_count != 1) exitWith { cutText [localize "str_player_actionslimit", "PLAIN DOWN"]; };
|
|
|
|
|
|
|
|
|
|
_item = _this;
|
|
|
|
|
|
|
|
|
|
if (!(_item in magazines player)) exitWith {r_action_count = 0;};
|
|
|
|
|
|
|
|
|
|
_config = configFile >> "CfgMagazines" >> _item;
|
|
|
|
|
|
|
|
|
|
_consumeArr = getArray (_config >> "ItemActions" >> "ReloadMag" >> "use");
|
|
|
|
|
_consume = _consumeArr select 0;
|
|
|
|
|
_consume = getArray (_config >> "ItemActions" >> "ReloadMag" >> "use") select 0;
|
|
|
|
|
_create = getArray (_config >> "ItemActions" >> "ReloadMag" >> "output") select 0;
|
|
|
|
|
|
|
|
|
|
_item_ammo = gearSlotAmmoCount (uiNamespace getVariable 'uiControl');
|
|
|
|
|
|
|
|
|
|
//add check if weapon can use create (if not - show message)
|
|
|
|
|
//add check if weapon can use _create (if not - show message)
|
|
|
|
|
/*
|
|
|
|
|
if (currentWeapon player != "") then {
|
|
|
|
|
_mags = [] + getArray (configFile >> "cfgWeapons" >> (currentWeapon player) >> "magazines");
|
|
|
|
|
};
|
|
|
|
|
if !(_create in _mags) exitWith {cutText [localize "str_must_have_weapon", "PLAIN DOWN"];};
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
player playActionNow "PutDown";
|
|
|
|
|
|
|
|
|
|
_consume_magsize = getNumber(configFile >> "CfgMagazines" >> _consume >> "count");
|
|
|
|
|
@@ -32,7 +39,7 @@ if (_consume_type == 256) then {
|
|
|
|
|
_slotstart = 109;
|
|
|
|
|
_slotend = 120;
|
|
|
|
|
};
|
|
|
|
|
if ( _consume_type == 16) then {
|
|
|
|
|
if (_consume_type == 16) then {
|
|
|
|
|
_slotstart = 122;
|
|
|
|
|
_slotend = 129;
|
|
|
|
|
};
|
|
|
|
|
@@ -45,22 +52,18 @@ _qty_create_ammo = 0;
|
|
|
|
|
_qty_consume_mags = 0;
|
|
|
|
|
_qty_create_mags = 0;
|
|
|
|
|
_qty_free_slots = 0;
|
|
|
|
|
_consumeMagAmmo = 0;
|
|
|
|
|
for "_i" from _slotstart to _slotend do {
|
|
|
|
|
_control =_dialog displayCtrl _i;
|
|
|
|
|
_mag = gearSlotData _control;
|
|
|
|
|
if (_mag == _consume) then {
|
|
|
|
|
_qty_total_ammo = _qty_total_ammo + gearSlotAmmoCount _control;
|
|
|
|
|
_consumeMagAmmo = gearSlotAmmoCount _control;
|
|
|
|
|
_qty_consume_ammo = _qty_consume_ammo + _consumeMagAmmo;
|
|
|
|
|
if (_consumeMagAmmo >= (floor (0.85 * _consume_magsize))) then {
|
|
|
|
|
_qty_consume_mags = _qty_consume_mags + 1;
|
|
|
|
|
};
|
|
|
|
|
_qty_consume_ammo = _qty_consume_ammo + gearSlotAmmoCount _control;
|
|
|
|
|
_qty_consume_mags = _qty_consume_mags+1;
|
|
|
|
|
};
|
|
|
|
|
if (_mag == _create) then {
|
|
|
|
|
_qty_total_ammo = _qty_total_ammo + gearSlotAmmoCount _control;
|
|
|
|
|
_qty_create_ammo = _qty_create_ammo + gearSlotAmmoCount _control;
|
|
|
|
|
_qty_create_mags = _qty_create_mags + 1;
|
|
|
|
|
_qty_create_mags = _qty_create_mags+1;
|
|
|
|
|
};
|
|
|
|
|
if (_mag == "") then {
|
|
|
|
|
_qty_free_slots = _qty_free_slots + 1;
|
|
|
|
|
@@ -78,7 +81,7 @@ _qtynew_consume_ammo_rest = 0;
|
|
|
|
|
_qtynew_create_ammo_rest = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( _consume_magsize > _create_magsize) then {
|
|
|
|
|
if (_consume_magsize > _create_magsize) then {
|
|
|
|
|
_qtynew_create_ammo = _qty_create_ammo + _item_ammo;
|
|
|
|
|
_qtynew_consume_ammo = _qty_consume_ammo - _item_ammo;
|
|
|
|
|
_qtynew_create_mags = ceil(_qtynew_create_ammo/_create_magsize);
|
|
|
|
|
@@ -89,6 +92,7 @@ if ( _consume_magsize > _create_magsize) then {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if ((_qtynew_create_mags + _qtynew_consume_mags) > (_qty_create_mags + _qty_consume_mags + _qty_free_slots)) exitWith {
|
|
|
|
|
r_action_count = 0;
|
|
|
|
|
cutText [localize "str_player_24", "PLAIN DOWN"];
|
|
|
|
|
};
|
|
|
|
|
_qtynew_consume_mags_full = floor(_qtynew_consume_ammo/_consume_magsize);
|
|
|
|
|
@@ -96,15 +100,8 @@ _qtynew_create_mags_full = floor(_qtynew_create_ammo/_create_magsize);
|
|
|
|
|
_qtynew_consume_ammo_rest = _qtynew_consume_ammo - (_qtynew_consume_mags_full*_consume_magsize);
|
|
|
|
|
_qtynew_create_ammo_rest = _qtynew_create_ammo - (_qtynew_create_mags_full*_create_magsize);
|
|
|
|
|
|
|
|
|
|
// abort if no complete mags || partial mag is less than 15% full
|
|
|
|
|
if(_qtynew_create_ammo_rest > 0 && _qty_consume_mags >= (count _consumeArr)) exitWith { cutText [(localize "str_epoch_player_81"), "PLAIN DOWN"]; };
|
|
|
|
|
|
|
|
|
|
//remove all _consume && _create mags (we already have total ammo count)
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
player removeMagazines _x;
|
|
|
|
|
} count _consumeArr;
|
|
|
|
|
|
|
|
|
|
//remove all _consume and _create mags (we already have total ammo count)
|
|
|
|
|
player removeMagazines _consume;
|
|
|
|
|
player removeMagazines _create;
|
|
|
|
|
|
|
|
|
|
for "_i" from 1 to _qtynew_consume_mags_full do {
|
|
|
|
|
@@ -119,3 +116,5 @@ for "_i" from 1 to _qtynew_create_mags_full do {
|
|
|
|
|
if (_qtynew_create_ammo_rest != 0) then {
|
|
|
|
|
player addMagazine [_create,_qtynew_create_ammo_rest];
|
|
|
|
|
};
|
|
|
|
|
sleep 1;
|
|
|
|
|
r_action_count = 0;
|