2015-01-15 21:50:48 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-06-21 19:10:50 +00:00
|
|
|
// Exit on Headless as well
|
2015-08-11 17:49:39 +00:00
|
|
|
if (!hasInterface) exitWith {};
|
2015-06-21 19:10:50 +00:00
|
|
|
|
2015-03-14 19:58:05 +00:00
|
|
|
LOG(MSG_INIT);
|
2015-01-16 08:13:29 +00:00
|
|
|
|
2015-03-14 19:58:05 +00:00
|
|
|
// Calculate the maximum zoom allowed for this map
|
|
|
|
call FUNC(determineZoom);
|
2015-01-16 08:13:29 +00:00
|
|
|
|
2015-08-11 17:49:39 +00:00
|
|
|
[{
|
|
|
|
if (isNull findDisplay 12) exitWith {};
|
2015-01-16 08:13:29 +00:00
|
|
|
|
2015-03-14 19:58:05 +00:00
|
|
|
GVAR(lastStillPosition) = ((findDisplay 12) displayCtrl 51) ctrlMapScreenToWorld [0.5, 0.5];
|
2016-03-02 10:01:39 +00:00
|
|
|
GVAR(lastStillTime) = CBA_missionTime;
|
2015-03-14 19:58:05 +00:00
|
|
|
GVAR(isShaking) = false;
|
2015-01-16 08:13:29 +00:00
|
|
|
|
2015-08-11 17:49:39 +00:00
|
|
|
//map sizes are multiples of 1280
|
|
|
|
GVAR(worldSize) = worldSize / 1280;
|
|
|
|
GVAR(mousePos) = [0.5,0.5];
|
|
|
|
|
2015-07-01 05:13:55 +00:00
|
|
|
//Allow panning the lastStillPosition while mapShake is active
|
|
|
|
GVAR(rightMouseButtonLastPos) = [];
|
2016-06-18 00:18:06 +00:00
|
|
|
((findDisplay 12) displayCtrl 51) ctrlAddEventHandler ["Draw", {_this call FUNC(updateMapEffects)}];
|
2015-07-01 05:13:55 +00:00
|
|
|
((findDisplay 12) displayCtrl 51) ctrlAddEventHandler ["MouseMoving", {
|
|
|
|
if (GVAR(isShaking) && {(count GVAR(rightMouseButtonLastPos)) == 2}) then {
|
2016-06-18 00:18:06 +00:00
|
|
|
private _lastPos = (_this select 0) ctrlMapScreenToWorld GVAR(rightMouseButtonLastPos);
|
|
|
|
private _newPos = (_this select 0) ctrlMapScreenToWorld (_this select [1,2]);
|
2015-07-01 05:13:55 +00:00
|
|
|
GVAR(lastStillPosition) set [0, (GVAR(lastStillPosition) select 0) + (_lastPos select 0) - (_newPos select 0)];
|
|
|
|
GVAR(lastStillPosition) set [1, (GVAR(lastStillPosition) select 1) + (_lastPos select 1) - (_newPos select 1)];
|
|
|
|
GVAR(rightMouseButtonLastPos) = _this select [1,2];
|
|
|
|
TRACE_3("Mouse Move",_lastPos,_newPos,GVAR(rightMouseButtonLastPos));
|
|
|
|
};
|
|
|
|
}];
|
|
|
|
((findDisplay 12) displayCtrl 51) ctrlAddEventHandler ["MouseButtonDown", {
|
|
|
|
if ((_this select 1) == 1) then {
|
|
|
|
GVAR(rightMouseButtonLastPos) = _this select [2,2];
|
|
|
|
};
|
|
|
|
}];
|
|
|
|
((findDisplay 12) displayCtrl 51) ctrlAddEventHandler ["MouseButtonUp", {
|
|
|
|
if ((_this select 1) == 1) then {
|
|
|
|
GVAR(rightMouseButtonLastPos) = [];
|
|
|
|
};
|
|
|
|
}];
|
2015-08-11 17:49:39 +00:00
|
|
|
|
|
|
|
//get mouse position on map
|
|
|
|
((findDisplay 12) displayCtrl 51) ctrlAddEventHandler ["MouseMoving", {
|
|
|
|
GVAR(mousePos) = (_this select 0) ctrlMapScreenToWorld [_this select 1, _this select 2];
|
|
|
|
}];
|
|
|
|
((findDisplay 12) displayCtrl 51) ctrlAddEventHandler ["MouseHolding", {
|
|
|
|
GVAR(mousePos) = (_this select 0) ctrlMapScreenToWorld [_this select 1, _this select 2];
|
|
|
|
}];
|
|
|
|
|
|
|
|
[_this select 1] call CBA_fnc_removePerFrameHandler;
|
|
|
|
}, 0] call CBA_fnc_addPerFrameHandler;
|
2015-03-14 19:58:05 +00:00
|
|
|
|
2016-05-25 00:09:11 +00:00
|
|
|
["ace_settingsInitialized", {
|
2015-09-29 16:36:30 +00:00
|
|
|
if (isMultiplayer && {GVAR(DefaultChannel) != -1}) then {
|
|
|
|
//Set the chat channel once the map has finished loading
|
|
|
|
[{
|
|
|
|
if ((isNull findDisplay 37) && {isNull findDisplay 52} && {isNull findDisplay 53} && {isNull findDisplay 12}) exitWith {};
|
|
|
|
[_this select 1] call CBA_fnc_removePerFrameHandler;
|
|
|
|
|
|
|
|
setCurrentChannel GVAR(DefaultChannel);
|
|
|
|
if (currentChannel == GVAR(DefaultChannel)) then {
|
2016-10-02 10:55:31 +00:00
|
|
|
// INFO_1("Channel Set - %1", currentChannel);
|
2015-09-29 16:36:30 +00:00
|
|
|
} else {
|
2016-10-02 10:55:31 +00:00
|
|
|
ERROR_2("Failed To Set Channel %1 (is %2)", GVAR(DefaultChannel), currentChannel);
|
2015-09-29 16:36:30 +00:00
|
|
|
};
|
|
|
|
}, 0, []] call CBA_fnc_addPerFrameHandler;
|
|
|
|
};
|
|
|
|
|
2015-06-21 02:19:12 +00:00
|
|
|
// Start Blue Force Tracking if Enabled
|
|
|
|
if (GVAR(BFT_Enabled)) then {
|
|
|
|
GVAR(BFT_markers) = [];
|
|
|
|
[FUNC(blueForceTrackingUpdate), GVAR(BFT_Interval), []] call CBA_fnc_addPerFrameHandler;
|
|
|
|
};
|
2015-08-11 17:49:39 +00:00
|
|
|
|
|
|
|
//illumination settings
|
|
|
|
if (GVAR(mapIllumination)) then {
|
2016-06-21 23:39:20 +00:00
|
|
|
["loadout", {
|
2016-06-18 00:18:06 +00:00
|
|
|
params ["_player", ""];
|
|
|
|
private _unitLight = _player getVariable [QGVAR(flashlight), ["", objNull]];
|
|
|
|
_unitLight params ["_flashlight", "_glow"];
|
2016-08-25 23:23:42 +00:00
|
|
|
if ((_flashlight != "") && {!(_flashlight in ([_player] call FUNC(getUnitFlashlights)))}) then {
|
|
|
|
// remove the current glow if the unit suddenly lost it's flashlight
|
2016-06-18 00:18:06 +00:00
|
|
|
if (!isNull _glow) then {
|
|
|
|
_glow = [_player, "", false] call FUNC(flashlightGlow);
|
|
|
|
};
|
|
|
|
_player setVariable [QGVAR(flashlight), ["", _glow], true];
|
2015-08-11 17:49:39 +00:00
|
|
|
};
|
2016-06-21 23:39:20 +00:00
|
|
|
}] call CBA_fnc_addPlayerEventHandler;
|
2015-08-11 17:49:39 +00:00
|
|
|
|
|
|
|
if (GVAR(mapGlow)) then {
|
2016-08-25 23:23:42 +00:00
|
|
|
["visibleMap", {
|
2015-08-11 17:49:39 +00:00
|
|
|
params ["_player", "_mapOn"];
|
2016-06-18 00:18:06 +00:00
|
|
|
private _unitLight = _player getVariable [QGVAR(flashlight), ["", objNull]];
|
|
|
|
_unitLight params ["_flashlight", "_glow"];
|
|
|
|
private _flashlightOn = !(_flashlight isEqualTo "");
|
2015-08-11 17:49:39 +00:00
|
|
|
if (_mapOn) then {
|
2016-06-18 00:18:06 +00:00
|
|
|
if (_flashlightOn && {isNull _glow}) then {
|
|
|
|
[_player, _flashlight] call FUNC(flashlightGlow);
|
|
|
|
playSound QGVAR(flashlightClick);
|
2015-08-11 17:49:39 +00:00
|
|
|
};
|
|
|
|
} else {
|
2016-06-18 00:18:06 +00:00
|
|
|
if (!isNull _glow) then {
|
|
|
|
[_player, ""] call FUNC(flashlightGlow);
|
2015-08-11 17:49:39 +00:00
|
|
|
};
|
|
|
|
};
|
2016-08-25 23:23:42 +00:00
|
|
|
}] call CBA_fnc_addPlayerEventHandler;
|
2015-08-11 17:49:39 +00:00
|
|
|
};
|
|
|
|
};
|
2016-05-22 15:29:05 +00:00
|
|
|
}] call CBA_fnc_addEventHandler;
|
2015-09-01 23:59:07 +00:00
|
|
|
|
|
|
|
// hide clock on map if player has no watch
|
|
|
|
GVAR(hasWatch) = true;
|
|
|
|
|
2016-06-21 23:39:20 +00:00
|
|
|
["loadout", {
|
2017-04-11 15:06:29 +00:00
|
|
|
params ["_unit"];
|
|
|
|
if (isNull _unit) exitWith {
|
2015-09-01 23:59:07 +00:00
|
|
|
GVAR(hasWatch) = true;
|
|
|
|
};
|
2015-11-24 22:17:06 +00:00
|
|
|
GVAR(hasWatch) = false;
|
|
|
|
{
|
|
|
|
if (_x isKindOf ["ItemWatch", configFile >> "CfgWeapons"]) exitWith {GVAR(hasWatch) = true;};
|
|
|
|
false
|
2017-04-11 15:06:29 +00:00
|
|
|
} count (assignedItems _unit);
|
|
|
|
}, true] call CBA_fnc_addPlayerEventHandler;
|
2017-08-22 18:13:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Vehicle map lighting:
|
|
|
|
GVAR(vehicleLightCondition) = {true};
|
|
|
|
GVAR(vehicleExteriorTurrets) = [];
|
|
|
|
GVAR(vehicleLightColor) = [1,1,1,0];
|
|
|
|
|
|
|
|
["vehicle", {
|
|
|
|
params ["_unit", "_vehicle"];
|
|
|
|
if ((isNull _vehicle) || {_unit == _vehicle}) exitWith {};
|
|
|
|
private _cfg = configfile >> "CfgVehicles" >> (typeOf _vehicle);
|
|
|
|
GVAR(vehicleExteriorTurrets) = getArray (_cfg >> QGVAR(vehicleExteriorTurrets));
|
|
|
|
GVAR(vehicleLightColor) = [_cfg >> QGVAR(vehicleLightColor), "array", [1,1,1,0]] call CBA_fnc_getConfigEntry;
|
|
|
|
|
|
|
|
// Handle vehicles with toggleable interior lights:
|
|
|
|
private _vehicleLightCondition = getText (_cfg >> QGVAR(vehicleLightCondition));
|
|
|
|
if (_vehicleLightCondition == "") then {
|
|
|
|
private _userAction = toLower getText (_cfg >> "UserActions" >> "ToggleLight" >> "statement");
|
|
|
|
switch (true) do {
|
|
|
|
case ((_userAction find "cabinlights_hide") > 0): {_vehicleLightCondition = "(_vehicle animationSourcePhase 'cabinlights_hide') == 1";};
|
|
|
|
case ((_userAction find "cargolights_hide") > 0): {_vehicleLightCondition = "(_vehicle animationSourcePhase 'cargolights_hide') == 1";};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
GVAR(vehicleLightCondition) = if (_vehicleLightCondition != "") then {
|
|
|
|
if (_vehicle isKindOf "Helicopter" || {_vehicle isKindOf "Plane"}) then {
|
|
|
|
compile format ["(driver _vehicle == _unit) || {gunner _vehicle == _unit} || {%1}", _vehicleLightCondition];
|
|
|
|
} else {
|
|
|
|
compile _vehicleLightCondition
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
switch (true) do {
|
|
|
|
case (_vehicle isKindOf "Tank");
|
|
|
|
case (_vehicle isKindOf "Wheeled_APC"): { {true} };
|
|
|
|
case (_vehicle isKindOf "Helicopter");
|
|
|
|
case (_vehicle isKindOf "Plane"): { {(driver _vehicle == _unit) || {gunner _vehicle == _unit}} };
|
|
|
|
default { {false} };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}, true] call CBA_fnc_addPlayerEventHandler;
|