2013-01-21 00:17:56 +01:00
|
|
|
DEFAULT_ZOOM = 0
|
2012-07-24 07:30:08 +02:00
|
|
|
MAX_FLOOR_UP = 0
|
|
|
|
MAX_FLOOR_DOWN = 15
|
2012-04-07 01:12:46 +02:00
|
|
|
|
2012-07-24 07:30:08 +02:00
|
|
|
navigating = false
|
|
|
|
minimapWidget = nil
|
|
|
|
minimapButton = nil
|
|
|
|
minimapWindow = nil
|
2012-04-07 01:12:46 +02:00
|
|
|
|
2012-10-11 17:36:00 +02:00
|
|
|
flagsPanel = nil
|
2012-10-12 01:42:10 +02:00
|
|
|
flagWindow = nil
|
2012-10-11 17:36:00 +02:00
|
|
|
nextFlagId = 0
|
2012-07-09 13:37:47 +02:00
|
|
|
--[[
|
2012-07-12 21:16:23 +02:00
|
|
|
Known Issue (TODO):
|
|
|
|
If you move the minimap compass directions and
|
2012-07-09 13:37:47 +02:00
|
|
|
you change floor it will not update the minimap.
|
|
|
|
]]
|
2012-07-24 07:30:08 +02:00
|
|
|
function init()
|
2013-01-18 23:39:11 +01:00
|
|
|
g_ui.importStyle('flagwindow')
|
2012-10-12 01:42:10 +02:00
|
|
|
|
2012-08-18 12:34:15 +02:00
|
|
|
connect(g_game, {
|
|
|
|
onGameStart = online,
|
|
|
|
onGameEnd = offline,
|
2012-10-11 17:36:00 +02:00
|
|
|
onAutomapFlag = addMapFlag
|
2012-08-18 12:34:15 +02:00
|
|
|
})
|
2012-12-29 18:41:14 +01:00
|
|
|
connect(LocalPlayer, { onPositionChange = center })
|
2012-07-12 21:16:23 +02:00
|
|
|
|
2012-07-24 07:30:08 +02:00
|
|
|
g_keyboard.bindKeyDown('Ctrl+M', toggle)
|
2012-04-07 01:12:46 +02:00
|
|
|
|
2013-01-18 23:39:11 +01:00
|
|
|
minimapButton = modules.client_topmenu.addRightGameToggleButton('minimapButton', tr('Minimap') .. ' (Ctrl+M)', '/images/topbuttons/minimap', toggle)
|
2012-06-23 16:26:18 +02:00
|
|
|
minimapButton:setOn(true)
|
2012-04-07 01:12:46 +02:00
|
|
|
|
2013-01-18 23:39:11 +01:00
|
|
|
minimapWindow = g_ui.loadUI('minimap', modules.game_interface.getRightPanel())
|
2012-08-21 01:56:16 +02:00
|
|
|
minimapWindow:setContentMinimumHeight(64)
|
2013-01-21 00:17:56 +01:00
|
|
|
--minimapWindow:setContentMaximumHeight(256)
|
2012-06-22 07:26:22 +02:00
|
|
|
|
|
|
|
minimapWidget = minimapWindow:recursiveGetChildById('minimap')
|
2012-12-15 13:26:27 +01:00
|
|
|
g_mouse.bindAutoPress(minimapWidget, compassClick, nil, MouseLeftButton)
|
2013-01-21 00:17:56 +01:00
|
|
|
|
2012-04-07 01:12:46 +02:00
|
|
|
minimapWidget.onMouseRelease = onMinimapMouseRelease
|
2012-07-05 14:38:48 +02:00
|
|
|
minimapWidget.onMouseWheel = onMinimapMouseWheel
|
2012-10-11 17:36:00 +02:00
|
|
|
flagsPanel = minimapWindow:recursiveGetChildById('flagsPanel')
|
2012-07-05 14:38:48 +02:00
|
|
|
|
2012-07-24 07:30:08 +02:00
|
|
|
reset()
|
2012-08-21 23:40:47 +02:00
|
|
|
minimapWindow:setup()
|
2012-10-11 17:36:00 +02:00
|
|
|
loadMapFlags()
|
|
|
|
|
|
|
|
if g_game.isOnline() then
|
|
|
|
addEvent(function() updateMapFlags() end)
|
|
|
|
end
|
2012-04-07 01:12:46 +02:00
|
|
|
end
|
|
|
|
|
2012-07-24 07:30:08 +02:00
|
|
|
function terminate()
|
2012-08-18 12:34:15 +02:00
|
|
|
disconnect(g_game, {
|
|
|
|
onGameStart = online,
|
|
|
|
onGameEnd = offline,
|
2012-10-11 17:36:00 +02:00
|
|
|
onAutomapFlag = addMapFlag
|
2012-08-18 12:34:15 +02:00
|
|
|
})
|
2012-12-29 18:41:14 +01:00
|
|
|
disconnect(LocalPlayer, { onPositionChange = center })
|
2012-08-18 12:34:15 +02:00
|
|
|
|
2012-10-12 01:42:10 +02:00
|
|
|
destroyFlagWindow()
|
2012-10-11 17:36:00 +02:00
|
|
|
saveMapFlags()
|
2012-08-18 12:34:15 +02:00
|
|
|
if g_game.isOnline() then
|
|
|
|
saveMap()
|
|
|
|
end
|
2012-07-12 21:16:23 +02:00
|
|
|
|
2012-06-26 00:13:30 +02:00
|
|
|
g_keyboard.unbindKeyDown('Ctrl+M')
|
2012-04-07 01:12:46 +02:00
|
|
|
|
2012-06-24 13:20:17 +02:00
|
|
|
minimapButton:destroy()
|
2012-06-22 07:26:22 +02:00
|
|
|
minimapWindow:destroy()
|
2012-04-07 01:12:46 +02:00
|
|
|
end
|
|
|
|
|
2013-01-10 18:25:32 +01:00
|
|
|
function onFlagMousePress(widget, mousePosition, mouseButton)
|
|
|
|
if mouseButton == MouseRightButton then
|
|
|
|
local menu = g_ui.createWidget('PopupMenu')
|
|
|
|
menu:addOption(tr('Delete mark'), function()
|
|
|
|
widget:destroy()
|
|
|
|
end)
|
|
|
|
menu:display(mousePosition)
|
|
|
|
elseif mouseButton == MouseLeftButton then
|
|
|
|
minimapAutoWalk(widget.position)
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2012-10-12 01:42:10 +02:00
|
|
|
function destroyFlagWindow()
|
|
|
|
if flagWindow then
|
|
|
|
flagWindow:destroy()
|
|
|
|
flagWindow = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function showFlagDialog(position)
|
|
|
|
if flagWindow then return end
|
|
|
|
if not position then return end
|
|
|
|
flagWindow = g_ui.createWidget('FlagWindow', rootWidget)
|
|
|
|
|
|
|
|
local positionLabel = flagWindow:getChildById('position')
|
|
|
|
local description = flagWindow:getChildById('description')
|
|
|
|
local okButton = flagWindow:getChildById('okButton')
|
|
|
|
local cancelButton = flagWindow:getChildById('cancelButton')
|
|
|
|
|
|
|
|
positionLabel:setText(tr('Position: %i %i %i', position.x, position.y, position.z))
|
|
|
|
|
|
|
|
flagRadioGroup = UIRadioGroup.create()
|
|
|
|
local flagCheckbox = {}
|
|
|
|
for i = 1, 20 do
|
|
|
|
local checkbox = flagWindow:getChildById('flag' .. i)
|
|
|
|
table.insert(flagCheckbox, checkbox)
|
|
|
|
checkbox.icon = i
|
|
|
|
flagRadioGroup:addWidget(checkbox)
|
|
|
|
end
|
|
|
|
|
|
|
|
flagRadioGroup:selectWidget(flagCheckbox[1])
|
|
|
|
|
2012-12-28 17:15:57 +01:00
|
|
|
cancelButton.onClick = function()
|
2012-10-12 01:42:10 +02:00
|
|
|
flagRadioGroup:destroy()
|
2013-01-10 18:25:32 +01:00
|
|
|
flagRadioGroup = nil
|
2012-10-12 01:42:10 +02:00
|
|
|
destroyFlagWindow()
|
|
|
|
end
|
|
|
|
okButton.onClick = function()
|
|
|
|
addMapFlag(position, flagRadioGroup:getSelectedWidget().icon, description:getText())
|
|
|
|
flagRadioGroup:destroy()
|
2013-01-10 18:25:32 +01:00
|
|
|
flagRadioGroup = nil
|
2012-10-12 01:42:10 +02:00
|
|
|
destroyFlagWindow()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-11 17:36:00 +02:00
|
|
|
function loadMapFlags()
|
|
|
|
mapFlags = {}
|
|
|
|
|
|
|
|
local flagSettings = g_settings.getNode('MapFlags')
|
|
|
|
if flagSettings then
|
|
|
|
for i = 1, #flagSettings do
|
|
|
|
local flag = flagSettings[i]
|
|
|
|
addMapFlag(flag.position, flag.icon, flag.description, flag.id, flag.version)
|
|
|
|
|
|
|
|
if i == #flagSettings then
|
|
|
|
nextFlagId = flag.id + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function saveMapFlags()
|
|
|
|
local flagSettings = {}
|
|
|
|
|
|
|
|
for i = 1, flagsPanel:getChildCount() do
|
|
|
|
local child = flagsPanel:getChildByIndex(i)
|
|
|
|
|
|
|
|
table.insert(flagSettings, { position = child.position,
|
|
|
|
icon = child.icon,
|
|
|
|
description = child.description,
|
|
|
|
id = child.id,
|
|
|
|
version = child.version })
|
|
|
|
end
|
|
|
|
|
|
|
|
g_settings.setNode('MapFlags', flagSettings)
|
|
|
|
end
|
|
|
|
|
|
|
|
function getFlagIconClip(id)
|
|
|
|
return (((id)%10)*11) .. ' ' .. ((math.ceil(id/10+0.1)-1)*11) .. ' 11 11'
|
|
|
|
end
|
|
|
|
|
|
|
|
function addMapFlag(pos, icon, message, flagId, version)
|
|
|
|
if not(icon >= 1 and icon <= 20) or not pos then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2012-12-28 12:05:45 +01:00
|
|
|
version = version or g_game.getProtocolVersion()
|
2012-10-11 17:36:00 +02:00
|
|
|
-- Check if flag is set for that position
|
|
|
|
for i = 1, flagsPanel:getChildCount() do
|
|
|
|
local flag = flagsPanel:getChildByIndex(i)
|
|
|
|
if flag.position.x == pos.x and flag.position.y == pos.y and flag.position.z == pos.z
|
|
|
|
and version == flag.version then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if not flagId then
|
|
|
|
flagId = nextFlagId
|
|
|
|
nextFlagId = nextFlagId + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
local flagWidget = g_ui.createWidget('FlagWidget', flagsPanel)
|
|
|
|
flagWidget:setIconClip(getFlagIconClip(icon - 1))
|
|
|
|
flagWidget:setId('flag' .. flagId)
|
|
|
|
flagWidget.position = pos
|
|
|
|
flagWidget.icon = icon
|
|
|
|
flagWidget.description = message
|
2012-10-12 01:42:10 +02:00
|
|
|
if message and message:len() > 0 then
|
|
|
|
flagWidget:setTooltip(tr(message))
|
|
|
|
end
|
2012-10-11 17:36:00 +02:00
|
|
|
flagWidget.id = flagId
|
|
|
|
flagWidget.version = version
|
|
|
|
updateMapFlag(flagId)
|
2013-01-10 18:25:32 +01:00
|
|
|
flagWidget.onMousePress = onFlagMousePress
|
2012-10-11 17:36:00 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function getMapArea()
|
|
|
|
return minimapWidget:getPosition( { x = 1 + minimapWidget:getX(), y = 1 + minimapWidget:getY() } ),
|
2013-01-21 00:17:56 +01:00
|
|
|
minimapWidget:getPosition( { x = -2 + minimapWidget:getWidth() + minimapWidget:getX(), y = -2 + minimapWidget:getHeight() + minimapWidget:getY() } )
|
2012-10-11 17:36:00 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function isFlagVisible(flag, firstPosition, lastPosition)
|
2013-01-21 00:17:56 +01:00
|
|
|
return flag.version == g_game.getProtocolVersion() and (minimapWidget:getZoom() >= 0 and minimapWidget:getZoom() <= 2) and flag.position.x >= firstPosition.x and flag.position.x <= lastPosition.x and flag.position.y >= firstPosition.y and flag.position.y <= lastPosition.y and flag.position.z == firstPosition.z
|
2012-10-11 17:36:00 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function updateMapFlag(id)
|
|
|
|
local firstPosition, lastPosition = getMapArea()
|
|
|
|
if not firstPosition or not lastPosition then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local flag = flagsPanel:getChildById('flag' .. id)
|
|
|
|
if isFlagVisible(flag, firstPosition, lastPosition) then
|
|
|
|
flag:setVisible(true)
|
|
|
|
flag:setMarginLeft( -5 + (minimapWidget:getWidth() / (lastPosition.x - firstPosition.x)) * (flag.position.x - firstPosition.x))
|
|
|
|
flag:setMarginTop( -5 + (minimapWidget:getHeight() / (lastPosition.y - firstPosition.y)) * (flag.position.y - firstPosition.y))
|
|
|
|
else
|
|
|
|
flag:setVisible(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function updateMapFlags()
|
|
|
|
local firstPosition, lastPosition = getMapArea()
|
|
|
|
if not firstPosition or not lastPosition then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
for i = 1, flagsPanel:getChildCount() do
|
|
|
|
local flag = flagsPanel:getChildByIndex(i)
|
|
|
|
if isFlagVisible(flag, firstPosition, lastPosition) then
|
|
|
|
flag:setVisible(true)
|
|
|
|
flag:setMarginLeft( -5 + (minimapWidget:getWidth() / (lastPosition.x - firstPosition.x)) * (flag.position.x - firstPosition.x))
|
|
|
|
flag:setMarginTop( -5 + (minimapWidget:getHeight() / (lastPosition.y - firstPosition.y)) * (flag.position.y - firstPosition.y))
|
|
|
|
else
|
|
|
|
flag:setVisible(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-18 12:34:15 +02:00
|
|
|
function online()
|
|
|
|
reset()
|
|
|
|
loadMap()
|
2012-10-11 17:36:00 +02:00
|
|
|
|
|
|
|
updateMapFlags()
|
2012-08-18 12:34:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function offline()
|
|
|
|
saveMap()
|
|
|
|
end
|
|
|
|
|
|
|
|
function loadMap()
|
2012-12-28 12:05:45 +01:00
|
|
|
local protocolVersion = g_game.getProtocolVersion()
|
|
|
|
local minimapFile = '/minimap_' .. protocolVersion .. '.otcm'
|
2012-08-18 19:08:05 +02:00
|
|
|
if g_resources.fileExists(minimapFile) then
|
|
|
|
g_map.clean()
|
|
|
|
g_map.loadOtcm(minimapFile)
|
|
|
|
end
|
2012-08-18 12:34:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function saveMap()
|
2012-12-28 12:05:45 +01:00
|
|
|
local protocolVersion = g_game.getProtocolVersion()
|
|
|
|
local minimapFile = '/minimap_' .. protocolVersion .. '.otcm'
|
2012-08-18 19:08:05 +02:00
|
|
|
g_map.saveOtcm(minimapFile)
|
2012-08-18 12:34:15 +02:00
|
|
|
end
|
|
|
|
|
2012-07-24 07:30:08 +02:00
|
|
|
function toggle()
|
2012-06-24 14:41:39 +02:00
|
|
|
if minimapButton:isOn() then
|
2012-06-22 07:26:22 +02:00
|
|
|
minimapWindow:close()
|
|
|
|
minimapButton:setOn(false)
|
2012-06-24 14:41:39 +02:00
|
|
|
else
|
|
|
|
minimapWindow:open()
|
|
|
|
minimapButton:setOn(true)
|
2012-06-22 07:26:22 +02:00
|
|
|
end
|
2012-04-07 01:12:46 +02:00
|
|
|
end
|
|
|
|
|
2012-07-24 07:30:08 +02:00
|
|
|
function isClickInRange(position, fromPosition, toPosition)
|
|
|
|
return (position.x >= fromPosition.x and position.y >= fromPosition.y and position.x <= toPosition.x and position.y <= toPosition.y)
|
2012-06-24 14:41:39 +02:00
|
|
|
end
|
|
|
|
|
2013-01-06 16:04:49 +01:00
|
|
|
function reset(zoom)
|
|
|
|
if zoom == nil then zoom = true end
|
2012-07-24 07:30:08 +02:00
|
|
|
local player = g_game.getLocalPlayer()
|
|
|
|
if not player then return end
|
|
|
|
minimapWidget:followCreature(player)
|
2013-01-06 16:04:49 +01:00
|
|
|
if zoom then
|
|
|
|
minimapWidget:setZoom(DEFAULT_ZOOM)
|
|
|
|
end
|
2012-06-26 07:54:55 +02:00
|
|
|
end
|
2012-07-12 21:16:23 +02:00
|
|
|
|
2012-07-24 07:30:08 +02:00
|
|
|
function center()
|
2013-01-06 16:04:49 +01:00
|
|
|
reset(false)
|
2012-10-12 01:42:10 +02:00
|
|
|
updateMapFlags()
|
2012-07-24 07:30:08 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function compassClick(self, mousePos, mouseButton, elapsed)
|
2012-07-13 01:40:55 +02:00
|
|
|
if elapsed < 300 then return end
|
|
|
|
|
|
|
|
navigating = true
|
2012-07-12 21:16:23 +02:00
|
|
|
local px = mousePos.x - self:getX()
|
|
|
|
local py = mousePos.y - self:getY()
|
|
|
|
local dx = px - self:getWidth()/2
|
|
|
|
local dy = -(py - self:getHeight()/2)
|
|
|
|
local radius = math.sqrt(dx*dx+dy*dy)
|
2012-07-13 10:24:52 +02:00
|
|
|
local movex = 0
|
|
|
|
local movey = 0
|
2012-07-12 21:16:23 +02:00
|
|
|
dx = dx/radius
|
|
|
|
dy = dy/radius
|
|
|
|
|
2013-01-21 00:17:56 +01:00
|
|
|
local speed = math.ceil((1.0 / minimapWidget:getScale()) * 3)
|
2013-01-06 16:04:49 +01:00
|
|
|
if dx > 0.5 then movex = speed end
|
|
|
|
if dx < -0.5 then movex = -speed end
|
|
|
|
if dy > 0.5 then movey = -speed end
|
|
|
|
if dy < -0.5 then movey = speed end
|
2012-07-05 14:38:48 +02:00
|
|
|
|
2012-07-09 13:37:47 +02:00
|
|
|
local cameraPos = minimapWidget:getCameraPosition()
|
2012-07-12 21:16:23 +02:00
|
|
|
local pos = {x = cameraPos.x + movex, y = cameraPos.y + movey, z = cameraPos.z}
|
2012-07-09 13:37:47 +02:00
|
|
|
minimapWidget:setCameraPosition(pos)
|
2012-10-11 17:36:00 +02:00
|
|
|
|
|
|
|
updateMapFlags()
|
2012-06-26 07:54:55 +02:00
|
|
|
end
|
|
|
|
|
2013-01-21 00:17:56 +01:00
|
|
|
function miniMapZoomIn()
|
|
|
|
minimapWidget:zoomIn()
|
2013-01-06 16:04:49 +01:00
|
|
|
end
|
|
|
|
|
2013-01-21 00:17:56 +01:00
|
|
|
function miniMapZoomOut()
|
|
|
|
minimapWidget:zoomOut()
|
2013-01-06 16:04:49 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function minimapFloorUp(floors)
|
|
|
|
local pos = minimapWidget:getCameraPosition()
|
|
|
|
pos.z = pos.z - floors
|
|
|
|
if pos.z > MAX_FLOOR_UP then
|
|
|
|
minimapWidget:setCameraPosition(pos)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function minimapFloorDown(floors)
|
|
|
|
local pos = minimapWidget:getCameraPosition()
|
|
|
|
pos.z = pos.z + floors
|
|
|
|
if pos.z < MAX_FLOOR_DOWN then
|
|
|
|
minimapWidget:setCameraPosition(pos)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-01-10 18:25:32 +01:00
|
|
|
function minimapAutoWalk(pos)
|
|
|
|
local player = g_game.getLocalPlayer()
|
|
|
|
if not player:autoWalk(pos) then
|
|
|
|
modules.game_textmessage.displayStatusMessage(tr('There is no way.'))
|
|
|
|
return false
|
|
|
|
else
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-07-24 07:30:08 +02:00
|
|
|
function onButtonClick(id)
|
2012-06-26 07:54:55 +02:00
|
|
|
if id == "zoomIn" then
|
2013-01-21 00:17:56 +01:00
|
|
|
miniMapZoomIn()
|
2012-06-26 07:54:55 +02:00
|
|
|
elseif id == "zoomOut" then
|
2013-01-21 00:17:56 +01:00
|
|
|
miniMapZoomOut()
|
2012-07-12 19:29:44 +02:00
|
|
|
elseif id == "floorUp" then
|
2013-01-06 16:04:49 +01:00
|
|
|
minimapFloorUp(1)
|
2012-07-12 19:29:44 +02:00
|
|
|
elseif id == "floorDown" then
|
2013-01-06 16:04:49 +01:00
|
|
|
minimapFloorDown(1)
|
2012-06-26 07:54:55 +02:00
|
|
|
end
|
2012-10-11 17:36:00 +02:00
|
|
|
|
|
|
|
updateMapFlags()
|
2012-07-10 14:15:31 +02:00
|
|
|
end
|
|
|
|
|
2012-07-24 07:30:08 +02:00
|
|
|
function onMinimapMouseRelease(self, mousePosition, mouseButton)
|
2012-12-15 13:26:27 +01:00
|
|
|
-- Mapmark menu
|
2013-01-10 18:25:32 +01:00
|
|
|
local pos = self:getPosition(mousePosition)
|
|
|
|
if mouseButton == MouseRightButton then
|
|
|
|
local menu = g_ui.createWidget('PopupMenu')
|
|
|
|
menu:addOption(tr('Create mark'), function()
|
|
|
|
local pos = self:getPosition(mousePosition)
|
|
|
|
if pos then
|
|
|
|
showFlagDialog(pos)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
menu:display(mousePosition)
|
|
|
|
end
|
2012-12-15 13:26:27 +01:00
|
|
|
|
2012-07-24 07:30:08 +02:00
|
|
|
if navigating then
|
|
|
|
navigating = false
|
|
|
|
return
|
|
|
|
end
|
2012-08-22 04:10:56 +02:00
|
|
|
if pos and mouseButton == MouseLeftButton and self:isPressed() then
|
2013-01-10 18:25:32 +01:00
|
|
|
minimapAutoWalk(pos)
|
2012-07-24 07:30:08 +02:00
|
|
|
end
|
|
|
|
return false
|
2012-07-10 14:15:31 +02:00
|
|
|
end
|
|
|
|
|
2012-07-24 07:30:08 +02:00
|
|
|
function onMinimapMouseWheel(self, mousePos, direction)
|
2013-01-06 16:04:49 +01:00
|
|
|
local keyboardModifiers = g_keyboard.getModifiers()
|
|
|
|
|
|
|
|
if direction == MouseWheelUp and keyboardModifiers == KeyboardNoModifier then
|
2013-01-21 00:17:56 +01:00
|
|
|
miniMapZoomOut()
|
2013-01-22 13:01:30 +01:00
|
|
|
elseif direction == MouseWheelDown and keyboardModifiers == KeyboardNoModifier then
|
|
|
|
miniMapZoomIn()
|
2013-01-06 16:04:49 +01:00
|
|
|
elseif direction == MouseWheelDown and keyboardModifiers == KeyboardCtrlModifier then
|
|
|
|
minimapFloorUp(1)
|
|
|
|
elseif direction == MouseWheelUp and keyboardModifiers == KeyboardCtrlModifier then
|
|
|
|
minimapFloorDown(1)
|
2012-07-24 07:30:08 +02:00
|
|
|
end
|
2012-10-11 17:36:00 +02:00
|
|
|
updateMapFlags()
|
2012-07-24 07:30:08 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function onMiniWindowClose()
|
|
|
|
minimapButton:setOn(false)
|
|
|
|
end
|