2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-08-21 20:43:45 +00:00
|
|
|
/*
|
|
|
|
* Author: GitHawk
|
|
|
|
* Makes an object into a jerry can.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Target <OBJECT>
|
|
|
|
* 1: Fuel amount (in liters) <NUMBER>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [can] call ace_refuel_fnc_makeJerryCan
|
|
|
|
*
|
2016-02-25 09:08:20 +00:00
|
|
|
* Public: Yes
|
2015-08-21 20:43:45 +00:00
|
|
|
*/
|
|
|
|
|
2024-05-23 19:47:19 +00:00
|
|
|
// Only run this after the settings are initialized
|
|
|
|
if !(EGVAR(common,settingsInitFinished)) exitWith {
|
|
|
|
EGVAR(common,runAtSettingsInitialized) pushBack [FUNC(makeJerryCan), _this];
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!GVAR(enabled)) exitWith {};
|
|
|
|
|
2016-02-02 14:03:06 +00:00
|
|
|
params [["_target", objNull, [objNull]], ["_fuelAmount", 20, [0]]];
|
2015-08-21 20:43:45 +00:00
|
|
|
|
|
|
|
if (isNull _target ||
|
2015-12-21 16:54:52 +00:00
|
|
|
{_target isKindOf "AllVehicles"} ||
|
|
|
|
{_target getVariable [QGVAR(jerryCan), false]}) exitWith {};
|
2015-08-21 20:43:45 +00:00
|
|
|
|
2016-10-27 20:19:55 +00:00
|
|
|
_target setVariable [QGVAR(jerryCan), true];
|
|
|
|
_target setVariable [QGVAR(source), _target];
|
2023-02-17 02:06:11 +00:00
|
|
|
_target setVariable [QGVAR(capacity), _fuelAmount];
|
2023-02-18 02:49:57 +00:00
|
|
|
|
|
|
|
if (isServer) then {
|
|
|
|
[_target, _fuelAmount] call FUNC(setFuel); // has global effects
|
2023-02-18 04:19:31 +00:00
|
|
|
[QGVAR(jerryCanInitalized), [_target]] call CBA_fnc_globalevent;
|
2023-02-18 02:49:57 +00:00
|
|
|
};
|
2023-02-17 02:06:11 +00:00
|
|
|
|
2015-12-21 16:54:52 +00:00
|
|
|
// Main Action
|
2016-02-02 14:03:06 +00:00
|
|
|
private _action = [QGVAR(Refuel),
|
2015-12-21 16:54:52 +00:00
|
|
|
localize LSTRING(Refuel),
|
2016-04-08 18:34:50 +00:00
|
|
|
QPATHTOF(ui\icon_refuel_interact.paa),
|
2015-12-21 16:54:52 +00:00
|
|
|
{},
|
|
|
|
{true},
|
|
|
|
{},
|
|
|
|
[],
|
|
|
|
[0, 0, 0],
|
2023-12-07 03:20:47 +00:00
|
|
|
REFUEL_ACTION_DISTANCE
|
|
|
|
] call EFUNC(interact_menu,createAction);
|
2017-05-05 18:10:50 +00:00
|
|
|
[_target, 0, ["ACE_MainActions"], _action] call EFUNC(interact_menu,addActionToObject);
|
2015-12-21 16:54:52 +00:00
|
|
|
|
2015-08-21 20:43:45 +00:00
|
|
|
// Add pickup
|
|
|
|
_action = [QGVAR(PickUpNozzle),
|
2023-11-10 22:59:15 +00:00
|
|
|
localize LSTRING(TakeFuelCanister),
|
2016-04-08 18:34:50 +00:00
|
|
|
QPATHTOF(ui\icon_refuel_interact.paa),
|
2017-10-01 18:38:11 +00:00
|
|
|
{[_player, _target] call FUNC(takeNozzle)},
|
2015-08-21 20:43:45 +00:00
|
|
|
{[_player, _target] call FUNC(canTakeNozzle)},
|
|
|
|
{},
|
|
|
|
[],
|
|
|
|
[0, 0, 0],
|
2023-12-07 03:20:47 +00:00
|
|
|
REFUEL_ACTION_DISTANCE
|
|
|
|
] call EFUNC(interact_menu,createAction);
|
2017-05-05 18:10:50 +00:00
|
|
|
[_target, 0, ["ACE_MainActions", QGVAR(Refuel)], _action] call EFUNC(interact_menu,addActionToObject);
|
2015-08-21 20:43:45 +00:00
|
|
|
|
|
|
|
// Add turnOn
|
|
|
|
_action = [QGVAR(TurnOn),
|
|
|
|
localize LSTRING(TurnOn),
|
2016-04-08 18:34:50 +00:00
|
|
|
QPATHTOF(ui\icon_refuel_interact.paa),
|
2015-08-21 20:43:45 +00:00
|
|
|
{[_player, _target] call FUNC(turnOn)},
|
|
|
|
{[_player, _target] call FUNC(canTurnOn)},
|
|
|
|
{},
|
|
|
|
[],
|
|
|
|
[0, 0, 0],
|
2023-12-07 03:20:47 +00:00
|
|
|
REFUEL_ACTION_DISTANCE
|
|
|
|
] call EFUNC(interact_menu,createAction);
|
2017-05-05 18:10:50 +00:00
|
|
|
[_target, 0, ["ACE_MainActions", QGVAR(Refuel)], _action] call EFUNC(interact_menu,addActionToObject);
|
2015-08-21 20:43:45 +00:00
|
|
|
|
2023-02-17 02:06:11 +00:00
|
|
|
// Add turnOn container
|
|
|
|
_action = [QGVAR(TurnOn_Container),
|
|
|
|
localize LSTRING(TurnOn_Container),
|
|
|
|
QPATHTOF(ui\icon_refuel_interact.paa),
|
|
|
|
{[_player, _target, true] call FUNC(turnOn)},
|
|
|
|
{[_player, _target, true] call FUNC(canTurnOn)},
|
|
|
|
{},
|
|
|
|
[],
|
|
|
|
[0, 0, 0],
|
2023-12-07 03:20:47 +00:00
|
|
|
REFUEL_ACTION_DISTANCE
|
|
|
|
] call EFUNC(interact_menu,createAction);
|
2023-02-17 02:06:11 +00:00
|
|
|
[_target, 0, ["ACE_MainActions", QGVAR(Refuel)], _action] call EFUNC(interact_menu,addActionToObject);
|
|
|
|
|
|
|
|
// Add check fuel
|
|
|
|
_action = [QGVAR(CheckFuel),
|
|
|
|
localize LSTRING(CheckFuel),
|
|
|
|
QPATHTOF(ui\icon_refuel_interact.paa),
|
|
|
|
{[_player, _target] call FUNC(checkFuel)},
|
|
|
|
{[_player, _target] call FUNC(canCheckFuel)},
|
|
|
|
{},
|
|
|
|
[],
|
|
|
|
[0,0,0],
|
2023-12-07 03:20:47 +00:00
|
|
|
REFUEL_ACTION_DISTANCE
|
|
|
|
] call EFUNC(interact_menu,createAction);
|
2023-02-17 02:06:11 +00:00
|
|
|
[_target, 0, ["ACE_MainActions", QGVAR(Refuel)], _action] call EFUNC(interact_menu,addActionToObject);
|
|
|
|
|
2015-08-21 20:43:45 +00:00
|
|
|
// Add turnOff
|
|
|
|
_action = [QGVAR(TurnOff),
|
|
|
|
localize LSTRING(TurnOff),
|
2016-04-08 18:34:50 +00:00
|
|
|
QPATHTOF(ui\icon_refuel_interact.paa),
|
2015-08-21 20:43:45 +00:00
|
|
|
{[_player, _target] call FUNC(turnOff)},
|
|
|
|
{[_player, _target] call FUNC(canTurnOff)},
|
|
|
|
{},
|
|
|
|
[],
|
|
|
|
[0, 0, 0],
|
2023-12-07 03:20:47 +00:00
|
|
|
REFUEL_ACTION_DISTANCE
|
|
|
|
] call EFUNC(interact_menu,createAction);
|
2017-05-05 18:10:50 +00:00
|
|
|
[_target, 0, ["ACE_MainActions", QGVAR(Refuel)], _action] call EFUNC(interact_menu,addActionToObject);
|
2015-08-21 20:43:45 +00:00
|
|
|
|
|
|
|
// Add disconnect
|
|
|
|
_action = [QGVAR(Disconnect),
|
2023-11-10 22:59:15 +00:00
|
|
|
localize LSTRING(DisconnectFuelCanister),
|
2016-04-08 18:34:50 +00:00
|
|
|
QPATHTOF(ui\icon_refuel_interact.paa),
|
2015-08-21 20:43:45 +00:00
|
|
|
{[_player, _target] call FUNC(disconnect)},
|
|
|
|
{[_player, _target] call FUNC(canDisconnect)},
|
|
|
|
{},
|
|
|
|
[],
|
|
|
|
[0, 0, 0],
|
2023-12-07 03:20:47 +00:00
|
|
|
REFUEL_ACTION_DISTANCE
|
|
|
|
] call EFUNC(interact_menu,createAction);
|
2017-05-05 18:10:50 +00:00
|
|
|
[_target, 0, ["ACE_MainActions", QGVAR(Refuel)], _action] call EFUNC(interact_menu,addActionToObject);
|