25 lines
639 B
Python
25 lines
639 B
Python
from queue import Queue
|
|
from threading import Thread
|
|
from typing import Any, Callable
|
|
|
|
import pyglet
|
|
|
|
|
|
class StoppableThread(Thread):
|
|
"""
|
|
A thread that can be stopped.
|
|
The run method need to check for the "self._stop" variable and return manually if it is true.
|
|
"""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.stopped = False
|
|
|
|
def stop(self) -> None:
|
|
self.stopped = True
|
|
|
|
|
|
def in_pyglet_context(func: Callable, *args, **kwargs) -> Any:
|
|
queue = Queue()
|
|
pyglet.clock.schedule_once(lambda dt: queue.put(func(*args, **kwargs)), 0)
|
|
return queue.get()
|