2013-01-07 18:17:01 +01:00
WALK_STEPS_RETRY = 10
2012-07-24 07:30:08 +02:00
gameRootPanel = nil
gameMapPanel = nil
gameRightPanel = nil
gameLeftPanel = nil
gameBottomPanel = nil
logoutButton = nil
mouseGrabberWidget = nil
countWindow = nil
logoutWindow = nil
exitWindow = nil
2012-10-10 01:25:50 +02:00
bottomSplitter = nil
2013-11-12 23:35:05 +01:00
limitedZoom = false
2013-01-24 20:15:07 +01:00
currentViewMode = 0
2013-01-26 21:10:30 +01:00
smartWalkDirs = { }
smartWalkDir = nil
2013-02-26 20:37:02 +01:00
walkFunction = nil
2014-07-13 12:27:09 +02:00
hookedMenuOptions = { }
2012-12-29 18:41:14 +01:00
2012-07-24 07:30:08 +02:00
function init ( )
2013-01-18 23:39:11 +01:00
g_ui.importStyle ( ' styles/countwindow ' )
2012-06-26 00:13:30 +02:00
2013-01-07 18:17:01 +01:00
connect ( g_game , {
2013-01-18 06:27:29 +01:00
onGameStart = onGameStart ,
onGameEnd = onGameEnd ,
2013-02-18 17:16:22 +01:00
onLoginAdvice = onLoginAdvice ,
2013-01-07 18:17:01 +01:00
} , true )
2013-01-18 23:39:11 +01:00
gameRootPanel = g_ui.displayUI ( ' gameinterface ' )
2012-03-18 14:34:39 +01:00
gameRootPanel : hide ( )
gameRootPanel : lower ( )
2012-10-10 22:20:32 +02:00
gameRootPanel.onGeometryChange = updateStretchShrink
2013-01-26 23:12:00 +01:00
gameRootPanel.onFocusChange = stopSmartWalk
2012-03-18 14:34:39 +01:00
2012-03-29 21:25:04 +02:00
mouseGrabberWidget = gameRootPanel : getChildById ( ' mouseGrabber ' )
2012-07-24 07:30:08 +02:00
mouseGrabberWidget.onMouseRelease = onMouseGrabberRelease
2012-03-29 21:25:04 +02:00
2012-10-10 01:25:50 +02:00
bottomSplitter = gameRootPanel : getChildById ( ' bottomSplitter ' )
2012-03-18 14:34:39 +01:00
gameMapPanel = gameRootPanel : getChildById ( ' gameMapPanel ' )
gameRightPanel = gameRootPanel : getChildById ( ' gameRightPanel ' )
gameLeftPanel = gameRootPanel : getChildById ( ' gameLeftPanel ' )
gameBottomPanel = gameRootPanel : getChildById ( ' gameBottomPanel ' )
2012-06-21 21:31:22 +02:00
connect ( gameLeftPanel , { onVisibilityChange = onLeftPanelVisibilityChange } )
2012-03-18 14:34:39 +01:00
2014-01-18 15:09:26 +01:00
logoutButton = modules.client_topmenu . addLeftButton ( ' logoutButton ' , tr ( ' Exit ' ) ,
2013-07-06 19:36:56 +02:00
' /images/topbuttons/logout ' , tryLogout , true )
2012-03-18 14:34:39 +01:00
2013-01-24 20:15:07 +01:00
setupViewMode ( 0 )
2012-08-25 21:11:54 +02:00
bindKeys ( )
2013-02-14 16:54:33 +01:00
load ( )
2012-08-25 21:11:54 +02:00
if g_game.isOnline ( ) then
show ( )
end
end
function bindKeys ( )
2014-03-12 06:39:20 +01:00
gameRootPanel : setAutoRepeatDelay ( 200 )
2013-07-29 00:41:44 +02:00
bindWalkKey ( ' Up ' , North )
bindWalkKey ( ' Right ' , East )
bindWalkKey ( ' Down ' , South )
bindWalkKey ( ' Left ' , West )
bindWalkKey ( ' Numpad8 ' , North )
bindWalkKey ( ' Numpad9 ' , NorthEast )
bindWalkKey ( ' Numpad6 ' , East )
bindWalkKey ( ' Numpad3 ' , SouthEast )
bindWalkKey ( ' Numpad2 ' , South )
bindWalkKey ( ' Numpad1 ' , SouthWest )
bindWalkKey ( ' Numpad4 ' , West )
bindWalkKey ( ' Numpad7 ' , NorthWest )
2013-02-18 17:16:22 +01:00
g_keyboard.bindKeyPress ( ' Ctrl+Up ' , function ( ) g_game.turn ( North ) changeWalkDir ( North ) end , gameRootPanel )
g_keyboard.bindKeyPress ( ' Ctrl+Right ' , function ( ) g_game.turn ( East ) changeWalkDir ( East ) end , gameRootPanel )
g_keyboard.bindKeyPress ( ' Ctrl+Down ' , function ( ) g_game.turn ( South ) changeWalkDir ( South ) end , gameRootPanel )
g_keyboard.bindKeyPress ( ' Ctrl+Left ' , function ( ) g_game.turn ( West ) changeWalkDir ( West ) end , gameRootPanel )
g_keyboard.bindKeyPress ( ' Ctrl+Numpad8 ' , function ( ) g_game.turn ( North ) changeWalkDir ( North ) end , gameRootPanel )
g_keyboard.bindKeyPress ( ' Ctrl+Numpad6 ' , function ( ) g_game.turn ( East ) changeWalkDir ( East ) end , gameRootPanel )
g_keyboard.bindKeyPress ( ' Ctrl+Numpad2 ' , function ( ) g_game.turn ( South ) changeWalkDir ( South ) end , gameRootPanel )
g_keyboard.bindKeyPress ( ' Ctrl+Numpad4 ' , function ( ) g_game.turn ( West ) changeWalkDir ( West ) end , gameRootPanel )
g_keyboard.bindKeyPress ( ' Escape ' , function ( ) g_game.cancelAttackAndFollow ( ) end , gameRootPanel )
g_keyboard.bindKeyPress ( ' Ctrl+= ' , function ( ) gameMapPanel : zoomIn ( ) end , gameRootPanel )
g_keyboard.bindKeyPress ( ' Ctrl+- ' , function ( ) gameMapPanel : zoomOut ( ) end , gameRootPanel )
2013-07-06 19:36:56 +02:00
g_keyboard.bindKeyDown ( ' Ctrl+Q ' , function ( ) tryLogout ( false ) end , gameRootPanel )
g_keyboard.bindKeyDown ( ' Ctrl+L ' , function ( ) tryLogout ( false ) end , gameRootPanel )
2012-07-24 07:30:08 +02:00
g_keyboard.bindKeyDown ( ' Ctrl+W ' , function ( ) g_map.cleanTexts ( ) modules.game_textmessage . clearMessages ( ) end , gameRootPanel )
2013-01-24 20:15:07 +01:00
g_keyboard.bindKeyDown ( ' Ctrl+. ' , nextViewMode , gameRootPanel )
2012-01-13 01:31:39 +01:00
end
2013-07-29 00:41:44 +02:00
function bindWalkKey ( key , dir )
2013-08-18 02:56:37 +02:00
g_keyboard.bindKeyDown ( key , function ( ) changeWalkDir ( dir ) end , gameRootPanel , true )
g_keyboard.bindKeyUp ( key , function ( ) changeWalkDir ( dir , true ) end , gameRootPanel , true )
2013-08-13 00:21:53 +02:00
g_keyboard.bindKeyPress ( key , function ( ) smartWalk ( dir ) end , gameRootPanel )
2013-07-29 00:41:44 +02:00
end
function unbindWalkKey ( key )
2013-08-13 00:21:53 +02:00
g_keyboard.unbindKeyDown ( key , gameRootPanel )
g_keyboard.unbindKeyUp ( key , gameRootPanel )
g_keyboard.unbindKeyPress ( key , gameRootPanel )
2013-07-29 00:41:44 +02:00
end
2012-07-24 07:30:08 +02:00
function terminate ( )
2013-02-14 16:54:33 +01:00
save ( )
2013-01-18 19:49:41 +01:00
hide ( )
2014-07-13 12:27:09 +02:00
hookedMenuOptions = { }
2013-01-26 23:12:00 +01:00
stopSmartWalk ( )
2013-01-26 21:10:30 +01:00
disconnect ( g_game , {
2013-01-18 06:27:29 +01:00
onGameStart = onGameStart ,
onGameEnd = onGameEnd ,
2013-01-06 16:04:49 +01:00
onLoginAdvice = onLoginAdvice
} )
2012-06-21 21:31:22 +02:00
disconnect ( gameLeftPanel , { onVisibilityChange = onLeftPanelVisibilityChange } )
2012-03-18 14:34:39 +01:00
2013-02-01 05:32:15 +01:00
logoutButton : destroy ( )
2012-03-18 14:34:39 +01:00
gameRootPanel : destroy ( )
2012-01-13 01:31:39 +01:00
end
2013-01-18 06:27:29 +01:00
function onGameStart ( )
show ( )
-- open tibia has delay in auto walking
if not g_game.isOfficialTibia ( ) then
g_game.enableFeature ( GameForceFirstAutoWalkStep )
2013-01-31 08:31:21 +01:00
else
2013-01-29 07:26:32 +01:00
g_game.disableFeature ( GameForceFirstAutoWalkStep )
2013-01-18 06:27:29 +01:00
end
end
function onGameEnd ( )
2013-01-26 23:40:07 +01:00
setupViewMode ( 0 )
2013-01-18 06:27:29 +01:00
hide ( )
end
2012-07-24 07:30:08 +02:00
function show ( )
connect ( g_app , { onClose = tryExit } )
2013-01-18 23:39:11 +01:00
modules.client_background . hide ( )
2012-03-18 14:34:39 +01:00
gameRootPanel : show ( )
gameRootPanel : focus ( )
gameMapPanel : followCreature ( g_game.getLocalPlayer ( ) )
2013-02-04 22:40:12 +01:00
setupViewMode ( 0 )
2012-12-28 17:15:57 +01:00
updateStretchShrink ( )
2013-02-01 05:32:15 +01:00
logoutButton : setTooltip ( tr ( ' Logout ' ) )
2013-11-12 23:35:05 +01:00
addEvent ( function ( )
if not limitedZoom or g_game.isGM ( ) then
gameMapPanel : setMaxZoomOut ( 513 )
gameMapPanel : setLimitVisibleRange ( false )
else
gameMapPanel : setMaxZoomOut ( 11 )
gameMapPanel : setLimitVisibleRange ( true )
end
end )
2012-03-18 14:34:39 +01:00
end
2012-01-12 02:21:59 +01:00
2012-07-24 07:30:08 +02:00
function hide ( )
disconnect ( g_app , { onClose = tryExit } )
2013-02-01 05:32:15 +01:00
logoutButton : setTooltip ( tr ( ' Exit ' ) )
2014-01-18 15:09:26 +01:00
2012-07-15 13:49:28 +02:00
if logoutWindow then
2012-07-14 12:59:32 +02:00
logoutWindow : destroy ( )
logoutWindow = nil
end
2012-07-15 13:49:28 +02:00
if exitWindow then
2012-07-14 12:59:32 +02:00
exitWindow : destroy ( )
exitWindow = nil
end
2012-07-15 16:28:15 +02:00
if countWindow then
2012-07-14 12:59:32 +02:00
countWindow : destroy ( )
countWindow = nil
end
2012-03-18 14:34:39 +01:00
gameRootPanel : hide ( )
2013-01-18 23:39:11 +01:00
modules.client_background . show ( )
2012-03-18 14:34:39 +01:00
end
2012-01-12 02:21:59 +01:00
2013-02-14 16:54:33 +01:00
function save ( )
local settings = { }
settings.splitterMarginBottom = bottomSplitter : getMarginBottom ( )
2013-02-14 18:30:45 +01:00
g_settings.setNode ( ' game_interface ' , settings )
2013-02-14 16:54:33 +01:00
end
function load ( )
2013-02-14 18:30:45 +01:00
local settings = g_settings.getNode ( ' game_interface ' )
2013-02-14 16:54:33 +01:00
if settings then
if settings.splitterMarginBottom then
bottomSplitter : setMarginBottom ( settings.splitterMarginBottom )
end
end
end
2012-09-05 21:53:48 +02:00
function onLoginAdvice ( message )
2013-01-21 00:17:56 +01:00
displayInfoBox ( tr ( " For Your Information " ) , message )
2012-09-05 21:53:48 +02:00
end
2012-07-26 12:19:34 +02:00
function forceExit ( )
2013-02-26 20:37:02 +01:00
g_game.cancelLogin ( )
2012-08-10 01:21:14 +02:00
scheduleEvent ( exit , 10 )
return true
2012-01-09 21:54:37 +01:00
end
2012-07-24 07:30:08 +02:00
function tryExit ( )
2012-07-15 13:49:28 +02:00
if exitWindow then
2012-07-13 08:31:05 +02:00
return true
end
2012-07-12 18:45:22 +02:00
2013-03-14 00:55:20 +01:00
local exitFunc = function ( ) g_game.safeLogout ( ) forceExit ( ) end
local logoutFunc = function ( ) g_game.safeLogout ( ) exitWindow : destroy ( ) exitWindow = nil end
2012-08-13 01:27:41 +02:00
local cancelFunc = function ( ) exitWindow : destroy ( ) exitWindow = nil end
2013-01-21 00:17:56 +01:00
exitWindow = displayGeneralBox ( tr ( ' Exit ' ) , tr ( " If you shut down the program, your character might stay in the game. \n Click on 'Logout' to ensure that you character leaves the game properly. \n Click on 'Exit' if you want to exit the program without logging out your character. " ) ,
{ { text = tr ( ' Force Exit ' ) , callback = exitFunc } ,
{ text = tr ( ' Logout ' ) , callback = logoutFunc } ,
{ text = tr ( ' Cancel ' ) , callback = cancelFunc } ,
2012-08-19 16:30:57 +02:00
anchor = AnchorHorizontalCenter } , logoutFunc , cancelFunc )
2012-07-15 16:28:15 +02:00
2012-08-13 01:27:41 +02:00
return true
2012-07-12 18:45:22 +02:00
end
2013-07-06 19:36:56 +02:00
function tryLogout ( prompt )
if type ( prompt ) ~= " boolean " then
prompt = true
end
2013-01-18 06:53:41 +01:00
if not g_game.isOnline ( ) then
exit ( )
2013-03-11 18:57:59 +01:00
return
2013-01-18 06:53:41 +01:00
end
2012-07-15 13:49:28 +02:00
if logoutWindow then
2012-07-13 08:31:05 +02:00
return
end
2012-07-12 18:45:22 +02:00
2013-07-06 19:36:56 +02:00
local msg , yesCallback
2013-03-14 00:55:20 +01:00
if not g_game.isConnectionOk ( ) then
2013-07-06 19:36:56 +02:00
msg = ' Your connection is failing, if you logout now your character will be still online, do you want to force logout? '
2014-01-18 15:09:26 +01:00
yesCallback = function ( )
2013-03-14 00:55:20 +01:00
g_game.forceLogout ( )
2013-03-14 01:18:17 +01:00
if logoutWindow then
logoutWindow : destroy ( )
logoutWindow = nil
end
2013-03-14 00:55:20 +01:00
end
else
2013-07-06 19:36:56 +02:00
msg = ' Are you sure you want to logout? '
yesCallback = function ( )
2013-03-14 00:55:20 +01:00
g_game.safeLogout ( )
2013-07-06 19:36:56 +02:00
if logoutWindow then
logoutWindow : destroy ( )
logoutWindow = nil
end
2013-03-14 00:55:20 +01:00
end
2013-07-06 19:36:56 +02:00
end
2012-07-15 16:28:15 +02:00
2013-07-06 19:36:56 +02:00
local noCallback = function ( )
logoutWindow : destroy ( )
logoutWindow = nil
end
if prompt then
logoutWindow = displayGeneralBox ( tr ( ' Logout ' ) , tr ( msg ) , {
2013-03-14 00:55:20 +01:00
{ text = tr ( ' Yes ' ) , callback = yesCallback } ,
{ text = tr ( ' No ' ) , callback = noCallback } ,
anchor = AnchorHorizontalCenter } , yesCallback , noCallback )
2013-07-06 19:36:56 +02:00
else
yesCallback ( )
2013-03-14 00:55:20 +01:00
end
2012-07-12 18:45:22 +02:00
end
2013-01-26 23:12:00 +01:00
function stopSmartWalk ( )
2013-01-26 21:10:30 +01:00
smartWalkDirs = { }
2013-01-27 00:18:07 +01:00
smartWalkDir = nil
2013-01-23 08:31:28 +01:00
end
2013-01-26 21:10:30 +01:00
function changeWalkDir ( dir , pop )
2013-01-26 23:12:00 +01:00
while table.removevalue ( smartWalkDirs , dir ) do end
2013-01-26 21:10:30 +01:00
if pop then
2013-01-26 23:12:00 +01:00
if # smartWalkDirs == 0 then
stopSmartWalk ( )
2012-12-29 18:41:14 +01:00
return
end
2013-01-26 21:10:30 +01:00
else
table.insert ( smartWalkDirs , 1 , dir )
2012-12-29 18:41:14 +01:00
end
2013-01-26 21:10:30 +01:00
smartWalkDir = smartWalkDirs [ 1 ]
if modules.client_options . getOption ( ' smartWalk ' ) and # smartWalkDirs > 1 then
for _ , d in pairs ( smartWalkDirs ) do
if ( smartWalkDir == North and d == West ) or ( smartWalkDir == West and d == North ) then
smartWalkDir = NorthWest
break
elseif ( smartWalkDir == North and d == East ) or ( smartWalkDir == East and d == North ) then
smartWalkDir = NorthEast
break
elseif ( smartWalkDir == South and d == West ) or ( smartWalkDir == West and d == South ) then
smartWalkDir = SouthWest
break
elseif ( smartWalkDir == South and d == East ) or ( smartWalkDir == East and d == South ) then
smartWalkDir = SouthEast
break
end
2012-12-29 18:41:14 +01:00
end
end
2013-01-26 21:10:30 +01:00
end
2012-12-29 18:41:14 +01:00
2013-01-27 00:18:07 +01:00
function smartWalk ( dir )
if g_keyboard.getModifiers ( ) == KeyboardNoModifier then
2013-02-26 20:37:02 +01:00
local func = walkFunction
if not func then
if modules.client_options . getOption ( ' dashWalk ' ) then
func = g_game.dashWalk
else
func = g_game.walk
end
2013-01-27 00:18:07 +01:00
end
2013-02-26 20:37:02 +01:00
local dire = smartWalkDir or dir
func ( dire )
2013-01-27 00:18:07 +01:00
return true
2012-08-26 06:27:30 +02:00
end
2013-01-27 00:18:07 +01:00
return false
2012-08-25 21:11:54 +02:00
end
2013-01-26 21:10:30 +01:00
function updateStretchShrink ( )
2013-01-24 20:15:07 +01:00
if modules.client_options . getOption ( ' dontStretchShrink ' ) and not alternativeView then
2012-10-10 01:25:50 +02:00
gameMapPanel : setVisibleDimension ( { width = 15 , height = 11 } )
2013-01-24 20:15:07 +01:00
-- Set gameMapPanel size to height = 11 * 32 + 2
bottomSplitter : setMarginBottom ( bottomSplitter : getMarginBottom ( ) + ( gameMapPanel : getHeight ( ) - 32 * 11 ) - 10 )
2012-08-25 21:11:54 +02:00
end
end
2012-07-24 07:30:08 +02:00
function onMouseGrabberRelease ( self , mousePosition , mouseButton )
if selectedThing == nil then return false end
2012-03-29 01:19:28 +02:00
if mouseButton == MouseLeftButton then
local clickedWidget = gameRootPanel : recursiveGetChildByPos ( mousePosition , false )
if clickedWidget then
2012-07-24 07:30:08 +02:00
if selectedType == ' use ' then
onUseWith ( clickedWidget , mousePosition )
elseif selectedType == ' trade ' then
onTradeWith ( clickedWidget , mousePosition )
2012-03-29 01:19:28 +02:00
end
end
end
2012-04-25 00:09:48 +02:00
2012-07-24 07:30:08 +02:00
selectedThing = nil
2013-01-25 14:47:51 +01:00
g_mouse.popCursor ( ' target ' )
2012-03-29 01:19:28 +02:00
self : ungrabMouse ( )
return true
end
2012-07-24 07:30:08 +02:00
function onUseWith ( clickedWidget , mousePosition )
2014-06-06 19:05:57 +02:00
if clickedWidget : getClassName ( ) == ' UIGameMap ' then
2012-04-25 00:09:48 +02:00
local tile = clickedWidget : getTile ( mousePosition )
if tile then
2014-08-06 20:40:56 +02:00
if selectedThing : isFluidContainer ( ) or selectedThing : isMultiUse ( ) then
2014-05-10 17:10:07 +02:00
g_game.useWith ( selectedThing , tile : getTopMultiUseThing ( ) )
else
g_game.useWith ( selectedThing , tile : getTopUseThing ( ) )
end
2012-04-25 00:09:48 +02:00
end
2012-08-17 23:36:53 +02:00
elseif clickedWidget : getClassName ( ) == ' UIItem ' and not clickedWidget : isVirtual ( ) then
g_game.useWith ( selectedThing , clickedWidget : getItem ( ) )
2012-08-25 18:05:33 +02:00
elseif clickedWidget : getClassName ( ) == ' UICreatureButton ' then
local creature = clickedWidget : getCreature ( )
if creature then
g_game.useWith ( selectedThing , creature )
end
2012-04-25 00:09:48 +02:00
end
end
2012-07-24 07:30:08 +02:00
function onTradeWith ( clickedWidget , mousePosition )
2014-06-06 19:05:57 +02:00
if clickedWidget : getClassName ( ) == ' UIGameMap ' then
2012-04-25 00:09:48 +02:00
local tile = clickedWidget : getTile ( mousePosition )
if tile then
2012-07-24 07:30:08 +02:00
g_game.requestTrade ( selectedThing , tile : getTopCreature ( ) )
2012-04-25 00:09:48 +02:00
end
end
end
2012-07-24 07:30:08 +02:00
function startUseWith ( thing )
2013-02-04 19:33:34 +01:00
if not thing then return end
if g_ui.isMouseGrabbed ( ) then
if selectedThing then
selectedThing = thing
selectedType = ' use '
end
return
end
2012-07-24 07:30:08 +02:00
selectedType = ' use '
selectedThing = thing
2012-04-25 00:09:48 +02:00
mouseGrabberWidget : grabMouse ( )
2013-01-25 14:47:51 +01:00
g_mouse.pushCursor ( ' target ' )
2012-04-25 00:09:48 +02:00
end
2012-07-24 07:30:08 +02:00
function startTradeWith ( thing )
2013-02-04 19:33:34 +01:00
if not thing then return end
if g_ui.isMouseGrabbed ( ) then
if selectedThing then
selectedThing = thing
selectedType = ' trade '
end
return
end
2012-07-24 07:30:08 +02:00
selectedType = ' trade '
selectedThing = thing
2012-03-29 21:25:04 +02:00
mouseGrabberWidget : grabMouse ( )
2013-01-25 14:47:51 +01:00
g_mouse.pushCursor ( ' target ' )
2012-03-29 01:19:28 +02:00
end
2014-07-13 12:57:45 +02:00
function isMenuHookCategoryEmpty ( category )
2014-07-13 13:12:56 +02:00
if category then
2014-07-13 12:57:45 +02:00
for _ , opt in pairs ( category ) do
2014-07-13 13:12:56 +02:00
if opt then return false end
2014-07-13 12:57:45 +02:00
end
end
return true
end
2014-07-13 12:27:09 +02:00
function addMenuHook ( category , name , callback , condition , shortcut )
if not hookedMenuOptions [ category ] then
hookedMenuOptions [ category ] = { }
end
hookedMenuOptions [ category ] [ name ] = {
callback = callback ,
condition = condition ,
shortcut = shortcut
}
end
2014-07-13 12:39:56 +02:00
function removeMenuHook ( category , name )
2014-07-30 09:58:34 +02:00
if not name then
hookedMenuOptions [ category ] = { }
else
hookedMenuOptions [ category ] [ name ] = nil
end
2014-07-13 12:39:56 +02:00
end
2012-07-24 07:30:08 +02:00
function createThingMenu ( menuPosition , lookThing , useThing , creatureThing )
2012-07-26 08:10:28 +02:00
if not g_game.isOnline ( ) then return end
2015-04-19 13:56:03 +02:00
2012-06-26 00:13:30 +02:00
local menu = g_ui.createWidget ( ' PopupMenu ' )
2015-04-19 13:56:03 +02:00
menu : setGameMenu ( true )
2013-01-26 19:05:34 +01:00
local classic = modules.client_options . getOption ( ' classicControl ' )
local shortcut = nil
2012-01-12 02:21:59 +01:00
2013-01-26 19:05:34 +01:00
if not classic then shortcut = ' (Shift) ' else shortcut = nil end
2012-01-04 14:02:35 +01:00
if lookThing then
2013-01-26 19:05:34 +01:00
menu : addOption ( tr ( ' Look ' ) , function ( ) g_game.look ( lookThing ) end , shortcut )
2012-01-04 14:02:35 +01:00
end
2012-01-03 21:41:00 +01:00
2013-01-26 19:05:34 +01:00
if not classic then shortcut = ' (Ctrl) ' else shortcut = nil end
2012-01-04 14:02:35 +01:00
if useThing then
if useThing : isContainer ( ) then
2012-03-23 14:48:05 +01:00
if useThing : getParentContainer ( ) then
2013-01-26 19:05:34 +01:00
menu : addOption ( tr ( ' Open ' ) , function ( ) g_game.open ( useThing , useThing : getParentContainer ( ) ) end , shortcut )
2012-06-26 00:13:30 +02:00
menu : addOption ( tr ( ' Open in new window ' ) , function ( ) g_game.open ( useThing ) end )
2012-01-13 01:31:39 +01:00
else
2013-01-26 19:05:34 +01:00
menu : addOption ( tr ( ' Open ' ) , function ( ) g_game.open ( useThing ) end , shortcut )
2012-01-13 01:31:39 +01:00
end
2012-01-03 23:27:31 +01:00
else
2012-01-04 14:02:35 +01:00
if useThing : isMultiUse ( ) then
2013-01-26 19:05:34 +01:00
menu : addOption ( tr ( ' Use with ... ' ) , function ( ) startUseWith ( useThing ) end , shortcut )
2012-01-03 23:27:31 +01:00
else
2013-01-26 19:05:34 +01:00
menu : addOption ( tr ( ' Use ' ) , function ( ) g_game.use ( useThing ) end , shortcut )
2012-01-03 23:27:31 +01:00
end
end
2012-01-12 02:21:59 +01:00
2012-01-04 14:02:35 +01:00
if useThing : isRotateable ( ) then
2012-04-26 21:54:16 +02:00
menu : addOption ( tr ( ' Rotate ' ) , function ( ) g_game.rotate ( useThing ) end )
2012-01-03 23:27:31 +01:00
end
2014-07-15 23:19:08 +02:00
if g_game.getFeature ( GameBrowseField ) and useThing : getPosition ( ) . x ~= 0xffff then
menu : addOption ( tr ( ' Browse Field ' ) , function ( ) g_game.browseField ( useThing : getPosition ( ) ) end )
end
2012-01-09 01:43:36 +01:00
end
2012-01-12 02:21:59 +01:00
2012-07-29 05:34:40 +02:00
if lookThing and not lookThing : isCreature ( ) and not lookThing : isNotMoveable ( ) and lookThing : isPickupable ( ) then
2012-01-09 01:43:36 +01:00
menu : addSeparator ( )
2012-07-24 07:30:08 +02:00
menu : addOption ( tr ( ' Trade with ... ' ) , function ( ) startTradeWith ( lookThing ) end )
2012-01-04 14:02:35 +01:00
end
2012-01-12 02:21:59 +01:00
2012-04-24 23:15:51 +02:00
if lookThing then
local parentContainer = lookThing : getParentContainer ( )
if parentContainer and parentContainer : hasParent ( ) then
2012-04-26 21:54:16 +02:00
menu : addOption ( tr ( ' Move up ' ) , function ( ) g_game.moveToParentContainer ( lookThing , lookThing : getCount ( ) ) end )
2012-04-24 23:15:51 +02:00
end
end
2012-01-12 02:21:59 +01:00
2012-01-04 14:02:35 +01:00
if creatureThing then
2012-08-20 14:28:19 +02:00
local localPlayer = g_game.getLocalPlayer ( )
2012-01-03 23:27:31 +01:00
menu : addSeparator ( )
2012-01-12 02:21:59 +01:00
2012-07-29 05:34:40 +02:00
if creatureThing : isLocalPlayer ( ) then
2012-04-26 21:54:16 +02:00
menu : addOption ( tr ( ' Set Outfit ' ) , function ( ) g_game.requestOutfit ( ) end )
2012-01-12 02:21:59 +01:00
2012-08-25 07:02:07 +02:00
if g_game.getFeature ( GamePlayerMounts ) then
if not localPlayer : isMounted ( ) then
menu : addOption ( tr ( ' Mount ' ) , function ( ) localPlayer : mount ( ) end )
else
menu : addOption ( tr ( ' Dismount ' ) , function ( ) localPlayer : dismount ( ) end )
end
2012-08-20 14:28:19 +02:00
end
if creatureThing : isPartyMember ( ) then
2012-03-18 14:34:39 +01:00
if creatureThing : isPartyLeader ( ) then
if creatureThing : isPartySharedExperienceActive ( ) then
2012-04-26 21:54:16 +02:00
menu : addOption ( tr ( ' Disable Shared Experience ' ) , function ( ) g_game.partyShareExperience ( false ) end )
2012-01-11 00:38:32 +01:00
else
2012-04-26 21:54:16 +02:00
menu : addOption ( tr ( ' Enable Shared Experience ' ) , function ( ) g_game.partyShareExperience ( true ) end )
2012-01-11 00:38:32 +01:00
end
end
2012-04-26 21:54:16 +02:00
menu : addOption ( tr ( ' Leave Party ' ) , function ( ) g_game.partyLeave ( ) end )
2012-01-11 00:38:32 +01:00
end
2012-01-12 02:21:59 +01:00
2012-01-03 23:27:31 +01:00
else
2013-07-03 14:25:18 +02:00
local localPosition = localPlayer : getPosition ( )
2013-01-26 19:05:34 +01:00
if not classic then shortcut = ' (Alt) ' else shortcut = nil end
2013-07-03 14:25:18 +02:00
if creatureThing : getPosition ( ) . z == localPosition.z then
if g_game.getAttackingCreature ( ) ~= creatureThing then
menu : addOption ( tr ( ' Attack ' ) , function ( ) g_game.attack ( creatureThing ) end , shortcut )
else
menu : addOption ( tr ( ' Stop Attack ' ) , function ( ) g_game.cancelAttack ( ) end , shortcut )
end
2014-01-18 15:09:26 +01:00
2013-07-03 14:25:18 +02:00
if g_game.getFollowingCreature ( ) ~= creatureThing then
menu : addOption ( tr ( ' Follow ' ) , function ( ) g_game.follow ( creatureThing ) end )
else
menu : addOption ( tr ( ' Stop Follow ' ) , function ( ) g_game.cancelFollow ( ) end )
end
2012-07-26 08:10:28 +02:00
end
2012-01-12 02:21:59 +01:00
2012-07-29 05:34:40 +02:00
if creatureThing : isPlayer ( ) then
2012-07-26 08:10:28 +02:00
menu : addSeparator ( )
local creatureName = creatureThing : getName ( )
menu : addOption ( tr ( ' Message to %s ' , creatureName ) , function ( ) g_game.openPrivateChannel ( creatureName ) end )
if modules.game_console . getOwnPrivateTab ( ) then
menu : addOption ( tr ( ' Invite to private chat ' ) , function ( ) g_game.inviteToOwnChannel ( creatureName ) end )
menu : addOption ( tr ( ' Exclude from private chat ' ) , function ( ) g_game.excludeFromOwnChannel ( creatureName ) end ) -- [TODO] must be removed after message's popup labels been implemented
2012-01-07 23:24:29 +01:00
end
2013-01-30 21:23:26 +01:00
if not localPlayer : hasVip ( creatureName ) then
2012-07-26 08:10:28 +02:00
menu : addOption ( tr ( ' Add to VIP list ' ) , function ( ) g_game.addVip ( creatureName ) end )
end
2013-01-26 21:10:30 +01:00
if modules.game_console . isIgnored ( creatureName ) then
menu : addOption ( tr ( ' Unignore ' ) .. ' ' .. creatureName , function ( ) modules.game_console . removeIgnoredPlayer ( creatureName ) end )
else
menu : addOption ( tr ( ' Ignore ' ) .. ' ' .. creatureName , function ( ) modules.game_console . addIgnoredPlayer ( creatureName ) end )
end
2012-07-26 08:10:28 +02:00
2012-08-02 12:12:54 +02:00
local localPlayerShield = localPlayer : getShield ( )
2012-07-26 08:10:28 +02:00
local creatureShield = creatureThing : getShield ( )
2012-01-12 02:21:59 +01:00
2012-07-26 08:10:28 +02:00
if localPlayerShield == ShieldNone or localPlayerShield == ShieldWhiteBlue then
if creatureShield == ShieldWhiteYellow then
menu : addOption ( tr ( ' Join %s \' s Party ' , creatureThing : getName ( ) ) , function ( ) g_game.partyJoin ( creatureThing : getId ( ) ) end )
else
menu : addOption ( tr ( ' Invite to Party ' ) , function ( ) g_game.partyInvite ( creatureThing : getId ( ) ) end )
2012-04-24 13:20:14 +02:00
end
2012-07-26 08:10:28 +02:00
elseif localPlayerShield == ShieldWhiteYellow then
if creatureShield == ShieldWhiteBlue then
menu : addOption ( tr ( ' Revoke %s \' s Invitation ' , creatureThing : getName ( ) ) , function ( ) g_game.partyRevokeInvitation ( creatureThing : getId ( ) ) end )
2012-07-09 08:59:16 +02:00
end
2012-07-26 08:10:28 +02:00
elseif localPlayerShield == ShieldYellow or localPlayerShield == ShieldYellowSharedExp or localPlayerShield == ShieldYellowNoSharedExpBlink or localPlayerShield == ShieldYellowNoSharedExp then
if creatureShield == ShieldWhiteBlue then
menu : addOption ( tr ( ' Revoke %s \' s Invitation ' , creatureThing : getName ( ) ) , function ( ) g_game.partyRevokeInvitation ( creatureThing : getId ( ) ) end )
elseif creatureShield == ShieldBlue or creatureShield == ShieldBlueSharedExp or creatureShield == ShieldBlueNoSharedExpBlink or creatureShield == ShieldBlueNoSharedExp then
menu : addOption ( tr ( ' Pass Leadership to %s ' , creatureThing : getName ( ) ) , function ( ) g_game.partyPassLeadership ( creatureThing : getId ( ) ) end )
else
menu : addOption ( tr ( ' Invite to Party ' ) , function ( ) g_game.partyInvite ( creatureThing : getId ( ) ) end )
2012-01-11 00:38:32 +01:00
end
end
2012-01-05 15:24:38 +01:00
end
2012-01-03 23:27:31 +01:00
end
2013-07-03 14:25:18 +02:00
if modules.game_ruleviolation . hasWindowAccess ( ) and creatureThing : isPlayer ( ) then
2012-05-01 08:49:48 +02:00
menu : addSeparator ( )
2012-07-26 11:12:20 +02:00
menu : addOption ( tr ( ' Rule Violation ' ) , function ( ) modules.game_ruleviolation . show ( creatureThing : getName ( ) ) end )
2012-05-01 08:49:48 +02:00
end
2012-06-09 15:00:08 +02:00
2012-01-03 23:27:31 +01:00
menu : addSeparator ( )
2012-04-26 21:54:16 +02:00
menu : addOption ( tr ( ' Copy Name ' ) , function ( ) g_window.setClipboardText ( creatureThing : getName ( ) ) end )
2012-01-03 21:41:00 +01:00
end
2012-01-12 02:21:59 +01:00
2014-07-13 12:27:09 +02:00
-- hooked menu options
for _ , category in pairs ( hookedMenuOptions ) do
2014-07-13 12:57:45 +02:00
if not isMenuHookCategoryEmpty ( category ) then
menu : addSeparator ( )
for name , opt in pairs ( category ) do
if opt and opt.condition ( menuPosition , lookThing , useThing , creatureThing ) then
2014-08-06 20:40:56 +02:00
menu : addOption ( name , function ( ) opt.callback ( menuPosition ,
lookThing , useThing , creatureThing ) end , opt.shortcut )
2014-07-13 12:57:45 +02:00
end
2014-07-13 12:27:09 +02:00
end
end
end
2012-01-03 21:41:00 +01:00
menu : display ( menuPosition )
end
2012-01-13 01:31:39 +01:00
2013-07-03 14:25:18 +02:00
function processMouseAction ( menuPosition , mouseButton , autoWalkPos , lookThing , useThing , creatureThing , attackCreature )
2012-06-26 00:13:30 +02:00
local keyboardModifiers = g_keyboard.getModifiers ( )
2012-03-18 14:34:39 +01:00
2013-01-18 23:39:11 +01:00
if not modules.client_options . getOption ( ' classicControl ' ) then
2012-03-18 14:34:39 +01:00
if keyboardModifiers == KeyboardNoModifier and mouseButton == MouseRightButton then
2012-07-24 07:30:08 +02:00
createThingMenu ( menuPosition , lookThing , useThing , creatureThing )
2012-03-18 14:34:39 +01:00
return true
elseif lookThing and keyboardModifiers == KeyboardShiftModifier and ( mouseButton == MouseLeftButton or mouseButton == MouseRightButton ) then
g_game.look ( lookThing )
return true
elseif useThing and keyboardModifiers == KeyboardCtrlModifier and ( mouseButton == MouseLeftButton or mouseButton == MouseRightButton ) then
if useThing : isContainer ( ) then
2012-03-23 14:48:05 +01:00
if useThing : getParentContainer ( ) then
2012-04-03 01:09:47 +02:00
g_game.open ( useThing , useThing : getParentContainer ( ) )
2012-03-18 14:34:39 +01:00
else
2012-06-26 00:13:30 +02:00
g_game.open ( useThing )
2012-03-18 14:34:39 +01:00
end
2012-08-25 00:59:33 +02:00
return true
2012-03-18 14:34:39 +01:00
elseif useThing : isMultiUse ( ) then
2012-07-24 07:30:08 +02:00
startUseWith ( useThing )
2012-03-18 14:34:39 +01:00
return true
else
g_game.use ( useThing )
2013-01-21 22:36:53 +01:00
return true
2012-03-18 14:34:39 +01:00
end
return true
2013-07-03 14:25:18 +02:00
elseif attackCreature and g_keyboard.isAltPressed ( ) and ( mouseButton == MouseLeftButton or mouseButton == MouseRightButton ) then
g_game.attack ( attackCreature )
return true
elseif creatureThing and creatureThing : getPosition ( ) . z == autoWalkPos.z and g_keyboard.isAltPressed ( ) and ( mouseButton == MouseLeftButton or mouseButton == MouseRightButton ) then
2012-03-18 14:34:39 +01:00
g_game.attack ( creatureThing )
return true
end
2013-01-06 16:04:49 +01:00
-- classic control
2012-03-18 14:34:39 +01:00
else
2013-01-09 20:29:58 +01:00
if useThing and keyboardModifiers == KeyboardNoModifier and mouseButton == MouseRightButton and not g_mouse.isPressed ( MouseLeftButton ) then
2012-07-13 08:31:05 +02:00
local player = g_game.getLocalPlayer ( )
2013-07-03 14:25:18 +02:00
if attackCreature and attackCreature ~= player then
g_game.attack ( attackCreature )
return true
elseif creatureThing and creatureThing ~= player and creatureThing : getPosition ( ) . z == autoWalkPos.z then
2012-08-02 03:47:55 +02:00
g_game.attack ( creatureThing )
2012-03-18 14:34:39 +01:00
return true
2013-01-09 20:29:58 +01:00
elseif useThing : isContainer ( ) then
if useThing : getParentContainer ( ) then
g_game.open ( useThing , useThing : getParentContainer ( ) )
2012-03-18 14:34:39 +01:00
return true
else
2013-01-09 20:29:58 +01:00
g_game.open ( useThing )
2012-03-18 14:34:39 +01:00
return true
end
2013-01-09 20:29:58 +01:00
elseif useThing : isMultiUse ( ) then
2012-07-24 07:30:08 +02:00
startUseWith ( useThing )
2012-03-18 14:34:39 +01:00
return true
else
2013-01-06 16:04:49 +01:00
g_game.use ( useThing )
2013-01-25 21:51:14 +01:00
return true
2012-03-18 14:34:39 +01:00
end
return true
elseif lookThing and keyboardModifiers == KeyboardShiftModifier and ( mouseButton == MouseLeftButton or mouseButton == MouseRightButton ) then
g_game.look ( lookThing )
return true
2012-07-05 07:40:21 +02:00
elseif lookThing and ( ( g_mouse.isPressed ( MouseLeftButton ) and mouseButton == MouseRightButton ) or ( g_mouse.isPressed ( MouseRightButton ) and mouseButton == MouseLeftButton ) ) then
2013-01-06 16:04:49 +01:00
g_game.look ( lookThing )
2012-07-05 07:40:21 +02:00
return true
2012-03-18 14:34:39 +01:00
elseif useThing and keyboardModifiers == KeyboardCtrlModifier and ( mouseButton == MouseLeftButton or mouseButton == MouseRightButton ) then
2012-07-24 07:30:08 +02:00
createThingMenu ( menuPosition , lookThing , useThing , creatureThing )
2012-03-18 14:34:39 +01:00
return true
2013-07-03 14:25:18 +02:00
elseif attackCreature and g_keyboard.isAltPressed ( ) and ( mouseButton == MouseLeftButton or mouseButton == MouseRightButton ) then
g_game.attack ( attackCreature )
return true
elseif creatureThing and creatureThing : getPosition ( ) . z == autoWalkPos.z and g_keyboard.isAltPressed ( ) and ( mouseButton == MouseLeftButton or mouseButton == MouseRightButton ) then
2012-03-18 14:34:39 +01:00
g_game.attack ( creatureThing )
return true
end
end
2014-08-06 20:40:56 +02:00
2013-01-08 16:32:37 +01:00
local player = g_game.getLocalPlayer ( )
2013-01-22 13:01:30 +01:00
player : stopAutoWalk ( )
2013-01-08 16:32:37 +01:00
2012-07-05 07:40:21 +02:00
if autoWalkPos and keyboardModifiers == KeyboardNoModifier and mouseButton == MouseLeftButton then
2013-01-27 17:06:47 +01:00
player : autoWalk ( autoWalkPos )
2013-01-08 18:59:03 +01:00
return true
2012-07-05 07:40:21 +02:00
end
2012-03-18 14:34:39 +01:00
return false
end
2012-07-24 07:30:08 +02:00
function moveStackableItem ( item , toPos )
2012-09-01 01:33:51 +02:00
if countWindow then
2012-07-13 08:31:05 +02:00
return
end
2012-06-26 00:13:30 +02:00
if g_keyboard.isCtrlPressed ( ) then
2012-06-07 14:25:41 +02:00
g_game.move ( item , toPos , item : getCount ( ) )
return
2012-06-26 00:13:30 +02:00
elseif g_keyboard.isShiftPressed ( ) then
2012-06-07 14:25:41 +02:00
g_game.move ( item , toPos , 1 )
return
end
local count = item : getCount ( )
2013-01-08 18:59:03 +01:00
2012-07-13 08:31:05 +02:00
countWindow = g_ui.createWidget ( ' CountWindow ' , rootWidget )
2013-01-08 18:59:03 +01:00
local itembox = countWindow : getChildById ( ' item ' )
2012-03-29 15:45:40 +02:00
local scrollbar = countWindow : getChildById ( ' countScrollBar ' )
2013-01-08 18:59:03 +01:00
itembox : setItemId ( item : getId ( ) )
itembox : setItemCount ( count )
2012-03-29 15:45:40 +02:00
scrollbar : setMaximum ( count )
scrollbar : setMinimum ( 1 )
scrollbar : setValue ( count )
2012-09-01 01:33:51 +02:00
2013-01-08 18:59:03 +01:00
local spinbox = countWindow : getChildById ( ' spinBox ' )
spinbox : setMaximum ( count )
spinbox : setMinimum ( 0 )
spinbox : setValue ( 0 )
spinbox : hideButtons ( )
spinbox : focus ( )
2013-02-01 02:21:20 +01:00
spinbox.firstEdit = true
2013-01-08 18:59:03 +01:00
2012-09-01 01:33:51 +02:00
local spinBoxValueChange = function ( self , value )
2013-02-01 02:31:09 +01:00
spinbox.firstEdit = false
2012-09-01 01:33:51 +02:00
scrollbar : setValue ( value )
end
spinbox.onValueChange = spinBoxValueChange
2013-02-01 02:21:20 +01:00
local check = function ( )
if spinbox.firstEdit then
spinbox : setValue ( spinbox : getMaximum ( ) )
spinbox.firstEdit = false
end
end
g_keyboard.bindKeyPress ( " Up " , function ( ) check ( ) spinbox : up ( ) end , spinbox )
g_keyboard.bindKeyPress ( " Down " , function ( ) check ( ) spinbox : down ( ) end , spinbox )
2013-04-12 19:15:28 +02:00
g_keyboard.bindKeyPress ( " Right " , function ( ) check ( ) spinbox : up ( ) end , spinbox )
g_keyboard.bindKeyPress ( " Left " , function ( ) check ( ) spinbox : down ( ) end , spinbox )
2013-02-01 02:21:20 +01:00
g_keyboard.bindKeyPress ( " PageUp " , function ( ) check ( ) spinbox : setValue ( spinbox : getValue ( ) + 10 ) end , spinbox )
g_keyboard.bindKeyPress ( " PageDown " , function ( ) check ( ) spinbox : setValue ( spinbox : getValue ( ) - 10 ) end , spinbox )
2012-09-01 01:33:51 +02:00
scrollbar.onValueChange = function ( self , value )
2013-01-08 18:59:03 +01:00
itembox : setItemCount ( value )
2012-09-01 01:33:51 +02:00
spinbox.onValueChange = nil
2012-09-02 01:16:17 +02:00
spinbox : setValue ( value )
2012-09-01 01:33:51 +02:00
spinbox.onValueChange = spinBoxValueChange
end
2012-03-29 15:45:40 +02:00
local okButton = countWindow : getChildById ( ' buttonOk ' )
local moveFunc = function ( )
2013-01-08 18:59:03 +01:00
g_game.move ( item , toPos , itembox : getItemCount ( ) )
2012-03-29 15:45:40 +02:00
okButton : getParent ( ) : destroy ( )
2012-07-13 08:31:05 +02:00
countWindow = nil
end
local cancelButton = countWindow : getChildById ( ' buttonCancel ' )
local cancelFunc = function ( )
cancelButton : getParent ( ) : destroy ( )
countWindow = nil
2012-03-29 15:45:40 +02:00
end
countWindow.onEnter = moveFunc
2012-07-13 08:31:05 +02:00
countWindow.onEscape = cancelFunc
2012-07-15 16:28:15 +02:00
2012-03-29 15:45:40 +02:00
okButton.onClick = moveFunc
2012-07-13 08:31:05 +02:00
cancelButton.onClick = cancelFunc
2012-03-29 15:45:40 +02:00
end
2012-07-24 07:30:08 +02:00
function getRootPanel ( )
2012-03-18 14:34:39 +01:00
return gameRootPanel
end
2012-07-24 07:30:08 +02:00
function getMapPanel ( )
2012-03-18 14:34:39 +01:00
return gameMapPanel
end
2012-07-24 07:30:08 +02:00
function getRightPanel ( )
2012-03-18 14:34:39 +01:00
return gameRightPanel
end
2012-07-24 07:30:08 +02:00
function getLeftPanel ( )
2012-03-18 14:34:39 +01:00
return gameLeftPanel
end
2012-07-24 07:30:08 +02:00
function getBottomPanel ( )
2012-03-18 14:34:39 +01:00
return gameBottomPanel
end
2012-07-24 07:30:08 +02:00
2012-07-24 07:41:59 +02:00
function onLeftPanelVisibilityChange ( leftPanel , visible )
2013-01-25 21:28:44 +01:00
if not visible and g_game.isOnline ( ) then
2012-07-24 07:30:08 +02:00
local children = leftPanel : getChildren ( )
for i = 1 , # children do
children [ i ] : setParent ( gameRightPanel )
end
end
2012-12-28 17:15:57 +01:00
end
2013-01-21 22:36:53 +01:00
2013-01-24 20:15:07 +01:00
function nextViewMode ( )
setupViewMode ( ( currentViewMode + 1 ) % 3 )
end
function setupViewMode ( mode )
if mode == currentViewMode then return end
if currentViewMode == 2 then
2013-01-21 22:36:53 +01:00
gameMapPanel : addAnchor ( AnchorLeft , ' gameLeftPanel ' , AnchorRight )
gameMapPanel : addAnchor ( AnchorRight , ' gameRightPanel ' , AnchorLeft )
gameMapPanel : addAnchor ( AnchorBottom , ' gameBottomPanel ' , AnchorTop )
gameRootPanel : addAnchor ( AnchorTop , ' topMenu ' , AnchorBottom )
2013-01-25 20:26:51 +01:00
gameLeftPanel : setOn ( modules.client_options . getOption ( ' showLeftPanel ' ) )
2013-01-21 22:36:53 +01:00
gameLeftPanel : setImageColor ( ' white ' )
gameRightPanel : setImageColor ( ' white ' )
gameLeftPanel : setMarginTop ( 0 )
gameRightPanel : setMarginTop ( 0 )
gameBottomPanel : setImageColor ( ' white ' )
modules.client_topmenu . getTopMenu ( ) : setImageColor ( ' white ' )
g_game.changeMapAwareRange ( 18 , 14 )
end
2013-01-24 20:15:07 +01:00
if mode == 0 then
gameMapPanel : setKeepAspectRatio ( true )
gameMapPanel : setLimitVisibleRange ( false )
gameMapPanel : setZoom ( 11 )
gameMapPanel : setVisibleDimension ( { width = 15 , height = 11 } )
elseif mode == 1 then
gameMapPanel : setKeepAspectRatio ( false )
gameMapPanel : setLimitVisibleRange ( true )
gameMapPanel : setZoom ( 11 )
gameMapPanel : setVisibleDimension ( { width = 15 , height = 11 } )
elseif mode == 2 then
2013-11-12 23:35:05 +01:00
local limit = limitedZoom and not g_game.isGM ( )
2013-02-04 22:40:12 +01:00
gameMapPanel : setLimitVisibleRange ( limit )
2013-01-24 20:15:07 +01:00
gameMapPanel : setZoom ( 11 )
gameMapPanel : setVisibleDimension ( { width = 15 , height = 11 } )
gameMapPanel : fill ( ' parent ' )
gameRootPanel : fill ( ' parent ' )
gameLeftPanel : setImageColor ( ' alpha ' )
gameRightPanel : setImageColor ( ' alpha ' )
2014-04-06 05:29:02 +02:00
gameLeftPanel : setMarginTop ( modules.client_topmenu . getTopMenu ( )
: getHeight ( ) - gameLeftPanel : getPaddingTop ( ) )
gameRightPanel : setMarginTop ( modules.client_topmenu . getTopMenu ( )
: getHeight ( ) - gameRightPanel : getPaddingTop ( ) )
2013-01-24 20:15:07 +01:00
gameLeftPanel : setOn ( true )
gameLeftPanel : setVisible ( true )
gameRightPanel : setOn ( true )
2013-01-25 20:26:51 +01:00
gameMapPanel : setOn ( true )
gameBottomPanel : setImageColor ( ' #ffffff88 ' )
2013-01-24 20:15:07 +01:00
modules.client_topmenu . getTopMenu ( ) : setImageColor ( ' #ffffff66 ' )
2013-02-04 22:40:12 +01:00
if not limit then
2013-01-24 20:15:07 +01:00
g_game.changeMapAwareRange ( 24 , 20 )
end
end
currentViewMode = mode
end
function limitZoom ( )
2013-11-12 23:35:05 +01:00
limitedZoom = true
2013-02-04 22:40:12 +01:00
end