blob: 48b51107ccdf01446ff7aa181c8ff80c09cee619 [file] [log] [blame]
Serge Bazanski18c1a262022-07-07 14:24:53 +02001local node = Node:extend('nodes.time', {})
2
3local textFont = love.graphics.newFont('fonts/Lato-Thin.ttf', 400)
4local smallFont = love.graphics.newFont('fonts/Lato-Light.ttf', 60)
5
6function node:init(config)
7 node.super.init(self, config)
8 self.timeFormat = self.timeFormat or '%H:%M'
9 self.dateFormat = self.dateFormat or '%Y/%m/%d'
10end
11
12function node:render()
13 love.graphics.setColor( 0, 0, 0 )
14 love.graphics.rectangle("fill", 0, 0, love.graphics.getWidth(), love.graphics.getHeight())
15
16 love.graphics.setColor( 1.0, 1.0, 1.0 )
17
18 love.graphics.setFont(textFont);
19 love.graphics.printf(os.date(self.timeFormat), 0, 0.14*love.graphics.getHeight(), love.graphics.getWidth(), 'center');
20
21 love.graphics.setFont(smallFont);
22 love.graphics.printf(os.date(self.dateFormat), 0, 0.8*love.graphics.getHeight(), love.graphics.getWidth(), 'center');
23end
24
25return node