Only render when dirty
This commit is contained in:
parent
3d1da9177a
commit
552c19db47
@ -31,11 +31,15 @@ function Element:new(o)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function Element:draw()
|
function Element:draw()
|
||||||
local win = self:_getWindow()
|
local dirty = self:_isDirty()
|
||||||
-- Calling draw() without a valid window is a logical error
|
if dirty then
|
||||||
---@diagnostic disable-next-line: need-check-nil
|
local win = self:_getWindow()
|
||||||
win.setCursorPos(1, 1)
|
-- Calling draw() without a valid window is a logical error
|
||||||
|
---@diagnostic disable-next-line: need-check-nil
|
||||||
|
win.setCursorPos(1, 1)
|
||||||
|
end
|
||||||
self.dirty = false
|
self.dirty = false
|
||||||
|
return dirty
|
||||||
end
|
end
|
||||||
|
|
||||||
function Element:getX()
|
function Element:getX()
|
||||||
@ -76,6 +80,7 @@ function Element:setParent(parent)
|
|||||||
if self.parent ~= parent then
|
if self.parent ~= parent then
|
||||||
self:setDirty()
|
self:setDirty()
|
||||||
self.parent = parent
|
self.parent = parent
|
||||||
|
self:_reload()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -115,6 +120,10 @@ function Element:setVisible(visible)
|
|||||||
self:_getWindow().setVisible(visible)
|
self:_getWindow().setVisible(visible)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function Element:_isDirty()
|
||||||
|
return self.dirty
|
||||||
|
end
|
||||||
|
|
||||||
function Element:resize(opts)
|
function Element:resize(opts)
|
||||||
if (opts.width ~= nil and self.x ~= opts.width) or (opts.height ~= nil and self.y ~= opts.height) then
|
if (opts.width ~= nil and self.x ~= opts.width) or (opts.height ~= nil and self.y ~= opts.height) then
|
||||||
self:setDirty()
|
self:setDirty()
|
||||||
@ -189,10 +198,12 @@ function Element:setOnClick(onClick)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function Element:_reload()
|
function Element:_reload()
|
||||||
local window = window.create(self.parent, self:getX(), self:getY(), self:getWidth(), self:getHeight(), self:isVisible())
|
if self.parent ~= nil then
|
||||||
window.setBackgroundColor(self:getBgColor())
|
local window = window.create(self.parent, self:getX(), self:getY(), self:getWidth(), self:getHeight(), self:isVisible())
|
||||||
window.setTextColor(self:getFgColor())
|
window.setBackgroundColor(self:getBgColor())
|
||||||
self:_setWindow(window)
|
window.setTextColor(self:getFgColor())
|
||||||
|
self:_setWindow(window)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return Element
|
return Element
|
50
gfx/list.lua
50
gfx/list.lua
@ -21,9 +21,22 @@ end
|
|||||||
function List:insertChild(child, atIndex)
|
function List:insertChild(child, atIndex)
|
||||||
local index = math.min(math.max(1, atIndex or #self.children), #self.children)
|
local index = math.min(math.max(1, atIndex or #self.children), #self.children)
|
||||||
table.insert(self.children, index, child)
|
table.insert(self.children, index, child)
|
||||||
|
|
||||||
|
-- Update window references
|
||||||
|
self:_reload()
|
||||||
|
|
||||||
|
-- Update render positions
|
||||||
adjustPositions(self.children, self:isVertical(), index)
|
adjustPositions(self.children, self:isVertical(), index)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function List:setParent(parent)
|
||||||
|
Element.setParent(self, parent)
|
||||||
|
local win = self:_getWindow()
|
||||||
|
for _,child in ipairs(self.children) do
|
||||||
|
child:setParent(win)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
function List:removeChild(child)
|
function List:removeChild(child)
|
||||||
local index
|
local index
|
||||||
local searchType = type(child)
|
local searchType = type(child)
|
||||||
@ -51,6 +64,7 @@ function List:removeChild(child)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local removed = table.remove(self.children, index)
|
local removed = table.remove(self.children, index)
|
||||||
|
self:_reload()
|
||||||
if index <= #self.children then
|
if index <= #self.children then
|
||||||
adjustPositions(self.children, self:isVertical(), index)
|
adjustPositions(self.children, self:isVertical(), index)
|
||||||
end
|
end
|
||||||
@ -67,11 +81,14 @@ function List:isHorizontal()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function List:draw()
|
function List:draw()
|
||||||
Element.draw(self)
|
local dirty = Element.draw(self)
|
||||||
self:_getWindow().clear()
|
if dirty then
|
||||||
for _,v in ipairs(self.children) do
|
self:_getWindow().clear()
|
||||||
v:draw()
|
for _,child in ipairs(self.children) do
|
||||||
|
child:draw()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
return dirty
|
||||||
end
|
end
|
||||||
|
|
||||||
function List:getHeight()
|
function List:getHeight()
|
||||||
@ -105,4 +122,29 @@ function List:findById(id)
|
|||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function List:_isDirty()
|
||||||
|
if Element._isDirty(self) then
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
|
||||||
|
for _,child in ipairs(self.childrent) do
|
||||||
|
if child:_isDirty() then
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
function List:_reload()
|
||||||
|
Element._reload(self)
|
||||||
|
|
||||||
|
-- Reload child windows
|
||||||
|
local win = self:_getWindow()
|
||||||
|
for _,child in ipairs(self.children) do
|
||||||
|
if child:_getWindow() ~= win then
|
||||||
|
child:setParent(win)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
return List
|
return List
|
@ -28,10 +28,13 @@ function Padding:resize(opts)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function Padding:draw()
|
function Padding:draw()
|
||||||
Element.draw(self)
|
if Element.draw(self) or self.element:_isDirty() then
|
||||||
local win = self:_getWindow()
|
local win = self:_getWindow()
|
||||||
win.clear()
|
win.clear()
|
||||||
self.element:draw()
|
self.element:draw()
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
function Padding:getPaddingLeft()
|
function Padding:getPaddingLeft()
|
||||||
|
@ -26,8 +26,11 @@ function Text:getText()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function Text:draw()
|
function Text:draw()
|
||||||
Element.draw(self)
|
local dirty = Element.draw(self)
|
||||||
self:_getWindow().write(self:getText())
|
if dirty then
|
||||||
|
self:_getWindow().write(self:getText())
|
||||||
|
end
|
||||||
|
return dirty
|
||||||
end
|
end
|
||||||
|
|
||||||
function Text:getHeight()
|
function Text:getHeight()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user