ACE3/addons/map/functions/fnc_determineZoom.sqf
Phyma ffaa195fe5 Conform function headers to coding guidelines (#5255)
* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
2017-06-08 15:31:51 +02:00

47 lines
1.1 KiB
Plaintext

/*
* Author: Rocko
* Calculate the maximum zoom level allowed for the current map
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* call ACE_map_fnc_determineZoom
*
* 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
};
};