aboutsummaryrefslogtreecommitdiffstats
path: root/abcontroller.py
diff options
context:
space:
mode:
Diffstat (limited to 'abcontroller.py')
-rw-r--r--abcontroller.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/abcontroller.py b/abcontroller.py
new file mode 100644
index 0000000..8c14c0c
--- /dev/null
+++ b/abcontroller.py
@@ -0,0 +1,38 @@
+from collections import namedtuple
+
+_AB = namedtuple("_AB", ["a", "b"])
+
+class ABController:
+ def __init__(self):
+ self.setPositionCallback = None
+ self._limits = dict() # dictionary of all songs
+ self._songLimits = None # list of limits for selected song
+ self._currentLimits = None # a/b positions of selected limit
+
+ def setCurrentSong(self, path):
+ if path not in self._limits:
+ self._limits[path] = list()
+
+ self._songLimits = self._limits[path]
+ self._currentLimits = None
+
+ def addLimits(self, aLimit, bLimit):
+ if self._songLimits is None:
+ return
+
+ ab = _AB(aLimit, bLimit)
+ self._songLimits.append(ab)
+
+ def setCurrentLimits(self, index):
+ if not self._songLimits:
+ return
+
+ if index >= 0 and index < len(self._songLimits):
+ self._currentLimits = self._songLimits[index]
+
+ def positionChanged(self, position):
+ if not self._currentLimits:
+ return
+
+ if position > self._currentLimits.b and self.setPositionCallback:
+ self.setPositionCallback(self._currentLimits.a)