tibia-client/modules/game/textmessage.lua

59 lines
2.2 KiB
Lua
Raw Normal View History

TextMessage = {}
2011-08-30 17:12:57 +02:00
-- require styles
importStyles '/game/ui/textmessage.otui'
2011-09-04 19:21:42 +02:00
-- private variables
local bottomLabelWidget, centerLabelWidget
2011-09-04 19:21:42 +02:00
local messageTypes = {
first = 12,
{ type = 'MessageOrange', color = '#C87832', showOnConsole = true, showOnWindow = false },
{ type = 'MessageOrange', color = '#C87832', showOnConsole = true, showOnWindow = false },
{ type = 'MessageRed', color = '#C83200', showOnConsole = true, showOnWindow = true, windowLocation = 'CenterLabel' },
{ type = 'MessageWhite', color = '#FFFFFF', showOnConsole = true, showOnWindow = true, windowLocation = 'CenterLabel' },
{ type = 'MessageWhite', color = '#FFFFFF', showOnConsole = true, showOnWindow = true, windowLocation = 'BottomLabel' },
{ type = 'MessageWhite', color = '#FFFFFF', showOnConsole = true, showOnWindow = true, windowLocation = 'BottomLabel' },
{ type = 'MessageGreen', color = '#3FBE32', showOnConsole = true, showOnWindow = true, windowLocation = 'CenterLabel' },
{ type = 'MessageWhite', color = '#FFFFFF', showOnConsole = false, showOnWindow = true, windowLocation = 'BottomLabel' },
{ type = 'MessageBlue', color = '#3264C8', showOnConsole = true, showOnWindow = false },
{ type = 'MessageRed', color = '#C83200', showOnConsole = true, showOnWindow = false }
2011-09-04 19:21:42 +02:00
}
-- public functions
function TextMessage.create()
2011-09-04 19:21:42 +02:00
bottomLabelWidget = UILabel.create()
Game.gameMapUi:addChild(bottomLabelWidget)
2011-09-04 19:21:42 +02:00
centerLabelWidget = UILabel.create()
Game.gameMapUi:addChild(centerLabelWidget)
end
-- hooked events
2011-09-04 19:21:42 +02:00
function Game.onTextMessage(type, message)
local messageType = messageTypes[type - messageTypes.first]
2011-09-04 19:21:42 +02:00
if messageType.showOnConsole then
-- TODO
end
2011-09-04 19:21:42 +02:00
if messageType.showOnWindow then
local label
if messageType.windowLocation == 'BottomLabel' then
label = bottomLabelWidget
elseif messageType.windowLocation == 'CenterLabel' then
label = centerLabelWidget
end
2011-09-04 19:21:42 +02:00
label:setVisible(true)
label:setForegroundColor(messageType.color)
label:setText(message)
2011-09-04 19:21:42 +02:00
label:setStyle(messageType.windowLocation)
2011-09-04 19:21:42 +02:00
time = #message * 75
scheduleEvent(function()
label:setVisible(false)
end, time)
2011-08-30 17:12:57 +02:00
end
end