Download
(25Kb)
Download
Updated: 10-30-13 12:53 PM
Pictures
File Info
Updated:10-30-13 12:53 PM
Created:07-16-10 07:58 AM
Downloads:18,150
Favorites:74
MD5:

m Map  Popular! (More than 5000 hits)

Version: 3.9
by: Monolit [More]

m_Map or monoMap

About

  • Originally inspired by Nevcairiel's Mapster and p3lim's pMap, m_Map is a lightweight add-on with few world map modifications.
  • The goal was to apply all the important features to the WorldMap frame without drastically changing it.
  • m_Map consumes about 10kb and no CPU cycles when map is not visible.
  • This add-on was created for people who just want to have clean WorldMap with a little bit of extra functionality.
  • It's not tested with gatherer and questhelper-like add-ons, but I suppose it should work just fine.

Key features
  • new miniWorldMap style;
  • minimize WorldMap when player enters combat;
  • display player and cursor coordinates;
  • remove the black background behind the big map;
  • enable keyboard while big map is opened;
  • no GUI;
  • ability to set custom scale and position for miniWorldMap (via editing m_Map.lua);
  • custom size for group markers;
  • fog removal.

======= v. 3.9 =======
m_Map: IsDisabledByParentalControls Taint fix (credits to Rotule http://us.battle.net/wow/en/forum/topic/10388639018)

======= v. 3.8 =======
m_Map: some of the elements were removed in 5.3, so we don't need to modify them anymore
m_Map: adjusted fontsize / position for coordinates
m_Map: removed textures from the 'map options' dropdown
m_Map: adjusted coordinates position for big map
m_Map: .toc bump for 5.3

======= v. 3.7 =======
m_Map: added option to display decimal part of map coordinates
m_Map: removed tooltip fix for quest blobs

======= v. 3.6 =======
m_Map: .toc update

======= v. 3.5 =======
m_Map: .toc update
m_Map: fixed WorldMap options dropdown position
m_Map: removed advancedMap cVar, so it now properly funcitons @ 4.3 /PTR

======= v. 3.4 =======
m_Map: .toc update for 4.1

======= v. 3.3 =======
m_Map: some structural changes, general code clean up
m_Map: fixed coordinates 'jumpy' (flickering) behaviour when large world map is opened
m_Map: adjusted positions for number of elements including levelUP/DOWN buttons, WorldMapTitle frame and button, etc.
m_Map: applied a small hack to prevent World Map frame problems when map_scale = 1

======= v. 3.2 =======
m_Map: adjusted text pattern and position for coordinates text

======= v. 3.1 =======
m_Map: fixed "Show dig sites" button scale and positioning
m_Map: option to adjust default group members icons size

===== v.2.7.1 =====
m_Map: major code revamp
m_Map: enabled quest blobs on the MiniWorldMap
m_Map: and now they actually work and give no errors!

===== v.2.6.1 =====
m_Map: option to disable group icons

===== v.2.6 =====
m_Map: fixed stack overflow error
m_Map: locals...well... you know that variable scoping thing...
m_Map: WorldMapUnit_Update function fix in attempt to diminish fps lag when toggling map on and off

===== v.2.5 =====
m_Map: new background and border texture
m_Map: close and sizeup buttons repositioned to the topright corner of the whole frame
m_Map: levelup/down and zone level dropdown buttons now also inerit map's opacity
m_Map: few adjustments to buttons' FrameLevel

===== v.2.4 =====
m_Map: fixed miniWorldMap border to inherit map's opacity
m_Map: tiny frame and text position adjustments

===== v.2.3 =====
m_Map: fixed coordinates OnUpdate script so it doesn't draw any CPU usage when map is hidden
m_Map: coordinates code reworked, general code clean up
m_Map: *.toc update, removed coloring of initial letters so it doesn't screw up alphabetical order
Optional Files (0)


Post A Reply Comment Options
Unread 08-30-10, 08:24 PM  
feraldrood
A Theradrim Guardian
 
feraldrood's Avatar

Forum posts: 62
File comments: 47
Uploads: 0
If I did want to save the settings per character using

## SavedVariablesPerCharacter: ncExploreMap

and the other line, where would one go about putting that in mmap?
Report comment to moderator  
Reply With Quote
Unread 08-24-10, 12:08 PM  
sacrife
An Onyxian Warder
 
sacrife's Avatar
AddOn Author - Click to view AddOns

Forum posts: 384
File comments: 144
Uploads: 3
Originally posted by Cy4n1d3
Ah ok, great!
Thanks for your efforts, really appreciated

€dit: Just cosmetic:
Code:
hooksecurefunc("WorldMap_ToggleSizeDown", function()
	button:SetChecked(ncExploreMap)
	button:Show()
end)
otherwise the button is not being checked

Not quite sure, but i guess you also need
Code:
## SavedVariablesPerCharacter: ncExploreMap
in m_Map.toc

Yes you could, I only disabled it because I want it to reset every time Thus being default off.
__________________

Report comment to moderator  
Reply With Quote
Unread 08-24-10, 03:21 AM  
Cy4n1d3
A Kobold Labourer

Forum posts: 0
File comments: 7
Uploads: 0
Ah ok, great!
Thanks for your efforts, really appreciated

€dit: Just cosmetic:
Code:
hooksecurefunc("WorldMap_ToggleSizeDown", function()
	button:SetChecked(ncExploreMap)
	button:Show()
end)
otherwise the button is not being checked

Not quite sure, but i guess you also need
Code:
## SavedVariablesPerCharacter: ncExploreMap
in m_Map.toc

Last edited by Cy4n1d3 : 08-24-10 at 05:02 AM.
Report comment to moderator  
Reply With Quote
Unread 08-23-10, 02:11 PM  
sacrife
An Onyxian Warder
 
sacrife's Avatar
AddOn Author - Click to view AddOns

Forum posts: 384
File comments: 144
Uploads: 3
Originally posted by Cy4n1d3
Any Chance you will add Fog Removal? Only Feature I'm missing in comparison to Mapster!
download ncExploreMap and either paste the code from it at the bottom of m_Map.lua or just use it seperately. Either way. Change these 3 lines (search for them, they are almost at the top)

From:
Code:
local button = CreateFrame("CheckButton", nil, WorldMapFrame, "OptionsCheckButtonTemplate")

button:SetPoint("TOPLEFT", WorldMapFrame)

hooksecurefunc("WorldMap_ToggleSizeDown", function() button:Hide() end)
hooksecurefunc("WorldMap_ToggleSizeUp",  function()
	button:SetChecked(ncExploreMap)
	button:Show()
end)
To:
Code:
local button = CreateFrame("CheckButton", nil, WorldMapButton, "OptionsCheckButtonTemplate")

button:SetPoint("TOPLEFT", WorldMapButton, -6, 24)

hooksecurefunc("WorldMap_ToggleSizeDown", function()
	button:Show()
end)
hooksecurefunc("WorldMap_ToggleSizeUp",  function()
	button:SetChecked(ncExploreMap)
	button:Show()
end)
__________________

Report comment to moderator  
Reply With Quote
Unread 08-23-10, 01:27 PM  
sacrife
An Onyxian Warder
 
sacrife's Avatar
AddOn Author - Click to view AddOns

Forum posts: 384
File comments: 144
Uploads: 3
How can I set the the mapblips on a higher framelevel/strata.
They go beneath the quest bubbles and can be really annoying at times.
__________________

Report comment to moderator  
Reply With Quote
Unread 08-22-10, 04:27 AM  
Monolit
A Black Drake
AddOn Author - Click to view AddOns

Forum posts: 81
File comments: 428
Uploads: 7
Originally posted by Cy4n1d3
Any Chance you will add Fog Removal? Only Feature I'm missing in comparison to Mapster!
This is pretty "heavy" feature and I don't think it should belong to this add-on.
As Sec mentioned you can use ncExploreMap to get this functionality, it's pretty efficient also.
Report comment to moderator  
Reply With Quote
Unread 08-21-10, 06:20 PM  
Sec
A Cyclonian
 
Sec's Avatar

Forum posts: 48
File comments: 177
Uploads: 0
Originally posted by Cy4n1d3
Any Chance you will add Fog Removal? Only Feature I'm missing in comparison to Mapster!
http://www.wowinterface.com/download...xploreMap.html

Is just one of the addons out there that will provide the Fog Removal functionality.
Report comment to moderator  
Reply With Quote
Unread 08-20-10, 10:00 AM  
Cy4n1d3
A Kobold Labourer

Forum posts: 0
File comments: 7
Uploads: 0
Any Chance you will add Fog Removal? Only Feature I'm missing in comparison to Mapster!
Report comment to moderator  
Reply With Quote
Unread 08-18-10, 05:22 AM  
Shestak
A Deviate Faerie Dragon
 
Shestak's Avatar
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 65
Uploads: 1
Originally posted by Monolit
Но без возможности протестировать мне трудно сказать, повлияют ли данные изменения на ситуацию с фпс, могу лишь только надеяться.
Сейчас тестанем.
upd: На дефолте, без эддонов, только карата, сразу же, при открытие карты фпс падает с ~103 до 70(без в. синхронизации). А с в. синхронизацией не падает фпс, как 60 был, так и остался О_о.
Last edited by Shestak : 08-18-10 at 05:33 AM.
Report comment to moderator  
Reply With Quote
Unread 08-18-10, 03:50 AM  
Monolit
A Black Drake
AddOn Author - Click to view AddOns

Forum posts: 81
File comments: 428
Uploads: 7
Originally posted by Shestak
Моно, ченить было понятно из кода на пастей.нет? Почему так было в ласт версии с фпс?

Новая версия с возможной правкой фикса фпс или пока без нее?(это для тестов, что тестить мне ща )

П.С.: Мммм, квестблопы
Честно говоря, каких-то явных косяков я не нашел, но в последней версии просто было подчищено и убрано все, что можно было убрать без вреда функционалу + переделано отображение пары эдементов. Но без возможности протестировать мне трудно сказать, повлияют ли данные изменения на ситуацию с фпс, могу лишь только надеяться.
Last edited by Monolit : 08-18-10 at 04:45 AM.
Report comment to moderator  
Reply With Quote
Unread 08-18-10, 12:06 AM  
Shestak
A Deviate Faerie Dragon
 
Shestak's Avatar
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 65
Uploads: 1
Моно, ченить было понятно из кода на пастей.нет? Почему так было в ласт версии с фпс?

Новая версия с возможной правкой фикса фпс или пока без нее?(это для тестов, что тестить мне ща )

П.С.: Мммм, квестблопы
Report comment to moderator  
Reply With Quote
Unread 08-17-10, 02:51 PM  
sacrife
An Onyxian Warder
 
sacrife's Avatar
AddOn Author - Click to view AddOns

Forum posts: 384
File comments: 144
Uploads: 3
Yes I noticed you removed the blobs on purpose after skimming through the code and manually fixed it myself (even works in combat ).
Though will download the latest as the code cleanup might be nice.

I have no performance issues whatsoever with the raid icons so It should not be your addon that does this.

Is it however possible to add a small feature to display quest icons (with or without blobs) on the minimap?
__________________

Report comment to moderator  
Reply With Quote
Unread 08-17-10, 06:11 AM  
Monolit
A Black Drake
AddOn Author - Click to view AddOns

Forum posts: 81
File comments: 428
Uploads: 7
Originally posted by Shestak
Моно, ты пойми, что просто так, писать тебе о снижение фпс я не буду(ну смысл? так, чисто потрещать ), и естественно я тестил только код карты, без доп. эддонов и вмешательств(как можно бы было подумать).
Тем более сброс фпс есть не только у меня, и кстати, если ты думаешь, что в этом виноват якобы "динозаУр комп", то это так же заблуждение.
Тестировалось на двух разных конфигурациях, с разнообразными(уже и до этого дошел) видео настойками(мин, макс, средн, разнобой).

К примеру http://pastey.net/139685 с теми же возможностями, из одной твоей предыдущей сборки(уже правда и не припомню в какой) не дает подобного эффекта на все тех же двух компах с разнообразными настройками.

П.С.: Код уже переделан под меня и установлен, как основной. А вот ласт версия м_Мап дропает фпс на рендомных компах, в число которых твой комп не идет(что очень жаль, так как затрудняет тестирование и нахождение такого рода скрытых казусов), но помимо твоего компа есть еще компы(у которых падение фпс случается(пусть немного, но такие есть(компы)).
Ты видимо меня не так понял, я не пытался тебя задеть или сказать, что бага нет и вы все придумываете, наоборот, я пытаюсь его найти, и приложил уже достаточно много усилий для этого, но, как ты видишь по скринам, у меня не получается на своем компе воспроизвести это поведение.

Хорошо, что ты дал пример кода, который не дает подобного снижения, сегодня изучу дифф и, возможно, залью обновление с исправлением.
Report comment to moderator  
Reply With Quote
Unread 08-17-10, 05:15 AM  
Shestak
A Deviate Faerie Dragon
 
Shestak's Avatar
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 65
Uploads: 1
Я что-то делаю не так? Я уже не один час потратил на то, чтобы воспроизвести этот долбаный баг и никак не получается.
Моно, ты пойми, что просто так, писать тебе о снижение фпс я не буду(ну смысл? так, чисто потрещать ), и естественно я тестил только код карты, без доп. эддонов и вмешательств(как можно бы было подумать).
Тем более сброс фпс есть не только у меня, и кстати, если ты думаешь, что в этом виноват якобы "динозаУр комп", то это так же заблуждение.
Тестировалось на двух разных конфигурациях, с разнообразными(уже и до этого дошел) видео настойками(мин, макс, средн, разнобой).

К примеру http://pastey.net/139685 с теми же возможностями, из одной твоей предыдущей сборки(уже правда и не припомню в какой) не дает подобного эффекта на все тех же двух компах с разнообразными настройками.

П.С.: Код уже переделан под меня и установлен, как основной. А вот ласт версия м_Мап дропает фпс на рендомных компах, в число которых твой комп не идет(что очень жаль, так как затрудняет тестирование и нахождение такого рода скрытых казусов), но помимо твоего компа есть еще компы(у которых падение фпс случается(пусть немного, но такие есть(компы)).
Report comment to moderator  
Reply With Quote
Unread 08-13-10, 05:23 AM  
Monolit
A Black Drake
AddOn Author - Click to view AddOns

Forum posts: 81
File comments: 428
Uploads: 7
about the fps issue:
Guys I'm trying hard to reproduce that behavior, but my fps barely drops by 5-10% when I open the map. I even tested Mapster in same conditions to see if its just m_Map that's causing this fps difference, but no, fps drops even more with mapster opened.

I've uploaded results to my hosting and you may feel free to check it out.

Could it be another add-on that conflicts with m_Map or even some sort of specific video configuration that can cause it?

I'd like to fix this issue (if there is one), but I can't fix something that I'm not able to reproduce. Anyway I'm opened to any suggestions and advices.

2sacrife: it was intended this way, however those blue blobs are still there on the Big map.

EDIT:


2_hours_motherfucking_test

Well, I've done a test starting from 9:52 till 11:58:
• fully default UI, except 1 add-on with a tiny bit of code that allows easy add-ons toggling.
• not a single UI reload during the test
• enabled vertical sync and triple buffering
• completed 2 AVs and 4,5 SoTAs during the test
• the map was toggled about 20-30 times per battleground
• the map position was locked in place (via SetPoint)
• group icons style was enabled

I've honestly spent few hours trying to reproduce that behavior as you may see on the screenshots I posted, and I've yet to see those huge fps drops you guys told me about. So I would really really appreciate if you could supply me with a certain pattern to follow to reproduce those drops in fps.
Last edited by Monolit : 08-16-10 at 04:48 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: