1 # -*- coding: utf-8 -*-
2 # Copyright (c) 2013, 2014 kaliko <kaliko@azylum.org>
4 # This file is part of sima
6 # sima is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # sima is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with sima. If not, see <http://www.gnu.org/licenses/>.
21 Deal with MPD options ‑ single and repeat mode
24 # standard library import
26 # third parties components
29 from ...lib.plugin import Plugin
32 class MpdOptions(Plugin):
34 Deal with MPD options - idle and repeat mode
37 def __init__(self, daemon):
38 Plugin.__init__(self, daemon)
41 def callback_player(self):
43 Called on player changes
45 player = self.daemon.player
46 if player.playmode.get('single'):
47 if self.daemon.config.getboolean('sima', 'single_disable_queue'):
48 self.log.info('MPD "single" mode activated.')
49 self.daemon.enabled = False
50 elif player.playmode.get('repeat'):
51 if self.daemon.config.getboolean('sima', 'repeat_disable_queue'):
52 self.log.info('MPD "repeat" mode activated.')
53 self.daemon.enabled = False
55 if self.daemon.enabled is False:
56 self.log.debug('enabling queuing (leaving single|repeat mode)')
57 self.daemon.enabled = True
64 # vim: ai ts=4 sw=4 sts=4 expandtab