2015-02-21 20:11:03 +00:00
|
|
|
/*
|
|
|
|
* Author: NouberNou and CAA-Picard
|
|
|
|
* Render all available nearby interactions
|
|
|
|
*
|
|
|
|
* Argument:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-18 18:38:27 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-03-23 21:08:31 +00:00
|
|
|
BEGIN_COUNTER(fnc_render);
|
|
|
|
|
2015-01-18 18:38:27 +00:00
|
|
|
private ["_cursorPos1", "_cursorPos2", "_cursorVec", "_p1", "_p2", "_p", "_v", "_cp", "_forEachIndex", "_renderTargets", "_x", "_cursorScreenPos", "_closestDistance", "_closestSelection", "_pos", "_sPos", "_disSq", "_closest", "_cTime", "_delta", "_foundTarget", "_misMatch", "_hoverPath", "_i"];
|
|
|
|
_foundTarget = false;
|
|
|
|
_cursorPos1 = positionCameraToWorld [0, 0, 0];
|
|
|
|
_cursorPos2 = positionCameraToWorld [0, 0, 2];
|
2015-02-27 04:55:16 +00:00
|
|
|
|
2015-02-28 20:48:46 +00:00
|
|
|
GVAR(selfMenuScale) = (((worldToScreen (positionCameraToWorld [1,0,2])) select 0) -
|
|
|
|
((worldToScreen (positionCameraToWorld [0,0,2])) select 0)) / 0.6;
|
|
|
|
//systemChat format ["selfMenuScale: %1", GVAR(selfMenuScale)];
|
2015-01-18 18:38:27 +00:00
|
|
|
GVAR(currentOptions) = [];
|
2015-02-27 04:55:16 +00:00
|
|
|
|
2015-03-03 02:29:57 +00:00
|
|
|
private ["_actionsVarName","_classActions","_objectActions","_target","_player","_action","_actionData","_active"];
|
2015-02-28 20:48:46 +00:00
|
|
|
_player = ACE_player;
|
2015-02-27 04:55:16 +00:00
|
|
|
if (GVAR(keyDown)) then {
|
|
|
|
|
|
|
|
// Render all nearby interaction menus
|
2015-02-28 20:48:46 +00:00
|
|
|
#define MAXINTERACTOBJECTS 3
|
|
|
|
private ["_numInteractObjects","_numInteractions"];
|
|
|
|
_numInteractObjects = 0;
|
|
|
|
|
2015-02-27 04:55:16 +00:00
|
|
|
_nearestObjects = nearestObjects [(getPos ACE_player), ["All"], 15];
|
|
|
|
{
|
|
|
|
_target = _x;
|
|
|
|
|
2015-02-28 20:48:46 +00:00
|
|
|
_numInteractions = 0;
|
|
|
|
// Prevent interacting with yourself or your own vehicle
|
|
|
|
if (_target != ACE_player && {_target != vehicle ACE_player}) then {
|
|
|
|
|
|
|
|
// Iterate through object actions, find base level actions and render them if appropiate
|
|
|
|
_actionsVarName = format [QGVAR(Act_%1), typeOf _target];
|
2015-03-20 02:32:44 +00:00
|
|
|
GVAR(objectActionList) = _target getVariable [QGVAR(actions), []];
|
2015-02-28 20:48:46 +00:00
|
|
|
{
|
|
|
|
// Only render them directly if they are base level actions
|
2015-03-20 02:32:44 +00:00
|
|
|
if (count (_x select 1) == 0) then {
|
2015-02-28 20:48:46 +00:00
|
|
|
// Try to render the menu
|
2015-03-20 02:32:44 +00:00
|
|
|
_action = [_x,[]];
|
2015-03-03 02:29:57 +00:00
|
|
|
if ([_target, _action] call FUNC(renderBaseMenu)) then {
|
2015-02-28 20:48:46 +00:00
|
|
|
_numInteractions = _numInteractions + 1;
|
|
|
|
};
|
2015-02-27 04:55:16 +00:00
|
|
|
};
|
2015-03-20 02:32:44 +00:00
|
|
|
} forEach GVAR(objectActionList);
|
2015-02-28 20:48:46 +00:00
|
|
|
|
|
|
|
// Iterate through base level class actions and render them if appropiate
|
|
|
|
_classActions = missionNamespace getVariable [_actionsVarName, []];
|
|
|
|
{
|
2015-03-03 02:29:57 +00:00
|
|
|
_action = _x;
|
2015-02-28 20:48:46 +00:00
|
|
|
// Try to render the menu
|
2015-03-03 02:29:57 +00:00
|
|
|
if ([_target, _action] call FUNC(renderBaseMenu)) then {
|
2015-02-28 20:48:46 +00:00
|
|
|
_numInteractions = _numInteractions + 1;
|
|
|
|
};
|
|
|
|
} forEach _classActions;
|
2015-02-27 04:55:16 +00:00
|
|
|
|
2015-02-28 20:48:46 +00:00
|
|
|
// Limit the amount of objects the player can interact with
|
|
|
|
if (_numInteractions > 0) then {
|
|
|
|
_numInteractObjects = _numInteractObjects + 1;
|
2015-02-19 13:49:36 +00:00
|
|
|
};
|
2015-02-28 20:48:46 +00:00
|
|
|
};
|
|
|
|
if (_numInteractObjects >= MAXINTERACTOBJECTS) exitWith {};
|
2015-02-27 04:55:16 +00:00
|
|
|
|
|
|
|
} forEach _nearestObjects;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (GVAR(keyDownSelfAction)) then {
|
|
|
|
|
2015-02-19 13:49:36 +00:00
|
|
|
// Render only the self action menu
|
2015-02-27 04:55:16 +00:00
|
|
|
_target = vehicle ACE_player;
|
|
|
|
|
|
|
|
// Iterate through object actions, find base level actions and render them if appropiate
|
|
|
|
_actionsVarName = format [QGVAR(SelfAct_%1), typeOf _target];
|
2015-03-20 02:32:44 +00:00
|
|
|
GVAR(objectActionList) = _target getVariable [QGVAR(selfActions), []];
|
2015-02-28 20:48:46 +00:00
|
|
|
/*
|
2015-02-27 04:55:16 +00:00
|
|
|
{
|
2015-03-03 02:29:57 +00:00
|
|
|
_action = _x;
|
2015-02-27 04:55:16 +00:00
|
|
|
// Only render them directly if they are base level actions
|
2015-03-03 02:29:57 +00:00
|
|
|
if (count (_action select 7) == 1) then {
|
|
|
|
[_target, _action, 0, [180, 360]] call FUNC(renderMenu);
|
2015-02-27 04:55:16 +00:00
|
|
|
};
|
2015-03-20 02:32:44 +00:00
|
|
|
} forEach GVAR(objectActionList);
|
2015-02-28 20:48:46 +00:00
|
|
|
*/
|
2015-02-27 04:55:16 +00:00
|
|
|
|
|
|
|
// Iterate through base level class actions and render them if appropiate
|
|
|
|
_actionsVarName = format [QGVAR(SelfAct_%1), typeOf _target];
|
|
|
|
_classActions = missionNamespace getVariable [_actionsVarName, []];
|
|
|
|
{
|
2015-03-03 02:29:57 +00:00
|
|
|
_action = _x;
|
2015-02-27 04:55:16 +00:00
|
|
|
|
2015-03-23 21:08:31 +00:00
|
|
|
_pos = if !(visibleMap) then {
|
|
|
|
(((positionCameraToWorld [0, 0, 0]) call EFUNC(common,positionToASL)) vectorAdd GVAR(selfMenuOffset)) call EFUNC(common,ASLToPosition)
|
|
|
|
} else {
|
|
|
|
[0.5, 0.5]
|
|
|
|
};
|
2015-03-03 02:29:57 +00:00
|
|
|
[_target, _action, _pos] call FUNC(renderBaseMenu);
|
2015-02-27 04:55:16 +00:00
|
|
|
} forEach _classActions;
|
|
|
|
};
|
2015-01-18 18:38:27 +00:00
|
|
|
};
|
|
|
|
|
2015-02-27 04:55:16 +00:00
|
|
|
|
2015-02-18 21:58:06 +00:00
|
|
|
if(GVAR(keyDown) || GVAR(keyDownSelfAction)) then {
|
2015-02-28 20:48:46 +00:00
|
|
|
// Draw the red selector only when there's no cursor
|
|
|
|
if !(uiNamespace getVariable [QGVAR(cursorMenuOpened),false]) then {
|
2015-03-23 22:16:10 +00:00
|
|
|
[[0.5,0.5], "\a3\ui_f\data\IGUI\Cfg\Cursors\selected_ca.paa"] call FUNC(renderSelector);
|
2015-02-28 20:48:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_cursorScreenPos = [worldToScreen _cursorPos2, GVAR(cursorPos)] select (uiNamespace getVariable [QGVAR(cursorMenuOpened),false]);
|
2015-02-18 21:58:06 +00:00
|
|
|
|
2015-02-19 13:49:36 +00:00
|
|
|
_closestDistance = 1000000;
|
|
|
|
_closestSelection = -1;
|
|
|
|
{
|
2015-03-23 21:08:31 +00:00
|
|
|
_sPos = _x select 1;
|
|
|
|
_disSq = (((_cursorScreenPos select 0) - (_sPos select 0))^2 + ((_cursorScreenPos select 1) - (_sPos select 1))^2);
|
|
|
|
if(_disSq < 0.0125 && _disSq < _closestDistance) then {
|
|
|
|
_closestDistance = _disSq;
|
|
|
|
_closestSelection = _forEachIndex;
|
2015-02-19 13:49:36 +00:00
|
|
|
};
|
|
|
|
} forEach GVAR(currentOptions);
|
2015-02-18 21:58:06 +00:00
|
|
|
|
|
|
|
|
2015-02-27 04:55:16 +00:00
|
|
|
if(_closestSelection == -1) exitWith {};
|
2015-02-18 21:58:06 +00:00
|
|
|
|
2015-02-27 04:55:16 +00:00
|
|
|
_closest = GVAR(currentOptions) select _closestSelection;
|
2015-02-18 21:58:06 +00:00
|
|
|
|
2015-03-23 21:08:31 +00:00
|
|
|
_sPos = _closest select 1;
|
2015-02-27 04:55:16 +00:00
|
|
|
_cTime = diag_tickTime;
|
|
|
|
_delta = _cTime - GVAR(lastTime);
|
|
|
|
GVAR(lastTime) = _cTime;
|
2015-03-23 21:08:31 +00:00
|
|
|
|
|
|
|
GVAR(rotationAngle) = (GVAR(rotationAngle) + (270*_delta)) mod 360;
|
2015-03-23 22:16:10 +00:00
|
|
|
[_sPos, format [QUOTE(PATHTOF(ui\selector%1.paa)), floor (((abs GVAR(rotationAngle)) mod 90) / 6)]] call FUNC(renderSelector);
|
2015-03-23 21:08:31 +00:00
|
|
|
|
2015-02-27 04:55:16 +00:00
|
|
|
_foundTarget = true;
|
|
|
|
GVAR(actionSelected) = true;
|
2015-03-11 03:21:05 +00:00
|
|
|
GVAR(selectedAction) = (_closest select 0) select 1;
|
2015-03-17 03:37:28 +00:00
|
|
|
GVAR(selectedTarget) = (GVAR(selectedAction)) select 2;
|
2015-03-11 03:21:05 +00:00
|
|
|
|
2015-02-27 04:55:16 +00:00
|
|
|
_misMatch = false;
|
|
|
|
_hoverPath = (_closest select 2);
|
2015-03-03 02:29:57 +00:00
|
|
|
|
2015-02-27 04:55:16 +00:00
|
|
|
if((count GVAR(lastPath)) != (count _hoverPath)) then {
|
|
|
|
_misMatch = true;
|
|
|
|
} else {
|
|
|
|
{
|
2015-03-17 03:37:28 +00:00
|
|
|
if !(_x isEqualTo (_hoverPath select _forEachIndex)) exitWith {
|
2015-02-27 04:55:16 +00:00
|
|
|
_misMatch = true;
|
2015-02-19 13:49:36 +00:00
|
|
|
};
|
2015-02-27 04:55:16 +00:00
|
|
|
} forEach GVAR(lastPath);
|
|
|
|
};
|
|
|
|
|
2015-03-21 12:37:01 +00:00
|
|
|
if(_misMatch && {diag_tickTime-GVAR(expandedTime) > 0.25}) then {
|
2015-02-27 04:55:16 +00:00
|
|
|
GVAR(startHoverTime) = diag_tickTime;
|
2015-03-21 12:37:01 +00:00
|
|
|
GVAR(lastPath) = _hoverPath;
|
2015-02-27 04:55:16 +00:00
|
|
|
GVAR(expanded) = false;
|
|
|
|
} else {
|
|
|
|
if(!GVAR(expanded) && diag_tickTime-GVAR(startHoverTime) > 0.25) then {
|
|
|
|
GVAR(expanded) = true;
|
2015-03-21 12:37:01 +00:00
|
|
|
|
|
|
|
// Start the expanding menu animation only if the user is not going up the menu
|
|
|
|
if !([GVAR(menuDepthPath),GVAR(lastPath)] call FUNC(isSubPath)) then {
|
|
|
|
GVAR(expandedTime) = diag_tickTime;
|
|
|
|
};
|
2015-02-27 04:55:16 +00:00
|
|
|
GVAR(menuDepthPath) = +GVAR(lastPath);
|
2015-03-11 02:45:46 +00:00
|
|
|
|
2015-03-11 03:39:23 +00:00
|
|
|
// Execute the current action if it's run on hover
|
|
|
|
private "_runOnHover";
|
2015-03-20 02:32:44 +00:00
|
|
|
_runOnHover = ((GVAR(selectedAction) select 0) select 9) select 3;
|
2015-03-11 03:39:23 +00:00
|
|
|
if (_runOnHover) then {
|
2015-03-11 02:45:46 +00:00
|
|
|
this = GVAR(selectedTarget);
|
|
|
|
_player = ACE_Player;
|
|
|
|
_target = GVAR(selectedTarget);
|
2015-03-21 23:30:27 +00:00
|
|
|
|
|
|
|
// Clear the conditions caches
|
|
|
|
["clearConditionCaches", []] call EFUNC(common,localEvent);
|
|
|
|
|
|
|
|
// Check the action conditions
|
|
|
|
_actionData = GVAR(selectedAction) select 0;
|
|
|
|
if ([_target, _player, _actionData select 6] call (_actionData select 4)) then {
|
2015-03-21 23:37:01 +00:00
|
|
|
// Call the statement
|
2015-03-21 23:30:27 +00:00
|
|
|
[_target, _player, _actionData select 6] call (_actionData select 3);
|
2015-03-21 23:37:01 +00:00
|
|
|
|
|
|
|
// Clear the conditions caches again if the action was performed
|
|
|
|
["clearConditionCaches", []] call EFUNC(common,localEvent);
|
2015-03-21 23:30:27 +00:00
|
|
|
};
|
2015-03-11 02:45:46 +00:00
|
|
|
};
|
2015-02-19 13:49:36 +00:00
|
|
|
};
|
|
|
|
};
|
2015-01-18 18:38:27 +00:00
|
|
|
};
|
2015-02-27 04:55:16 +00:00
|
|
|
|
2015-01-18 18:38:27 +00:00
|
|
|
if(!_foundTarget && GVAR(actionSelected)) then {
|
2015-02-19 13:49:36 +00:00
|
|
|
GVAR(actionSelected) = false;
|
|
|
|
GVAR(expanded) = false;
|
|
|
|
GVAR(lastPath) = [];
|
2015-01-18 18:38:27 +00:00
|
|
|
};
|
|
|
|
for "_i" from GVAR(iconCount) to (count GVAR(iconCtrls))-1 do {
|
2015-02-19 13:49:36 +00:00
|
|
|
ctrlDelete (GVAR(iconCtrls) select _i);
|
2015-01-18 18:38:27 +00:00
|
|
|
};
|
|
|
|
GVAR(iconCtrls) resize GVAR(iconCount);
|
|
|
|
GVAR(iconCount) = 0;
|
2015-03-23 21:08:31 +00:00
|
|
|
|
|
|
|
END_COUNTER(fnc_render);
|