mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
94 lines
4.1 KiB
Plaintext
94 lines
4.1 KiB
Plaintext
/*
|
|
* Author: GitHawk
|
|
* Rearms a vehicle.
|
|
*
|
|
* Arguments:
|
|
* 0: Params <ARRAY>
|
|
* 0: Target <OBJECT>
|
|
* 1: Unit <OBJECT>
|
|
* 2: Turret Path <ARRAY>
|
|
* 3: Number of magazines <NUMBER>
|
|
* 4: Magazine Classname <STRING>
|
|
* 5: Number of rounds <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [[vehicle, player, [0], 5, "calcium", 500]] call ace_rearm_fnc_rearmSuccess
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_rounds", "_currentRounds", "_maxMagazines", "_dummy", "_weaponSelect"];
|
|
params ["_args"];
|
|
_args params ["_target", "_unit", "_turretPath", "_numMagazines", "_magazineClass", "_numRounds"];
|
|
|
|
//hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMagazine: %4\nNumRounds: %5", _target, _turretPath, _numMagazines, _magazineClass, _numRounds];
|
|
|
|
if (local _unit) then {
|
|
[_unit, QGVAR(vehRearm), false] call EFUNC(common,setForceWalkStatus);
|
|
_dummy = _unit getVariable [QGVAR(dummy), objNull];
|
|
if !(isNull _dummy) then {
|
|
detach _dummy;
|
|
deleteVehicle _dummy;
|
|
};
|
|
_unit setVariable [QGVAR(carriedMagazine), nil, true];
|
|
_weaponSelect = _unit getVariable QGVAR(selectedWeaponOnRearm);
|
|
_unit selectWeapon _weaponSelect;
|
|
_unit setVariable [QGVAR(selectedWeaponOnRearm), nil];
|
|
};
|
|
|
|
if !(local _target) exitWith {
|
|
[_this, QUOTE(DFUNC(rearmSuccess)), _target] call EFUNC(common,execRemoteFnc);
|
|
};
|
|
|
|
_rounds = getNumber (configFile >> "CfgMagazines" >> _magazineClass >> "count");
|
|
_currentRounds = 0;
|
|
|
|
_maxMagazines = [_target, _turretPath, _magazineClass] call FUNC(getMaxMagazines);
|
|
if (_maxMagazines == 1) then {
|
|
if (GVAR(level) == 1) then {
|
|
// Fill magazine completely
|
|
_target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath];
|
|
} else {
|
|
// Fill only at most _numRounds
|
|
_target setMagazineTurretAmmo [_magazineClass, ((_target magazineTurretAmmo [_magazineClass, _turretPath]) + _numRounds) min _rounds, _turretPath];
|
|
};
|
|
[[LSTRING(Hint_RearmedTriple), _numRounds,
|
|
getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"),
|
|
getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit] call EFUNC(common,displayTextStructured);
|
|
} else {
|
|
for "_idx" from 1 to _maxMagazines do {
|
|
_currentRounds = _target magazineTurretAmmo [_magazineClass, _turretPath];
|
|
if (_currentRounds > 0) exitWith {
|
|
if (GVAR(level) == 2) then {
|
|
//hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMaxMagazines %4\nMagazine: %5\nNumRounds: %6\nMagazine: %7", _target, _turretPath, _numMagazines, _maxMagazines, _currentRounds, _numRounds, _magazineClass];
|
|
// Fill only at most _numRounds
|
|
if ((_currentRounds + _numRounds) > _rounds) then {
|
|
_target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath];
|
|
if (_numMagazines < _maxMagazines) then {
|
|
_target addMagazineTurret [_magazineClass, _turretPath];
|
|
_target setMagazineTurretAmmo [_magazineClass, _currentRounds + _numRounds - _rounds, _turretPath];
|
|
};
|
|
} else {
|
|
_target setMagazineTurretAmmo [_magazineClass, _currentRounds + _numRounds, _turretPath];
|
|
};
|
|
} else {
|
|
// Fill current magazine completely and fill next magazine partially
|
|
_target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath];
|
|
if (_numMagazines < _maxMagazines) then {
|
|
_target addMagazineTurret [_magazineClass, _turretPath];
|
|
_target setMagazineTurretAmmo [_magazineClass, _currentRounds, _turretPath];
|
|
};
|
|
};
|
|
[[LSTRING(Hint_RearmedTriple), _rounds,
|
|
getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"),
|
|
getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit] call EFUNC(common,displayTextStructured);
|
|
};
|
|
_target removeMagazineTurret [_magazineClass, _turretPath];
|
|
_numMagazines = _numMagazines - 1;
|
|
};
|
|
};
|