forked from igorkis-scrts/A3-Antistasi-Plus
-
Notifications
You must be signed in to change notification settings - Fork 87
Hover Map, context menu and accessibility settings #830
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
UAC-MaxxLite
wants to merge
23
commits into
unstable
Choose a base branch
from
map-marker-enhancement
base: unstable
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 16 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
222fcc5
Names For POI
UAC-MaxxLite b7270ee
dump for sync
UAC-MaxxLite 80fbd74
colors and color blindness setting
UAC-MaxxLite dd8f3fe
Markers and icons
UAC-MaxxLite 4a23783
extended fast travel logic
UAC-MaxxLite d5ea83f
more marker updates
UAC-MaxxLite 661bbec
reverted mission sqm change
UAC-MaxxLite b7e5389
String tables and markers update
UAC-MaxxLite 0cd434f
missed some mission.sqms
UAC-MaxxLite 1377f18
another stringtable update.....
UAC-MaxxLite d5a25f2
base marker changes
UAC-MaxxLite 3b87715
different button
UAC-MaxxLite ef8a8e6
zone changes and markers
UAC-MaxxLite 436e600
now the shmeat. (functionality for map)
UAC-MaxxLite 2fbb6f7
requested updates + more
UAC-MaxxLite 444d22d
Merge branch 'unstable' into map-marker-enhancement
Silence-112 1b6041d
Update A3A/addons/core/functions/Base/fn_mrkUpdate.sqf
UAC-MaxxLite 5cc2424
Update A3A/addons/core/functions/Base/fn_mrkUpdate.sqf
UAC-MaxxLite 421acab
Update A3A/addons/core/functions/init/fn_initClient.sqf
UnseenKill 2a64ebe
Update A3A/addons/core/functions/Base/fn_mrkUpdate.sqf
UAC-MaxxLite ec87aa7
localizing some markers
UAC-MaxxLite 36c9b67
RETDEFs
UAC-MaxxLite 5cd4909
apply instead of forEach
UAC-MaxxLite File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -26,12 +26,12 @@ private _fnc_initMarkerList = | |||||||||||
| }; | ||||||||||||
| case (_x in milbases): | ||||||||||||
| { | ||||||||||||
| _mrkD setMarkerTypeLocal (["b_hq", "o_hq"] select _isInvader); | ||||||||||||
| _mrkD setMarkerTypeLocal (["A3AU_milbase_mrk", "A3AU_milbase_mrk"] select _isInvader); | ||||||||||||
| _mrkD setMarkerColorLocal ([colorOccupants, colorInvaders] select _isInvader); | ||||||||||||
|
Comment on lines
+29
to
30
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
| }; | ||||||||||||
| case (_x in seaports): | ||||||||||||
| { | ||||||||||||
| _mrkD setMarkerTypeLocal (["b_naval", "o_naval"] select _isInvader); | ||||||||||||
| _mrkD setMarkerTypeLocal "A3AU_seaport_mrk"; | ||||||||||||
| _mrkD setMarkerColorLocal ([colorOccupants, colorInvaders] select _isInvader); | ||||||||||||
|
Comment on lines
+34
to
35
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
| }; | ||||||||||||
| default | ||||||||||||
|
|
@@ -72,10 +72,10 @@ private _controlsNATO = controlsX - _controlsCSAT; | |||||||||||
| private _roadblockPositions = controlsX apply { markerPos _x }; | ||||||||||||
|
|
||||||||||||
| [_mrkCSAT, airportsX, "flag_NATO", localize "STR_airbase", true] call _fnc_initMarkerList; | ||||||||||||
| [_mrkCSAT, resourcesX, "loc_rock", localize "STR_resources"] call _fnc_initMarkerList; | ||||||||||||
| [_mrkCSAT, factories, "u_installation", localize "STR_factory"] call _fnc_initMarkerList; | ||||||||||||
| [_mrkCSAT, outposts, "loc_bunker", localize "STR_outpost", true] call _fnc_initMarkerList; | ||||||||||||
| [_mrkCSAT, milbases, "b_hq", localize "STR_milbase", true] call _fnc_initMarkerList; | ||||||||||||
| [_mrkCSAT, resourcesX, "A3AU_resource_mrk", localize "STR_resources"] call _fnc_initMarkerList; | ||||||||||||
| [_mrkCSAT, factories, "A3AU_factory_mrk", localize "STR_factory"] call _fnc_initMarkerList; | ||||||||||||
| [_mrkCSAT, outposts, "A3AU_outpost_mrk", localize "STR_outpost", true] call _fnc_initMarkerList; | ||||||||||||
| [_mrkCSAT, milbases, "A3AU_milbase_mrk", localize "STR_milbase", true] call _fnc_initMarkerList; | ||||||||||||
|
|
||||||||||||
| private _portName = [ | ||||||||||||
| localize "STR_port_sea", | ||||||||||||
|
|
||||||||||||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.