2012-06-26 00:13:30 +02:00
|
|
|
-- @docclass Creature
|
|
|
|
|
|
|
|
-- @docconsts @{
|
|
|
|
|
2012-01-07 00:54:17 +01:00
|
|
|
SkullNone = 0
|
|
|
|
SkullYellow = 1
|
|
|
|
SkullGreen = 2
|
|
|
|
SkullWhite = 3
|
|
|
|
SkullRed = 4
|
|
|
|
SkullBlack = 5
|
|
|
|
SkullOrange = 6
|
|
|
|
|
|
|
|
ShieldNone = 0
|
|
|
|
ShieldWhiteYellow = 1
|
|
|
|
ShieldWhiteBlue = 2
|
|
|
|
ShieldBlue = 3
|
|
|
|
ShieldYellow = 4
|
|
|
|
ShieldBlueSharedExp = 5
|
|
|
|
ShieldYellowSharedExp = 6
|
|
|
|
ShieldBlueNoSharedExpBlink = 7
|
|
|
|
ShieldYellowNoSharedExpBlink = 8
|
|
|
|
ShieldBlueNoSharedExp = 9
|
|
|
|
ShieldYellowNoSharedExp = 10
|
|
|
|
|
|
|
|
EmblemNone = 0
|
|
|
|
EmblemGreen = 1
|
|
|
|
EmblemRed = 2
|
|
|
|
EmblemBlue = 3
|
|
|
|
|
2012-06-26 00:13:30 +02:00
|
|
|
-- @}
|
|
|
|
|
2012-02-09 06:27:29 +01:00
|
|
|
function getSkullImagePath(skullId)
|
2012-07-18 01:49:21 +02:00
|
|
|
local path
|
2012-01-07 00:54:17 +01:00
|
|
|
if skullId == SkullYellow then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/skull_yellow.png'
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif skullId == SkullGreen then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/skull_green.png'
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif skullId == SkullWhite then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/skull_white.png'
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif skullId == SkullRed then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/skull_red.png'
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif skullId == SkullBlack then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/skull_black.png'
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif skullId == SkullOrange then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/skull_orange.png'
|
2012-01-07 00:54:17 +01:00
|
|
|
end
|
2012-07-18 01:49:21 +02:00
|
|
|
path = resolvepath(path)
|
|
|
|
return path
|
2012-01-07 00:54:17 +01:00
|
|
|
end
|
|
|
|
|
2012-02-09 06:27:29 +01:00
|
|
|
function getShieldImagePathAndBlink(shieldId)
|
2012-07-18 01:49:21 +02:00
|
|
|
local path
|
2012-01-07 00:54:17 +01:00
|
|
|
if shieldId == ShieldWhiteYellow then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/shield_yellow_white.png', false
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif shieldId == ShieldWhiteBlue then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/shield_blue_white.png', false
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif shieldId == ShieldBlue then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/shield_blue.png', false
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif shieldId == ShieldYellow then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/shield_yellow.png', false
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif shieldId == ShieldBlueSharedExp then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/shield_blue_shared.png', false
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif shieldId == ShieldYellowSharedExp then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/shield_yellow_shared.png', false
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif shieldId == ShieldBlueNoSharedExpBlink then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/shield_blue_not_shared.png', true
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif shieldId == ShieldYellowNoSharedExpBlink then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/shield_yellow_not_shared.png', true
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif shieldId == ShieldBlueNoSharedExp then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/shield_blue_not_shared.png', false
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif shieldId == ShieldYellowNoSharedExp then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/shield_yellow_not_shared.png', false
|
2012-01-07 00:54:17 +01:00
|
|
|
end
|
2012-07-18 01:49:21 +02:00
|
|
|
path = resolvepath(path)
|
|
|
|
return path
|
2012-01-07 00:54:17 +01:00
|
|
|
end
|
|
|
|
|
2012-02-09 06:27:29 +01:00
|
|
|
function getEmblemImagePath(emblemId)
|
2012-07-18 01:49:21 +02:00
|
|
|
local path
|
2012-01-07 00:54:17 +01:00
|
|
|
if emblemId == EmblemGreen then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/emblem_green.png'
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif emblemId == EmblemRed then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/emblem_red.png'
|
2012-01-07 00:54:17 +01:00
|
|
|
elseif emblemId == EmblemBlue then
|
2012-07-18 01:49:21 +02:00
|
|
|
path = 'icons/emblem_blue.png'
|
2012-02-09 06:27:29 +01:00
|
|
|
end
|
2012-07-18 01:49:21 +02:00
|
|
|
path = resolvepath(path)
|
|
|
|
return path
|
2012-02-09 06:27:29 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function Creature:onSkullChange(skullId)
|
|
|
|
local imagePath = getSkullImagePath(skullId)
|
|
|
|
if imagePath then
|
2012-07-18 01:49:21 +02:00
|
|
|
self:setSkullTexture(imagePath)
|
2012-02-09 06:27:29 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function Creature:onShieldChange(shieldId)
|
|
|
|
local imagePath, blink = getShieldImagePathAndBlink(shieldId)
|
|
|
|
if imagePath then
|
2012-07-18 01:49:21 +02:00
|
|
|
self:setShieldTexture(imagePath, blink)
|
2012-02-09 06:27:29 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function Creature:onEmblemChange(emblemId)
|
|
|
|
local imagePath = getEmblemImagePath(emblemId)
|
|
|
|
if imagePath then
|
2012-07-18 01:49:21 +02:00
|
|
|
self:setEmblemTexture(imagePath)
|
2012-01-07 00:54:17 +01:00
|
|
|
end
|
|
|
|
end
|