ACE3/addons/interact_menu/functions/fnc_compileMenuSelfAction.sqf

136 lines
5.0 KiB
Plaintext
Raw Normal View History

2015-02-21 20:11:03 +00:00
/*
2015-03-24 04:18:00 +00:00
* Author: NouberNou and esteldunedain
* Compile the self action menu from config for an object's class
2015-02-21 20:11:03 +00:00
*
* Argument:
* 0: Object or class name <OBJECT> or <STRING>
2015-02-21 20:11:03 +00:00
*
* Return value:
* None
*
* Public: No
*/
2015-02-18 21:58:06 +00:00
#include "script_component.hpp";
params ["_target"];
2015-02-18 21:58:06 +00:00
2016-01-08 04:43:37 +00:00
private _objectType = _target;
private _isMan = _target isKindOf "CAManBase";
if (_target isEqualType objNull) then {
_objectType = typeOf _target;
};
2016-01-08 04:43:37 +00:00
private _actionsVarName = format [QGVAR(SelfAct_%1), _objectType];
2015-02-18 21:58:06 +00:00
// Exit if the action menu is already compiled for this class
if !(isNil {missionNamespace getVariable [_actionsVarName, nil]}) exitWith {};
2015-02-18 21:58:06 +00:00
2016-01-08 04:43:37 +00:00
private _recurseFnc = {
params ["_actionsCfg"];
2016-01-08 04:43:37 +00:00
private _actions = [];
{
2016-01-08 04:43:37 +00:00
private _entryCfg = _x;
2015-02-18 21:58:06 +00:00
if(isClass _entryCfg) then {
2016-01-08 04:43:37 +00:00
private _displayName = getText (_entryCfg >> "displayName");
2016-01-08 04:43:37 +00:00
private _icon = getText (_entryCfg >> "icon");
private _statement = compile (getText (_entryCfg >> "statement"));
2015-02-18 21:58:06 +00:00
2016-01-08 04:43:37 +00:00
private _condition = getText (_entryCfg >> "condition");
2015-02-18 21:58:06 +00:00
if (_condition == "") then {_condition = "true"};
// Add canInteract (including exceptions) and canInteractWith to condition
_condition = _condition + format [QUOTE( && {[ARR_3(ACE_player, _target, %1)] call EFUNC(common,canInteractWith)} ), getArray (_entryCfg >> "exceptions")];
2016-01-08 04:43:37 +00:00
private _insertChildren = compile (getText (_entryCfg >> "insertChildren"));
private _modifierFunction = compile (getText (_entryCfg >> "modifierFunction"));
2015-02-18 21:58:06 +00:00
2016-01-08 04:43:37 +00:00
private _showDisabled = (getNumber (_entryCfg >> "showDisabled")) > 0;
private _enableInside = (getNumber (_entryCfg >> "enableInside")) > 0;
private _canCollapse = (getNumber (_entryCfg >> "canCollapse")) > 0;
private _runOnHover = true;
if (isText (_entryCfg >> "runOnHover")) then {
_runOnHover = compile getText (_entryCfg >> "runOnHover");
} else {
_runOnHover = (getNumber (_entryCfg >> "runOnHover")) > 0;
};
2015-02-18 21:58:06 +00:00
_condition = compile _condition;
2016-01-08 04:43:37 +00:00
private _children = [_entryCfg] call _recurseFnc;
2016-01-08 04:43:37 +00:00
private _entry = [
[
configName _entryCfg,
_displayName,
_icon,
_statement,
_condition,
_insertChildren,
[],
[0,0,0],
10, //distace
[_showDisabled,_enableInside,_canCollapse,_runOnHover, true],
_modifierFunction
],
_children
2015-02-18 21:58:06 +00:00
];
_actions pushBack _entry;
};
2016-01-08 04:43:37 +00:00
nil
} count (configProperties [_actionsCfg, "isClass _x", true]);
2015-02-18 21:58:06 +00:00
_actions
};
2016-01-08 04:43:37 +00:00
private _actionsCfg = configFile >> "CfgVehicles" >> _objectType >> "ACE_SelfActions";
2015-02-18 21:58:06 +00:00
2016-01-08 04:43:37 +00:00
private _baseDisplayName = "";
private _baseIcon = "";
2015-04-01 04:56:41 +00:00
if (_objectType isKindOf "CAManBase") then {
2015-05-28 19:59:04 +00:00
_baseDisplayName = localize LSTRING(SelfActionsRoot);
2015-04-01 04:56:41 +00:00
_baseIcon = "\a3\ui_f\data\IGUI\Cfg\Actions\eject_ca.paa";
} else {
_baseDisplayName = getText (configFile >> "CfgVehicles" >> _objectType >> "displayName");
//Alt would be to just use a static text, if veh names end up being too long:
2015-05-28 19:59:04 +00:00
// _baseDisplayName = localize LSTRING(VehicleActionsRoot);
//Pull the icon from the vehicle's config:
2015-04-01 04:56:41 +00:00
_baseIcon = getText (configFile >> "CfgVehicles" >> _objectType >> "Icon");
//icon could be a CfgVehicleIcons
if isText (configFile >> "CfgVehicleIcons" >> _baseIcon) then {
_baseIcon = getText (configFile >> "CfgVehicleIcons" >> _baseIcon);
};
2015-04-01 04:56:41 +00:00
};
// If the classname inherits from CAManBase, just copy it's menu without recompiling a new one
2016-01-08 04:43:37 +00:00
private _actions = if (_isMan && {_objectType != "CaManBase"}) then {
TRACE_1("badbeef Copying ACE_SelfActions from CAManBase",_objectType);
+ (missionNamespace getVariable QGVAR(SelfAct_CAManBase))
} else {
2016-01-08 04:43:37 +00:00
TRACE_1("Building ACE_SelfActions",_objectType);
// Create a master action to base on self action
[
[
[
"ACE_SelfActions",
_baseDisplayName,
_baseIcon,
{
// Dummy statement so it's not collapsed when there's no available actions
true
},
{[ACE_player, _target, ["isNotInside","isNotDragging", "isNotCarrying", "isNotSwimming", "notOnMap", "isNotEscorting", "isNotSurrendering", "isNotSitting", "isNotOnLadder"]] call EFUNC(common,canInteractWith)},
{},
{},
"Spine3",
10,
2016-01-08 04:43:37 +00:00
[false,true,false,false,false]
],
[_actionsCfg] call _recurseFnc
]
]
};
2015-02-18 21:58:06 +00:00
missionNamespace setVariable [_actionsVarName, _actions];