2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-08-10 21:07:47 +00:00
|
|
|
/*
|
2017-05-31 22:54:57 +00:00
|
|
|
* Author: Glowbal, SilentSpike
|
2015-08-16 20:41:35 +00:00
|
|
|
* Initializes variables for loadable objects. Called from init EH.
|
2015-08-10 21:07:47 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2015-08-16 20:41:35 +00:00
|
|
|
* 0: Object <OBJECT>
|
2015-08-10 21:07:47 +00:00
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Return Value:
|
2015-08-10 21:07:47 +00:00
|
|
|
* None
|
|
|
|
*
|
2015-08-16 20:41:35 +00:00
|
|
|
* Example:
|
|
|
|
* [object] call ace_cargo_fnc_initObject
|
|
|
|
*
|
2015-08-10 21:07:47 +00:00
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
params ["_object"];
|
2016-01-19 03:53:48 +00:00
|
|
|
private _type = typeOf _object;
|
|
|
|
TRACE_2("params",_object,_type);
|
2015-08-10 21:07:47 +00:00
|
|
|
|
2017-05-31 22:54:57 +00:00
|
|
|
// If object had size given to it via eden/public then override config canLoad setting
|
|
|
|
private _canLoadPublic = _object getVariable [QGVAR(canLoad), false];
|
2017-06-23 16:31:19 +00:00
|
|
|
if (!(_canLoadPublic isEqualType false)) then {
|
|
|
|
WARNING_4("%1[%2] - Variable %3 is %4 - Should be bool",_object,_type,QGVAR(canLoad),_canLoadPublic);
|
|
|
|
};
|
2017-05-31 22:54:57 +00:00
|
|
|
private _canLoadConfig = getNumber (configFile >> "CfgVehicles" >> _type >> QGVAR(canLoad)) == 1;
|
2015-08-10 21:07:47 +00:00
|
|
|
|
2017-05-31 22:54:57 +00:00
|
|
|
// Nothing to do here if object can't be loaded
|
2017-06-23 16:31:19 +00:00
|
|
|
if !(_canLoadConfig || {_canLoadPublic in [true, 1]}) exitWith {};
|
2017-05-31 22:54:57 +00:00
|
|
|
|
|
|
|
// Servers and HCs do not require action menus (beyond this point)
|
|
|
|
if !(hasInterface) exitWith {};
|
|
|
|
|
|
|
|
// Unnecessary to add actions to an object class that's already got them
|
2015-08-10 21:07:47 +00:00
|
|
|
if (_type in GVAR(initializedItemClasses)) exitWith {};
|
2017-05-31 22:54:57 +00:00
|
|
|
if (_object getVariable [QGVAR(initObject),false]) exitWith {};
|
2015-08-10 21:07:47 +00:00
|
|
|
|
2017-05-31 22:54:57 +00:00
|
|
|
// Objects given size via eden have their actions added to the object
|
|
|
|
// So this function may run for multiple of the same class in that case
|
|
|
|
if (_canLoadConfig) then {
|
|
|
|
GVAR(initializedItemClasses) pushBack _type;
|
|
|
|
TRACE_1("Adding load cargo action to class", _type);
|
2018-02-24 18:39:03 +00:00
|
|
|
[_type, 0, ["ACE_MainActions"], GVAR(objectAction)] call EFUNC(interact_menu,addActionToClass);
|
2017-05-31 22:54:57 +00:00
|
|
|
} else {
|
|
|
|
_object setVariable [QGVAR(initObject),true];
|
|
|
|
TRACE_1("Adding load cargo action to object", _object);
|
2018-02-24 18:39:03 +00:00
|
|
|
[_object, 0, ["ACE_MainActions"], GVAR(objectAction)] call EFUNC(interact_menu,addActionToObject);
|
2017-05-31 22:54:57 +00:00
|
|
|
};
|