love2d-signage/nodes/weather.lua

53 lines
1.8 KiB
Lua
Raw Normal View History

local node = ThreadNode:extend('nodes.weather', {
threadFile = 'nodes/weather_thread.lua',
threadChannel = 'weather',
updateInterval = 5 * 60,
})
local weatherFont = love.graphics.newFont('fonts/weathericons-regular-webfont.ttf', 400)
local textFont = love.graphics.newFont('fonts/Lato-Thin.ttf', 300)
local smallFont = love.graphics.newFont('fonts/Lato-Light.ttf', 30)
local weatherGlyphs = {
snow = "",
mist = "",
clear = "",
2017-01-20 21:36:22 +00:00
-- clouds = "",
clouds = "", -- x---DDD
drizzle = "",
}
function node:render()
love.graphics.setColor( 0, 0, 0 )
love.graphics.rectangle("fill", 0, 0, love.graphics.getWidth(), love.graphics.getHeight())
if self.state then
love.graphics.setColor( 255, 255, 255 )
if weatherGlyphs[self.state.weather] then
love.graphics.setFont(weatherFont)
love.graphics.print(weatherGlyphs[self.state.weather], 120, 35)
else
love.graphics.setFont(smallFont)
love.graphics.print(self.state.weather, 150, love.graphics.getHeight()/2 - 60)
end
love.graphics.setFont(textFont)
love.graphics.printf(tostring(self.state.temperature) .. "°", 600, 150, 650, 'center')
love.graphics.setFont(smallFont)
love.graphics.printf(os.date("Last update: %Y/%m/%d %H:%M", self.state.lastUpdate), 0, love.graphics.getHeight() - 60, love.graphics.getWidth(), 'center')
if self.state.insideTemperature then
love.graphics.printf("Room: " .. tostring(self.state.insideTemperature) .. "° / " .. tostring(self.state.insideHumidity) .. "%RH", 0, love.graphics.getHeight() - 100, love.graphics.getWidth(), 'center')
end
else
love.graphics.setColor( 255, 255, 255, 80 )
love.graphics.setFont(smallFont)
love.graphics.printf("Loading weather...", 0, love.graphics.getHeight() - 200, love.graphics.getWidth(), 'center')
end
end
return node