118 lines
3.1 KiB
Lua
118 lines
3.1 KiB
Lua
VipList = {}
|
|
|
|
-- private variables
|
|
local vipWindow = nil
|
|
local addVipWindow = nil
|
|
|
|
-- public functions
|
|
function VipList.create()
|
|
vipWindow = displayUI('viplist.otui', { parent = Game.gameRightPanel })
|
|
vipWindow:hide()
|
|
TopMenu.addGameButton('vipListButton', 'VIP list', '/core_styles/icons/viplist.png', VipList.toggle)
|
|
end
|
|
|
|
function VipList.destroy()
|
|
vipWindow:destroy()
|
|
vipWindow = nil
|
|
end
|
|
|
|
function VipList.createAddWindow()
|
|
addVipWindow = displayUI('addvip.otui')
|
|
end
|
|
|
|
function VipList.destroyAddWindow()
|
|
addVipWindow:destroy()
|
|
addVipWindow = nil
|
|
end
|
|
|
|
function VipList.addVip()
|
|
Game.addVip(addVipWindow:getChildById('name'):getText())
|
|
VipList.destroyAddWindow()
|
|
end
|
|
|
|
-- hooked events
|
|
function VipList.onAddVip(id, name, online)
|
|
local vipList = vipWindow:getChildById('vipList')
|
|
|
|
local label = createWidget('VipListLabel', nil)
|
|
label:setId('vip' .. id)
|
|
label:setText(name)
|
|
|
|
if online then
|
|
label:setColor('#00ff00')
|
|
else
|
|
label:setColor('#ff0000')
|
|
end
|
|
|
|
label.vipOnline = online
|
|
|
|
local nameLower = name:lower()
|
|
local childrenCount = vipList:getChildCount()
|
|
|
|
for i=1,childrenCount do
|
|
local child = vipList:getChildByIndex(i)
|
|
if online and not child.vipOnline then
|
|
vipList:insertChild(i, label)
|
|
return
|
|
end
|
|
|
|
if (not online and not child.vipOnline) or (online and child.vipOnline) then
|
|
local childText = child:getText():lower()
|
|
local length = math.min(childText:len(), nameLower:len())
|
|
|
|
for j=1,length do
|
|
if nameLower:byte(j) < childText:byte(j) then
|
|
vipList:insertChild(i, label)
|
|
return
|
|
elseif nameLower:byte(j) > childText:byte(j) then
|
|
break
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
vipList:insertChild(childrenCount+1, label)
|
|
end
|
|
|
|
function VipList.onVipStateChange(id, online)
|
|
local vipList = vipWindow:getChildById('vipList')
|
|
local label = vipList:getChildById('vip' .. id)
|
|
local text = label:getText()
|
|
vipList:removeChild(label)
|
|
|
|
VipList.onAddVip(id, text, online)
|
|
end
|
|
|
|
function VipList.onVipListMousePress(widget, mousePos, mouseButton)
|
|
if mouseButton ~= MouseRightButton then return end
|
|
|
|
local vipList = vipWindow:getChildById('vipList')
|
|
|
|
local menu = createWidget('PopupMenu')
|
|
menu:addOption('Add new VIP', function() VipList.createAddWindow() end)
|
|
menu:display(mousePos)
|
|
|
|
return true
|
|
end
|
|
|
|
function VipList.onVipListLabelMousePress(widget, mousePos, mouseButton)
|
|
if mouseButton ~= MouseRightButton then return end
|
|
|
|
local vipList = vipWindow:getChildById('vipList')
|
|
|
|
local menu = createWidget('PopupMenu')
|
|
menu:addOption('Add new VIP', function() VipList.createAddWindow() end)
|
|
menu:addOption('Remove ' .. widget:getText(), function() if widget then Game.removeVip(widget:getId():sub(4)) vipList:removeChild(widget) end end)
|
|
menu:addSeparator()
|
|
menu:addOption('Copy Name', function() g_window.setClipboardText(widget:getText()) end)
|
|
menu:display(mousePos)
|
|
|
|
return true
|
|
end
|
|
|
|
|
|
connect(Game, { onLogin = VipList.create,
|
|
onLogout = VipList.destroy,
|
|
onAddVip = VipList.onAddVip,
|
|
onVipStateChange = VipList.onVipStateChange })
|