(self)
| 1031 | return False |
| 1032 | |
| 1033 | def autoplayConditionsMet(self): |
| 1034 | if self.seamlessMusicOveride(): |
| 1035 | self.setPaused(False) |
| 1036 | recentlyAdvanced = self._recentlyAdvanced() |
| 1037 | return ( |
| 1038 | self._playerPaused and (self.autoPlay or recentlyAdvanced) and |
| 1039 | self.userlist.currentUser.canControl() and self.userlist.isReadinessSupported() |
| 1040 | and self.userlist.areAllUsersInRoomReady(requireSameFilenames=self._config["autoplayRequireSameFilenames"]) |
| 1041 | and ((self.autoPlayThreshold and self.userlist.usersInRoomCount() >= self.autoPlayThreshold) or recentlyAdvanced) |
| 1042 | ) |
| 1043 | |
| 1044 | def autoplayTimerIsRunning(self): |
| 1045 | return self.autoplayTimer.running |
no test coverage detected