photoboite/photoboite.py

389 lines
12 KiB
Python
Raw Normal View History

2017-09-28 23:16:08 +02:00
#!/usr/bin/env python3
2017-09-21 11:38:03 +02:00
2017-09-30 21:49:20 +02:00
import io, os, sys, time, pygame
2017-09-21 11:38:03 +02:00
try:
import picamera
class Camera:
def __init__(self, rect):
self.rect = rect
self.camera = picamera.PiCamera()
self.camera.led = False
self.camera.resolution = (self.rect.width, self.rect.height)
self.rgb = bytearray(self.rect.width * self.rect.height * 4)
def close(self):
self.camera.close()
def take(self, name):
2017-11-04 00:19:25 +01:00
name = name + '.jpg'
self.camera.resolution = (3280, 2464)
self.camera.capture(name)
self.camera.resolution = (self.rect.width, self.rect.height)
return name
def stream(self):
stream = io.BytesIO()
self.camera.capture(stream, use_video_port=True, format='rgba', resize=(self.rect.width, self.rect.height))
stream.seek(0)
stream.readinto(self.rgb)
stream.close()
img = pygame.image.frombuffer(self.rgb, (self.rect.width, self.rect.height), 'RGBA')
return pygame.transform.flip(img, True, False)
def draw_on(self, screen):
screen.blit(self.stream(), self.rect)
except:
class Camera:
def __init__(self, rect):
self.rect = rect
self.img = pygame.transform.scale(pygame.image.load('tournesol.jpg'), (self.rect.width, self.rect.height))
def close(self):
pass
def take(self, name):
print('Take picture! ' + name)
2017-11-04 00:19:25 +01:00
return 'tournesol.jpg'
def draw_on(self, screen):
screen.blit(self.img, self.rect)
2017-09-29 11:27:48 +02:00
2017-09-27 00:04:44 +02:00
class Button:
2017-11-04 00:19:25 +01:00
def __init__(self, rect):
self.rect = rect
2017-09-27 00:04:44 +02:00
self.pressed = False
2017-10-02 09:48:20 +02:00
self.enabled = True
2017-09-21 11:38:03 +02:00
2017-09-27 00:04:44 +02:00
def draw_on(self, screen):
2017-11-04 00:19:25 +01:00
pass
2017-09-21 11:38:03 +02:00
2017-09-27 00:04:44 +02:00
def is_pressed(self, pos):
return self.rect.collidepoint(pos)
2017-09-21 11:38:03 +02:00
2017-09-27 00:04:44 +02:00
def press(self):
self.pressed = True
2017-09-21 11:38:03 +02:00
2017-09-27 00:04:44 +02:00
def unpress(self):
self.pressed = False
2017-09-28 13:56:32 +02:00
self.run()
2017-09-21 11:38:03 +02:00
2017-09-27 00:04:44 +02:00
def run(self):
2017-09-29 12:35:52 +02:00
pass
2017-09-21 11:38:03 +02:00
2017-11-07 11:50:18 +01:00
class InfoButton(Button):
def __init__(self, rect, photoboite):
self.count = 0
self.timestamp = 0
self.photoboite = photoboite
super(InfoButton, self).__init__(rect)
self.enabled = False
2017-11-07 14:17:44 +01:00
self.cache = False
2017-11-07 11:50:18 +01:00
self.font = pygame.font.Font(None, 25)
self.logo = pygame.image.load(os.path.dirname(os.path.realpath(__file__)) + '/raspberrypi.png').convert_alpha()
2017-11-07 14:17:44 +01:00
def date(self):
if not self.cache:
self.date_string = str(time.strftime('%Y-%m-%d %H:%M:%S'))
return self.date_string
def disk_usage(self):
if not self.cache:
st = os.statvfs('/')
free = round(st.f_bavail * st.f_frsize / 1073741824)
total = round(st.f_blocks * st.f_frsize / 1073741824)
used = round((st.f_blocks - st.f_bfree) * st.f_frsize / 1073741824)
self.disk_usage_string = str(used) + "G / " + str(total) + "G (free: " + str(free) + "G)"
return self.disk_usage_string
2017-11-07 11:50:18 +01:00
def draw_on(self, screen):
if self.enabled:
screen.blit(self.logo, self.logo.get_rect())
top = self.logo.get_rect().height + 10
2017-11-07 14:17:44 +01:00
texts = [
"DATE: " + self.date(),
"COUNT: " + str(self.photoboite.capture_button.count),
"FPS: " + str(self.photoboite.clock.get_fps()),
"DISK USAGE:" + self.disk_usage()
]
i = 0
for text in texts:
size = self.font.size(text)
ren = self.font.render(text, True, (255, 255, 255))
screen.blit(ren, (0, top + i * 20))
2017-11-07 11:50:18 +01:00
2017-11-07 14:17:44 +01:00
i += 1
2017-11-07 11:50:18 +01:00
def run(self):
if time.time() - self.timestamp > 0.5:
self.count = 1
else:
self.count += 1
self.timestamp = time.time()
if self.count >= 2:
self.enabled = not self.enabled
class PowerButton(Button):
def __init__(self, rect):
self.count = 0
self.timestamp = 0
super(PowerButton, self).__init__(rect)
def run(self):
if time.time() - self.timestamp > 0.5:
self.count = 1
self.timestamp = time.time()
else:
self.count += 1
self.timestamp = time.time()
if self.count >= 5:
print('POWEROFF')
2017-09-28 13:56:32 +02:00
class CaptureButton(Button):
2017-09-28 16:39:22 +02:00
countdown = 3
2017-09-28 13:56:32 +02:00
def __init__(self, size, topleft, photoboite):
2017-11-04 00:40:53 +01:00
self.up_image = pygame.image.load(os.path.dirname(os.path.realpath(__file__)) + '/button-up.png').convert_alpha()
2017-11-04 00:19:25 +01:00
self.up_image = pygame.transform.smoothscale(self.up_image, (size, size))
2017-11-04 00:40:53 +01:00
self.down_image = pygame.image.load(os.path.dirname(os.path.realpath(__file__)) + '/button-down.png').convert_alpha()
2017-11-04 00:19:25 +01:00
self.down_image = pygame.transform.smoothscale(self.down_image, (size, size))
rect = self.up_image.get_rect()
rect.topleft = topleft
super(CaptureButton, self).__init__(rect)
2017-09-28 13:56:32 +02:00
self.photoboite = photoboite
self.elapsed = 0
2017-09-28 16:39:22 +02:00
self.capture_mode = False
self.count = 0
2017-09-28 13:56:32 +02:00
self.background_rect = pygame.Rect(0, self.photoboite.screen.get_height() - 80, self.photoboite.screen.get_width(), 80)
self.background = pygame.Surface((self.background_rect.width, self.background_rect.height))
self.background.fill((0, 0, 0))
self.background.set_alpha(150)
self.font = pygame.font.Font(None, 80)
2017-11-04 00:40:53 +01:00
self.photo_film = pygame.image.load(os.path.dirname(os.path.realpath(__file__)) + '/film.png').convert_alpha()
2017-10-04 00:33:23 +02:00
2017-09-28 13:56:32 +02:00
def draw_on(self, screen):
2017-10-02 09:48:20 +02:00
if self.enabled:
2017-11-04 00:19:25 +01:00
if self.pressed:
screen.blit(self.down_image, self.rect)
else:
screen.blit(self.up_image, self.rect)
if self.capture_mode and self.elapsed < CaptureButton.countdown:
screen.blit(self.background, self.background_rect.topleft)
text = str(CaptureButton.countdown - self.elapsed)
size = self.font.size(text)
ren = self.font.render(text, True, (255, 255, 255))
ren.set_alpha(150)
2017-09-28 16:39:22 +02:00
topleft = (self.rect.topleft[0] + self.rect.width / 2 - size[0] / 2, self.rect.topleft[1] + self.rect.height / 2 - size[1] / 2)
top = self.background_rect.top + self.background_rect.height / 2 - size[1] / 2
left = self.background_rect.left + self.background_rect.width / 2 - size[0] / 2
screen.blit(ren, (left, top))
2017-09-21 14:31:45 +02:00
2017-09-27 00:04:44 +02:00
def run(self):
2017-09-28 13:56:32 +02:00
pygame.event.set_blocked((pygame.MOUSEBUTTONDOWN, pygame.MOUSEBUTTONUP))
2017-09-28 16:39:22 +02:00
self.capture_mode = True
2017-10-02 09:48:20 +02:00
self.enabled = False
2017-09-28 16:39:22 +02:00
capture = Capture(self.count)
self.count += 1
2017-10-03 16:36:23 +02:00
for i in range(3):
2017-09-28 13:56:32 +02:00
wait = True
start = time.time()
while wait:
self.elapsed = int(time.time() - start)
2017-09-28 16:39:22 +02:00
if self.elapsed >= CaptureButton.countdown:
2017-09-28 13:56:32 +02:00
wait = False
2017-09-28 16:39:22 +02:00
self.photoboite.event()
self.photoboite.draw()
2017-09-28 13:56:32 +02:00
pygame.display.flip()
2017-09-29 12:35:52 +02:00
capture.take(self.photoboite.camera)
2017-11-04 00:19:25 +01:00
pygame.time.wait(600)
2017-10-04 00:33:23 +02:00
for photo in capture.photos:
2017-11-04 00:19:25 +01:00
self.photoboite.screen.blit(photo.capture, (81, 0))
2017-10-04 00:33:23 +02:00
self.photoboite.screen.blit(self.photo_film, (0, 0))
pygame.display.flip()
2017-11-04 00:19:25 +01:00
pygame.time.wait(800)
2017-10-04 00:33:23 +02:00
self.photoboite.event()
2017-11-04 00:19:25 +01:00
pygame.time.wait(200)
2017-09-28 13:56:32 +02:00
pygame.event.set_allowed((pygame.MOUSEBUTTONDOWN, pygame.MOUSEBUTTONUP))
2017-09-28 16:39:22 +02:00
self.capture_mode = False
2017-10-02 09:48:20 +02:00
self.enabled = True
2017-10-03 16:36:23 +02:00
self.photoboite.sleep.move()
2017-09-28 16:39:22 +02:00
class Capture:
def __init__(self, uid):
self.uid = uid
self.photos = []
2017-09-29 12:35:52 +02:00
def take(self, camera):
self.photos.append(Photo(self.uid, len(self.photos)).take(camera))
2017-09-28 16:39:22 +02:00
class Photo:
def __init__(self, cid, uid):
self.cid = cid
self.uid = uid
2017-09-29 12:35:52 +02:00
def take(self, camera):
2017-11-04 00:40:53 +01:00
self.name = "photos/%s-%04d-%04d" % (time.strftime('%Y%m%d-%H%M%S'), self.cid, self.uid)
2017-11-04 00:19:25 +01:00
self.capture = pygame.transform.smoothscale(pygame.image.load(camera.take(self.name)), (638, 480))
2017-09-21 14:31:45 +02:00
2017-09-28 16:39:22 +02:00
return self
2017-09-21 14:31:45 +02:00
2017-09-29 11:27:48 +02:00
2017-10-03 16:36:23 +02:00
class SleepMode:
2017-11-04 00:40:53 +01:00
def __init__(self, seconds, screen):
2017-10-03 16:36:23 +02:00
self.enabled = True
self.drawn = False
self.seconds = seconds
2017-11-04 00:40:53 +01:00
self.screen = screen
self.clicker = pygame.image.load(os.path.dirname(os.path.realpath(__file__)) + '/clicker.png').convert_alpha()
self.clicker_rect = self.clicker.get_rect()
self.clicker_rect.topleft = ((self.screen.get_width() - self.clicker_rect.width) / 2, (self.screen.get_height() - self.clicker_rect.height) / 2)
2017-10-03 16:36:23 +02:00
def move(self):
self.last_action = time.time()
def event(self):
for event in pygame.event.get():
if event.type == pygame.MOUSEBUTTONUP or event.type == pygame.KEYUP:
self.move()
self.enabled = False
2017-11-04 00:40:53 +01:00
def draw(self):
2017-10-03 16:36:23 +02:00
if not self.drawn:
2017-11-04 00:40:53 +01:00
self.screen.fill((255,255,255))
self.screen.blit(self.clicker, self.clicker_rect)
2017-10-03 16:36:23 +02:00
pygame.display.flip()
self.drawn = True
def sleep(self):
if time.time() - self.last_action > self.seconds:
self.enabled = True
self.drawn = False
2017-09-28 13:56:32 +02:00
class Photoboite:
2017-09-27 00:04:44 +02:00
def __init__(self):
self.screen = self.screen()
pygame.font.init()
2017-09-21 14:31:45 +02:00
2017-09-28 23:16:38 +02:00
pygame.mouse.set_visible(False)
2017-09-27 00:04:44 +02:00
self.buttons = []
2017-09-30 21:49:20 +02:00
button_size = int(self.screen.get_height() / 4)
topleft = (self.screen.get_width() - button_size) / 2, self.screen.get_height() - button_size - 10
2017-09-27 00:04:44 +02:00
2017-11-07 11:50:18 +01:00
self.capture_button = CaptureButton(button_size, topleft, self)
self.buttons.append(self.capture_button)
self.buttons.append(PowerButton(pygame.Rect(self.screen.get_width() - 50, 0, 50, 50)))
self.buttons.append(InfoButton(pygame.Rect(0, 0, 50, 50), self))
2017-09-27 00:04:44 +02:00
2017-09-30 21:49:20 +02:00
camera_rect = pygame.Rect(0, 0, 800, 480)
2017-09-29 11:27:48 +02:00
self.camera = Camera(camera_rect)
2017-09-27 00:04:44 +02:00
2017-09-29 11:47:32 +02:00
self.clock = pygame.time.Clock()
2017-11-04 00:40:53 +01:00
self.sleep = SleepMode(30, self.screen)
2017-10-03 16:36:23 +02:00
2017-09-27 00:04:44 +02:00
def screen(self):
if os.getenv('DISPLAY'):
pygame.display.init()
2017-09-28 23:20:27 +02:00
display = pygame.display.Info()
2017-09-30 21:49:20 +02:00
return pygame.display.set_mode((800, 480))
else:
drivers = ['directfb', 'fbcon', 'svgalib']
found = False
for driver in drivers:
if not os.getenv('SDL_VIDEODRIVER'):
os.putenv('SDL_VIDEODRIVER', driver)
try:
pygame.display.init()
except pygame.error as e:
print('Driver: {0} failed.'.format(driver))
continue
found = True
break
if not found:
raise Exception('No suitable video driver found!')
return pygame.display.set_mode()
2017-09-28 13:56:32 +02:00
def draw(self):
2017-09-29 11:47:32 +02:00
self.clock.tick(60)
2017-09-29 11:27:48 +02:00
self.camera.draw_on(self.screen)
2017-09-28 13:56:32 +02:00
for button in self.buttons:
button.draw_on(self.screen)
def event(self):
for event in pygame.event.get():
2017-10-03 16:36:23 +02:00
self.sleep.move()
2017-09-28 13:56:32 +02:00
if event.type == pygame.QUIT or event.type == pygame.KEYDOWN and event.unicode == 'q':
2017-09-29 12:35:52 +02:00
self.quit()
2017-09-28 13:56:32 +02:00
elif event.type == pygame.MOUSEBUTTONDOWN:
for button in self.buttons:
if button.is_pressed(event.pos):
button.press()
elif event.type == pygame.MOUSEBUTTONUP:
for button in self.buttons:
if button.is_pressed(event.pos):
button.unpress()
2017-09-27 00:04:44 +02:00
def run(self):
pressed = False
while True:
2017-10-03 16:36:23 +02:00
if self.sleep.enabled:
self.sleep.event()
2017-11-04 00:40:53 +01:00
self.sleep.draw()
2017-10-03 16:36:23 +02:00
self.clock.tick(60)
else:
self.event()
self.draw()
self.sleep.sleep()
pygame.display.flip()
2017-09-27 00:04:44 +02:00
2017-09-29 12:35:52 +02:00
def quit(self):
2017-09-30 21:49:20 +02:00
self.camera.close()
2017-09-29 12:35:52 +02:00
sys.exit()
2017-09-28 16:39:22 +02:00
Photoboite().run()