mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
43 lines
983 B
Plaintext
43 lines
983 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Grab available treatment options for given category
|
|
*
|
|
* Arguments:
|
|
* 0: The medic <OBJECT>
|
|
* 1: The patient <OBJECT>
|
|
* 2: Category name <STRING>
|
|
*
|
|
* Return Value:
|
|
* Available actions <ARRAY>
|
|
*
|
|
* Exmaple:
|
|
* [ACE_player, poor_dude, "some category"] call ace_medical_menu_fnc_getTreatmentOptions
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private "_actions";
|
|
params ["_player", "_target", "_name"];
|
|
|
|
if (!([ACE_player, _target, ["isNotInside"]] call EFUNC(common,canInteractWith))) exitwith {[]};
|
|
|
|
_actions = if (EGVAR(medical,level) == 2) then {
|
|
GVAR(actionsAdvanced);
|
|
} else {
|
|
GVAR(actionsBasic);
|
|
};
|
|
|
|
_collectedActions = [];
|
|
|
|
_bodyPart = EGVAR(medical,SELECTIONS) select GVAR(selectedBodyPart);
|
|
{
|
|
_x params ["", "_currentCategory", "_currentCondition"];
|
|
if (_name == _currentCategory && {call _currentCondition}) then {
|
|
_collectedActions pushBack _x;
|
|
};
|
|
nil
|
|
} count _actions;
|
|
|
|
_collectedActions // return
|