added text element!

This commit is contained in:
Fox 2016-01-21 16:04:11 -08:00
parent 9533de1d1d
commit 21dcf8d151
3 changed files with 74 additions and 0 deletions

3
docs/Text.md Normal file
View File

@ -0,0 +1,3 @@
- set text will modify size
- set font will modify size
- set size just fixes the size, you cannot manually set text size

View File

@ -12,6 +12,7 @@ function love.load()
pop.box(align):align("center", "bottom"):setColor(255, 255, 0)
pop.box(align):align("right", "bottom"):setColor(0, 255, 255)
pop.box(nil, {255, 0, 0, 255}):align("left", "top"):setSize(50, 50)
pop.text(nil, "Hello World!"):align("center"):setText("Hey, I've been modified!")
end
function love.update(dt)

70
pop/elements/text.lua Normal file
View File

@ -0,0 +1,70 @@
local lg = love.graphics
local path = string.sub(..., 1, string.len(...) - string.len("/elements/text"))
local class = require(path .. "/lib/middleclass")
local element = require(path .. "/elements/element")
local text = class("pop.text", element)
function text:initialize(pop, parent, text, color)
element.initialize(self, pop, parent)
self.font = lg.newFont()
self:setText(text or "")
self.color = color or {255, 255, 255, 255}
end
function text:draw()
lg.setColor(self.color)
lg.setFont(self.font)
lg.print(self.text, self.x, self.y)
return self
end
function text:setSize()
local w = self.font:getWidth(self.text)
local h = self.font:getHeight()
if self.horizontal == "center" then
self.x = self.x - (w - self.w)/2
elseif self.horizontal == "right" then
self.x = self.x - (w - self.w)
end
if self.vertical == "center" then
self.y = self.y - (h - self.h)/2
elseif self.vertical == "bottom" then
self.y = self.y - (h - self.h)
end
self.w = w
self.h = h
return self
end
function text:setText(text)
self.text = text
self:setSize()
return self
end
function text:getText()
return self.text
end
function text:setFont(font)
self.font = font
self:setSize()
return self
end
function text:getFont()
return self.font
end
return text