Difference between revisions of "ButtonBeast class"
From GiderosMobile
(Created page with "__TOC__ '''Requirements''': '''You need to include ''luashader'' standard library in your project''' '''''luashader'' standard library is available in your Gideros install...") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
__TOC__ | __TOC__ | ||
− | |||
− | |||
− | |||
− | |||
=== ButtonBeast '''Class''' === | === ButtonBeast '''Class''' === | ||
Line 11: | Line 7: | ||
-- Pixel, Image, 9patch, Text, | -- Pixel, Image, 9patch, Text, | ||
-- Up, Down, Disabled, Hover, | -- Up, Down, Disabled, Hover, | ||
− | -- Sfx, Touch | + | -- Sfx, Touch & Mouse navigation |
− | v 0.2.0: 2023- | + | v 0.2.2: 2024-11-08 selectionSfx(): added channel checks before setting volume |
+ | v 0.2.0: 2023-12-01 terminator, should be fine in games too now | ||
v 0.1.0: 2021-06-01 total recall, this class has become a Monster! best used in menus but who knows? | v 0.1.0: 2021-06-01 total recall, this class has become a Monster! best used in menus but who knows? | ||
v 0.0.1: 2020-03-28 init (based on the initial generic Gideros Button class) | v 0.0.1: 2020-03-28 init (based on the initial generic Gideros Button class) | ||
]] | ]] | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
-- Class | -- Class | ||
Line 81: | Line 41: | ||
self.params.pixelscalexdown = xparams.pixelscalexdown or self.params.pixelscalexup -- number | self.params.pixelscalexdown = xparams.pixelscalexdown or self.params.pixelscalexup -- number | ||
self.params.pixelscaleydown = xparams.pixelscaleydown or self.params.pixelscaleyup -- number | self.params.pixelscaleydown = xparams.pixelscaleydown or self.params.pixelscaleyup -- number | ||
− | self.params.pixelwidth = xparams.pixelwidth or | + | self.params.pixelwidth = xparams.pixelwidth or 24 -- 24, number (autoscale = x padding else width) |
self.params.pixelheight = xparams.pixelheight or self.params.pixelwidth -- number (autoscale = y padding else height) | self.params.pixelheight = xparams.pixelheight or self.params.pixelwidth -- number (autoscale = y padding else height) | ||
− | self.params.ninepatch = xparams.ninepatch or | + | self.params.ninepatch = xparams.ninepatch or 16 -- 0, 8, number |
-- text? | -- text? | ||
self.params.text = xparams.text or nil -- string | self.params.text = xparams.text or nil -- string | ||
Line 99: | Line 59: | ||
self.params.sound = xparams.sound or nil -- sound fx | self.params.sound = xparams.sound or nil -- sound fx | ||
self.params.volume = xparams.volume or nil -- sound volume | self.params.volume = xparams.volume or nil -- sound volume | ||
− | |||
− | |||
− | |||
-- let's go! | -- let's go! | ||
self:setButton() | self:setButton() | ||
Line 134: | Line 91: | ||
end | end | ||
-- first add pixel | -- first add pixel | ||
− | |||
if self.params.autoscale and self.params.text then | if self.params.autoscale and self.params.text then | ||
self.pixel = Pixel.new(self.params.pixelcolorup, self.params.pixelalphaup, | self.pixel = Pixel.new(self.params.pixelcolorup, self.params.pixelalphaup, | ||
Line 141: | Line 97: | ||
self.pixel = Pixel.new(self.params.pixelcolorup, self.params.pixelalphaup, | self.pixel = Pixel.new(self.params.pixelcolorup, self.params.pixelalphaup, | ||
self.params.pixelwidth, self.params.pixelheight) | self.params.pixelwidth, self.params.pixelheight) | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
end | end | ||
self.pixel:setScale(self.params.pixelscalexup, self.params.pixelscaleyup) | self.pixel:setScale(self.params.pixelscalexup, self.params.pixelscaleyup) | ||
self.pixel:setAnchorPoint(0.5, 0.5) | self.pixel:setAnchorPoint(0.5, 0.5) | ||
− | if | + | self.pixel:setNinePatch(self.params.ninepatch) |
+ | if self.params.pixelimgup then self.pixel:setTexture(self.params.pixelimgup) | ||
+ | elseif self.params.pixelimgdown then self.pixel:setTexture(self.params.pixelimgdown) | ||
+ | elseif self.params.pixelimgdisabled then self.pixel:setTexture(self.params.pixelimgdisabled) | ||
+ | end | ||
self:addChild(self.pixel) | self:addChild(self.pixel) | ||
-- then add text? | -- then add text? | ||
Line 164: | Line 112: | ||
function ButtonBeast:updateVisualState() | function ButtonBeast:updateVisualState() | ||
local function visualState(btn, btnscalex, btnscaley, btnalpha, textcolor, textscalex, textscaley, | local function visualState(btn, btnscalex, btnscaley, btnalpha, textcolor, textscalex, textscaley, | ||
− | + | pixeltex, pixelcolor, pixelalpha, pixelscalex, pixelscaley) | |
btn:setScale(btnscalex, btnscaley) | btn:setScale(btnscalex, btnscaley) | ||
btn:setAlpha(btnalpha) | btn:setAlpha(btnalpha) | ||
Line 171: | Line 119: | ||
btn.text:setScale(textscalex, textscaley) | btn.text:setScale(textscalex, textscaley) | ||
end | end | ||
− | if | + | if pixeltex then btn.pixel:setTexture(pixeltex) end |
− | + | btn.pixel:setColor(pixelcolor, pixelalpha) | |
− | |||
− | |||
− | |||
− | |||
− | |||
btn.pixel:setScale(pixelscalex, pixelscaley) | btn.pixel:setScale(pixelscalex, pixelscaley) | ||
end | end | ||
− | -- print("NAVIGATION") | + | -- print("TOUCH, MOUSE NAVIGATION") |
if self.disabled then -- disabledState | if self.disabled then -- disabledState | ||
visualState(self, self.params.btnscalexdown, self.params.btnscaleydown, self.params.btnalphadown, | visualState(self, self.params.btnscalexdown, self.params.btnscaleydown, self.params.btnalphadown, | ||
self.params.textcolordisabled, self.params.textscalexdown, self.params.textscaleydown, | self.params.textcolordisabled, self.params.textscalexdown, self.params.textscaleydown, | ||
− | + | self.params.pixelimgdisabled, self.params.pixelcolordisabled, | |
+ | self.params.pixelalphadown, self.params.pixelscalexdown, self.params.pixelscaleydown) | ||
elseif self.focus or self.hover then -- downState | elseif self.focus or self.hover then -- downState | ||
visualState(self, self.params.btnscalexdown, self.params.btnscaleydown, self.params.btnalphadown, | visualState(self, self.params.btnscalexdown, self.params.btnscaleydown, self.params.btnalphadown, | ||
self.params.textcolordown, self.params.textscalexdown, self.params.textscaleydown, | self.params.textcolordown, self.params.textscalexdown, self.params.textscaleydown, | ||
− | + | self.params.pixelimgdown, self.params.pixelcolordown, | |
+ | self.params.pixelalphadown, self.params.pixelscalexdown, self.params.pixelscaleydown) | ||
else -- upState | else -- upState | ||
visualState(self, self.params.btnscalexup, self.params.btnscaleyup, self.params.btnalphaup, | visualState(self, self.params.btnscalexup, self.params.btnscaleyup, self.params.btnalphaup, | ||
self.params.textcolorup, self.params.textscalexup, self.params.textscaleyup, | self.params.textcolorup, self.params.textscalexup, self.params.textscaleyup, | ||
− | + | self.params.pixelimgup, self.params.pixelcolorup, | |
+ | self.params.pixelalphaup, self.params.pixelscalexup, self.params.pixelscaleyup) | ||
end | end | ||
end | end | ||
Line 212: | Line 158: | ||
self.focus = true | self.focus = true | ||
self:updateVisualState() | self:updateVisualState() | ||
− | self:selectionSfx() -- play sound fx | + | self:selectionSfx() -- play sound fx? |
ev:stopPropagation() | ev:stopPropagation() | ||
end | end | ||
Line 245: | Line 191: | ||
-- self:selectionSfx() -- play sound fx? you choose! | -- self:selectionSfx() -- play sound fx? you choose! | ||
-- trick to remove residuals when fast moving mouse | -- trick to remove residuals when fast moving mouse | ||
− | local timer = Timer.new(100*1, | + | local timer = Timer.new(100*1, 1) -- number of repetition, the higher the safer |
timer:addEventListener(Event.TIMER, function() self:updateVisualState() end) | timer:addEventListener(Event.TIMER, function() self:updateVisualState() end) | ||
timer:start() | timer:start() | ||
else | else | ||
− | |||
self.onexit = true | self.onexit = true | ||
end | end | ||
Line 269: | Line 214: | ||
-- if button is on focus, stop propagation of touch events | -- if button is on focus, stop propagation of touch events | ||
function ButtonBeast:onTouchesBegin(ev) -- touch only | function ButtonBeast:onTouchesBegin(ev) -- touch only | ||
− | if self.focus then ev:stopPropagation() end | + | if self.focus then |
+ | ev:stopPropagation() | ||
+ | end | ||
end | end | ||
-- if button is on focus, stop propagation of touch events | -- if button is on focus, stop propagation of touch events | ||
function ButtonBeast:onTouchesMove(ev) -- touch only | function ButtonBeast:onTouchesMove(ev) -- touch only | ||
− | if self.focus then ev:stopPropagation() end | + | if self.focus then |
+ | ev:stopPropagation() | ||
+ | end | ||
end | end | ||
-- if button is on focus, stop propagation of touch events | -- if button is on focus, stop propagation of touch events | ||
Line 296: | Line 245: | ||
local prev = snd.time | local prev = snd.time | ||
if curr - prev > snd.delay then | if curr - prev > snd.delay then | ||
− | snd.sound:play():setVolume(self.params.volume) | + | local channel = snd.sound:play() |
+ | if channel then | ||
+ | channel:setVolume(self.params.volume) | ||
+ | end | ||
snd.time = curr | snd.time = curr | ||
end | end | ||
Line 325: | Line 277: | ||
local btn01 = ButtonBeast.new({ | local btn01 = ButtonBeast.new({ | ||
pixelimgup=btnuptex, pixelimgdown=btndowntex, pixelimgdisabled=btndisabledtex, | pixelimgup=btnuptex, pixelimgdown=btndowntex, pixelimgdisabled=btndisabledtex, | ||
+ | pixelscalexup=1.05, pixelscalexdown=0.9, | ||
text="button 1", ttf=myttf, | text="button 1", ttf=myttf, | ||
sound=btnsound, volume=volume, | sound=btnsound, volume=volume, | ||
Line 330: | Line 283: | ||
local btn02 = ButtonBeast.new({ | local btn02 = ButtonBeast.new({ | ||
pixelimgup=btnuptex, pixelimgdown=btndowntex, pixelimgdisabled=btndisabledtex, | pixelimgup=btnuptex, pixelimgdown=btndowntex, pixelimgdisabled=btndisabledtex, | ||
+ | pixelscalexup=1.05, pixelscalexdown=0.9, | ||
text="button 2", ttf=myttf, | text="button 2", ttf=myttf, | ||
sound=btnsound, volume=volume, | sound=btnsound, volume=volume, | ||
Line 335: | Line 289: | ||
local btn03 = ButtonBeast.new({ | local btn03 = ButtonBeast.new({ | ||
pixelimgup=btnuptex, pixelimgdown=btndowntex, pixelimgdisabled=btndisabledtex, | pixelimgup=btnuptex, pixelimgdown=btndowntex, pixelimgdisabled=btndisabledtex, | ||
+ | pixelscalexup=1.05, pixelscalexdown=0.9, | ||
text="button 3", ttf=myttf, | text="button 3", ttf=myttf, | ||
sound=btnsound, volume=volume, | sound=btnsound, volume=volume, |
Latest revision as of 02:33, 9 November 2024
ButtonBeast Class
--[[
-- ButtonBeast
-- Pixel, Image, 9patch, Text,
-- Up, Down, Disabled, Hover,
-- Sfx, Touch & Mouse navigation
v 0.2.2: 2024-11-08 selectionSfx(): added channel checks before setting volume
v 0.2.0: 2023-12-01 terminator, should be fine in games too now
v 0.1.0: 2021-06-01 total recall, this class has become a Monster! best used in menus but who knows?
v 0.0.1: 2020-03-28 init (based on the initial generic Gideros Button class)
]]
-- Class
ButtonBeast = Core.class(Sprite)
function ButtonBeast:init(xparams)
-- user params
self.params = xparams or {}
-- button params
self.params.autoscale = xparams.autoscale or (xparams.autoscale == nil) -- bool (default = true)
self.params.btnscalexup = xparams.btnscalexup or 1 -- number
self.params.btnscaleyup = xparams.btnscaleyup or self.params.btnscalexup -- number
self.params.btnscalexdown = xparams.btnscalexdown or self.params.btnscalexup -- number
self.params.btnscaleydown = xparams.btnscaleydown or self.params.btnscaleyup -- number
self.params.btnalphaup = xparams.btnalphaup or 1 -- number
self.params.btnalphadown = xparams.btnalphadown or self.params.btnalphaup -- number
-- pixel?
self.params.pixelcolorup = xparams.pixelcolorup or 0xffffff -- color
self.params.pixelcolordown = xparams.pixelcolordown or self.params.pixelcolorup -- color
self.params.pixelcolordisabled = xparams.pixelcolordisabled or 0x555555 -- color
self.params.pixelimgup = xparams.pixelimgup or nil -- img Up Texture
self.params.pixelimgdown = xparams.pixelimgdown or self.params.pixelimgup -- img Down Texture
self.params.pixelimgdisabled = xparams.pixelimgdisabled or self.params.pixelimgup -- img Disabled Texture
self.params.pixelalphaup = xparams.pixelalphaup or 1 -- number
self.params.pixelalphadown = xparams.pixelalphadown or self.params.pixelalphaup -- number
self.params.pixelscalexup = xparams.pixelscalexup or 1 -- number
self.params.pixelscaleyup = xparams.pixelscaleyup or self.params.pixelscalexup -- number
self.params.pixelscalexdown = xparams.pixelscalexdown or self.params.pixelscalexup -- number
self.params.pixelscaleydown = xparams.pixelscaleydown or self.params.pixelscaleyup -- number
self.params.pixelwidth = xparams.pixelwidth or 24 -- 24, number (autoscale = x padding else width)
self.params.pixelheight = xparams.pixelheight or self.params.pixelwidth -- number (autoscale = y padding else height)
self.params.ninepatch = xparams.ninepatch or 16 -- 0, 8, number
-- text?
self.params.text = xparams.text or nil -- string
self.params.ttf = xparams.ttf or nil -- ttf font
self.params.textcolorup = xparams.textcolorup or 0x0 -- color
self.params.textcolordown = xparams.textcolordown or self.params.textcolorup -- color
self.params.textcolordisabled = xparams.textcolordisabled or 0x777777 -- color
self.params.textalphaup = xparams.textalphaup or 1 -- number
self.params.textalphadown = xparams.textalphaup or self.params.textalphaup -- number
self.params.textscalexup = xparams.textscalexup or 1 -- number
self.params.textscaleyup = xparams.textscaleyup or self.params.textscalexup -- number
self.params.textscalexdown = xparams.textscalexdown or self.params.textscalexup -- number
self.params.textscaleydown = xparams.textscaleydown or self.params.textscaleyup -- number
-- audio?
self.params.sound = xparams.sound or nil -- sound fx
self.params.volume = xparams.volume or nil -- sound volume
-- let's go!
self:setButton()
-- update visual state
self.focus = false
self.hover = false
self.disabled = false
self:updateVisualState()
-- mouse event listeners
self:addEventListener(Event.MOUSE_DOWN, self.onMouseDown, self)
self:addEventListener(Event.MOUSE_MOVE, self.onMouseMove, self)
self:addEventListener(Event.MOUSE_UP, self.onMouseUp, self)
self:addEventListener(Event.MOUSE_HOVER, self.onMouseHover, self)
-- touches event listeners
self:addEventListener(Event.TOUCHES_BEGIN, self.onTouchesBegin, self)
self:addEventListener(Event.TOUCHES_MOVE, self.onTouchesMove, self)
self:addEventListener(Event.TOUCHES_END, self.onTouchesEnd, self)
self:addEventListener(Event.TOUCHES_CANCEL, self.onTouchesCancel, self)
end
-- FUNCTIONS
function ButtonBeast:setButton()
-- text dimensions
local textwidth, textheight
if self.params.text then
self.text = TextField.new(self.params.ttf, self.params.text, self.params.text)
self.text:setAnchorPoint(0.5, 0.5)
self.text:setScale(self.params.textscalexup, self.params.textscaleyup)
self.text:setTextColor(self.params.textcolorup)
self.text:setAlpha(self.params.textalphaup)
textwidth, textheight = self.text:getWidth(), self.text:getHeight()
end
-- first add pixel
if self.params.autoscale and self.params.text then
self.pixel = Pixel.new(self.params.pixelcolorup, self.params.pixelalphaup,
textwidth+self.params.pixelwidth, textheight+self.params.pixelheight)
else
self.pixel = Pixel.new(self.params.pixelcolorup, self.params.pixelalphaup,
self.params.pixelwidth, self.params.pixelheight)
end
self.pixel:setScale(self.params.pixelscalexup, self.params.pixelscaleyup)
self.pixel:setAnchorPoint(0.5, 0.5)
self.pixel:setNinePatch(self.params.ninepatch)
if self.params.pixelimgup then self.pixel:setTexture(self.params.pixelimgup)
elseif self.params.pixelimgdown then self.pixel:setTexture(self.params.pixelimgdown)
elseif self.params.pixelimgdisabled then self.pixel:setTexture(self.params.pixelimgdisabled)
end
self:addChild(self.pixel)
-- then add text?
if self.params.text then self:addChild(self.text) end
end
function ButtonBeast:updateVisualState()
local function visualState(btn, btnscalex, btnscaley, btnalpha, textcolor, textscalex, textscaley,
pixeltex, pixelcolor, pixelalpha, pixelscalex, pixelscaley)
btn:setScale(btnscalex, btnscaley)
btn:setAlpha(btnalpha)
if btn.params.text then
btn.text:setTextColor(textcolor)
btn.text:setScale(textscalex, textscaley)
end
if pixeltex then btn.pixel:setTexture(pixeltex) end
btn.pixel:setColor(pixelcolor, pixelalpha)
btn.pixel:setScale(pixelscalex, pixelscaley)
end
-- print("TOUCH, MOUSE NAVIGATION")
if self.disabled then -- disabledState
visualState(self, self.params.btnscalexdown, self.params.btnscaleydown, self.params.btnalphadown,
self.params.textcolordisabled, self.params.textscalexdown, self.params.textscaleydown,
self.params.pixelimgdisabled, self.params.pixelcolordisabled,
self.params.pixelalphadown, self.params.pixelscalexdown, self.params.pixelscaleydown)
elseif self.focus or self.hover then -- downState
visualState(self, self.params.btnscalexdown, self.params.btnscaleydown, self.params.btnalphadown,
self.params.textcolordown, self.params.textscalexdown, self.params.textscaleydown,
self.params.pixelimgdown, self.params.pixelcolordown,
self.params.pixelalphadown, self.params.pixelscalexdown, self.params.pixelscaleydown)
else -- upState
visualState(self, self.params.btnscalexup, self.params.btnscaleyup, self.params.btnalphaup,
self.params.textcolorup, self.params.textscalexup, self.params.textscaleyup,
self.params.pixelimgup, self.params.pixelcolorup,
self.params.pixelalphaup, self.params.pixelscalexup, self.params.pixelscaleyup)
end
end
-- DISABLED
function ButtonBeast:setDisabled(disabled)
if self.disabled == disabled then return end
self.disabled = disabled
self:updateVisualState()
end
function ButtonBeast:getDisabled()
return self.disabled
end
-- LISTENERS
-- MOUSE
function ButtonBeast:onMouseDown(ev) -- both mouse and touch
if self:hitTestPoint(ev.x, ev.y, true) then
self.focus = true
self:updateVisualState()
self:selectionSfx() -- play sound fx?
ev:stopPropagation()
end
end
function ButtonBeast:onMouseMove(ev) -- both mouse and touch
if self.focus then
if not self:hitTestPoint(ev.x, ev.y, true) then
self.focus = false
self:updateVisualState()
end
ev:stopPropagation()
end
end
function ButtonBeast:onMouseUp(ev) -- both mouse and touch
if self.focus then
self.focus = false
self:updateVisualState()
local e = Event.new("clicked")
e.disabled = self.disabled -- update button disabled
self:dispatchEvent(e) -- button is clicked, dispatch "clicked" event
ev:stopPropagation()
end
end
function ButtonBeast:onMouseHover(ev) -- mouse only
if self:hitTestPoint(ev.x, ev.y, true) then -- onenter
self.focus = true
self.hover = true
-- execute onenter code only once
self.onenter = not self.onenter
if not self.onenter then self.moving = true end
if not self.moving then
-- self:selectionSfx() -- play sound fx? you choose!
-- trick to remove residuals when fast moving mouse
local timer = Timer.new(100*1, 1) -- number of repetition, the higher the safer
timer:addEventListener(Event.TIMER, function() self:updateVisualState() end)
timer:start()
else
self.onexit = true
end
ev:stopPropagation()
else -- onexit
self.focus = false
self.hover = false
self.onenter = false
self.moving = false
if self.onexit then
-- execute onexit code only once
self.onexit = false
self:updateVisualState()
end
end
end
-- TOUCHES
-- if button is on focus, stop propagation of touch events
function ButtonBeast:onTouchesBegin(ev) -- touch only
if self.focus then
ev:stopPropagation()
end
end
-- if button is on focus, stop propagation of touch events
function ButtonBeast:onTouchesMove(ev) -- touch only
if self.focus then
ev:stopPropagation()
end
end
-- if button is on focus, stop propagation of touch events
function ButtonBeast:onTouchesEnd(ev) -- touch only
if self.focus then
ev:stopPropagation()
end
end
-- if touches are cancelled, reset the state of the button
function ButtonBeast:onTouchesCancel(ev) -- app interrupted (phone call, ...), touch only
if self.focus then
self.focus = false
self:updateVisualState()
end
end
-- AUDIO
function ButtonBeast:selectionSfx()
if self.params.sound then
local snd = self.params.sound
local curr = os.timer()
local prev = snd.time
if curr - prev > snd.delay then
local channel = snd.sound:play()
if channel then
channel:setVolume(self.params.volume)
end
snd.time = curr
end
end
end
ButtonBeast Demo
-- ButtonBeast DEMO
application:setBackgroundColor(0x6c6c6c)
-- a gradient bg
local gradient = Pixel.new(0xffffff, 1, application:getContentWidth(), application:getContentHeight())
gradient:setColor(0x0, 1, 0xaa5500, 1, 15*16)
gradient:setAnchorPoint(0.5, 0.5)
-- font
local myttf = TTFont.new("fonts/Cabin-Bold-TTF.ttf", 20)
-- textures
local btnuptex = Texture.new("gfx/ui/btn_01_up.png")
local btndowntex = Texture.new("gfx/ui/btn_01_down.png")
local btndisabledtex = Texture.new("gfx/ui/btn_01_disabled.png")
-- buttons sound
local btnsound = {sound=Sound.new("audio/Braam - Retro Pulse.wav"), time=0, delay=0.5} -- delay=0.5, 0.05
local volume = 0.3
-- buttons
local btn01 = ButtonBeast.new({
pixelimgup=btnuptex, pixelimgdown=btndowntex, pixelimgdisabled=btndisabledtex,
pixelscalexup=1.05, pixelscalexdown=0.9,
text="button 1", ttf=myttf,
sound=btnsound, volume=volume,
})
local btn02 = ButtonBeast.new({
pixelimgup=btnuptex, pixelimgdown=btndowntex, pixelimgdisabled=btndisabledtex,
pixelscalexup=1.05, pixelscalexdown=0.9,
text="button 2", ttf=myttf,
sound=btnsound, volume=volume,
})
local btn03 = ButtonBeast.new({
pixelimgup=btnuptex, pixelimgdown=btndowntex, pixelimgdisabled=btndisabledtex,
pixelscalexup=1.05, pixelscalexdown=0.9,
text="button 3", ttf=myttf,
sound=btnsound, volume=volume,
})
local btn04 = ButtonBeast.new({
autoscale=false,
pixelwidth=8*5, pixelheight=8*24,
pixelimgup=btnuptex, pixelimgdown=btndowntex, pixelimgdisabled=btndisabledtex,
pixelcolordown=0x00ff00,
text="b\nt\nn\n \n4", ttf=myttf,
sound=btnsound, volume=volume,
})
local btnexit = ButtonBeast.new({
pixelcolorup=0xff0000, pixelcolordown=0x00ff00,
text="EXIT", ttf=myttf,
})
-- position
gradient:setPosition(application:getContentWidth()/2, application:getContentHeight()/2)
btn01:setPosition(16*5, 16*3)
btn02:setPosition(16*5, 16*8)
btn03:setPosition(16*5, 16*12.5)
btn04:setPosition(16*12, 16*8)
btnexit:setPosition(16*24, 16*16)
-- order
stage:addChild(gradient)
stage:addChild(btn01)
stage:addChild(btn02)
stage:addChild(btn03)
stage:addChild(btn04)
stage:addChild(btnexit)
-- shared listener functions
function clicked(index, btn)
print(index, btn.disabled)
if index == 2 then btn03:setDisabled(not btn03:getDisabled())
elseif index == 5 then print("EXIT")
end
end
-- listeners
btn01:addEventListener("clicked", clicked, 1, btn01)
btn02:addEventListener("clicked", clicked, 2, btn02)
btn03:addEventListener("clicked", clicked, 3, btn03)
btn04:addEventListener("clicked", clicked, 4, btn04)
btnexit:addEventListener("clicked", clicked, 5, btnexit)