2024-09-08 11:43:21 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2024-09-08 14:44:47 +00:00
|
|
|
import math
|
2024-09-08 15:50:38 +00:00
|
|
|
import argparse
|
|
|
|
import json
|
2024-09-08 17:14:34 +00:00
|
|
|
from enum import Enum, auto
|
2024-09-09 17:56:38 +00:00
|
|
|
from time import sleep, strftime
|
2024-09-08 15:17:55 +00:00
|
|
|
from threading import Thread
|
|
|
|
from queue import Queue, Empty
|
2024-09-08 11:43:21 +00:00
|
|
|
from abc import abstractmethod
|
2024-09-08 14:44:47 +00:00
|
|
|
from typing import Tuple, Callable, TypedDict, List
|
2024-09-08 11:43:21 +00:00
|
|
|
|
|
|
|
import pygame
|
2024-09-08 14:44:47 +00:00
|
|
|
import pygame.freetype
|
2024-09-08 17:26:29 +00:00
|
|
|
import requests
|
2024-09-08 14:44:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ButtonDef(TypedDict):
|
|
|
|
text: str
|
2024-09-08 14:50:18 +00:00
|
|
|
cbk: Callable[[], None]
|
2024-09-08 11:43:21 +00:00
|
|
|
|
|
|
|
|
2024-09-08 17:14:34 +00:00
|
|
|
class ActionType(Enum):
|
2024-09-08 17:26:29 +00:00
|
|
|
MSG = auto() # Shows a message for about 5 seconds
|
|
|
|
GET = auto() # Performs a HTTP GET
|
2024-09-08 17:14:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Action(TypedDict):
|
2024-09-08 15:50:38 +00:00
|
|
|
label: str
|
2024-09-08 17:14:34 +00:00
|
|
|
action_type: ActionType
|
|
|
|
param: str
|
2024-09-08 15:50:38 +00:00
|
|
|
|
|
|
|
|
2024-09-08 11:43:21 +00:00
|
|
|
class IBoard:
|
|
|
|
@abstractmethod
|
|
|
|
def draw(self, screen: pygame.Surface):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def handle_event(self, event: pygame.event.Event):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
|
2024-09-09 17:56:38 +00:00
|
|
|
class Screensaver(IBoard):
|
|
|
|
def handle_event(self, _):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class ClockScreensaver(Screensaver):
|
|
|
|
def __init__(self):
|
|
|
|
self.font = pygame.freetype.SysFont(name="Sans", size=20)
|
|
|
|
|
|
|
|
def draw(self, screen: pygame.Surface):
|
|
|
|
text = strftime("%H:%M:%S")
|
|
|
|
screen.fill("black")
|
|
|
|
pygame.Rect(0, 0, screen.get_width(), screen.get_height())
|
|
|
|
text_rect = self.font.get_rect(text)
|
|
|
|
text_pos = pygame.Rect((screen.get_width() - text_rect.width)/2,
|
|
|
|
(screen.get_height() - text_rect.height)/2,
|
|
|
|
text_rect.width, text_rect.height)
|
|
|
|
self.font.render_to(screen, text_pos, text, fgcolor="pink")
|
|
|
|
|
|
|
|
|
2024-09-08 11:43:21 +00:00
|
|
|
class Button:
|
2024-09-09 17:28:55 +00:00
|
|
|
PRESS_OFFSET = 2
|
|
|
|
|
2024-09-08 14:44:47 +00:00
|
|
|
def __init__(self, position: pygame.Rect, text: str, cbk: Callable[[], None]):
|
2024-09-08 11:43:21 +00:00
|
|
|
self.position: pygame.Rect
|
|
|
|
self.set_position(position)
|
2024-09-08 14:44:47 +00:00
|
|
|
self.text = text
|
2024-09-08 11:43:21 +00:00
|
|
|
self.cbk = cbk
|
2024-09-08 14:44:47 +00:00
|
|
|
self.font = pygame.freetype.SysFont(name="Sans", size=20)
|
|
|
|
text_rect = self.font.get_rect(self.text)
|
|
|
|
self.text_pos = pygame.Rect((self.position.left + (self.position.width - text_rect.width)/2),
|
|
|
|
(self.position.top + (self.position.height - text_rect.height)/2),
|
|
|
|
text_rect.width, text_rect.height)
|
2024-09-08 11:43:21 +00:00
|
|
|
|
|
|
|
def set_position(self, position: pygame.Rect):
|
|
|
|
self.position = position
|
|
|
|
|
2024-09-09 17:28:55 +00:00
|
|
|
def get_position(self) -> pygame.Rect:
|
|
|
|
if pygame.mouse.get_pressed(3)[0] and self.pos_is_inside(pygame.mouse.get_pos()):
|
|
|
|
return pygame.Rect(self.position.left + self.PRESS_OFFSET, self.position.top + self.PRESS_OFFSET,
|
|
|
|
self.position.width, self.position.height)
|
|
|
|
return self.position
|
|
|
|
|
|
|
|
def get_text_pos(self) -> pygame.Rect:
|
|
|
|
if pygame.mouse.get_pressed(3)[0] and self.pos_is_inside(pygame.mouse.get_pos()):
|
|
|
|
return pygame.Rect(self.text_pos.left + self.PRESS_OFFSET, self.text_pos.top + self.PRESS_OFFSET,
|
|
|
|
self.text_pos.width, self.text_pos.height)
|
|
|
|
return self.text_pos
|
|
|
|
|
2024-09-08 11:43:21 +00:00
|
|
|
def draw(self, screen: pygame.Surface):
|
2024-09-09 17:28:55 +00:00
|
|
|
pygame.draw.rect(screen, "black", self.get_position(), 0)
|
|
|
|
self.font.render_to(screen, self.get_text_pos(), self.text, fgcolor="pink")
|
2024-09-08 11:43:21 +00:00
|
|
|
|
|
|
|
def pos_is_inside(self, pos: Tuple) -> bool:
|
|
|
|
return (self.position.left < pos[0] and (self.position.left + self.position.width) > pos[0]) and \
|
|
|
|
(self.position.top < pos[1] and (self.position.top + self.position.height) > pos[1])
|
|
|
|
|
|
|
|
def handle_event(self, event: pygame.event.Event):
|
|
|
|
if event.type == pygame.MOUSEBUTTONUP:
|
|
|
|
if event.button == 1 and self.pos_is_inside(event.pos):
|
|
|
|
self.cbk()
|
|
|
|
|
|
|
|
|
2024-09-08 15:17:55 +00:00
|
|
|
class MessageBoard(IBoard):
|
2024-09-08 16:02:13 +00:00
|
|
|
def __init__(self, screen_rect: pygame.Rect, text: str, bg_color: str):
|
2024-09-08 15:17:55 +00:00
|
|
|
self.text = text
|
|
|
|
self.font = pygame.freetype.SysFont(name="Sans", size=30)
|
|
|
|
text_rect = self.font.get_rect(self.text)
|
|
|
|
self.text_pos = pygame.Rect((screen_rect.left + (screen_rect.width - text_rect.width)/2),
|
|
|
|
(screen_rect.top + (screen_rect.height - text_rect.height)/2),
|
|
|
|
text_rect.width, text_rect.height)
|
2024-09-08 16:02:13 +00:00
|
|
|
self.bg_color = bg_color
|
2024-09-08 15:17:55 +00:00
|
|
|
|
|
|
|
def handle_event(self, _):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def draw(self, screen: pygame.Surface):
|
2024-09-08 16:02:13 +00:00
|
|
|
screen.fill(self.bg_color)
|
2024-09-08 15:17:55 +00:00
|
|
|
self.font.render_to(screen, self.text_pos, self.text, fgcolor="black")
|
|
|
|
|
|
|
|
|
2024-09-08 11:43:21 +00:00
|
|
|
class MenuBoard(IBoard):
|
2024-09-08 14:44:47 +00:00
|
|
|
BUTTON_MARGINS = 10
|
|
|
|
|
2024-09-08 16:02:13 +00:00
|
|
|
def __init__(self, screen_rect: pygame.Rect, buttons: List[ButtonDef], bg_color: str):
|
2024-09-08 15:50:38 +00:00
|
|
|
self.rows = math.floor(math.sqrt(len(buttons)))
|
|
|
|
self.cols = math.ceil(math.sqrt(len(buttons)))
|
|
|
|
if (self.rows * self.cols) < len(buttons):
|
|
|
|
# extra row if buttons don't fit
|
|
|
|
self.rows += 1
|
2024-09-08 14:44:47 +00:00
|
|
|
button_positions = self.generate_button_positions(screen_rect)
|
2024-09-08 16:02:13 +00:00
|
|
|
self.buttons = list(map(lambda d: Button(next(button_positions), d['text'], d['cbk']), buttons))
|
|
|
|
self.bg_color = bg_color
|
2024-09-08 14:44:47 +00:00
|
|
|
|
|
|
|
def generate_button_positions(self, screen_rect: pygame.Rect):
|
|
|
|
current_button_row = 0
|
|
|
|
current_button_col = 0
|
|
|
|
button_width = math.floor((screen_rect.width - (self.cols + 1) * self.BUTTON_MARGINS) / self.cols)
|
|
|
|
button_height = math.floor((screen_rect.height - (self.rows + 1) * self.BUTTON_MARGINS) / self.rows)
|
|
|
|
while (current_button_row * current_button_col) < (self.cols * self.rows):
|
|
|
|
top = self.BUTTON_MARGINS + (current_button_row * (button_height + self.BUTTON_MARGINS))
|
|
|
|
left = self.BUTTON_MARGINS + (current_button_col * (button_width + self.BUTTON_MARGINS))
|
|
|
|
current_button_col += 1
|
|
|
|
if current_button_col >= self.cols:
|
|
|
|
current_button_col = 0
|
|
|
|
current_button_row += 1
|
|
|
|
yield pygame.Rect(left, top, button_width, button_height)
|
|
|
|
|
2024-09-08 11:43:21 +00:00
|
|
|
def handle_event(self, event: pygame.event.Event):
|
|
|
|
for b in self.buttons:
|
|
|
|
b.handle_event(event)
|
|
|
|
|
|
|
|
def draw(self, screen: pygame.Surface):
|
2024-09-08 16:02:13 +00:00
|
|
|
screen.fill(self.bg_color)
|
2024-09-08 11:43:21 +00:00
|
|
|
for b in self.buttons:
|
|
|
|
b.draw(screen)
|
|
|
|
|
|
|
|
|
|
|
|
class App:
|
2024-09-09 17:56:38 +00:00
|
|
|
FPS = 30
|
|
|
|
TICKS_UNTIL_SCREENSAVER = 1 * FPS
|
|
|
|
|
2024-09-08 17:14:34 +00:00
|
|
|
def __init__(self, urls: List[Action], bg_color: str):
|
2024-09-08 11:43:21 +00:00
|
|
|
pygame.init()
|
|
|
|
info = pygame.display.Info()
|
|
|
|
self.screen = pygame.display.set_mode((info.current_w, info.current_h), flags=pygame.FULLSCREEN)
|
|
|
|
self.clock = pygame.time.Clock()
|
|
|
|
self.running = False
|
2024-09-08 16:02:13 +00:00
|
|
|
self.bg_color = bg_color
|
2024-09-08 17:14:34 +00:00
|
|
|
buttons = list(map(lambda u: ButtonDef(text=u['label'], cbk=self.button_press_handler(u)), urls))
|
2024-09-08 14:50:18 +00:00
|
|
|
buttons.append(ButtonDef(text="Exit", cbk=self.quit))
|
2024-09-08 16:02:13 +00:00
|
|
|
self.board: IBoard = MenuBoard(self.get_screen_rect(), buttons, bg_color)
|
2024-09-08 15:17:55 +00:00
|
|
|
self.task_q = Queue()
|
2024-09-09 17:56:38 +00:00
|
|
|
self.screensaver = ClockScreensaver()
|
|
|
|
self.screensaver_ticks = self.TICKS_UNTIL_SCREENSAVER
|
2024-09-08 15:17:55 +00:00
|
|
|
|
|
|
|
def get_screen_rect(self) -> pygame.Rect:
|
|
|
|
return pygame.Rect(0, 0, self.screen.get_width(), self.screen.get_height())
|
|
|
|
|
2024-09-08 17:14:34 +00:00
|
|
|
def show_message_handler(self, action: Action) -> Callable[[], None]:
|
2024-09-08 15:17:55 +00:00
|
|
|
def impl():
|
|
|
|
previous_board = self.board
|
2024-09-08 15:20:47 +00:00
|
|
|
|
2024-09-08 15:17:55 +00:00
|
|
|
def thr_fun():
|
|
|
|
def end_thr():
|
|
|
|
self.board = previous_board
|
2024-09-08 15:20:47 +00:00
|
|
|
|
2024-09-08 15:17:55 +00:00
|
|
|
sleep(5)
|
|
|
|
self.task_q.put(end_thr)
|
2024-09-08 15:20:47 +00:00
|
|
|
|
2024-09-08 15:17:55 +00:00
|
|
|
process_thr = Thread(target=thr_fun)
|
|
|
|
process_thr.start()
|
2024-09-08 17:14:34 +00:00
|
|
|
self.board = MessageBoard(self.get_screen_rect(), action['param'], bg_color=self.bg_color)
|
2024-09-08 15:17:55 +00:00
|
|
|
return impl
|
2024-09-08 11:43:21 +00:00
|
|
|
|
2024-09-08 17:26:29 +00:00
|
|
|
def get_handler(self, action: Action) -> Callable[[], None]:
|
|
|
|
def impl():
|
|
|
|
previous_board = self.board
|
|
|
|
|
|
|
|
def thr_fun():
|
|
|
|
def end_thr():
|
|
|
|
self.board = previous_board
|
|
|
|
|
|
|
|
ret = requests.get(action['param'])
|
|
|
|
print(f"GET {action['param']}: {ret}")
|
|
|
|
self.task_q.put(end_thr)
|
|
|
|
|
|
|
|
process_thr = Thread(target=thr_fun)
|
|
|
|
process_thr.start()
|
|
|
|
self.board = MessageBoard(self.get_screen_rect(), f"GETting {action['param']}", bg_color=self.bg_color)
|
|
|
|
return impl
|
|
|
|
|
2024-09-08 17:14:34 +00:00
|
|
|
def button_press_handler(self, action: Action) -> Callable[[], None]:
|
|
|
|
if action['action_type'] == ActionType.MSG:
|
|
|
|
return self.show_message_handler(action)
|
2024-09-08 17:26:29 +00:00
|
|
|
elif action['action_type'] == ActionType.GET:
|
|
|
|
return self.get_handler(action)
|
2024-09-08 17:14:34 +00:00
|
|
|
raise NotImplementedError(action['action_type'])
|
|
|
|
|
2024-09-08 11:43:21 +00:00
|
|
|
def loop(self):
|
|
|
|
self.running = True
|
|
|
|
while self.running:
|
2024-09-08 15:17:55 +00:00
|
|
|
try:
|
|
|
|
self.task_q.get_nowait()()
|
|
|
|
except Empty:
|
|
|
|
pass
|
2024-09-08 11:43:21 +00:00
|
|
|
for event in pygame.event.get():
|
|
|
|
if event.type == pygame.QUIT:
|
|
|
|
self.running = False
|
2024-09-09 17:56:38 +00:00
|
|
|
if self.screensaver_ticks != 0:
|
|
|
|
self.board.handle_event(event)
|
|
|
|
self.screensaver_ticks = self.TICKS_UNTIL_SCREENSAVER
|
2024-09-08 11:43:21 +00:00
|
|
|
|
2024-09-09 17:56:38 +00:00
|
|
|
if self.screensaver_ticks == 0:
|
|
|
|
self.screensaver.draw(self.screen)
|
|
|
|
else:
|
|
|
|
self.board.draw(self.screen)
|
|
|
|
self.screensaver_ticks -= 1
|
2024-09-08 11:43:21 +00:00
|
|
|
|
|
|
|
pygame.display.flip()
|
|
|
|
|
2024-09-09 17:56:38 +00:00
|
|
|
self.clock.tick(self.FPS)
|
2024-09-08 11:43:21 +00:00
|
|
|
pygame.quit()
|
|
|
|
|
2024-09-08 14:50:18 +00:00
|
|
|
def quit(self):
|
2024-09-08 16:02:13 +00:00
|
|
|
self.board = MessageBoard(self.get_screen_rect(), "Exiting...", bg_color=self.bg_color)
|
2024-09-08 14:50:18 +00:00
|
|
|
self.running = False
|
|
|
|
|
2024-09-08 11:43:21 +00:00
|
|
|
|
2024-09-08 17:14:34 +00:00
|
|
|
def get_url_defs(config_data: dict) -> List[Action]:
|
2024-09-08 15:50:38 +00:00
|
|
|
url_defs = []
|
2024-09-08 16:02:13 +00:00
|
|
|
for d in data['urls']:
|
2024-09-08 17:14:34 +00:00
|
|
|
url_defs.append(Action(label=d['label'],
|
|
|
|
action_type=ActionType[d['action_type']],
|
|
|
|
param=d['action_param']))
|
2024-09-08 15:50:38 +00:00
|
|
|
return url_defs
|
|
|
|
|
|
|
|
|
2024-09-08 11:43:21 +00:00
|
|
|
if __name__ == '__main__':
|
2024-09-08 15:50:38 +00:00
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument("config_path", help="Path to the config file.", type=str)
|
|
|
|
args = parser.parse_args()
|
2024-09-08 16:02:13 +00:00
|
|
|
|
2024-09-08 17:14:34 +00:00
|
|
|
url_defs: List[Action] = []
|
2024-09-08 16:02:13 +00:00
|
|
|
with open(args.config_path, "rb") as f:
|
|
|
|
data = json.load(f)
|
|
|
|
url_defs = get_url_defs(data)
|
|
|
|
|
|
|
|
app = App(url_defs, bg_color=data["bg_color"])
|
2024-09-08 11:43:21 +00:00
|
|
|
app.loop()
|