ACE3/addons/common/XEH_preInit.sqf

95 lines
2.5 KiB
Plaintext
Raw Normal View History

// by commy2
#include "script_component.hpp"
2015-01-29 07:38:46 +00:00
ADDON = false;
2016-02-22 14:20:36 +00:00
#include "XEH_PREP.hpp"
//ACE events global variables
2016-02-06 20:18:01 +00:00
GVAR(eventsLocation) = createLocation ["ACE_HashLocation", [-10000,-10000,-10000], 0, 0];
GVAR(eventsLocation) setText QGVAR(eventsLocation);
// backwards comp
2016-02-20 22:11:50 +00:00
DFUNC(canUseWeapon) = {
ACE_DEPRECATED("ace_common_fnc_canUseWeapon","3.7.0","CBA_fnc_canUseWeapon");
_this call CBA_fnc_canUseWeapon;
};
DFUNC(selectWeaponMode) = {
ACE_DEPRECATED("ace_common_fnc_selectWeaponMode","3.7.0","CBA_fnc_selectWeapon");
_this call CBA_fnc_selectWeapon;
};
GVAR(syncedEvents) = HASH_CREATE;
2015-10-16 03:33:05 +00:00
GVAR(showHudHash) = [] call FUNC(hashCreate);
2015-08-25 18:18:59 +00:00
//GVARS for execNextFrame and waitAndExec and waitUntilAndExecute
GVAR(waitAndExecArray) = [];
GVAR(nextFrameNo) = diag_frameno;
GVAR(nextFrameBufferA) = [];
GVAR(nextFrameBufferB) = [];
2015-08-25 18:18:59 +00:00
GVAR(waitUntilAndExecArray) = [];
2015-09-03 04:58:24 +00:00
GVAR(settingsInitFinished) = false;
GVAR(runAtSettingsInitialized) = [];
2015-09-21 16:37:19 +00:00
// @todo: Generic local-managed global-synced objects (createVehicleLocal)
2015-03-10 19:59:40 +00:00
//Debug
ACE_COUNTERS = [];
2015-05-14 23:45:53 +00:00
// Load settings on the server and broadcast them
2015-02-03 00:13:31 +00:00
if (isServer) then {
2015-01-30 21:56:45 +00:00
call FUNC(loadSettingsOnServer);
};
2016-01-13 00:18:12 +00:00
GVAR(statusEffect_Names) = [];
GVAR(statusEffect_isGlobal) = [];
2015-09-21 16:37:19 +00:00
//////////////////////////////////////////////////
// Set up PlayerChanged eventhandler for pre init
//////////////////////////////////////////////////
2015-09-21 15:32:21 +00:00
ACE_player = objNull;
2015-09-21 16:37:19 +00:00
uiNamespace setVariable ["ACE_player", objNull];
2015-09-21 16:37:19 +00:00
// @todo check if this can be removed
if (hasInterface) then {
// PFH to update the ACE_player variable
2015-09-21 15:32:21 +00:00
GVAR(PreInit_playerChanged_PFHID) = [{
2015-04-03 15:50:52 +00:00
if !(ACE_player isEqualTo (call FUNC(player))) then {
private _oldPlayer = ACE_player;
2015-04-03 15:50:52 +00:00
ACE_player = call FUNC(player);
2015-01-12 21:34:01 +00:00
uiNamespace setVariable ["ACE_player", ACE_player];
// Raise ACE event
["playerChanged", [ACE_player, _oldPlayer]] call FUNC(localEvent);
2015-01-12 21:34:01 +00:00
};
}, 0, []] call CBA_fnc_addPerFrameHandler;
};
2015-01-14 21:29:52 +00:00
2015-09-21 16:37:19 +00:00
//////////////////////////////////////////////////
2015-05-10 05:53:20 +00:00
// Time handling
2015-09-21 16:37:19 +00:00
//////////////////////////////////////////////////
2015-05-10 05:53:20 +00:00
ACE_time = diag_tickTime;
ACE_realTime = diag_tickTime;
ACE_virtualTime = diag_tickTime;
ACE_diagTime = diag_tickTime;
2015-05-10 05:53:20 +00:00
ACE_gameTime = time;
2015-05-22 19:29:56 +00:00
ACE_pausedTime = 0;
ACE_virtualPausedTime = 0;
2015-05-10 05:53:20 +00:00
[FUNC(timePFH), 0, []] call CBA_fnc_addPerFrameHandler;
2015-05-10 05:53:20 +00:00
2015-03-23 15:16:50 +00:00
// Init toHex
[0] call FUNC(toHex);
2015-09-21 16:37:19 +00:00
isHC = !hasInterface && !isDedicated; // deprecated because no tag
missionNamespace setVariable ["ACE_isHC", ACE_isHC];
uiNamespace setVariable ["ACE_isHC", ACE_isHC];
2015-09-21 16:37:19 +00:00
ADDON = true;