2011-11-14 23:32:55 +01:00
|
|
|
Outfit = {}
|
|
|
|
|
|
|
|
-- private variables
|
2012-07-15 13:49:28 +02:00
|
|
|
local addonSets = {
|
|
|
|
[1] = { 1 },
|
|
|
|
[2] = { 2 },
|
|
|
|
[3] = { 1, 2 },
|
|
|
|
[4] = { 3 },
|
|
|
|
[5] = { 1, 3 },
|
|
|
|
[6] = { 2, 3 },
|
|
|
|
[7] = { 1, 2, 3 }
|
|
|
|
}
|
2012-03-22 22:47:52 +01:00
|
|
|
local outfitWindow
|
|
|
|
local outfit
|
|
|
|
local outfits
|
2012-07-15 13:49:28 +02:00
|
|
|
local outfitCreature
|
2012-03-22 22:47:52 +01:00
|
|
|
local currentOutfit = 1
|
2012-07-15 13:49:28 +02:00
|
|
|
|
|
|
|
local addons
|
2012-03-22 22:47:52 +01:00
|
|
|
local currentColorBox
|
|
|
|
local currentClotheButtonBox
|
2012-07-15 13:49:28 +02:00
|
|
|
local colorBoxes = {}
|
|
|
|
|
|
|
|
local mount
|
|
|
|
local mounts
|
|
|
|
local mountCreature
|
|
|
|
local currentMount = 1
|
2011-11-14 23:32:55 +01:00
|
|
|
|
2011-11-16 08:20:14 +01:00
|
|
|
-- private functions
|
2011-11-16 19:52:41 +01:00
|
|
|
local function onAddonCheckChange(addon, value)
|
|
|
|
if addon:isChecked() then
|
2012-03-22 22:47:52 +01:00
|
|
|
outfit.addons = outfit.addons + value
|
2011-11-16 19:52:41 +01:00
|
|
|
else
|
2012-03-22 22:47:52 +01:00
|
|
|
outfit.addons = outfit.addons - value
|
2011-11-16 19:52:41 +01:00
|
|
|
end
|
2012-03-22 22:47:52 +01:00
|
|
|
outfitCreature:setOutfit(outfit)
|
2011-11-16 19:52:41 +01:00
|
|
|
end
|
2011-11-16 18:03:11 +01:00
|
|
|
|
2012-03-22 22:47:52 +01:00
|
|
|
local function onColorCheckChange(colorBox)
|
|
|
|
if colorBox == currentColorBox then
|
|
|
|
colorBox.onCheckChange = nil
|
|
|
|
colorBox:setChecked(true)
|
|
|
|
colorBox.onCheckChange = onColorCheckChange
|
2011-11-30 03:42:21 +01:00
|
|
|
else
|
2012-03-22 22:47:52 +01:00
|
|
|
currentColorBox.onCheckChange = nil
|
|
|
|
currentColorBox:setChecked(false)
|
|
|
|
currentColorBox.onCheckChange = onColorCheckChange
|
|
|
|
|
|
|
|
currentColorBox = colorBox
|
|
|
|
|
|
|
|
if currentClotheButtonBox:getId() == 'head' then
|
|
|
|
outfit.head = currentColorBox.colorId
|
|
|
|
elseif currentClotheButtonBox:getId() == 'primary' then
|
|
|
|
outfit.body = currentColorBox.colorId
|
|
|
|
elseif currentClotheButtonBox:getId() == 'secondary' then
|
|
|
|
outfit.legs = currentColorBox.colorId
|
|
|
|
elseif currentClotheButtonBox:getId() == 'detail' then
|
|
|
|
outfit.feet = currentColorBox.colorId
|
2011-11-30 03:42:21 +01:00
|
|
|
end
|
2012-01-03 01:42:53 +01:00
|
|
|
|
2012-03-22 22:47:52 +01:00
|
|
|
outfitCreature:setOutfit(outfit)
|
2011-11-30 03:42:21 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-03-22 22:47:52 +01:00
|
|
|
local function onClotheCheckChange(clotheButtonBox)
|
|
|
|
if clotheButtonBox == currentClotheButtonBox then
|
|
|
|
clotheButtonBox.onCheckChange = nil
|
|
|
|
clotheButtonBox:setChecked(true)
|
|
|
|
clotheButtonBox.onCheckChange = onClotheCheckChange
|
2011-11-30 03:42:21 +01:00
|
|
|
else
|
2012-03-22 22:47:52 +01:00
|
|
|
currentClotheButtonBox.onCheckChange = nil
|
|
|
|
currentClotheButtonBox:setChecked(false)
|
|
|
|
currentClotheButtonBox.onCheckChange = onClotheCheckChange
|
|
|
|
|
|
|
|
currentClotheButtonBox = clotheButtonBox
|
|
|
|
|
|
|
|
local colorId = 0
|
|
|
|
if currentClotheButtonBox:getId() == 'head' then
|
|
|
|
colorId = outfit.head
|
|
|
|
elseif currentClotheButtonBox:getId() == 'primary' then
|
|
|
|
colorId = outfit.body
|
|
|
|
elseif currentClotheButtonBox:getId() == 'secondary' then
|
|
|
|
colorId = outfit.legs
|
|
|
|
elseif currentClotheButtonBox:getId() == 'detail' then
|
|
|
|
colorId = outfit.feet
|
2011-11-30 03:42:21 +01:00
|
|
|
end
|
2012-03-22 22:47:52 +01:00
|
|
|
outfitWindow:recursiveGetChildById('colorBox' .. colorId):setChecked(true)
|
2011-11-30 03:42:21 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-07-15 13:49:28 +02:00
|
|
|
local function updateOutfit()
|
|
|
|
if table.empty(outfits) then
|
|
|
|
return
|
|
|
|
end
|
2012-03-22 22:47:52 +01:00
|
|
|
local nameWidget = outfitWindow:getChildById('outfitName')
|
|
|
|
nameWidget:setText(outfits[currentOutfit][2])
|
2011-11-16 18:03:11 +01:00
|
|
|
|
2012-03-22 22:47:52 +01:00
|
|
|
local availableAddons = outfits[currentOutfit][3]
|
2012-07-15 13:49:28 +02:00
|
|
|
|
|
|
|
local prevAddons = {}
|
|
|
|
for k, addon in pairs(addons) do
|
|
|
|
prevAddons[k] = addon.widget:isChecked()
|
|
|
|
addon.widget:setChecked(false)
|
|
|
|
addon.widget:setEnabled(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
if availableAddons > 0 then
|
|
|
|
for _, i in pairs(addonSets[availableAddons]) do
|
|
|
|
addons[i].widget:setEnabled(true)
|
|
|
|
end
|
2011-11-16 08:20:14 +01:00
|
|
|
end
|
2011-11-16 18:03:11 +01:00
|
|
|
|
2012-03-22 22:47:52 +01:00
|
|
|
outfit.addons = 0
|
2012-07-15 13:49:28 +02:00
|
|
|
for k, addon in pairs(prevAddons) do
|
|
|
|
if addon and addons[k].widget:isEnabled() then
|
|
|
|
addons[k].widget:setChecked(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
outfit.type = outfits[currentOutfit][1]
|
2012-03-22 22:47:52 +01:00
|
|
|
outfitCreature:setOutfit(outfit)
|
2011-11-16 19:52:41 +01:00
|
|
|
end
|
|
|
|
|
2012-07-15 13:49:28 +02:00
|
|
|
function updateMount()
|
2012-07-16 14:21:34 +02:00
|
|
|
if table.empty(mounts) or not mount then
|
2012-07-15 13:49:28 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
local nameMountWidget = outfitWindow:getChildById('mountName')
|
|
|
|
nameMountWidget:setText(mounts[currentMount][2])
|
|
|
|
|
|
|
|
mount.type = mounts[currentMount][1]
|
|
|
|
mountCreature:setOutfit(mount)
|
|
|
|
end
|
|
|
|
|
2011-11-14 23:32:55 +01:00
|
|
|
-- public functions
|
2012-03-22 22:47:52 +01:00
|
|
|
function Outfit.init()
|
|
|
|
connect(g_game, { onOpenOutfitWindow = Outfit.create,
|
|
|
|
onGameEnd = Outfit.destroy })
|
|
|
|
end
|
|
|
|
|
|
|
|
function Outfit.terminate()
|
|
|
|
disconnect(g_game, { onOpenOutfitWindow = Outfit.create,
|
|
|
|
onGameEnd = Outfit.destroy })
|
|
|
|
Outfit.destroy()
|
2012-04-27 06:54:14 +02:00
|
|
|
Outfit = nil
|
2012-03-22 22:47:52 +01:00
|
|
|
end
|
|
|
|
|
2012-07-15 13:49:28 +02:00
|
|
|
function Outfit.create(creatureOutfit, outfitList, creatureMount, mountList)
|
|
|
|
outfitCreature = creatureOutfit
|
|
|
|
mountCreature = creatureMount
|
2012-03-22 22:47:52 +01:00
|
|
|
outfits = outfitList
|
2012-07-15 13:49:28 +02:00
|
|
|
mounts = mountList
|
|
|
|
Outfit.destroy()
|
2012-01-03 01:42:53 +01:00
|
|
|
|
2012-07-15 13:49:28 +02:00
|
|
|
outfitWindow = g_ui.displayUI('outfitwindow.otui')
|
2012-03-22 22:47:52 +01:00
|
|
|
outfit = outfitCreature:getOutfit()
|
2012-07-16 14:21:34 +02:00
|
|
|
if mountCreature then
|
|
|
|
mount = mountCreature:getOutfit()
|
|
|
|
end
|
2012-07-15 13:49:28 +02:00
|
|
|
|
|
|
|
addons = {
|
|
|
|
[1] = {widget = outfitWindow:getChildById('addon1'), value = 1},
|
|
|
|
[2] = {widget = outfitWindow:getChildById('addon2'), value = 2},
|
|
|
|
[3] = {widget = outfitWindow:getChildById('addon3'), value = 4}
|
|
|
|
}
|
|
|
|
|
|
|
|
for k, addon in pairs(addons) do
|
|
|
|
addon.widget.onCheckChange = function(self) onAddonCheckChange(self, addon.value) end
|
|
|
|
end
|
|
|
|
|
|
|
|
if outfit.addons > 0 then
|
|
|
|
for _, i in pairs(addonSets[outfit.addons]) do
|
|
|
|
addons[i].widget:setChecked(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-03-22 22:47:52 +01:00
|
|
|
currentClotheButtonBox = outfitWindow:getChildById('head')
|
|
|
|
outfitWindow:getChildById('head').onCheckChange = onClotheCheckChange
|
|
|
|
outfitWindow:getChildById('primary').onCheckChange = onClotheCheckChange
|
|
|
|
outfitWindow:getChildById('secondary').onCheckChange = onClotheCheckChange
|
|
|
|
outfitWindow:getChildById('detail').onCheckChange = onClotheCheckChange
|
2011-11-16 18:03:11 +01:00
|
|
|
|
2012-03-22 22:47:52 +01:00
|
|
|
local outfitCreatureBox = outfitWindow:getChildById('outfitCreatureBox')
|
|
|
|
local colorBoxPanel = outfitWindow:getChildById('colorBoxPanel')
|
|
|
|
outfitCreatureBox:setCreature(outfitCreature)
|
|
|
|
|
2012-07-15 13:49:28 +02:00
|
|
|
local mountCreatureBox = outfitWindow:getChildById('mountCreatureBox')
|
|
|
|
mountCreatureBox:setCreature(mountCreature)
|
|
|
|
|
2012-03-22 22:47:52 +01:00
|
|
|
for j=0,6 do
|
|
|
|
for i=0,18 do
|
2012-06-26 00:13:30 +02:00
|
|
|
local colorBox = g_ui.createWidget('ColorBox', colorBoxPanel)
|
2011-11-16 08:20:14 +01:00
|
|
|
local outfitColor = getOufitColor(j*19 + i)
|
2012-03-22 22:47:52 +01:00
|
|
|
colorBox:setImageColor(outfitColor)
|
|
|
|
colorBox:setId('colorBox' .. j*19+i)
|
|
|
|
colorBox.colorId = j*19 + i
|
2011-11-17 21:40:31 +01:00
|
|
|
|
2012-03-22 22:47:52 +01:00
|
|
|
if j*19 + i == outfit.head then
|
|
|
|
currentColorBox = colorBox
|
|
|
|
colorBox:setChecked(true)
|
|
|
|
end
|
|
|
|
colorBox.onCheckChange = onColorCheckChange
|
2012-07-15 13:49:28 +02:00
|
|
|
table.insert(colorBoxes, colorBox)
|
2011-11-16 08:20:14 +01:00
|
|
|
end
|
|
|
|
end
|
2011-11-16 18:03:11 +01:00
|
|
|
|
2012-03-22 22:47:52 +01:00
|
|
|
currentOutfit = 1
|
2011-11-16 22:28:47 +01:00
|
|
|
for i=1,#outfitList do
|
2012-03-22 22:47:52 +01:00
|
|
|
if outfitList[i][1] == outfit.type then
|
|
|
|
currentOutfit = i
|
2011-11-16 22:28:47 +01:00
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
2012-07-15 13:49:28 +02:00
|
|
|
currentMount = 1
|
|
|
|
for i=1,#mountList do
|
2012-07-16 14:21:34 +02:00
|
|
|
if mount and mountList[i][1] == mount.type then
|
2012-07-15 13:49:28 +02:00
|
|
|
currentMount = i
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
2011-11-16 22:28:47 +01:00
|
|
|
|
2012-07-15 13:49:28 +02:00
|
|
|
updateOutfit()
|
|
|
|
updateMount()
|
2011-11-14 23:32:55 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function Outfit.destroy()
|
2012-03-22 22:47:52 +01:00
|
|
|
if outfitWindow then
|
|
|
|
outfitWindow:destroy()
|
|
|
|
outfitWindow = nil
|
|
|
|
outfitCreature = nil
|
2012-07-15 13:49:28 +02:00
|
|
|
mountCreature = nil
|
2012-03-22 22:47:52 +01:00
|
|
|
currentColorBox = nil
|
|
|
|
currentClotheButtonBox = nil
|
2011-11-14 23:47:36 +01:00
|
|
|
end
|
2011-11-14 23:32:55 +01:00
|
|
|
end
|
|
|
|
|
2012-07-15 13:49:28 +02:00
|
|
|
function Outfit.randomize()
|
|
|
|
local outfitTemplate = {
|
|
|
|
outfitWindow:getChildById('head'),
|
|
|
|
outfitWindow:getChildById('primary'),
|
|
|
|
outfitWindow:getChildById('secondary'),
|
|
|
|
outfitWindow:getChildById('detail')
|
|
|
|
}
|
|
|
|
|
|
|
|
for k, section in pairs(outfitTemplate) do
|
|
|
|
section:setChecked(true)
|
2012-07-16 14:21:34 +02:00
|
|
|
colorBoxes[math.random(1, #colorBoxes)]:setChecked(true)
|
2012-07-15 13:49:28 +02:00
|
|
|
section:setChecked(false)
|
|
|
|
end
|
|
|
|
outfitTemplate[1]:setChecked(true)
|
|
|
|
end
|
|
|
|
|
2011-11-16 19:52:41 +01:00
|
|
|
function Outfit.accept()
|
2012-07-16 14:21:34 +02:00
|
|
|
if mount then outfit.mount = mount.type end
|
2012-03-22 22:47:52 +01:00
|
|
|
g_game.changeOutfit(outfit)
|
2011-11-16 19:52:41 +01:00
|
|
|
Outfit.destroy()
|
|
|
|
end
|
2011-11-16 18:03:11 +01:00
|
|
|
|
2012-07-15 13:49:28 +02:00
|
|
|
function Outfit.nextOutfitType()
|
2012-07-16 14:21:34 +02:00
|
|
|
if not outfits then
|
|
|
|
return
|
|
|
|
end
|
2012-03-22 22:47:52 +01:00
|
|
|
currentOutfit = currentOutfit + 1
|
|
|
|
if currentOutfit > #outfits then
|
|
|
|
currentOutfit = 1
|
2011-11-15 03:04:07 +01:00
|
|
|
end
|
2012-07-15 13:49:28 +02:00
|
|
|
updateOutfit()
|
2011-11-15 03:04:07 +01:00
|
|
|
end
|
|
|
|
|
2012-07-15 13:49:28 +02:00
|
|
|
function Outfit.previousOutfitType()
|
2012-07-16 14:21:34 +02:00
|
|
|
if not outfits then
|
|
|
|
return
|
|
|
|
end
|
2012-03-22 22:47:52 +01:00
|
|
|
currentOutfit = currentOutfit - 1
|
|
|
|
if currentOutfit <= 0 then
|
|
|
|
currentOutfit = #outfits
|
2011-11-15 03:04:07 +01:00
|
|
|
end
|
2012-07-15 13:49:28 +02:00
|
|
|
updateOutfit()
|
2011-11-15 03:04:07 +01:00
|
|
|
end
|
|
|
|
|
2012-07-15 13:49:28 +02:00
|
|
|
function Outfit.nextMountType()
|
2012-07-16 14:21:34 +02:00
|
|
|
if not mounts then
|
|
|
|
return
|
|
|
|
end
|
2012-07-15 13:49:28 +02:00
|
|
|
currentMount = currentMount + 1
|
|
|
|
if currentMount > #mounts then
|
|
|
|
currentMount = 1
|
|
|
|
end
|
|
|
|
updateMount()
|
|
|
|
end
|
|
|
|
|
|
|
|
function Outfit.previousMountType()
|
2012-07-16 14:21:34 +02:00
|
|
|
if not mounts then
|
|
|
|
return
|
|
|
|
end
|
2012-07-15 13:49:28 +02:00
|
|
|
currentMount = currentMount - 1
|
|
|
|
if currentMount <= 0 then
|
|
|
|
currentMount = #mounts
|
|
|
|
end
|
|
|
|
updateMount()
|
|
|
|
end
|