2015-08-18 21:18:32 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2016-02-19 16:24:32 +00:00
|
|
|
if (isServer) then {
|
2018-05-30 22:39:28 +00:00
|
|
|
addMissionEventHandler ["HandleDisconnect", {call FUNC(handleDisconnect)}];
|
2016-02-19 16:24:32 +00:00
|
|
|
};
|
2016-03-05 16:41:47 +00:00
|
|
|
|
2017-09-10 19:43:03 +00:00
|
|
|
[QGVAR(initSource), LINKFUNC(initSource)] call CBA_fnc_addEventHandler;
|
|
|
|
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
|
|
|
|
["isNotRefueling", {!((_this select 0) getVariable [QGVAR(isRefueling), false])}] call EFUNC(common,addCanInteractWithCondition);
|
|
|
|
|
|
|
|
["MouseButtonDown", LINKFUNC(onMouseButtonDown)] call CBA_fnc_addDisplayHandler;
|
2016-07-03 20:17:00 +00:00
|
|
|
|
2017-09-10 19:43:03 +00:00
|
|
|
GVAR(mainAction) = [
|
|
|
|
QGVAR(Refuel),
|
|
|
|
localize LSTRING(Refuel),
|
|
|
|
QPATHTOF(ui\icon_refuel_interact.paa),
|
|
|
|
{},
|
2016-12-14 18:48:00 +00:00
|
|
|
{
|
2017-09-10 19:43:03 +00:00
|
|
|
alive _target
|
|
|
|
&& {[_player, _target, [INTERACT_EXCEPTIONS]] call EFUNC(common,canInteractWith)}
|
|
|
|
&& {REFUEL_DISABLED_FUEL != [_target] call FUNC(getFuel)}
|
|
|
|
},
|
|
|
|
{}, [], [0,0,0],
|
|
|
|
REFUEL_ACTION_DISTANCE
|
|
|
|
] call EFUNC(interact_menu,createAction);
|
|
|
|
|
|
|
|
GVAR(actions) = [
|
|
|
|
[QGVAR(TakeNozzle),
|
|
|
|
localize LSTRING(TakeNozzle),
|
|
|
|
QPATHTOF(ui\icon_refuel_interact.paa),
|
|
|
|
{[_player, _target] call FUNC(TakeNozzle)},
|
|
|
|
{[_player, _target] call FUNC(canTakeNozzle)},
|
|
|
|
{}, [], [0,0,0],
|
|
|
|
REFUEL_ACTION_DISTANCE
|
|
|
|
] call EFUNC(interact_menu,createAction),
|
|
|
|
[QGVAR(CheckFuelCounter),
|
|
|
|
localize LSTRING(CheckFuelCounter),
|
|
|
|
QPATHTOF(ui\icon_refuel_interact.paa),
|
|
|
|
{[_player, _target] call FUNC(readFuelCounter)},
|
|
|
|
{true},
|
|
|
|
{}, [], [0,0,0],
|
|
|
|
REFUEL_ACTION_DISTANCE
|
|
|
|
] call EFUNC(interact_menu,createAction),
|
|
|
|
[QGVAR(CheckFuel),
|
|
|
|
localize LSTRING(CheckFuel),
|
|
|
|
QPATHTOF(ui\icon_refuel_interact.paa),
|
|
|
|
{[_player, _target] call FUNC(checkFuel)},
|
|
|
|
{[_player, _target] call FUNC(canCheckFuel)},
|
|
|
|
{}, [], [0,0,0],
|
|
|
|
REFUEL_ACTION_DISTANCE
|
|
|
|
] call EFUNC(interact_menu,createAction),
|
|
|
|
[QGVAR(Return),
|
|
|
|
localize LSTRING(Return),
|
|
|
|
QPATHTOF(ui\icon_refuel_interact.paa),
|
|
|
|
{[_player, _target] call FUNC(returnNozzle)},
|
|
|
|
{[_player, _target] call FUNC(canReturnNozzle)},
|
|
|
|
{}, [], [0,0,0],
|
|
|
|
REFUEL_ACTION_DISTANCE
|
|
|
|
] call EFUNC(interact_menu,createAction)
|
|
|
|
];
|
|
|
|
|
|
|
|
// init menu for config refuel vehicles
|
2019-02-16 23:05:24 +00:00
|
|
|
private _cacheRefuelClasses = call (uiNamespace getVariable [QGVAR(cacheRefuelClasses), {[[],[]]}]);
|
|
|
|
_cacheRefuelClasses params [["_staticClasses", [], [[]]], ["_dynamicClasses", [], [[]]]];
|
|
|
|
|
2017-09-10 19:43:03 +00:00
|
|
|
{
|
2019-02-16 23:05:24 +00:00
|
|
|
private _className = _x;
|
|
|
|
[_className, 0, ["ACE_MainActions"], GVAR(mainAction)] call EFUNC(interact_menu,addActionToClass);
|
|
|
|
{
|
|
|
|
[_className, 0, ["ACE_MainActions", QGVAR(Refuel)], _x] call EFUNC(interact_menu,addActionToClass);
|
|
|
|
} forEach GVAR(actions);
|
|
|
|
TRACE_1("add menu to static",_x);
|
|
|
|
} forEach _staticClasses;
|
2016-12-14 18:48:00 +00:00
|
|
|
|
2019-02-16 23:05:24 +00:00
|
|
|
{
|
|
|
|
private _className = _x;
|
|
|
|
[_className, 0, ["ACE_MainActions"], GVAR(mainAction), true] call EFUNC(interact_menu,addActionToClass);
|
|
|
|
{
|
|
|
|
[_className, 0, ["ACE_MainActions", QGVAR(Refuel)], _x, true] call EFUNC(interact_menu,addActionToClass);
|
|
|
|
} forEach GVAR(actions);
|
|
|
|
TRACE_1("add menu to dynamic",_x);
|
|
|
|
} forEach _dynamicClasses;
|
2016-07-03 20:17:00 +00:00
|
|
|
|
2017-07-10 19:41:37 +00:00
|
|
|
#ifdef DRAW_HOOKS_POS
|
|
|
|
addMissionEventHandler ["Draw3D", {
|
2017-09-10 19:43:03 +00:00
|
|
|
private _source = cursorObject;
|
2021-02-18 18:58:08 +00:00
|
|
|
private _cfgPos = getArray (configOf _source >> QGVAR(hooks));
|
2017-09-10 19:43:03 +00:00
|
|
|
private _dynPos = _source getVariable [QGVAR(hooks), []];
|
2017-07-10 19:41:37 +00:00
|
|
|
{
|
2017-09-10 19:43:03 +00:00
|
|
|
drawIcon3D ["\a3\ui_f\data\gui\cfg\hints\icon_text\group_1_ca.paa", [1,1,1,1], _source modelToWorldVisual _x, 1, 1, 0, format ["Hook %1", _forEachIndex]];
|
2017-07-10 19:41:37 +00:00
|
|
|
} forEach ([_dynPos, _cfgPos] select (_dynPos isEqualTo []));
|
|
|
|
}];
|
|
|
|
#endif
|