You've already forked pie-time
Initial public release of PieTime!
\o/
This commit is contained in:
3
pie_time/cards/__init__.py
Normal file
3
pie_time/cards/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from .clock import ClockCard
|
||||
from .picture import PictureCard
|
||||
from .weather import WeatherCard
|
||||
154
pie_time/cards/clock.py
Normal file
154
pie_time/cards/clock.py
Normal file
@@ -0,0 +1,154 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright (c) 2014-2016 Tomek Wójcik <tomek@bthlabs.pl>
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
"""
|
||||
pie_time.cards.clock
|
||||
====================
|
||||
|
||||
This module containse the ClockCard class.
|
||||
"""
|
||||
|
||||
import datetime
|
||||
|
||||
import pygame
|
||||
|
||||
from pie_time.card import AbstractCard
|
||||
|
||||
|
||||
class ClockCard(AbstractCard):
|
||||
"""
|
||||
The clock card.
|
||||
|
||||
This card displays a digital clock and date.
|
||||
|
||||
**Settings dictionary keys**:
|
||||
|
||||
* **time_format** (*string*) - time format string (*strftime()*
|
||||
compatible). Defaults to :py:attr:`pie_time.cards.ClockCard.TIME_FORMAT`
|
||||
* **time_blink** (*boolean*) - if set to ``True`` the semicolons will
|
||||
blink. Defaults to ``True``.
|
||||
* **time_color** (*tuple*) - time text color. Defaults to
|
||||
:py:attr:`pie_time.cards.ClockCard.GREEN`
|
||||
* **date_format** (*string*) - date format string (*strftime()*
|
||||
compatible). Defaults to :py:attr:`pie_time.cards.ClockCard.DATE_FORMAT`
|
||||
* **date_color** (*tuple*) - date text color. Defaults to
|
||||
:py:attr:`pie_time.cards.ClockCard.GREEN`
|
||||
"""
|
||||
|
||||
#: Green color for text
|
||||
GREEN = (96, 253, 108)
|
||||
|
||||
#: Default time format
|
||||
TIME_FORMAT = '%I:%M %p'
|
||||
|
||||
#: Default date format
|
||||
DATE_FORMAT = '%a, %d %b %Y'
|
||||
|
||||
def initialize(self):
|
||||
self._time_font = pygame.font.Font(
|
||||
self.path_for_resource('PTM55FT.ttf'), 63
|
||||
)
|
||||
|
||||
self._date_font = pygame.font.Font(
|
||||
self.path_for_resource('opensans-light.ttf'), 36
|
||||
)
|
||||
|
||||
self._now = None
|
||||
self._current_interval = 0
|
||||
|
||||
def _render_time(self, now):
|
||||
time_format = self._settings.get('time_format', self.TIME_FORMAT)
|
||||
|
||||
if self._settings.get('time_blink', True) and now.second % 2 == 1:
|
||||
time_format = time_format.replace(':', ' ')
|
||||
|
||||
current_time = now.strftime(time_format)
|
||||
|
||||
text = self._time_font.render(
|
||||
current_time, True, self._settings.get('time_color', self.GREEN)
|
||||
)
|
||||
|
||||
return text
|
||||
|
||||
def _render_date(self, now):
|
||||
date_format = self._settings.get('date_format', self.DATE_FORMAT)
|
||||
|
||||
current_date = now.strftime(date_format)
|
||||
|
||||
text = self._date_font.render(
|
||||
current_date, True, self._settings.get('date_color', self.GREEN)
|
||||
)
|
||||
|
||||
return text
|
||||
|
||||
def _update_now(self):
|
||||
if self._now is None:
|
||||
self._now = datetime.datetime.now()
|
||||
self._current_interval = 0
|
||||
|
||||
return True
|
||||
else:
|
||||
self._current_interval += self._app._clock.get_time()
|
||||
|
||||
if self._current_interval >= 1000:
|
||||
self._now = datetime.datetime.now()
|
||||
self._current_interval = self._current_interval - 1000
|
||||
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
def show(self):
|
||||
self._now = None
|
||||
|
||||
def tick(self):
|
||||
now_updated = self._update_now()
|
||||
|
||||
if now_updated:
|
||||
time_text = self._render_time(self._now)
|
||||
date_text = self._render_date(self._now)
|
||||
|
||||
time_text_size = time_text.get_size()
|
||||
date_text_size = date_text.get_size()
|
||||
|
||||
time_text_origin_y = (
|
||||
(self.height - time_text_size[1] - date_text_size[1]) / 2.0
|
||||
)
|
||||
|
||||
time_text_rect = (
|
||||
(self.width - time_text_size[0]) / 2.0,
|
||||
time_text_origin_y,
|
||||
time_text_size[0],
|
||||
time_text_size[1]
|
||||
)
|
||||
|
||||
date_text_rect = (
|
||||
(self.width - date_text_size[0]) / 2.0,
|
||||
time_text_origin_y + time_text_size[1],
|
||||
date_text_size[0],
|
||||
date_text_size[1]
|
||||
)
|
||||
|
||||
self.surface.fill(self.background_color)
|
||||
|
||||
self.surface.blit(time_text, time_text_rect)
|
||||
self.surface.blit(date_text, date_text_rect)
|
||||
140
pie_time/cards/picture.py
Normal file
140
pie_time/cards/picture.py
Normal file
@@ -0,0 +1,140 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright (c) 2014-2016 Tomek Wójcik <tomek@bthlabs.pl>
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
"""
|
||||
pie_time.cards.picture
|
||||
======================
|
||||
|
||||
This module containse the PictureCard class.
|
||||
"""
|
||||
|
||||
import cStringIO
|
||||
import os
|
||||
import urlparse
|
||||
|
||||
import pygame
|
||||
import requests
|
||||
|
||||
from pie_time.card import AbstractCard
|
||||
|
||||
|
||||
class PictureCard(AbstractCard):
|
||||
"""
|
||||
The picture card.
|
||||
|
||||
This cards displays a picture from list of pre-defined pictures. If more
|
||||
than one picture is defined, it's changed each time the card transitions
|
||||
to current card.
|
||||
|
||||
**Settings dictionary keys**:
|
||||
|
||||
* **urls** (*list*) - **required** list of picture URLs. Currently, only
|
||||
``file://``, ``http://`` and ``https://`` URL schemes are supported.
|
||||
"""
|
||||
|
||||
def initialize(self):
|
||||
self._pictures = []
|
||||
self._current_picture_idx = None
|
||||
self._should_redraw = True
|
||||
|
||||
for url in self._settings['urls']:
|
||||
self._pictures.append(self._load_picture(url))
|
||||
|
||||
def _load_picture(self, url):
|
||||
self._app.logger.debug(
|
||||
'PictureCard: Attempting to load picture: %s' % url
|
||||
)
|
||||
|
||||
parsed_url = urlparse.urlparse(url)
|
||||
|
||||
surface = None
|
||||
try:
|
||||
format = None
|
||||
if parsed_url.scheme == 'file':
|
||||
surface = pygame.image.load(parsed_url.path)
|
||||
|
||||
_, ext = os.path.splitext(parsed_url.path)
|
||||
format = ext.lower()
|
||||
elif parsed_url.scheme.startswith('http'):
|
||||
rsp = requests.get(url)
|
||||
assert rsp.status_code == 200
|
||||
|
||||
format = rsp.headers['Content-Type'].replace('image/', '')
|
||||
|
||||
surface = pygame.image.load(
|
||||
cStringIO.StringIO(rsp.content), 'picture.%s' % format
|
||||
)
|
||||
|
||||
if surface and format:
|
||||
if format.lower().endswith('png'):
|
||||
surface = surface.convert_alpha(self._app.screen)
|
||||
else:
|
||||
surface = surface.convert(self._app.screen)
|
||||
except Exception as exc:
|
||||
self._app.logger.error(
|
||||
'PictureCard: Could not load picture: %s' % url, exc_info=True
|
||||
)
|
||||
|
||||
return surface
|
||||
|
||||
def show(self):
|
||||
if len(self._pictures) == 0:
|
||||
self._current_picture_idx = None
|
||||
elif len(self._pictures) == 1:
|
||||
self._current_picture_idx = 0
|
||||
else:
|
||||
if self._current_picture_idx is None:
|
||||
self._current_picture_idx = 0
|
||||
else:
|
||||
new_picture_idx = self._current_picture_idx + 1
|
||||
if new_picture_idx >= len(self._pictures):
|
||||
new_picture_idx = 0
|
||||
|
||||
self._app.logger.debug(
|
||||
'PictureCard: Picture transition %d -> %d' % (
|
||||
self._current_picture_idx, new_picture_idx
|
||||
)
|
||||
)
|
||||
|
||||
self._current_picture_idx = new_picture_idx
|
||||
|
||||
self._should_redraw = True
|
||||
|
||||
def tick(self):
|
||||
if self._should_redraw:
|
||||
self.surface.fill(self.background_color)
|
||||
|
||||
if self._current_picture_idx is not None:
|
||||
picture = self._pictures[self._current_picture_idx]
|
||||
picture_size = picture.get_size()
|
||||
|
||||
picture_rect = picture.get_rect()
|
||||
if picture_size != self._app.screen_size:
|
||||
picture_rect = (
|
||||
(self.width - picture_size[0]) / 2.0,
|
||||
(self.height - picture_size[1]) / 2.0,
|
||||
picture_size[0], picture_size[1]
|
||||
)
|
||||
|
||||
self.surface.blit(picture, picture_rect)
|
||||
|
||||
self._should_redraw = False
|
||||
BIN
pie_time/cards/resources/PTM55FT.ttf
Executable file
BIN
pie_time/cards/resources/PTM55FT.ttf
Executable file
Binary file not shown.
BIN
pie_time/cards/resources/linea-weather-10.ttf
Normal file
BIN
pie_time/cards/resources/linea-weather-10.ttf
Normal file
Binary file not shown.
BIN
pie_time/cards/resources/opensans-light.ttf
Executable file
BIN
pie_time/cards/resources/opensans-light.ttf
Executable file
Binary file not shown.
286
pie_time/cards/weather.py
Normal file
286
pie_time/cards/weather.py
Normal file
@@ -0,0 +1,286 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright (c) 2014-2016 Tomek Wójcik <tomek@bthlabs.pl>
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
"""
|
||||
pie_time.cards.weather
|
||||
======================
|
||||
|
||||
This module containse the WeatherCard class.
|
||||
"""
|
||||
|
||||
from threading import Timer
|
||||
|
||||
import pygame
|
||||
import requests
|
||||
|
||||
from pie_time.card import AbstractCard
|
||||
|
||||
URL_TEMPLATE = (
|
||||
'http://api.openweathermap.org/data/2.5/weather?q=%s&units=%s&APPID=%s'
|
||||
)
|
||||
|
||||
|
||||
class WeatherCard(AbstractCard):
|
||||
"""
|
||||
The weather card.
|
||||
|
||||
This cards displays the current weather for a selected city. The weather
|
||||
information is obtained from OpenWeatherMap.
|
||||
|
||||
**Settings dictionary keys**:
|
||||
|
||||
* **api_key** (*string*) - **required** API key.
|
||||
* **city** (*string*) - **required** name of the city.
|
||||
* **units** (*string*) - units name (``metric`` or ``imperial``). Defaults
|
||||
to :py:attr:`pie_time.cards.WeatherCard.UNITS`
|
||||
* **refresh_interval** (*int*) - refresh interval in seconds. Defaults to
|
||||
:py:attr:`pie_time.cards.WeatherCard.REFRESH_INTERVAL`
|
||||
* **city_color** (*tuple*) - city text color. Defaults to
|
||||
:py:attr:`pie_time.cards.WeatherCard.WHITE`
|
||||
* **icon_color** (*tuple*) - icon text color. Defaults to
|
||||
:py:attr:`pie_time.cards.WeatherCard.WHITE`
|
||||
* **temperature_color** (*tuple*) - temperature text color. Defaults to
|
||||
:py:attr:`pie_time.cards.WeatherCard.WHITE`
|
||||
* **conditions_color** (*tuple*) - conditions text color. Defaults to
|
||||
:py:attr:`pie_time.cards.WeatherCard.WHITE`
|
||||
"""
|
||||
|
||||
#: Default units
|
||||
UNITS = 'metric'
|
||||
|
||||
#: Default refresh interval
|
||||
REFRESH_INTERVAL = 600
|
||||
|
||||
#: White color for text
|
||||
WHITE = (255, 255, 255)
|
||||
|
||||
WEATHER_CODE_TO_ICON = {
|
||||
'01d': u'',
|
||||
'01n': u'',
|
||||
'02d': u'',
|
||||
'02n': u'',
|
||||
'03d': u'',
|
||||
'03n': u'',
|
||||
'04d': u'',
|
||||
'04n': u'',
|
||||
'09d': u'',
|
||||
'09n': u'',
|
||||
'10d': u'',
|
||||
'10n': u'',
|
||||
'11d': u'',
|
||||
'11n': u'',
|
||||
'13d': u'',
|
||||
'13n': u'',
|
||||
'50d': u'',
|
||||
'50n': u''
|
||||
}
|
||||
ICON_SPACING = 24
|
||||
|
||||
def initialize(self, refresh=True):
|
||||
assert 'api_key' in self._settings,\
|
||||
'Configuration error: missing API key'
|
||||
assert 'city' in self._settings, 'Configuration error: missing city'
|
||||
|
||||
self._text_font = pygame.font.Font(
|
||||
self.path_for_resource('opensans-light.ttf'), 30
|
||||
)
|
||||
|
||||
self._temp_font = pygame.font.Font(
|
||||
self.path_for_resource('opensans-light.ttf'), 72
|
||||
)
|
||||
|
||||
self._icon_font = pygame.font.Font(
|
||||
self.path_for_resource('linea-weather-10.ttf'), 128
|
||||
)
|
||||
|
||||
self._timer = None
|
||||
self._current_conditions = None
|
||||
self._should_redraw = True
|
||||
|
||||
if refresh:
|
||||
self._refresh_conditions()
|
||||
|
||||
def _refresh_conditions(self):
|
||||
self._app.logger.debug('Refreshing conditions.')
|
||||
self._timer = None
|
||||
|
||||
try:
|
||||
rsp = requests.get(
|
||||
URL_TEMPLATE % (
|
||||
self._settings['city'],
|
||||
self._settings.get('units', self.UNITS),
|
||||
self._settings['api_key']
|
||||
)
|
||||
)
|
||||
|
||||
if rsp.status_code != 200:
|
||||
self._app.logger.error(
|
||||
'WeatherCard: Received HTTP %d' % rsp.status_code
|
||||
)
|
||||
else:
|
||||
try:
|
||||
payload = rsp.json()
|
||||
self._current_conditions = {
|
||||
'conditions': payload['weather'][0]['main'],
|
||||
'icon': payload['weather'][0].get('icon', None),
|
||||
'temperature': payload['main']['temp']
|
||||
}
|
||||
self._should_redraw = True
|
||||
except:
|
||||
self._app.logger.error(
|
||||
'WeatherCard: ERROR!', exc_info=True
|
||||
)
|
||||
except:
|
||||
self._app.logger.error('WeatherCard: ERROR!', exc_info=True)
|
||||
|
||||
self._timer = Timer(
|
||||
self._settings.get('refresh_interval', self.REFRESH_INTERVAL),
|
||||
self._refresh_conditions
|
||||
)
|
||||
self._timer.start()
|
||||
|
||||
def _render_city(self):
|
||||
city_text = self._text_font.render(
|
||||
self._settings['city'], True,
|
||||
self._settings.get('city_color', self.WHITE)
|
||||
)
|
||||
|
||||
return city_text
|
||||
|
||||
def _render_conditions(self):
|
||||
conditions_text = self._text_font.render(
|
||||
self._current_conditions['conditions'].capitalize(),
|
||||
True, self._settings.get('conditions_color', self.WHITE)
|
||||
)
|
||||
|
||||
return conditions_text
|
||||
|
||||
def _render_icon(self):
|
||||
icon = self._current_conditions['icon']
|
||||
weather_icon = None
|
||||
|
||||
if icon in self.WEATHER_CODE_TO_ICON:
|
||||
weather_icon = self._icon_font.render(
|
||||
self.WEATHER_CODE_TO_ICON[icon],
|
||||
True, self._settings.get('icon_color', self.WHITE)
|
||||
)
|
||||
|
||||
return weather_icon
|
||||
|
||||
def _render_temperature(self):
|
||||
temp_text = self._temp_font.render(
|
||||
u'%d°' % self._current_conditions['temperature'],
|
||||
True,
|
||||
self._settings.get('temperature_color', self.WHITE)
|
||||
)
|
||||
|
||||
return temp_text
|
||||
|
||||
def quit(self):
|
||||
if self._timer is not None:
|
||||
self._timer.cancel()
|
||||
|
||||
def tick(self):
|
||||
if self._should_redraw:
|
||||
self.surface.fill(self.background_color)
|
||||
|
||||
city_text = self._render_city()
|
||||
city_text_size = city_text.get_size()
|
||||
city_text_rect = (
|
||||
(self.width - city_text_size[0]) / 2.0,
|
||||
0,
|
||||
city_text_size[0],
|
||||
city_text_size[1]
|
||||
)
|
||||
self.surface.blit(city_text, city_text_rect)
|
||||
|
||||
if self._current_conditions:
|
||||
conditions_text = self._render_conditions()
|
||||
conditions_text_size = conditions_text.get_size()
|
||||
conditions_text_rect = (
|
||||
(self.width - conditions_text_size[0]) / 2.0,
|
||||
self.height - conditions_text_size[1],
|
||||
conditions_text_size[0],
|
||||
conditions_text_size[1]
|
||||
)
|
||||
self.surface.blit(conditions_text, conditions_text_rect)
|
||||
|
||||
icon = self._render_icon()
|
||||
has_icon = (icon is not None)
|
||||
|
||||
temp_text = self._render_temperature()
|
||||
temp_text_size = temp_text.get_size()
|
||||
|
||||
if has_icon:
|
||||
icon_size = icon.get_size()
|
||||
icon_origin_x = (
|
||||
(
|
||||
self.width - (
|
||||
icon_size[0] + self.ICON_SPACING +
|
||||
temp_text_size[0]
|
||||
)
|
||||
) / 2.0
|
||||
)
|
||||
icon_origin_y = (
|
||||
city_text_size[1] + (
|
||||
self.height - conditions_text_size[1] -
|
||||
city_text_size[1] - icon_size[1]
|
||||
) / 2.0
|
||||
)
|
||||
icon_rect = (
|
||||
icon_origin_x,
|
||||
icon_origin_y,
|
||||
icon_size[0],
|
||||
icon_size[1]
|
||||
)
|
||||
|
||||
self.surface.blit(icon, icon_rect)
|
||||
|
||||
temp_text_origin_y = (
|
||||
city_text_size[1] + (
|
||||
self.height - conditions_text_size[1] -
|
||||
city_text_size[1] - temp_text_size[1]
|
||||
) / 2.0
|
||||
)
|
||||
|
||||
if has_icon:
|
||||
temp_text_origin_x = (
|
||||
icon_rect[0] + icon_size[0] +
|
||||
self.ICON_SPACING
|
||||
)
|
||||
temp_text_rect = (
|
||||
temp_text_origin_x,
|
||||
temp_text_origin_y,
|
||||
temp_text_size[0],
|
||||
temp_text_size[1]
|
||||
)
|
||||
else:
|
||||
temp_text_rect = (
|
||||
(self.width - temp_text_size[0]) / 2.0,
|
||||
temp_text_origin_y,
|
||||
temp_text_size[0],
|
||||
temp_text_size[1]
|
||||
)
|
||||
|
||||
self.surface.blit(temp_text, temp_text_rect)
|
||||
|
||||
self._should_redraw = False
|
||||
Reference in New Issue
Block a user