forked from dancergraham/HeadFirstDesignPatterns_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdjview.py
54 lines (38 loc) · 1.11 KB
/
djview.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
from playsound import playsound
import abc
from threading import Thread
class BeatModelInterface(abc.ABC):
def initialize():
raise NotImplementedError
def on():
raise NotImplementedError
def off():
raise NotImplementedError
def setBPM(bpm: int):
raise NotImplementedError
def getBPM():
raise NotImplementedError
def registerObserver(o: BeatObserver):
raise NotImplementedError
def removeObserver(o: BeatObserver):
raise NotImplementedError
def registerObserver(o: BPMObserver):
raise NotImplementedError
def removeObserver(o: BPMObserver):
raise NotImplementedError
class BeatModel(BeatModelInterface):
def __init__(self) -> None:
beat_observers = []
bpm_observers = []
bpm = 90
thread = Thread()
stop = False
clip = 'clap.wav'
def initialize():
"no need to initialise the clip for the playsound module"
pass
def dj_test_drive():
model = BeatModel()
controller = BeatController(model)
if __name__ == "__main__":
dj_test_drive()