* Add Variable Range for Camera Users (Zeus, Spectator) + Settings
Add Setting to Disable Zeus and/or Spectator Map Draws
Add Ability to use Map Gestures on Briefing screen
Add Setting for Briefing Screen mode (All, Only Group, Only Side, Proximity, Disabled)
* disable DISABLE_COMPILE_CACHE
* minor cleanup and add some translations
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
* Initial Rewrite
* improve getProximityPlayers
* add Zeus Implementation
* fix missing simicolon
* add Spectator Support
* improve local responsiveness
* add Vanilla Spectator Support
* Fix Both Spectators are now working correctly
* exit mouse moving event early when disabled
* Move Diary Event registration to XEH DisplayLoaded
Port Settings to SQF
Add Setting for only showing Friendly Units pointing
* Fix Merge Issue in Stringtable
Redo Settings
* fix a copy past script error
* Update addons/map_gestures/functions/fnc_getProximityPlayers.sqf
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
* Lazy evals and defines
* Small changes
* Simplify initDisplayDiary and fix loading saves
* Cache getProximityPlayers
Improve Vanilla Spectator Support and how Followed unit Nearby data
* Minor header update
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
* Convert ACE_settings to CBA_settings
* Run Modules Globaly, BWC for SetSetting
* Add support for string settings
* ACE_ServerSettings warning
* Add handler for global setting being changed
* Add deprecated and replaced not to Settings Framework doc
* Remove options menu UI, Move Debug and HeadBug Fix to Options in Pause Menu
* Change modules scope to 1
* Disable debug
* Cleanup map gesture sync / color mapping
- Adds ace_common_fnc_setPlayerOwner which syncs player's owner var
- Redo publicVarClient with CBA's ownerEvent
- Remove old ace_settings
- Make color module run globaly
- Ad public ace_map_gestures_fnc_addGroupColorMapping
* fix return
* Optimizations with private, params, and isEqualType
* Fixed tab being used instead of space
* Fixed tabs inserted by notepad++
* More usage of new private syntax and params
- changed a few checks for an array being empty to `_arr isEqualTo []`
rather than `count _arr == 0`
- added more uses of `private` on the same line as the variable is
declared
- added more uses of params to assign variables passed as parameters
- removed unnecessary parentheses
- removed several unnecessary variable declarations with private array
syntax
* clean up and formatting