BAPSicle/controllers/controller.py

25 lines
691 B
Python
Raw Normal View History

2021-02-14 23:58:32 +00:00
from multiprocessing import Queue
from typing import Any, Callable, List
# Main controller class. All implementations of controller support should inherit this.
class Controller():
callbacks: List[Callable] = []
player_to_q: List[Queue]
player_from_q: List[Queue]
def __init__(self, player_to_q: List[Queue], player_from_q: List[Queue]):
self.receive()
return
# Registers a function for the controller class to call to tell BAPSicle to do something.
def register_callback(self, callback: Callable):
self.callbacks.append(callback)
return
# Loop etc in here to process the data from your controller and call the callbacks.
def receive(self):
return