2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-05-18 19:43:02 +00:00
|
|
|
/*
|
|
|
|
* Author: SilentSpike
|
2015-05-18 21:50:36 +00:00
|
|
|
* Contextually removes addons (given in ACE_Curator) from zeus based on their required addon(s)
|
|
|
|
*
|
|
|
|
* ACE_Curator format:
|
|
|
|
* ModuleAddon = "RequiredAddon";
|
|
|
|
* OR
|
|
|
|
* ModuleAddon[] = {"RequiredAddon1","RequiredAddon2",...}
|
2015-05-18 19:43:02 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: The zeus logic <LOGIC>
|
|
|
|
* 1: The zeus player <UNIT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
2016-11-15 12:07:48 +00:00
|
|
|
* None
|
2015-05-18 19:43:02 +00:00
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
|
|
|
* [LOGIC, bob] call ace_zeus_fnc_handleZeusUnitAssigned
|
|
|
|
*
|
2015-05-18 19:43:02 +00:00
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2015-05-18 21:50:36 +00:00
|
|
|
if !(isClass (configFile >> "ACE_Curator")) exitWith { ERROR("The ACE_Curator class does not exist") };
|
|
|
|
|
2015-08-04 22:16:23 +00:00
|
|
|
params ["_logic"];
|
2015-05-18 21:50:36 +00:00
|
|
|
|
2017-12-10 18:29:38 +00:00
|
|
|
private _removeAddons = [];
|
|
|
|
{
|
|
|
|
private _addon = _x;
|
|
|
|
if (isArray _addon) then {
|
2015-05-18 21:50:36 +00:00
|
|
|
{
|
|
|
|
if !(isClass (configFile >> "CfgPatches" >> _x)) exitWith {
|
2017-12-10 18:29:38 +00:00
|
|
|
_removeAddons pushBack (configName _addon);
|
2015-05-18 21:50:36 +00:00
|
|
|
};
|
2017-12-10 18:29:38 +00:00
|
|
|
} forEach (getArray _addon);
|
2015-05-18 21:50:36 +00:00
|
|
|
};
|
|
|
|
|
2017-12-10 18:29:38 +00:00
|
|
|
if (isText _addon) then {
|
|
|
|
if !(isClass (configFile >> "CfgPatches" >> getText _addon)) then {
|
|
|
|
_removeAddons pushBack (configName _addon);
|
2015-05-18 21:50:36 +00:00
|
|
|
};
|
|
|
|
};
|
2017-12-10 18:29:38 +00:00
|
|
|
} forEach configProperties [configFile >> "ACE_Curator"];
|
2015-05-18 19:43:02 +00:00
|
|
|
|
|
|
|
_logic removeCuratorAddons _removeAddons;
|