mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
95 lines
3.1 KiB
Plaintext
95 lines
3.1 KiB
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Check if the treatment action can be performed.
|
|
*
|
|
* Arguments:
|
|
* 0: The caller <OBJECT>
|
|
* 1: The target <OBJECT>
|
|
* 2: Selection name <STRING>
|
|
* 3: ACE_Medical_Treatments Classname <STRING>
|
|
*
|
|
* ReturnValue:
|
|
* Can Treat <BOOL>
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
private ["_config", "_medicRequired", "_items", "_locations", "_return", "_condition", "_patientStateCondition", "_allowedSelections"];
|
|
params ["_caller", "_target", "_selectionName", "_className"];
|
|
|
|
if !(_target isKindOf "CAManBase") exitWith { false };
|
|
|
|
|
|
_config = (ConfigFile >> "ACE_Medical_Actions" >> (["Basic", "Advanced"] select (GVAR(level)>=2)) >> _className);
|
|
|
|
if !(isClass _config) exitwith {false};
|
|
|
|
_medicRequired = if (isNumber (_config >> "requiredMedic")) then {
|
|
getNumber (_config >> "requiredMedic");
|
|
} else {
|
|
// Check for required class
|
|
if (isText (_config >> "requiredMedic")) exitwith {
|
|
missionNamespace getvariable [(getText (_config >> "requiredMedic")), 0]
|
|
};
|
|
0;
|
|
};
|
|
if !([_caller, _medicRequired] call FUNC(isMedic)) exitwith { false };
|
|
|
|
_items = getArray (_config >> "items");
|
|
if (count _items > 0 && {!([_caller, _target, _items] call FUNC(hasItems))}) exitwith { false };
|
|
|
|
_allowedSelections = getArray (_config >> "allowedSelections");
|
|
if !("All" in _allowedSelections || {(_selectionName in _allowedSelections)}) exitwith { false };
|
|
|
|
_return = true;
|
|
if (getText (_config >> "condition") != "") then {
|
|
_condition = getText (_config >> "condition");
|
|
if (isnil _condition) then {
|
|
_condition = compile _condition;
|
|
} else {
|
|
_condition = missionNamespace getvariable _condition;
|
|
};
|
|
if (typeName _condition == "BOOL") then {
|
|
_return = _condition;
|
|
} else {
|
|
_return = [_caller, _target, _selectionName, _className] call _condition;
|
|
};
|
|
};
|
|
if (!_return) exitwith { false };
|
|
|
|
_patientStateCondition = if (isText(_config >> "patientStateCondition")) then {
|
|
missionNamespace getvariable [getText(_config >> "patientStateCondition"), 0]
|
|
} else {
|
|
getNumber(_config >> "patientStateCondition")
|
|
};
|
|
if (_patientStateCondition == 1 && {!([_target] call FUNC(isInStableCondition))}) exitwith {false};
|
|
|
|
_locations = getArray (_config >> "treatmentLocations");
|
|
if ("All" in _locations) exitwith { true };
|
|
|
|
private [ "_medFacility", "_medVeh"];
|
|
_medFacility = {([_caller] call FUNC(isInMedicalFacility)) || ([_target] call FUNC(isInMedicalFacility))};
|
|
_medVeh = {([_caller] call FUNC(isInMedicalVehicle)) || ([_target] call FUNC(isInMedicalVehicle))};
|
|
|
|
{
|
|
if (_x == "field") exitwith {_return = true;};
|
|
if (_x == "MedicalFacility" && _medFacility) exitwith {_return = true;};
|
|
if (_x == "MedicalVehicle" && _medVeh) exitwith {_return = true;};
|
|
if !(isnil _x) exitwith {
|
|
private "_val";
|
|
_val = missionNamespace getvariable _x;
|
|
if (typeName _val == "SCALAR") then {
|
|
_return = switch (_val) do {
|
|
case 0: {true};
|
|
case 1: _medVeh;
|
|
case 2: _medFacility;
|
|
case 3: {call _medFacility || call _medVeh};
|
|
};
|
|
};
|
|
};
|
|
} foreach _locations;
|
|
|
|
_return;
|