2016-07-15 10:23:47 +00:00
|
|
|
/*
|
|
|
|
* Author: BaerMitUmlaut
|
|
|
|
* Handles treatment via surgical kit per frame
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Arguments <ARRAY>
|
|
|
|
* 0: Caller <OBJECT>
|
|
|
|
* 1: Target <OBJECT>
|
|
|
|
* 1: Elapsed Time <NUMBER>
|
|
|
|
* 2: Total Time <NUMBER>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Succesful treatment started <BOOL>
|
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
2017-06-15 19:35:33 +00:00
|
|
|
* [[bob, kevin], 5, 5] call ACE_medical_treatment_fnc_treatmentAdvanced_surgicalKit_onProgress
|
2017-06-08 13:31:51 +00:00
|
|
|
*
|
2016-07-15 10:23:47 +00:00
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
params ["_args", "_elapsedTime", "_totalTime"];
|
|
|
|
_args params ["_caller", "_target"];
|
|
|
|
|
2016-09-18 10:05:36 +00:00
|
|
|
private _bandagedWounds = _target getVariable [QEGVAR(medical,bandagedWounds), []];
|
2016-12-05 20:34:20 +00:00
|
|
|
private _stitchedWounds = _target getVariable [QEGVAR(medical,stitchedWounds), []];
|
2016-07-15 10:23:47 +00:00
|
|
|
|
|
|
|
//In case two people stitch up one patient and the last wound has already been closed we can stop already
|
|
|
|
if (count _bandagedWounds == 0) exitWith { false };
|
|
|
|
|
|
|
|
//Has enough time elapsed that we can close another wound?
|
2016-10-05 22:54:57 +00:00
|
|
|
if (_totalTime - _elapsedTime <= (count _bandagedWounds - 1) * 5) then {
|
2016-12-05 20:34:20 +00:00
|
|
|
private _treatedWound = _bandagedWounds deleteAt 0;
|
|
|
|
_stitchedWounds pushBack _treatedWound;
|
2016-07-15 10:23:47 +00:00
|
|
|
_target setVariable [QEGVAR(medical,bandagedWounds), _bandagedWounds, true];
|
2016-12-05 20:34:20 +00:00
|
|
|
_target setVariable [QEGVAR(medical,stitchedWounds), _stitchedWounds, true];
|
2016-07-15 10:23:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
true
|