From 8233661d5523addebafd56a05086ca398afe1e1c Mon Sep 17 00:00:00 2001 From: commy2 Date: Wed, 24 Feb 2016 09:39:39 +0100 Subject: [PATCH] remove unused non API functions --- addons/common/XEH_PREP.hpp | 1 - addons/common/functions/fnc_exportConfig.sqf | 71 ------------------- addons/interaction/XEH_PREP.hpp | 1 - .../interaction/functions/fnc_removeTag.sqf | 36 ---------- addons/respawn/XEH_PREP.hpp | 1 - addons/respawn/functions/fnc_removeBody.sqf | 27 ------- 6 files changed, 137 deletions(-) delete mode 100644 addons/common/functions/fnc_exportConfig.sqf delete mode 100644 addons/interaction/functions/fnc_removeTag.sqf delete mode 100644 addons/respawn/functions/fnc_removeBody.sqf diff --git a/addons/common/XEH_PREP.hpp b/addons/common/XEH_PREP.hpp index 91f496916a..373f45e96c 100644 --- a/addons/common/XEH_PREP.hpp +++ b/addons/common/XEH_PREP.hpp @@ -225,7 +225,6 @@ PREP(binocularMagazine); PREP(removeBinocularMagazine); // ACE_Debug -PREP(exportConfig); PREP(getChildren); PREP(getDisplayConfigName); PREP(monitor); diff --git a/addons/common/functions/fnc_exportConfig.sqf b/addons/common/functions/fnc_exportConfig.sqf deleted file mode 100644 index c175254e5a..0000000000 --- a/addons/common/functions/fnc_exportConfig.sqf +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Author: commy2 - * Export Config Entrys to RPT logs - * - * Arguments: - * Config Path - * - * Return Value: - * None - * - * Example: - * [configFile >> "CfgAmmo"] call ace_common_fnc_exportConfig; - * - * Public: No - */ -#include "script_component.hpp" - -private _fnc_logEntries = { - params ["_c", "_d"]; - - private _p = inheritsFrom _c; - - private _t = format [["class %1: %2 {", "class %1 {"] select (configName _p == ""), configName _c, configName _p]; - for "_a" from 1 to _d do { - _t = " " + _t; - }; - diag_log text _t; - - private _e = []; - for "_i" from 0 to (count _c - 1) do { - private _e1 = _c select _i; - - private _e2 = switch (true) do { - case (isNumber _e1): {getNumber _e1}; - case (isText _e1): {getText _e1}; - case (isArray _e1): {getArray _e1}; - case (isClass _e1): {[_e1, _d + 1] call _fnc_logEntries; false}; - }; - - if (!(_e2 isEqualType false)) then { - if (_e2 isEqualType []) then { - _e2 = toArray str _e2; - { - if (_x == toArray "[" select 0) then { - _e2 set [_forEachIndex, toArray "{" select 0]; - }; - if (_x == toArray "]" select 0) then { - _e2 set [_forEachIndex, toArray "}" select 0]; - }; - } forEach _e2; - _e2 = toString _e2; - _t = format ["%1[] = %2;", configName _e1, _e2]; - } else { - _t = format ["%1 = %2;", configName _e1, str _e2]; - }; - for "_a" from 0 to _d do { - _t = " " + _t; - }; - diag_log text _t; - }; - }; - - _t = "};"; - for "_a" from 1 to _d do { - _t = " " + _t; - }; - diag_log text _t; - diag_log text ""; -}; - -[_this, 0] call _fnc_logEntries; diff --git a/addons/interaction/XEH_PREP.hpp b/addons/interaction/XEH_PREP.hpp index d24a3623dd..71facedc3f 100644 --- a/addons/interaction/XEH_PREP.hpp +++ b/addons/interaction/XEH_PREP.hpp @@ -4,7 +4,6 @@ PREP(addPassengerActions); PREP(addPassengersActions); PREP(getWeaponPos); PREP(moduleInteraction); -PREP(removeTag); // scroll wheel hint PREP(showMouseHint); diff --git a/addons/interaction/functions/fnc_removeTag.sqf b/addons/interaction/functions/fnc_removeTag.sqf deleted file mode 100644 index b70f04ec99..0000000000 --- a/addons/interaction/functions/fnc_removeTag.sqf +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Author: commy2 - * Removes tag - * - * Arguments: - * None - * - * Return value: - * None - * - * Example: - * call ace_interaction_fnc_removeTag - * - * Public: No - */ -#include "script_component.hpp" - -0 spawn { - private ["_index", "_name"]; - - waitUntil {player getVariable ["ACE_Name", ""] != ""}; - - _name = player getVariable ["ACE_Name", ""]; - _name = toArray _name; - - _index = _name find (toArray "]" select 0); - - if (_index != -1) then { - for "_index" from 0 to _index do { - _name set [_index, -1]; - }; - _name = _name - [-1]; - _name = toString _name; - player setVariable ["ACE_Name", _name, true]; - }; -}; diff --git a/addons/respawn/XEH_PREP.hpp b/addons/respawn/XEH_PREP.hpp index ab8a3c6a1f..f9707c3181 100644 --- a/addons/respawn/XEH_PREP.hpp +++ b/addons/respawn/XEH_PREP.hpp @@ -9,7 +9,6 @@ PREP(module); PREP(moduleFriendlyFire); PREP(moduleRallypoint); PREP(moveRallypoint); -PREP(removeBody); PREP(restoreGear); PREP(showFriendlyFireMessage); PREP(teleportToRallypoint); diff --git a/addons/respawn/functions/fnc_removeBody.sqf b/addons/respawn/functions/fnc_removeBody.sqf deleted file mode 100644 index e9676696a1..0000000000 --- a/addons/respawn/functions/fnc_removeBody.sqf +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Author: bux578, commy2 - * Removes a given body. - * - * Arguments: - * 0: Body - * - * Return Value: - * None - * - * Example: - * [corpse] call ace_respawn_fnc_removeBody - * - * Public: No - */ -#include "script_component.hpp" - -params ["_body", "_forceRemove"]; - -private "_bodyRemoveTimer"; -_bodyRemoveTimer = [GVAR(BodyRemoveTimer) max 0, 2] select _forceRemove; // could be used for SpecOps missions. - -[{ - // hideBody takes ~20s till body is fully underground - // a better hideBody would make this more aesthetic - deleteVehicle _this; -}, _body, _bodyRemoveTimer] call EFUNC(common,waitAndExecute);