2015-03-16 23:24:53 +00:00
|
|
|
/*
|
2015-03-24 04:18:00 +00:00
|
|
|
* Author: esteldunedain
|
2015-03-16 23:24:53 +00:00
|
|
|
* Initializes the Map module.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* Whatever the module provides. (I dunno.)
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*/
|
2015-08-11 17:49:39 +00:00
|
|
|
|
2015-03-16 23:24:53 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-06-21 19:08:37 +00:00
|
|
|
if !(isServer) exitWith {};
|
2015-06-21 02:19:12 +00:00
|
|
|
|
2015-09-29 16:36:30 +00:00
|
|
|
params ["_logic", "", "_activated"];
|
2015-03-16 23:24:53 +00:00
|
|
|
|
|
|
|
if !(_activated) exitWith {};
|
|
|
|
|
2015-04-08 04:49:56 +00:00
|
|
|
[_logic, QGVAR(mapIllumination), "MapIllumination" ] call EFUNC(common,readSettingFromModule);
|
2015-08-11 17:49:39 +00:00
|
|
|
[_logic, QGVAR(mapGlow), "MapGlow" ] call EFUNC(common,readSettingFromModule);
|
2015-04-08 04:49:56 +00:00
|
|
|
[_logic, QGVAR(mapShake), "MapShake" ] call EFUNC(common,readSettingFromModule);
|
|
|
|
[_logic, QGVAR(mapLimitZoom), "MapLimitZoom" ] call EFUNC(common,readSettingFromModule);
|
|
|
|
[_logic, QGVAR(mapShowCursorCoordinates), "MapShowCursorCoordinates"] call EFUNC(common,readSettingFromModule);
|
2015-09-29 16:36:30 +00:00
|
|
|
[_logic, QGVAR(DefaultChannel), "DefaultChannel" ] call EFUNC(common,readSettingFromModule);
|
2015-03-16 23:24:53 +00:00
|
|
|
|
2015-08-26 13:20:11 +00:00
|
|
|
ACE_LOGINFO("Map Module Initialized.");
|