mirror of
https://github.com/edubart/otclient.git
synced 2025-05-01 10:09:21 +02:00

* Added new arrow buttons. * Fixed the vertical separator. * Added new game_playermount module to handle player mounting. * Moved the battle icons to /images. * Outfit window accommodates for mounts, loads addons more efficiently and keeps addons set on update, added new Outfit.randomize function that allows you to randomize your outfit colors, and set up a new layout.
70 lines
1.6 KiB
Lua
70 lines
1.6 KiB
Lua
PlayerDeath = {}
|
|
|
|
-- private variables
|
|
local deathWindow
|
|
|
|
-- private functions
|
|
|
|
-- public functions
|
|
function PlayerDeath.init()
|
|
g_ui.importStyle('deathwindow.otui')
|
|
|
|
connect(g_game, { onDeath = PlayerDeath.display,
|
|
onGameEnd = PlayerDeath.reset })
|
|
end
|
|
|
|
function PlayerDeath.terminate()
|
|
disconnect(g_game, { onDeath = PlayerDeath.display,
|
|
onGameEnd = PlayerDeath.reset })
|
|
|
|
PlayerDeath.reset()
|
|
PlayerDeath = nil
|
|
end
|
|
|
|
function PlayerDeath.reset()
|
|
GameInterface.getMapPanel():recursiveGetChildById('centerAdvance'):hide()
|
|
if deathWindow then
|
|
deathWindow:destroy()
|
|
deathWindow = nil
|
|
end
|
|
end
|
|
|
|
function PlayerDeath.display()
|
|
PlayerDeath.displayDeadMessage()
|
|
PlayerDeath.openWindow()
|
|
end
|
|
|
|
function PlayerDeath.displayDeadMessage()
|
|
local advanceLabel = GameInterface.getMapPanel():recursiveGetChildById('centerAdvance')
|
|
if advanceLabel:isVisible() then
|
|
return
|
|
end
|
|
|
|
TextMessage.displayEventAdvance(tr('You are dead.'))
|
|
end
|
|
|
|
function PlayerDeath.openWindow()
|
|
if deathWindow then
|
|
return
|
|
end
|
|
deathWindow = g_ui.createWidget('DeathWindow', rootWidget)
|
|
local okButton = deathWindow:getChildById('buttonOk')
|
|
local cancelButton = deathWindow:getChildById('buttonCancel')
|
|
|
|
local okFunc = function()
|
|
CharacterList.doLogin()
|
|
okButton:getParent():destroy()
|
|
deathWindow = nil
|
|
end
|
|
local cancelFunc = function()
|
|
GameInterface.logout()
|
|
cancelButton:getParent():destroy()
|
|
deathWindow = nil
|
|
end
|
|
|
|
deathWindow.onEnter = okFunc
|
|
deathWindow.onEscape = cancelFunc
|
|
|
|
okButton.onClick = okFunc
|
|
cancelButton.onClick = cancelFunc
|
|
end |