mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
60 lines
1.6 KiB
Plaintext
60 lines
1.6 KiB
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Ir0n1E, mjc4wilton
|
|
* Swap primary weapon and weapon in gunbag.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Target <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player, cursorObject] call ace_gunbag_fnc_swapGunbagCallback
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit", "_target"];
|
|
|
|
// Set up current weapon for storing
|
|
private _gunbag = backpackContainer _target;
|
|
private _currentItems = (getUnitLoadout _unit) select 0;
|
|
|
|
private _currentMagazines = _currentItems select [4, 2];
|
|
_currentItems deleteRange [4, 2];
|
|
|
|
private _currentWeapon = _currentItems deleteAt 0;
|
|
|
|
private _currentMass = [_currentWeapon, _currentItems, _currentMagazines apply {_x select 0}] call FUNC(calculateMass);
|
|
|
|
// Set up weapon in gunbag
|
|
private _newState = _gunbag getVariable [QGVAR(gunbagWeapon), []];
|
|
|
|
if (_newState isEqualTo []) exitWith {
|
|
[LLSTRING(empty)] call EFUNC(common,displayTextStructured);
|
|
};
|
|
|
|
_newState params ["_newWeapon", "_newItems", "_newMagazines"];
|
|
|
|
// Swap Weapons
|
|
_unit removeWeapon _currentWeapon;
|
|
|
|
[_unit, _newWeapon, true, _newMagazines] call EFUNC(common,addWeapon);
|
|
|
|
// Add attachments
|
|
{
|
|
_unit addWeaponItem [_newWeapon, _x, true];
|
|
} forEach (_newItems select {_x != ""});
|
|
|
|
_unit selectWeapon _newWeapon;
|
|
|
|
private _newMass = [_newWeapon, _newItems, _newMagazines apply {_x select 0}] call FUNC(calculateMass);
|
|
|
|
// Update virtual load
|
|
[_target, _gunbag, _currentMass - _newMass] call EFUNC(movement,addLoadToUnitContainer);
|
|
|
|
// Replace weapon in gunbag
|
|
_gunbag setVariable [QGVAR(gunbagWeapon), [_currentWeapon, _currentItems, _currentMagazines], true];
|