From 41892fd6df8c4a235981e65d8692786b2373c589 Mon Sep 17 00:00:00 2001 From: BaerMitUmlaut Date: Tue, 26 May 2015 00:33:20 +0200 Subject: [PATCH 1/7] Added surgicalKit treatment --- addons/medical/XEH_preInit.sqf | 2 ++ .../fnc_treatmentAdvanced_surgicalKit.sqf | 20 +++++++++++++++++++ ...fnc_treatmentAdvanced_surgicalKitLocal.sqf | 18 +++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 addons/medical/functions/fnc_treatmentAdvanced_surgicalKit.sqf create mode 100644 addons/medical/functions/fnc_treatmentAdvanced_surgicalKitLocal.sqf diff --git a/addons/medical/XEH_preInit.sqf b/addons/medical/XEH_preInit.sqf index 4f4ff5bc30..33ef6fbcde 100644 --- a/addons/medical/XEH_preInit.sqf +++ b/addons/medical/XEH_preInit.sqf @@ -78,6 +78,8 @@ PREP(treatmentAdvanced_fullHeal); PREP(treatmentAdvanced_fullHealLocal); PREP(treatmentAdvanced_medication); PREP(treatmentAdvanced_medicationLocal); +PREP(treatmentAdvanced_surgicalKit); +PREP(treatmentAdvanced_surgicalKitLocal); PREP(treatmentBasic_bandage); PREP(treatmentBasic_bloodbag); PREP(treatmentBasic_bloodbagLocal); diff --git a/addons/medical/functions/fnc_treatmentAdvanced_surgicalKit.sqf b/addons/medical/functions/fnc_treatmentAdvanced_surgicalKit.sqf new file mode 100644 index 0000000000..da967b7f1b --- /dev/null +++ b/addons/medical/functions/fnc_treatmentAdvanced_surgicalKit.sqf @@ -0,0 +1,20 @@ +/* + * Author: BaerMitUmlaut + * Handles treatment via surgical kit. + * + * Public: No + */ + +#include "script_component.hpp" + +private ["_target", "_caller", "_selectionName", "_className", "_items"]; +_caller = _this select 0; +_target = _this select 1; +_selectionName = _this select 2; +_className = _this select 3; +_items = _this select 4; + +// TODO replace by event system +[[_caller, _target], QUOTE(DFUNC(treatmentAdvanced_surgicalKitLocal)), _target] call EFUNC(common,execRemoteFnc); /* TODO Replace by event system */ + +true; diff --git a/addons/medical/functions/fnc_treatmentAdvanced_surgicalKitLocal.sqf b/addons/medical/functions/fnc_treatmentAdvanced_surgicalKitLocal.sqf new file mode 100644 index 0000000000..c5596c0bcb --- /dev/null +++ b/addons/medical/functions/fnc_treatmentAdvanced_surgicalKitLocal.sqf @@ -0,0 +1,18 @@ +/* + * Author: BaerMitUmlaut + * Handles treatment via surgical kit (locally). + * + * Public: No + */ + +#include "script_component.hpp" + +private ["_target", "_caller"]; +_caller = _this select 0; +_target = _this select 1; + +if (alive _target) exitwith { + + _target setvariable [QGVAR(bandagedWounds), [], true]; + +}; From 890b568225556949c201d61cff9485c77e1a7593 Mon Sep 17 00:00:00 2001 From: BaerMitUmlaut Date: Wed, 27 May 2015 00:45:22 +0200 Subject: [PATCH 2/7] Implemented dynamic treatment time --- addons/medical/functions/fnc_treatment.sqf | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/addons/medical/functions/fnc_treatment.sqf b/addons/medical/functions/fnc_treatment.sqf index f50ff505e0..8f092f7ab9 100644 --- a/addons/medical/functions/fnc_treatment.sqf +++ b/addons/medical/functions/fnc_treatment.sqf @@ -16,7 +16,7 @@ #include "script_component.hpp" -private ["_caller", "_target", "_selectionName", "_className", "_config", "_medicRequired", "_items", "_locations", "_return", "_callbackProgress", "_treatmentTime", "_callerAnim", "_patientAnim", "_iconDisplayed", "_return", "_usersOfItems", "_consumeItems", "_condition", "_displayText", "_wpn"]; +private ["_caller", "_target", "_selectionName", "_className", "_config", "_medicRequired", "_items", "_locations", "_return", "_callbackProgress", "_treatmentTime", "_callerAnim", "_patientAnim", "_iconDisplayed", "_return", "_usersOfItems", "_consumeItems", "_condition", "_displayText", "_wpn", "_treatmentTime", "_treatmentTimeConfig"]; _caller = _this select 0; _target = _this select 1; _selectionName = _this select 2; @@ -174,8 +174,26 @@ if (vehicle _caller == _caller && {_callerAnim != ""}) then { [_caller, _callerAnim] call EFUNC(common,doAnimation); }; +//Get treatment time +if (isNumber (_config >> "treatmentTime")) then { + _treatmentTime = getNumber (_config >> "treatmentTime"); +} else { + if (isText (_config >> "treatmentTime")) then { + _treatmentTimeConfig = getText(_config >> "treatmentTime"); + if (isnil _treatmentTimeConfig) then { + _treatmentTimeConfig = compile _treatmentTimeConfig; + } else { + _treatmentTimeConfig = missionNamespace getvariable _treatmentTimeConfig; + }; + if (typeName _treatmentTimeConfig == "SCALAR") then { + _treatmentTime = _treatmentTimeConfig; + } else { + _treatmentTime = [_caller, _target, _selectionName, _className] call _treatmentTimeConfig; + }; + }; +}; + // Start treatment -_treatmentTime = getNumber (_config >> "treatmentTime"); [ _treatmentTime, [_caller, _target, _selectionName, _className, _items, _usersOfItems], From 30df0e8dc986ba6eb235a600c5e8ed8412b673f4 Mon Sep 17 00:00:00 2001 From: BaerMitUmlaut Date: Wed, 27 May 2015 00:45:50 +0200 Subject: [PATCH 3/7] Switched to callbackPogress for treatment --- addons/medical/ACE_Medical_Treatments.hpp | 5 ++-- addons/medical/XEH_preInit.sqf | 3 +- ...eatmentAdvanced_surgicalKit_onProgress.sqf | 28 +++++++++++++++++++ 3 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 addons/medical/functions/fnc_treatmentAdvanced_surgicalKit_onProgress.sqf diff --git a/addons/medical/ACE_Medical_Treatments.hpp b/addons/medical/ACE_Medical_Treatments.hpp index 9848410c8c..76bd77b44a 100644 --- a/addons/medical/ACE_Medical_Treatments.hpp +++ b/addons/medical/ACE_Medical_Treatments.hpp @@ -200,8 +200,9 @@ class ACE_Medical_Actions { items[] = {"ACE_surgicalKit"}; treatmentLocations[] = {QGVAR(useLocation_SurgicalKit)}; requiredMedic = QGVAR(medicSetting_SurgicalKit); - treatmentTime = 10; - callbackSuccess = QUOTE(DFUNC(treatmentAdvanced_surgicalKit)); + treatmentTime = "(count ((_this select 1) getVariable ['ACE_Medical_bandagedWounds', []]) * 5)"; + callbackSuccess = ""; + callbackProgress = QUOTE(DFUNC(treatmentAdvanced_surgicalKit_onProgress)); itemConsumed = QGVAR(consumeItem_SurgicalKit); animationCaller = "AinvPknlMstpSnonWnonDnon_medic1"; litter[] = { {"All", "", {"ACE_MedicalLitter_gloves"} }}; diff --git a/addons/medical/XEH_preInit.sqf b/addons/medical/XEH_preInit.sqf index 33ef6fbcde..d3c2275751 100644 --- a/addons/medical/XEH_preInit.sqf +++ b/addons/medical/XEH_preInit.sqf @@ -78,8 +78,7 @@ PREP(treatmentAdvanced_fullHeal); PREP(treatmentAdvanced_fullHealLocal); PREP(treatmentAdvanced_medication); PREP(treatmentAdvanced_medicationLocal); -PREP(treatmentAdvanced_surgicalKit); -PREP(treatmentAdvanced_surgicalKitLocal); +PREP(treatmentAdvanced_surgicalKit_onProgress); PREP(treatmentBasic_bandage); PREP(treatmentBasic_bloodbag); PREP(treatmentBasic_bloodbagLocal); diff --git a/addons/medical/functions/fnc_treatmentAdvanced_surgicalKit_onProgress.sqf b/addons/medical/functions/fnc_treatmentAdvanced_surgicalKit_onProgress.sqf new file mode 100644 index 0000000000..c50665803b --- /dev/null +++ b/addons/medical/functions/fnc_treatmentAdvanced_surgicalKit_onProgress.sqf @@ -0,0 +1,28 @@ +/* + * Author: BaerMitUmlaut + * Handles treatment via surgical kit per frame. + * + * Public: No + */ + +#include "script_component.hpp" + +private ["_args", "_target", "_caller", "_elapsedTime", "_totalTime", "_bandagedWounds"]; +_args = _this select 0; +_caller = _args select 0; +_target = _args select 1; +_elapsedTime = _this select 1; +_totalTime = _this select 2; + +_bandagedWounds = _target getVariable [QGVAR(bandagedWounds), []]; + +//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? +if ((_totalTime - _elapsedTime) <= (((count _bandagedWounds) - 1) * 5)) then { + _bandagedWounds deleteAt 0; + _target setVariable [QGVAR(bandagedWounds), _bandagedWounds, true]; +}; + +true \ No newline at end of file From f7578a92c9f6d28b0cf0bc4e640a3da2c389710b Mon Sep 17 00:00:00 2001 From: BaerMitUmlaut Date: Wed, 27 May 2015 00:52:16 +0200 Subject: [PATCH 4/7] Reverted in favour of onProgress treatment --- .../fnc_treatmentAdvanced_surgicalKit.sqf | 20 ------------------- ...fnc_treatmentAdvanced_surgicalKitLocal.sqf | 18 ----------------- 2 files changed, 38 deletions(-) delete mode 100644 addons/medical/functions/fnc_treatmentAdvanced_surgicalKit.sqf delete mode 100644 addons/medical/functions/fnc_treatmentAdvanced_surgicalKitLocal.sqf diff --git a/addons/medical/functions/fnc_treatmentAdvanced_surgicalKit.sqf b/addons/medical/functions/fnc_treatmentAdvanced_surgicalKit.sqf deleted file mode 100644 index da967b7f1b..0000000000 --- a/addons/medical/functions/fnc_treatmentAdvanced_surgicalKit.sqf +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Author: BaerMitUmlaut - * Handles treatment via surgical kit. - * - * Public: No - */ - -#include "script_component.hpp" - -private ["_target", "_caller", "_selectionName", "_className", "_items"]; -_caller = _this select 0; -_target = _this select 1; -_selectionName = _this select 2; -_className = _this select 3; -_items = _this select 4; - -// TODO replace by event system -[[_caller, _target], QUOTE(DFUNC(treatmentAdvanced_surgicalKitLocal)), _target] call EFUNC(common,execRemoteFnc); /* TODO Replace by event system */ - -true; diff --git a/addons/medical/functions/fnc_treatmentAdvanced_surgicalKitLocal.sqf b/addons/medical/functions/fnc_treatmentAdvanced_surgicalKitLocal.sqf deleted file mode 100644 index c5596c0bcb..0000000000 --- a/addons/medical/functions/fnc_treatmentAdvanced_surgicalKitLocal.sqf +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Author: BaerMitUmlaut - * Handles treatment via surgical kit (locally). - * - * Public: No - */ - -#include "script_component.hpp" - -private ["_target", "_caller"]; -_caller = _this select 0; -_target = _this select 1; - -if (alive _target) exitwith { - - _target setvariable [QGVAR(bandagedWounds), [], true]; - -}; From 6894a7433a51538ba14fcc6a201f2f6dd99accde Mon Sep 17 00:00:00 2001 From: BaerMitUmlaut Date: Wed, 27 May 2015 13:51:15 +0200 Subject: [PATCH 5/7] Removed duplicate private var --- addons/medical/functions/fnc_treatment.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/medical/functions/fnc_treatment.sqf b/addons/medical/functions/fnc_treatment.sqf index 8f092f7ab9..a5fde365cf 100644 --- a/addons/medical/functions/fnc_treatment.sqf +++ b/addons/medical/functions/fnc_treatment.sqf @@ -16,7 +16,7 @@ #include "script_component.hpp" -private ["_caller", "_target", "_selectionName", "_className", "_config", "_medicRequired", "_items", "_locations", "_return", "_callbackProgress", "_treatmentTime", "_callerAnim", "_patientAnim", "_iconDisplayed", "_return", "_usersOfItems", "_consumeItems", "_condition", "_displayText", "_wpn", "_treatmentTime", "_treatmentTimeConfig"]; +private ["_caller", "_target", "_selectionName", "_className", "_config", "_medicRequired", "_items", "_locations", "_return", "_callbackProgress", "_treatmentTime", "_callerAnim", "_patientAnim", "_iconDisplayed", "_return", "_usersOfItems", "_consumeItems", "_condition", "_displayText", "_wpn", "_treatmentTimeConfig"]; _caller = _this select 0; _target = _this select 1; _selectionName = _this select 2; From f2e6a98eb4ddcc119b180c9f88e43c062df797b7 Mon Sep 17 00:00:00 2001 From: BaerMitUmlaut Date: Wed, 27 May 2015 13:51:22 +0200 Subject: [PATCH 6/7] Killed tabs --- .../fnc_treatmentAdvanced_surgicalKit_onProgress.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/medical/functions/fnc_treatmentAdvanced_surgicalKit_onProgress.sqf b/addons/medical/functions/fnc_treatmentAdvanced_surgicalKit_onProgress.sqf index c50665803b..c0e1037027 100644 --- a/addons/medical/functions/fnc_treatmentAdvanced_surgicalKit_onProgress.sqf +++ b/addons/medical/functions/fnc_treatmentAdvanced_surgicalKit_onProgress.sqf @@ -21,8 +21,8 @@ if (count _bandagedWounds == 0) exitWith {false}; //Has enough time elapsed that we can close another wound? if ((_totalTime - _elapsedTime) <= (((count _bandagedWounds) - 1) * 5)) then { - _bandagedWounds deleteAt 0; - _target setVariable [QGVAR(bandagedWounds), _bandagedWounds, true]; + _bandagedWounds deleteAt 0; + _target setVariable [QGVAR(bandagedWounds), _bandagedWounds, true]; }; true \ No newline at end of file From 27106ce59f3fc6d783af425b99756c27259e763d Mon Sep 17 00:00:00 2001 From: Glowbal Date: Thu, 28 May 2015 20:54:13 +0200 Subject: [PATCH 7/7] minor refactor --- addons/medical/functions/fnc_treatment.sqf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/addons/medical/functions/fnc_treatment.sqf b/addons/medical/functions/fnc_treatment.sqf index a5fde365cf..9f910fcb20 100644 --- a/addons/medical/functions/fnc_treatment.sqf +++ b/addons/medical/functions/fnc_treatment.sqf @@ -175,22 +175,22 @@ if (vehicle _caller == _caller && {_callerAnim != ""}) then { }; //Get treatment time -if (isNumber (_config >> "treatmentTime")) then { - _treatmentTime = getNumber (_config >> "treatmentTime"); +_treatmentTime = if (isNumber (_config >> "treatmentTime")) then { + getNumber (_config >> "treatmentTime"); } else { - if (isText (_config >> "treatmentTime")) then { + if (isText (_config >> "treatmentTime")) exitwith { _treatmentTimeConfig = getText(_config >> "treatmentTime"); if (isnil _treatmentTimeConfig) then { _treatmentTimeConfig = compile _treatmentTimeConfig; } else { _treatmentTimeConfig = missionNamespace getvariable _treatmentTimeConfig; }; - if (typeName _treatmentTimeConfig == "SCALAR") then { - _treatmentTime = _treatmentTimeConfig; - } else { - _treatmentTime = [_caller, _target, _selectionName, _className] call _treatmentTimeConfig; + if (typeName _treatmentTimeConfig == "SCALAR") exitwith { + _treatmentTimeConfig; }; + [_caller, _target, _selectionName, _className] call _treatmentTimeConfig; }; + 0; }; // Start treatment