-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathimage_composition.py
executable file
·166 lines (131 loc) · 4.79 KB
/
image_composition.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2014-2023 Richard Hull and contributors
# See LICENSE.rst for details.
# PYTHON_ARGCOMPLETE_OK
"""
Scrolling artist + song and play/pause indicator
"""
import time
from pathlib import Path
from PIL import ImageFont, Image, ImageDraw
from demo_opts import get_device
from luma.core.render import canvas
from luma.core.image_composition import ImageComposition, ComposableImage
titles = [
("Bridge over troubled water", "Simon & Garfunkel"),
("Up", "R.E.M."),
("Wild Child", "Lou Reed & The Velvet Underground"),
("(Shake Shake Shake) Shake your body", "KC & The Sunshine Band"),
]
class TextImage():
def __init__(self, device, text, font):
with canvas(device) as draw:
left, top, right, bottom = draw.textbbox((0, 0), text, font)
w, h = right - left, bottom - top
self.image = Image.new(device.mode, (w, h))
draw = ImageDraw.Draw(self.image)
draw.text((0, 0), text, font=font, fill="white")
del draw
self.width = w
self.height = h
class Synchroniser():
def __init__(self):
self.synchronised = {}
def busy(self, task):
self.synchronised[id(task)] = False
def ready(self, task):
self.synchronised[id(task)] = True
def is_synchronised(self):
for task in self.synchronised.items():
if task[1] is False:
return False
return True
class Scroller():
WAIT_SCROLL = 1
SCROLLING = 2
WAIT_REWIND = 3
WAIT_SYNC = 4
def __init__(self, image_composition, rendered_image, scroll_delay, synchroniser):
self.image_composition = image_composition
self.speed = 1
self.image_x_pos = 0
self.rendered_image = rendered_image
self.image_composition.add_image(rendered_image)
self.max_pos = rendered_image.width - image_composition().width
self.delay = scroll_delay
self.ticks = 0
self.state = self.WAIT_SCROLL
self.synchroniser = synchroniser
self.render()
self.synchroniser.busy(self)
self.cycles = 0
self.must_scroll = self.max_pos > 0
def __del__(self):
self.image_composition.remove_image(self.rendered_image)
def tick(self):
# Repeats the following sequence:
# wait - scroll - wait - rewind -> sync with other scrollers -> wait
if self.state == self.WAIT_SCROLL:
if not self.is_waiting():
self.cycles += 1
self.state = self.SCROLLING
self.synchroniser.busy(self)
elif self.state == self.WAIT_REWIND:
if not self.is_waiting():
self.synchroniser.ready(self)
self.state = self.WAIT_SYNC
elif self.state == self.WAIT_SYNC:
if self.synchroniser.is_synchronised():
if self.must_scroll:
self.image_x_pos = 0
self.render()
self.state = self.WAIT_SCROLL
elif self.state == self.SCROLLING:
if self.image_x_pos < self.max_pos:
if self.must_scroll:
self.render()
self.image_x_pos += self.speed
else:
self.state = self.WAIT_REWIND
def render(self):
self.rendered_image.offset = (self.image_x_pos, 0)
def is_waiting(self):
self.ticks += 1
if self.ticks > self.delay:
self.ticks = 0
return False
return True
def get_cycles(self):
return self.cycles
def make_font(name, size):
font_path = str(Path(__file__).resolve().parent.joinpath('fonts', name))
return ImageFont.truetype(font_path, size)
# ------- main
device = get_device()
if device.height >= 16:
font = make_font("code2000.ttf", 12)
else:
font = make_font("pixelmix.ttf", 8)
image_composition = ImageComposition(device)
try:
while True:
for title in titles:
synchroniser = Synchroniser()
ci_song = ComposableImage(TextImage(device, title[0], font).image, position=(0, 1))
ci_artist = ComposableImage(TextImage(device, title[1], font).image, position=(0, 30))
song = Scroller(image_composition, ci_song, 100, synchroniser)
artist = Scroller(image_composition, ci_artist, 100, synchroniser)
cycles = 0
while cycles < 3:
artist.tick()
song.tick()
time.sleep(0.025)
cycles = song.get_cycles()
with canvas(device, background=image_composition()) as draw:
image_composition.refresh()
draw.rectangle(device.bounding_box, outline="white")
del artist
del song
except KeyboardInterrupt:
pass