ACE3/addons/common/functions/fnc_claim.sqf

51 lines
1.6 KiB
Plaintext
Raw Normal View History

#include "script_component.hpp"
2015-03-15 08:02:11 +00:00
/*
* Author: commy2
* Unit claims the ownership over an object. This is used to prevent multiple players from draging the same ammo box or using up the same wheel when repairing etc.
*
* Arguments:
2015-09-18 11:09:40 +00:00
* 0: Unit that claims another object. ObjNull to remove claim. <OBJECT>
* 1: The object that gets claimed. <OBJECT>
* 2: Lock the claimed object aswell? (optional: false) <BOOL>
2015-03-15 08:02:11 +00:00
*
* Return Value:
2015-09-18 11:09:40 +00:00
* None
2015-03-15 08:02:11 +00:00
*
* Example:
* [bob, flag, true] call ace_common_fnc_claim
*
2015-09-20 20:29:38 +00:00
* Public: No
2015-03-15 08:02:11 +00:00
*/
2015-09-18 11:09:40 +00:00
params ["_unit", "_target", ["_lockTarget", false]];
private _owner = _target getVariable [QGVAR(owner), objNull];
if (!isNull _owner && {!isNull _unit} && {_unit != _owner}) then {
ERROR("Claiming already owned object.");
};
2015-03-15 08:02:11 +00:00
// transfer this immediately
_target setVariable [QGVAR(owner), _unit, true];
2015-03-15 08:02:11 +00:00
// lock target object
if (_lockTarget) then {
private _canBeDisassembled = ([] isNotEqualTo getArray (configOf _target >> "assembleInfo" >> "dissasembleTo")) && { !([false, true] select (_target getVariable [QEGVAR(csw,assemblyMode), 0])) };
2015-03-15 08:02:11 +00:00
if (!isNull _unit) then {
[QGVAR(lockVehicle), _target, _target] call CBA_fnc_targetEvent;
if (_canBeDisassembled) then {
_target enableWeaponDisassembly false;
};
2015-03-15 08:02:11 +00:00
} else {
[QGVAR(unlockVehicle), _target, _target] call CBA_fnc_targetEvent;
if (_canBeDisassembled) then {
_target enableWeaponDisassembly true;
};
2015-03-15 08:02:11 +00:00
};
};
2015-03-15 08:02:11 +00:00
/*
systemChat str locked _target;
systemChat str (_target getVariable [QGVAR(lockStatus), locked _target]);
*/