ACE3/addons/map/functions/fnc_determineZoom.sqf
voiper d5b3b03c1c Make flashlight on/off + glow a PVAR.
Clean up all privates.
Change glow proxies to not inherit from chemlight_base, to avoid ammo detection issues.
Make handleDisconnect glow deletion dedi server compatible (was only listen server compatible).
Clean up determineMapLight: faster when no chemlights nearby, a tad slower when chemlights nearby, however sources the colour settings directly from the chemlight's config.
2016-06-17 17:18:06 -07:00

43 lines
1.1 KiB
Plaintext

/*
* Author: Rocko
* Calculate the maximum zoom level allowed for the current map
*
* Arguments:
* None
*
* Return Value:
* None
*
* Public: No
*/
#include "script_component.hpp"
private _grids = (configFile >> "CfgWorlds" >> worldName >> "Grid");
private _fourSize = -1;
private _sixSize = -1;
for "_i" from 1 to 10 do {
private _continue = false;
if (isClass(_grids >> format["Zoom%1", _i])) then {
_continue = true;
private _size = getText(_grids >> format["Zoom%1", _i] >> "formatX");
if ((count toArray(_size)) == 2) then {
_fourSize = getNumber(_grids >> format["Zoom%1", _i] >> "zoomMax");
};
if ((count toArray(_size)) == 3) then {
_sixSize = getNumber(_grids >> format["Zoom%1", _i] >> "zoomMax");
};
if (_fourSize != -1 && {_sixSize != -1}) then {
_continue = false;
};
};
if (!_continue) exitWith {};
};
if(_fourSize != -1 && {_sixSize != -1}) then {
if (isNil QGVAR(minMapSize)) then {
GVAR(minMapSize) = _sixSize + 0.01
} else {
GVAR(minMapSize) = -1
};
};