mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
c0d74ba703
* Add enable setting * Exclude man class init * Fix multiplayer terrain pump fuel sync * Add terrain pumps positions * Add vanilla fuel cargo restoring before destroying * Add Livonia positions by bux * Fix terrain pumps destruction * Improve settings init * Fix double settings category * Check enabled var in public functions * Fix fnc_makeSource * Handle recent CUP Terrains changes * Update includes * Fix issues introduced in #9133 * Change warning Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Optimisations and cleanup - Use hashmaps wherever possible - Reduced pump search radius by ~30% - Sorted pumps alphabetically and sorted positions by "smallest" first, for consistency * Add init debug trace * compileScript in dev * yoda conditions & DFUNC macro * Wait until CBA settings are ready * Update Chernarus 2020 and add more maps configs * Remove vanilla fuel cargo restoring before destroying * Update fnc_makeSource.sqf --------- Co-authored-by: Dystopian <sddex@ya.ru> Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
85 lines
2.5 KiB
Plaintext
85 lines
2.5 KiB
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Dystopian
|
|
* Makes an object into a refuel source.
|
|
* Run on server only.
|
|
*
|
|
* Arguments:
|
|
* 0: Fuel Source <OBJECT>
|
|
* 1: Fuel amount (in liters) <NUMBER> (default: 0)
|
|
* 2: Hooks positions <ARRAY> (default: [[0,0,0]])
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [cursorObject, 100] call ace_refuel_fnc_makeSource
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
if (!isServer) exitWith {};
|
|
|
|
// Only run this after the settings are initialized
|
|
if !(EGVAR(common,settingsInitFinished)) exitWith {
|
|
EGVAR(common,runAtSettingsInitialized) pushBack [FUNC(makeSource), _this];
|
|
};
|
|
|
|
if (!GVAR(enabled)) exitWith {};
|
|
|
|
params [
|
|
["_source", objNull, [objNull]],
|
|
["_fuelCargo", 0, [0]],
|
|
["_hooks", nil, [[]]]
|
|
];
|
|
|
|
private _fuelCargoConfig = _source call FUNC(getFuelCargo);
|
|
|
|
TRACE_4("makeSource",_source,_fuelCargo,_hooks,_fuelCargoConfig);
|
|
|
|
if (
|
|
isNull _source
|
|
|| {_fuelCargo < 0 && {!(_fuelCargo in [REFUEL_INFINITE_FUEL, REFUEL_DISABLED_FUEL])}}
|
|
) exitWith {};
|
|
|
|
// We might be removing fuel from an object that in config doesn't have fuel, but was given fuel via this function prior
|
|
if (_fuelCargo == REFUEL_DISABLED_FUEL && {_fuelCargoConfig == REFUEL_DISABLED_FUEL}) exitWith {
|
|
if (isNil {_source getVariable QGVAR(currentFuelCargo)}) exitWith {};
|
|
|
|
_source setVariable [QGVAR(currentFuelCargo), nil, true];
|
|
_source setVariable [QGVAR(capacity), REFUEL_DISABLED_FUEL, true];
|
|
|
|
private _jipID = _source getVariable QGVAR(initSource_jipID);
|
|
|
|
if (isNil "_jipID") exitWith {};
|
|
|
|
_jipID call CBA_fnc_removeGlobalEventJIP;
|
|
|
|
_source setVariable [QGVAR(initSource_jipID), nil];
|
|
};
|
|
|
|
private _capacity = if (_fuelCargo < 0) then {_fuelCargo} else {_fuelCargoConfig max _fuelCargo};
|
|
|
|
_source setVariable [QGVAR(capacity), _capacity, true];
|
|
|
|
if (_fuelCargo == REFUEL_DISABLED_FUEL) exitWith {};
|
|
|
|
[_source, _fuelCargo] call FUNC(setFuel);
|
|
|
|
if (
|
|
!isNil "_hooks"
|
|
&& {_hooks isEqualTypeAll []}
|
|
&& {0 == {!(_x isEqualTypeParams [0,0,0]) || {3 < count _x}} count _hooks}
|
|
) then {
|
|
_source setVariable [QGVAR(hooks), _hooks, true];
|
|
};
|
|
|
|
// only add if menu doesn't already exist
|
|
if (_fuelCargoConfig != REFUEL_DISABLED_FUEL || {!isNil {_source getVariable QGVAR(initSource_jipID)}}) exitWith {};
|
|
|
|
private _jipID = [QGVAR(initSource), [_source]] call CBA_fnc_globalEventJIP;
|
|
[_jipID, _source] call CBA_fnc_removeGlobalEventJIP;
|
|
_source setVariable [QGVAR(initSource_jipID), _jipID];
|
|
|
|
[QGVAR(sourceInitialized), [_source]] call CBA_fnc_globalEvent;
|