2011-11-03 10:59:11 +01:00
|
|
|
TextMessage = {}
|
2011-08-30 17:12:57 +02:00
|
|
|
|
2011-11-03 10:59:11 +01:00
|
|
|
-- require styles
|
2012-01-03 01:42:53 +01:00
|
|
|
importStyle 'textmessage.otui'
|
2011-09-04 19:21:42 +02:00
|
|
|
|
2011-11-03 10:59:11 +01:00
|
|
|
-- private variables
|
2012-01-08 16:42:23 +01:00
|
|
|
local MessageTypes = {
|
2012-01-25 15:56:17 +01:00
|
|
|
consoleRed = { color = '#F55E5E', consoleTab = 'Default' },
|
|
|
|
consoleOrange = { color = '#FE6500', consoleTab = 'Default' },
|
|
|
|
consoleBlue = { color = '#9F9DFD', consoleTab = 'Default' },
|
|
|
|
warning = { color = '#F55E5E', consoleTab = 'Server Log', labelId = 'centerWarning', wrap = true },
|
|
|
|
infoDescription = { color = '#00EB00', consoleTab = 'Server Log', labelId = 'centerInfo', consoleOption = 'showInfoMessagesInConsole', wrap = true },
|
|
|
|
eventAdvance = { color = '#FFFFFF', consoleTab = 'Server Log', labelId = 'centerAdvance', consoleOption = 'showEventMessagesInConsole', wrap = true },
|
|
|
|
eventDefault = { color = '#FFFFFF', consoleTab = 'Server Log', labelId = 'bottomStatus', consoleOption = 'showEventMessagesInConsole' },
|
|
|
|
statusDefault = { color = '#FFFFFF', consoleTab = 'Server Log', labelId = 'bottomStatus', consoleOption = 'showStatusMessagesInConsole' },
|
2012-01-26 18:23:47 +01:00
|
|
|
statusSmall = { color = '#FFFFFF', labelId = 'bottomStatus' },
|
2011-09-04 19:21:42 +02:00
|
|
|
}
|
|
|
|
|
2012-01-25 15:56:17 +01:00
|
|
|
local centerTextMessagePanel
|
2012-03-18 14:34:39 +01:00
|
|
|
local bottomStatusLabel
|
2011-11-03 10:59:11 +01:00
|
|
|
|
2012-01-08 16:42:23 +01:00
|
|
|
-- private functions
|
2012-01-08 19:29:41 +01:00
|
|
|
local function displayMessage(msgtype, msg, time)
|
2012-02-08 22:23:15 +01:00
|
|
|
if not g_game.isOnline() then return end
|
2012-01-08 21:11:50 +01:00
|
|
|
|
2012-01-14 02:37:15 +01:00
|
|
|
if msgtype.consoleTab ~= nil then
|
2012-03-22 22:47:52 +01:00
|
|
|
if msgtype.consoleOption == nil or Options.getOption(msgtype.consoleOption) then
|
2012-01-14 02:37:15 +01:00
|
|
|
Console.addText(msg, msgtype, msgtype.consoleTab)
|
2012-01-09 00:28:49 +01:00
|
|
|
end
|
2011-09-04 19:21:42 +02:00
|
|
|
end
|
2011-11-03 10:59:11 +01:00
|
|
|
|
2012-01-25 15:56:17 +01:00
|
|
|
if msgtype.labelId then
|
2012-03-18 14:34:39 +01:00
|
|
|
local label = GameInterface.getMapPanel():recursiveGetChildById(msgtype.labelId)
|
2011-11-03 10:59:11 +01:00
|
|
|
|
2012-01-08 16:42:23 +01:00
|
|
|
label:setText(msg)
|
2012-01-09 19:45:28 +01:00
|
|
|
label:setColor(msgtype.color)
|
2012-01-08 16:42:23 +01:00
|
|
|
|
2012-01-25 15:56:17 +01:00
|
|
|
if msgtype.wrap then
|
|
|
|
label:setWidth(label:getParent():getWidth())
|
|
|
|
label:setHeight(label:getTextSize().height)
|
2012-03-18 14:34:39 +01:00
|
|
|
else
|
|
|
|
label:resizeToText()
|
2012-01-25 01:50:30 +01:00
|
|
|
end
|
|
|
|
|
2012-01-08 19:29:41 +01:00
|
|
|
if not time then
|
2012-01-26 18:23:47 +01:00
|
|
|
time = math.max(#msg * 100, 4000)
|
2012-01-08 19:29:41 +01:00
|
|
|
else
|
|
|
|
time = time * 1000
|
|
|
|
end
|
2012-01-08 16:42:23 +01:00
|
|
|
removeEvent(label.hideEvent)
|
2012-03-18 14:34:39 +01:00
|
|
|
addEvent(function() label:setVisible(true) end)
|
2012-01-08 16:42:23 +01:00
|
|
|
label.hideEvent = scheduleEvent(function() label:setVisible(false) end, time)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-01-25 15:56:17 +01:00
|
|
|
local function createTextMessageLabel(id, parent)
|
|
|
|
local label = createWidget('UILabel', parent)
|
|
|
|
label:setFont('verdana-11px-rounded')
|
|
|
|
label:setTextAlign(AlignCenter)
|
|
|
|
label:setId(id)
|
|
|
|
label:setMarginBottom(2)
|
2012-03-26 20:33:00 +02:00
|
|
|
label:setTextWrap(true)
|
|
|
|
label:setTextAutoResize(true)
|
2012-01-25 15:56:17 +01:00
|
|
|
label:setVisible(false)
|
|
|
|
return label
|
|
|
|
end
|
|
|
|
|
2012-01-08 16:42:23 +01:00
|
|
|
-- public functions
|
2012-03-18 14:34:39 +01:00
|
|
|
function TextMessage.init()
|
|
|
|
connect(g_game, { onDeath = TextMessage.displayDeadMessage,
|
|
|
|
onTextMessage = TextMessage.display,
|
|
|
|
onGameStart = TextMessage.clearMessages })
|
2012-01-25 15:56:17 +01:00
|
|
|
|
2012-03-18 14:34:39 +01:00
|
|
|
centerTextMessagePanel = createWidget('Panel', GameInterface.getMapPanel())
|
2012-01-25 15:56:17 +01:00
|
|
|
centerTextMessagePanel:setId('centerTextMessagePanel')
|
2012-03-18 14:34:39 +01:00
|
|
|
|
2012-01-25 15:56:17 +01:00
|
|
|
local layout = UIVerticalLayout.create(centerTextMessagePanel)
|
|
|
|
layout:setFitChildren(true)
|
|
|
|
centerTextMessagePanel:setLayout(layout)
|
|
|
|
centerTextMessagePanel:setWidth(360)
|
|
|
|
centerTextMessagePanel:centerIn('parent')
|
|
|
|
|
|
|
|
createTextMessageLabel('centerWarning', centerTextMessagePanel)
|
|
|
|
createTextMessageLabel('centerAdvance', centerTextMessagePanel)
|
|
|
|
createTextMessageLabel('centerInfo', centerTextMessagePanel)
|
|
|
|
|
2012-03-18 14:34:39 +01:00
|
|
|
bottomStatusLabel = createTextMessageLabel('bottomStatus', GameInterface.getMapPanel())
|
2012-01-25 15:56:17 +01:00
|
|
|
bottomStatusLabel:setHeight(16)
|
|
|
|
bottomStatusLabel:addAnchor(AnchorBottom, 'parent', AnchorBottom)
|
|
|
|
bottomStatusLabel:addAnchor(AnchorLeft, 'parent', AnchorLeft)
|
|
|
|
bottomStatusLabel:addAnchor(AnchorRight, 'parent', AnchorRight)
|
2012-01-08 16:42:23 +01:00
|
|
|
end
|
|
|
|
|
2012-03-18 14:34:39 +01:00
|
|
|
function TextMessage.terminate()
|
|
|
|
disconnect(g_game, { onDeath = TextMessage.displayDeadMessage,
|
|
|
|
onTextMessage = TextMessage.display,
|
2012-03-22 22:47:52 +01:00
|
|
|
onGameEnd = TextMessage.clearMessages })
|
2012-03-23 02:52:31 +01:00
|
|
|
removeEvent(GameInterface.getMapPanel():recursiveGetChildById('centerWarning').hideEvent)
|
|
|
|
removeEvent(GameInterface.getMapPanel():recursiveGetChildById('centerAdvance').hideEvent)
|
|
|
|
removeEvent(GameInterface.getMapPanel():recursiveGetChildById('centerInfo').hideEvent)
|
|
|
|
removeEvent(GameInterface.getMapPanel():recursiveGetChildById('bottomStatus').hideEvent)
|
2012-03-18 14:34:39 +01:00
|
|
|
centerTextMessagePanel:destroy()
|
|
|
|
centerTextMessagePanel = nil
|
|
|
|
bottomStatusLabel:destroy()
|
|
|
|
bottomStatusLabel = nil
|
|
|
|
TextMessage = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
function TextMessage.clearMessages()
|
|
|
|
GameInterface.getMapPanel():recursiveGetChildById('centerWarning'):hide()
|
|
|
|
GameInterface.getMapPanel():recursiveGetChildById('centerAdvance'):hide()
|
|
|
|
GameInterface.getMapPanel():recursiveGetChildById('centerInfo'):hide()
|
|
|
|
GameInterface.getMapPanel():recursiveGetChildById('bottomStatus'):hide()
|
|
|
|
end
|
|
|
|
|
2012-01-08 19:29:41 +01:00
|
|
|
function TextMessage.displayStatus(msg, time)
|
2012-03-23 15:48:00 +01:00
|
|
|
displayMessage(MessageTypes.statusSmall, msg)
|
2012-01-08 19:29:41 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function TextMessage.displayEventAdvance(msg, time)
|
|
|
|
displayMessage(MessageTypes.eventAdvance, msg, time)
|
2012-01-08 16:42:23 +01:00
|
|
|
end
|
|
|
|
|
2012-01-08 19:29:41 +01:00
|
|
|
function TextMessage.display(msgtypedesc, msg)
|
|
|
|
local msgtype = MessageTypes[msgtypedesc]
|
2012-01-08 21:11:50 +01:00
|
|
|
if msgtype then
|
|
|
|
displayMessage(msgtype, msg)
|
2011-08-30 17:12:57 +02:00
|
|
|
end
|
2012-01-08 16:42:23 +01:00
|
|
|
end
|
|
|
|
|
2012-03-18 14:34:39 +01:00
|
|
|
function TextMessage.displayDeadMessage()
|
|
|
|
local advanceLabel = GameInterface.getMapPanel():recursiveGetChildById('centerAdvance')
|
2012-01-25 15:56:17 +01:00
|
|
|
if advanceLabel:isVisible() then return end
|
|
|
|
TextMessage.displayEventAdvance('You are dead.')
|
2011-08-30 17:12:57 +02:00
|
|
|
end
|