ACE3/addons/movement/functions/fnc_handleVirtualMass.sqf
PabstMirror 61c99cb5d8
Attempt to make enum errors more clear (#5876)
* Add note to enum script error

* Bump Arma/CBA versions

* req 1.78
2017-12-08 21:39:35 -06:00

52 lines
1.3 KiB
Plaintext

/*
* Author: commy2
* Recalculate the units loadCoef to emulate a mass added to uniform, vest or backpack.
*
* Arguments:
* 0: The Unit (usually the player) <OBJECT>
*
* Return Value:
* None
*
* Example:
* [bob] call ace_movement_fnc_handleVirtualMass
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit"];
if (isNull _unit) exitWith {};
// add sum of virtual loads
private _virtualLoad = 0;
{
_virtualLoad = _virtualLoad + (_x getVariable [QGVAR(vLoad), 0]);
} forEach [
_unit,
uniformContainer _unit,
vestContainer _unit,
backpackContainer _unit
];
_unit setVariable [QGVAR(totalLoad), (loadAbs _unit + _virtualLoad)];
// get absolute vanilla load
private _absLoad = getNumber (configFile >> "CfgInventoryGlobalVariable" >> "maxSoldierLoad");
// try to preserve other changes to the "LoadCoef" unitTrait
private _loadCoef = _unit getVariable QGVAR(loadCoef);
if (isNil "_loadCoef") then {
INFO("Note: getUnitTrait / loadCoef enum error can be ignored [present since Arma 3 v1.78] - IGNORE THIS");
_loadCoef = _unit getUnitTrait "loadCoef";
_unit setVariable [QGVAR(loadCoef), _loadCoef, true];
};
// calc. new "virtual" loadCoef
private _virtualLoadCoef = (1 + _virtualLoad / _absLoad) * _loadCoef;
_unit setUnitTrait ["loadCoef", _virtualLoadCoef];