mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
#include "script_component.hpp"
|
|
|
|
LOG(MSG_INIT);
|
|
|
|
// Calculate the maximum zoom allowed for this map
|
|
call FUNC(determineZoom);
|
|
|
|
// This spawn is probably worth keeping, as pfh don't work natively on the briefing screen and IDK how reliable the hack we implemented for them is.
|
|
// The thread dies as soon as the mission start, so it's not really compiting for scheduler space.
|
|
[] spawn {
|
|
// Wait until the map display is detected
|
|
waitUntil {(!isNull findDisplay 12)};
|
|
|
|
GVAR(lastStillPosition) = ((findDisplay 12) displayCtrl 51) ctrlMapScreenToWorld [0.5, 0.5];
|
|
GVAR(lastStillTime) = ACE_time;
|
|
GVAR(isShaking) = false;
|
|
|
|
((findDisplay 12) displayCtrl 51) ctrlAddEventHandler ["Draw", {[] call FUNC(updateMapEffects);}];
|
|
};
|
|
|
|
[
|
|
["SettingsInitialized", {
|
|
// Start Blue Force Tracking if Enabled
|
|
if (GVAR(BFT_Enabled)) then {
|
|
GVAR(BFT_markers) = [];
|
|
[FUNC(blueForceTrackingUpdate), GVAR(BFT_Interval), []] call CBA_fnc_addPerFrameHandler;
|
|
};
|
|
}] call EFUNC(common,addEventHandler);
|