sonic-radiance/sonic-radiance.love/birb/modules/gui/elements/parent.lua

112 lines
2.2 KiB
Lua
Raw Normal View History

2021-08-22 13:02:52 +02:00
local Rect = require "birb.classes.2D.rect"
2021-08-21 12:45:49 +02:00
local GuiElement = Rect:extend()
function GuiElement:new(name, x, y, w, h)
GuiElement.super.new(self, x, y, w, h)
self.name = name
2021-08-22 13:02:52 +02:00
self.isVisible = true
2021-08-21 12:45:49 +02:00
self.screen = nil
self.depth = 0
self:register()
end
function GuiElement:getGui()
2021-08-22 13:02:52 +02:00
local scene = core.scenemanager.nextScene or core.scenemanager.currentScene
2021-08-21 12:45:49 +02:00
return scene.gui
end
function GuiElement:register()
local gui = self:getGui()
2021-08-22 12:39:44 +02:00
self.creationId = gui:addElement(self.name, self)
2021-08-21 12:45:49 +02:00
end
function GuiElement:destroy()
local gui = self:getGui()
gui:removeElement(self.name)
if (self.screen == nil) then
self.screen:removeElement(self.name)
end
end
-- VISIBILITY/ACTIVITY
-- Handle drawing and how we interact with
function GuiElement:setDepth(depth)
self.depth = depth or 0
end
function GuiElement:getVisibility()
if (self.screen ~= nil) then
return (self.isVisible and self.screen.isVisible)
else
return self.isVisible
end
end
function GuiElement:setVisibility(visibility)
self.isVisible = visibility
end
function GuiElement:getFocus()
local gui = self:getGui()
gui.focusedMenu = self.name
end
function GuiElement:haveFocus()
local gui = self:getGui()
return (gui.focusedMenu == self.name)
end
function GuiElement:looseFocus()
if (self:haveFocus()) then
local gui = self:getGui()
gui.focusedMenu = nil
end
end
-- UPDATE FUNCTIONS
-- Update the menu every game update
-- External update function
function GuiElement:updateElement(dt)
self:update(dt)
end
-- Internal update function
function GuiElement:update(dt)
-- Cette fonction ne contient rien par défaut
end
-- DRAW FUNCTIONS
-- Draw the menu and its content
function GuiElement:drawElement()
self:draw()
end
function GuiElement:draw()
-- nothing here
end
-- KEYBOARD FUNCTIONS
-- Handle key press
function GuiElement:keyreleased(key)
-- Cette fonction ne contient rien par défaut
end
-- MOUSE FUNCTIONS
-- Handle pointers (clic/touch)
function GuiElement:mousemoved(x, y)
-- Cette fonction ne contient rien par défaut
end
function GuiElement:mousepressed(x, y, button, istouch)
-- Cette fonction ne contient rien par défaut
end
return GuiElement