From e418cc05e9ce143d70d90eea60f3a6f135154b35 Mon Sep 17 00:00:00 2001 From: commy2 Date: Thu, 29 Sep 2016 19:31:48 +0200 Subject: [PATCH] cleanup, fix headers treatment has/use item functions --- .../functions/fnc_hasItem.sqf | 12 +++---- .../functions/fnc_hasItems.sqf | 12 ++++--- .../functions/fnc_useItem.sqf | 33 ++++++------------- .../functions/fnc_useItems.sqf | 15 ++++++--- 4 files changed, 34 insertions(+), 38 deletions(-) diff --git a/addons/medical_treatment/functions/fnc_hasItem.sqf b/addons/medical_treatment/functions/fnc_hasItem.sqf index f1e96e7637..b57de5dcfa 100644 --- a/addons/medical_treatment/functions/fnc_hasItem.sqf +++ b/addons/medical_treatment/functions/fnc_hasItem.sqf @@ -8,11 +8,10 @@ * 2: Item * * ReturnValue: - * + * Has the items * * Public: Yes */ - #include "script_component.hpp" params ["_medic", "_patient", "_item"]; @@ -20,6 +19,7 @@ params ["_medic", "_patient", "_item"]; if (isNil QEGVAR(medical,setting_allowSharedEquipment)) then { EGVAR(medical,setting_allowSharedEquipment) = true; }; + if (EGVAR(medical,setting_allowSharedEquipment) && {[_patient, _item] call EFUNC(common,hasItem)}) exitWith { true }; @@ -29,13 +29,13 @@ if ([_medic, _item] call EFUNC(common,hasItem)) exitWith { }; private _return = false; -if ((vehicle _medic != _medic) && {[vehicle _medic] call EFUNC(medical,isMedicalVehicle)}) then { - private _crew = crew vehicle _medic; + +if (vehicle _medic != _medic && {vehicle _medic call EFUNC(medical,isMedicalVehicle)}) then { { - if ([_medic, _x] call FUNC(canAccessMedicalEquipment) && {([_x, _item] call EFUNC(common,hasItem))}) exitWith { + if ([_medic, _x] call FUNC(canAccessMedicalEquipment) && {[_x, _item] call EFUNC(common,hasItem)}) exitWith { _return = true; }; - } forEach _crew; + } forEach crew vehicle _medic; }; _return diff --git a/addons/medical_treatment/functions/fnc_hasItems.sqf b/addons/medical_treatment/functions/fnc_hasItems.sqf index d3e79c0a54..51fbd2a568 100644 --- a/addons/medical_treatment/functions/fnc_hasItems.sqf +++ b/addons/medical_treatment/functions/fnc_hasItems.sqf @@ -12,20 +12,22 @@ * * Public: Yes */ - #include "script_component.hpp" params ["_medic", "_patient", "_items"]; private _return = true; + { - // - if (_x isEqualType [] && {({[_medic, _patient, _x] call FUNC(hasItem)}count _x == 0)}) exitwith { + // handle a one of type use item + if (_x isEqualType [] && {{[_medic, _patient, _x] call FUNC(hasItem)} count _x == 0}) exitWith { _return = false; }; - if (_x isEqualType "" && {!([_medic, _patient, _x] call FUNC(hasItem))}) exitwith { + + // handle required item + if (_x isEqualType "" && {!([_medic, _patient, _x] call FUNC(hasItem))}) exitWith { _return = false; }; -}foreach _items; +} forEach _items; _return diff --git a/addons/medical_treatment/functions/fnc_useItem.sqf b/addons/medical_treatment/functions/fnc_useItem.sqf index a96db8dc2f..39f16621d2 100644 --- a/addons/medical_treatment/functions/fnc_useItem.sqf +++ b/addons/medical_treatment/functions/fnc_useItem.sqf @@ -13,46 +13,33 @@ * * Public: Yes */ - #include "script_component.hpp" params ["_medic", "_patient", "_item"]; if (isNil QEGVAR(medical,setting_allowSharedEquipment)) then { - EGVAR(medical,setting_allowSharedEquipment)= true; + EGVAR(medical,setting_allowSharedEquipment) = true; }; if (EGVAR(medical,setting_allowSharedEquipment) && {[_patient, _item] call EFUNC(common,hasItem)}) exitWith { - if (local _patient) then { - ["ace_useItem", [_patient, _item]] call CBA_fnc_localEvent; - } else { - ["ace_useItem", [_patient, _item], _patient] call CBA_fnc_targetEvent; - }; - [true, _patient]; + ["ace_useItem", [_patient, _item], _patient] call CBA_fnc_targetEvent; + [true, _patient] }; if ([_medic, _item] call EFUNC(common,hasItem)) exitWith { - if (local _medic) then { - ["ace_useItem", [_medic, _item]] call CBA_fnc_localEvent; - } else { - ["ace_useItem", [_medic, _item], _medic] call CBA_fnc_targetEvent; - }; - [true, _medic]; + ["ace_useItem", [_medic, _item], _medic] call CBA_fnc_targetEvent; + [true, _medic] }; private _return = [false, objNull]; -if ([vehicle _medic] call EFUNC(medical,isMedicalVehicle) && {vehicle _medic != _medic}) then { - private _crew = crew vehicle _medic; + +if (vehicle _medic != _medic && {vehicle _medic call EFUNC(medical,isMedicalVehicle)}) then { { - if ([_medic, _x] call FUNC(canAccessMedicalEquipment) && {([_x, _item] call EFUNC(common,hasItem))}) exitWith { + if ([_medic, _x] call FUNC(canAccessMedicalEquipment) && {[_x, _item] call EFUNC(common,hasItem)}) exitWith { + ["ace_useItem", [_x, _item], _x] call CBA_fnc_targetEvent; _return = [true, _x]; - if (local _x) then { - ["ace_useItem", [_x, _item]] call CBA_fnc_localEvent; - } else { - ["ace_useItem", [_x, _item], _x] call CBA_fnc_targetEvent; - }; }; - } forEach _crew; + } forEach crew vehicle _medic; }; _return diff --git a/addons/medical_treatment/functions/fnc_useItems.sqf b/addons/medical_treatment/functions/fnc_useItems.sqf index aac7b0623a..e1372b247d 100644 --- a/addons/medical_treatment/functions/fnc_useItems.sqf +++ b/addons/medical_treatment/functions/fnc_useItems.sqf @@ -8,29 +8,36 @@ * 2: Items > * * ReturnValue: - * None + * 0: success + * 1: Unit * * Public: Yes */ - #include "script_component.hpp" params ["_medic", "_patient", "_items"]; private _itemsUsedBy = []; + { // handle a one of type use item if (_x isEqualType []) then { { private _itemUsedInfo = [_medic, _patient, _x] call FUNC(useItem); - if (_itemUsedInfo select 0) exitWith { _itemsUsedBy pushBack [(_itemUsedInfo select 1), _x]}; + + if (_itemUsedInfo select 0) exitWith { + _itemsUsedBy pushBack [_itemUsedInfo select 1, _x]; + }; } forEach _x; }; // handle required item if (_x isEqualType "") then { private _itemUsedInfo = [_medic, _patient, _x] call FUNC(useItem); - if (_itemUsedInfo select 0) exitWith { _itemsUsedBy pushBack [(_itemUsedInfo select 1), _x]}; + + if (_itemUsedInfo select 0) exitWith { + _itemsUsedBy pushBack [_itemUsedInfo select 1, _x]; + }; }; } forEach _items;