Epoch/Sources/epoch_code/gui/scripts/dynamenu/Epoch_dynamicMenu.sqf

120 lines
2.9 KiB
Plaintext
Raw Normal View History

2015-10-28 15:16:00 +00:00
disableSerialization;
2015-12-07 16:24:52 +00:00
//_in = _this param [0, "", [""]];
_in = [_this, 0, "", [""]] call BIS_fnc_param;
2015-10-28 15:16:00 +00:00
_display = findDisplay 66600;
_cfg = "CfgActionMenu" call EPOCH_returnConfig;
_arr = [];
_buttonSettings = [];
/** Variable Defines **/
{
call compile (format ["%1 = %2;",configName _x,getText _x]);
} count (configProperties [(_cfg >> "variableDefines"),"true",false]);
_hasTarget = !(dyna_cursorTarget isEqualTo objNull);
if (isNull _display && dialog) exitWith {call Epoch_dynamicMenuCleanup; false};
if (isNull _display) then {
if (_hasTarget) then {
createDialog "rmx_dynamenu";
} else {
findDisplay 46 createDisplay "rmx_dynamenu";
};
};
2015-11-01 07:28:48 +00:00
2015-10-28 15:16:00 +00:00
_selfOrTarget = if !(_hasTarget) then {"self"} else {"target"};
_checkConfigs = {
_config = switch (_in) do {
case "build_upgrade":
{
_cfg = "CfgBaseBuilding" call EPOCH_returnConfig;
(_cfg >> dyna_cursorTargetType)
};
case "":
{
(_cfg >> _selfOrTarget)
};
default
{
_c = format ["_cfg >> '%1'",_selfOrTarget];
_arr = _this;
{
_c = _c + (format [" >> '%1'",_x]);
} forEach _arr;
2015-11-01 07:28:48 +00:00
2015-10-28 15:16:00 +00:00
(call compile _c)
};
};
switch (_in) do {
case "build_upgrade":
{
if !(isClass _config) exitWith {_in = "";};
2015-11-01 07:28:48 +00:00
2015-10-28 15:16:00 +00:00
{
_dName = getText(configfile >> "CfgVehicles" >> (_x select 0) >> "DisplayName");
_tTip = "";
_icon = "";
{
if !(typeName _x isEqualTo "ARRAY") then {_x = [_x, 1]};
_c = configfile >> "CfgMagazines" >> (_x select 0);
_tTip = _tTip + format ["[%1 x %2] ", _x select 1, getText(_c >> "DisplayName")];
if (_icon isEqualTo "") then {_icon = getText (_c >> "picture")};
} forEach (_x select 1);
2015-11-01 07:28:48 +00:00
2015-10-28 15:16:00 +00:00
_tooltip = format ["%1 >> %2 ",_dName,_tTip];
_action = format ["[dyna_cursorTarget,%1] call EPOCH_upgradeBUILDv2; true call Epoch_dynamicMenuCleanup;",_forEachIndex];
2015-11-01 07:28:48 +00:00
2015-10-28 15:16:00 +00:00
_buttonSettings pushBack [
_icon,
_tooltip,
_action
];
2015-11-01 07:28:48 +00:00
2015-10-28 15:16:00 +00:00
} forEach (getArray (_config >> "upgradeBuilding"));
2015-11-01 07:28:48 +00:00
2015-10-28 15:16:00 +00:00
};
default
{
_configs = "true" configClasses _config;
{
if (call compile (getText(_x >> "condition"))) then {
2015-11-01 07:28:48 +00:00
2015-10-28 15:16:00 +00:00
if (_selfOrTarget isEqualTo "self" || dyna_distance) then {
2015-11-01 07:28:48 +00:00
2015-10-28 15:16:00 +00:00
_subclasses = configProperties [_x, "isClass _x",true];
2015-11-01 07:28:48 +00:00
2015-10-28 15:16:00 +00:00
_action = if (_subclasses isEqualTo []) then {
format ["%1; true call Epoch_dynamicMenuCleanup;",getText(_x >> "action")]
} else {
format ["%2 %1 call Epoch_dynamicMenu;",_arr + [(configName _x)],getText(_x >> "action")]
};
_buttonSettings pushBack [
getText(_x >> "icon"),
getText(_x >> "tooltip"),
_action
];
};
};
} forEach _configs;
};
};
};
call _checkConfigs;
if (_buttonSettings isEqualTo []) then {_selfOrTarget = "self"; call _checkConfigs;};
_entries = count _buttonSettings;
if !(_entries <= 0) then {
[_entries, _buttonSettings] call epoch_dynamicMenuPopulate;
} else {
true call Epoch_dynamicMenuCleanup;
};
true