ACE3/addons/interact_menu/functions/fnc_userActions_getHouseActions.sqf

156 lines
6.4 KiB
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: PabstMirror
2015-05-03 07:06:49 +00:00
* Scans the buidling type for UserActions and Ladder mount points.
*
* Arguments:
* 0: Building Classname <STRING>
*
* Return Value:
* [[Array of MemPoints], [Array Of Actions]] <ARRAY>
*
2016-01-08 04:43:37 +00:00
* Example:
* ["Land_i_House_Big_01_V1_F"] call ace_interact_menu_fnc_userActions_getHouseActions
*
* Public: No
*/
params ["_typeOfBuilding"];
2016-01-08 04:43:37 +00:00
private _searchIndex = GVAR(cachedBuildingTypes) find _typeOfBuilding;
2015-05-04 19:06:33 +00:00
if (_searchIndex != -1) exitWith {GVAR(cachedBuildingActionPairs) select _searchIndex};
2016-01-08 04:43:37 +00:00
private _memPoints = [];
private _memPointsActions = [];
2015-05-03 05:33:20 +00:00
//Get the offset for a memory point:
2016-01-08 04:43:37 +00:00
private _fnc_getMemPointOffset = {
params ["_memoryPoint"];
private _memPointIndex = _memPoints find _memoryPoint;
private _actionOffset = [0,0,0];
2015-05-03 05:33:20 +00:00
if (_memPointIndex == -1) then {
_memPoints pushBack _memoryPoint;
_memPointsActions pushBack [];
} else {
2015-05-29 18:00:04 +00:00
_actionOffset set [2, 0.0254 * (count (_memPointsActions select _memPointIndex))];
2015-05-03 05:33:20 +00:00
};
_actionOffset
};
2015-05-03 05:33:20 +00:00
// Add UserActions for the building:
2016-01-08 04:43:37 +00:00
private _fnc_userAction_Statement = {
params ["_target", "_player", "_variable"];
_variable params ["_actionStatement", "_actionCondition"];
// Use global variable this for action condition and action code
private _savedThis = this;
this = _target getVariable [QGVAR(building), objNull];
call _actionStatement;
// Restore this variable
this = _savedThis;
};
2016-01-08 04:43:37 +00:00
private _fnc_userAction_Condition = {
params ["_target", "_player", "_variable"];
_variable params ["_actionStatement", "_actionCondition"];
private _building = _target getVariable [QGVAR(building), objNull];
if (isNull _building) exitWith {false};
// Use global variable this for action condition and action code
private _savedThis = this;
this = _target getVariable [QGVAR(building), objNull];
private _result = call _actionCondition;
// Restore this variable
this = _savedThis;
_result
};
2016-01-08 04:43:37 +00:00
private _configPath = configFile >> "CfgVehicles" >> _typeOfBuilding >> "UserActions";
for "_index" from 0 to ((count _configPath) - 1) do {
2016-01-08 04:43:37 +00:00
private _actionPath = _configPath select _index;
2016-01-08 04:43:37 +00:00
private _actionDisplayName = getText (_actionPath >> "displayName");
private _actionDisplayNameDefault = getText (_actionPath >> "displayNameDefault");
private _actionPosition = getText (_actionPath >> "position");
private _actionCondition = getText (_actionPath >> "condition");
private _actionStatement = getText (_actionPath >> "statement");
private _actionMaxDistance = getNumber (_actionPath >> "radius");
if (_actionDisplayName == "") then {_actionDisplayName = configName _actionPath;};
if (_actionPosition == "") then {ERROR("Bad Position");};
if (_actionCondition == "") then {_actionCondition = "true";};
if (_actionStatement == "") then {ERROR("No Statement");};
_actionStatement = compile _actionStatement;
_actionCondition = compile _actionCondition;
2015-05-04 19:06:33 +00:00
_actionMaxDistance = _actionMaxDistance + 0.1; //increase range slightly
private _iconImage = ((_actionDisplayNameDefault regexFind ["[\w\-\\\/]+.paa/gi", 0]) param [0, []]) param [0, []] param [0, ""];
2015-05-04 19:06:33 +00:00
2016-01-08 04:43:37 +00:00
private _actionOffset = [_actionPosition] call _fnc_getMemPointOffset;
private _memPointIndex = _memPoints find _actionPosition;
private _action = [(configName _actionPath), _actionDisplayName, _iconImage, _fnc_userAction_Statement, _fnc_userAction_Condition, {}, [_actionStatement, _actionCondition], _actionOffset, _actionMaxDistance, [false,false,false,false,true]] call EFUNC(interact_menu,createAction);
(_memPointsActions select _memPointIndex) pushBack _action;
2015-05-03 05:33:20 +00:00
};
2015-05-03 05:33:20 +00:00
// Add Ladder Actions for the building:
2016-01-08 04:43:37 +00:00
private _fnc_ladder_ladderUp = {
params ["_target", "_player", "_variable"];
_variable params ["_ladderIndex"];
2016-01-08 04:43:37 +00:00
private _building = _target getVariable [QGVAR(building), objNull];
2015-05-29 18:00:04 +00:00
TRACE_3("Ladder Action - UP",_player,_building,_ladderIndex);
2015-05-03 07:06:49 +00:00
_player action ["LadderUp", _building, _ladderIndex, 0];
2015-05-03 05:33:20 +00:00
};
2016-01-08 04:43:37 +00:00
private _fnc_ladder_ladderDown = {
params ["_target", "_player", "_variable"];
_variable params ["_ladderIndex"];
2016-01-08 04:43:37 +00:00
private _building = _target getVariable [QGVAR(building), objNull];
2015-05-29 18:00:04 +00:00
TRACE_3("Ladder Action - Down",_player,_building,_ladderIndex);
_player action ["LadderDown", _building, _ladderIndex, 1];
2015-05-03 07:06:49 +00:00
};
2016-01-08 04:43:37 +00:00
private _fnc_ladder_conditional = {
params ["_target", "_player"];
2015-05-29 18:00:04 +00:00
//(Check distance < 2) and (Don't show actions if on a ladder)
((_target distance _player) < 2) && {((getNumber (configFile >> "CfgMovesMaleSdr" >> "States" >> (animationState _player) >> "onLadder")) == 0)}
};
2016-01-08 04:43:37 +00:00
private _ladders = getArray (configFile >> "CfgVehicles" >> _typeOfBuilding >> "ladders");
2015-05-03 05:33:20 +00:00
{
_x params ["_ladderBottomMemPoint", "_ladderTopMemPoint"];
2015-05-03 05:33:20 +00:00
2016-01-08 04:43:37 +00:00
private _actionMaxDistance = 3; //interact_menu will check head -> target's offset; leave this high and do a precice distance check in condition
2015-05-03 05:33:20 +00:00
2016-01-08 04:43:37 +00:00
private _actionDisplayName = localize "str_action_ladderup";
private _iconImage = "\A3\ui_f\data\igui\cfg\actions\ladderup_ca.paa";
2015-05-03 05:33:20 +00:00
//Ladder Up Action:
2016-01-08 04:43:37 +00:00
private _actionOffset = [_ladderBottomMemPoint] call _fnc_getMemPointOffset;
2015-05-03 05:33:20 +00:00
_actionOffset = _actionOffset vectorAdd [0,0,1];
2016-01-08 04:43:37 +00:00
private _memPointIndex = _memPoints find _ladderBottomMemPoint;
private _action = [format ["LadderUp_%1", _forEachIndex], _actionDisplayName, _iconImage, _fnc_ladder_ladderUp, _fnc_ladder_conditional, {}, [_forEachIndex], _actionOffset, _actionMaxDistance, [false,false,false,false,true]] call EFUNC(interact_menu,createAction);
2015-05-03 05:33:20 +00:00
(_memPointsActions select _memPointIndex) pushBack _action;
2015-05-03 07:06:49 +00:00
_actionDisplayName = localize "str_action_ladderdown";
2015-05-03 05:33:20 +00:00
_iconImage = "\A3\ui_f\data\igui\cfg\actions\ladderdown_ca.paa";
//Ladder Down Action:
_actionOffset = [_ladderTopMemPoint] call _fnc_getMemPointOffset;
2015-05-03 07:06:49 +00:00
_actionOffset = _actionOffset vectorAdd [0,0,0.25];
2015-05-03 05:33:20 +00:00
_memPointIndex = _memPoints find _ladderTopMemPoint;
2015-05-03 07:06:49 +00:00
_action = [format ["LadderDown_%1", _forEachIndex], _actionDisplayName, _iconImage, _fnc_ladder_ladderDown, _fnc_ladder_conditional, {}, [_forEachIndex], _actionOffset, _actionMaxDistance, [false,false,false,false,true]] call EFUNC(interact_menu,createAction);
2015-05-03 05:33:20 +00:00
(_memPointsActions select _memPointIndex) pushBack _action;
} forEach _ladders;
2015-05-04 19:06:33 +00:00
GVAR(cachedBuildingTypes) pushBack _typeOfBuilding;
GVAR(cachedBuildingActionPairs) pushBack [_memPoints, _memPointsActions];
2015-05-03 05:33:20 +00:00
[_memPoints, _memPointsActions]