love2d-signage/nodes/time.lua

20 lines
693 B
Lua
Raw Normal View History

local node = Node:extend('nodes.time', {})
2017-01-08 00:11:19 +00:00
local textFont = love.graphics.newFont('fonts/Lato-Thin.ttf', 400)
local smallFont = love.graphics.newFont('fonts/Lato-Light.ttf', 60)
2017-01-08 00:11:19 +00:00
function node:render()
2017-01-08 00:11:19 +00:00
love.graphics.setColor( 0, 0, 0 )
love.graphics.rectangle("fill", 0, 0, love.graphics.getWidth(), love.graphics.getHeight())
love.graphics.setColor( 255, 255, 255 )
2017-01-08 00:11:19 +00:00
love.graphics.setFont(textFont);
love.graphics.printf(os.date('%H:%M'), 0, 0.14*love.graphics.getHeight(), love.graphics.getWidth(), 'center');
love.graphics.setFont(smallFont);
love.graphics.printf(os.date('%Y/%m/%d'), 0, 0.8*love.graphics.getHeight(), love.graphics.getWidth(), 'center');
2017-01-08 00:11:19 +00:00
end
return node