-- widgets/text.lua :: basic text widget object --[[ Copyright © 2019 Kazhnuz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ]] local BaseWidget = require "birb.modules.gui.menus.widgets.base" local TextWidget = BaseWidget:extend() -- TEXT WIDGET -- Simple text widget function TextWidget:new(menuName, font, label, position, padding) TextWidget.super.new(self, menuName) self.font = font self.labels = {} self.padding = padding or 0 -- We add the first label local position = position or "center" self:addLabel(label, position) self:setSelectedColor(1, 1, 1) end function TextWidget:addLabel(label, position) local complexLabel = {} complexLabel.label = label complexLabel.position = position table.insert(self.labels, complexLabel) end function TextWidget:replaceLabel(id, newLabel) self.labels[id].label = newLabel end function TextWidget:setSelectedColor(r, g, b) self.selectedColor = {} self.selectedColor.r = r self.selectedColor.g = g self.selectedColor.b = b end function TextWidget:getFont() return self.assets:getFont(self.font) end function TextWidget:getSelectedColor() return self.selectedColor.r, self.selectedColor.g, self.selectedColor.b end function TextWidget:getPadding() return self.padding end function TextWidget:drawCanvas() local w, h local font = self:getFont() h = math.floor(self.height / 2) - (font:getHeight() / 2) for _, complexLabel in pairs(self.labels) do if (complexLabel.position == "center") then w = math.floor(self.width / 2) elseif (complexLabel.position == "left") then w = self:getPadding() elseif (complexLabel.position == "right") then w = math.floor(self.width - self:getPadding()) end font:draw(complexLabel.label, w, h, -1, complexLabel.position) end end function TextWidget:drawSelected(x, y, w, h) local r, g, b = self:getSelectedColor() love.graphics.setColor(r, g, b, 1) self:draw(x, y) utils.graphics.resetColor() end return TextWidget