mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
scratch branch for temporary changes to facilitate the absence of music
Safe to ignore
This commit is contained in:
parent
512d3ea466
commit
15f4afefb0
3 changed files with 3 additions and 0 deletions
|
@ -911,6 +911,7 @@ class PysolMenubar(PysolMenubarTk):
|
||||||
self.top.screenshot(fn)
|
self.top.screenshot(fn)
|
||||||
|
|
||||||
def mPlayNextMusic(self, *args):
|
def mPlayNextMusic(self, *args):
|
||||||
|
print("mPlayNextMusic", flush=True)
|
||||||
if self._cancelDrag(break_pause=False):
|
if self._cancelDrag(break_pause=False):
|
||||||
return
|
return
|
||||||
if (self.app.audio and self.app.opt.music and
|
if (self.app.audio and self.app.opt.music and
|
||||||
|
|
|
@ -130,6 +130,7 @@ class Application:
|
||||||
self.tabletile_index = 0 # current table tile
|
self.tabletile_index = 0 # current table tile
|
||||||
self.sample_manager = SampleManager()
|
self.sample_manager = SampleManager()
|
||||||
self.music_manager = MusicManager()
|
self.music_manager = MusicManager()
|
||||||
|
print('MusicManager = ', self.music_manager, flush=True)
|
||||||
self.music_playlist = []
|
self.music_playlist = []
|
||||||
self.intro = Struct(
|
self.intro = Struct(
|
||||||
progress=None, # progress bar
|
progress=None, # progress bar
|
||||||
|
|
|
@ -500,6 +500,7 @@ class PyGameAudioClient(AbstractAudioClient):
|
||||||
CAN_PLAY_MUSIC = True
|
CAN_PLAY_MUSIC = True
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
print("print PyGameAudioClient", flush=True)
|
||||||
AbstractAudioClient.__init__(self)
|
AbstractAudioClient.__init__(self)
|
||||||
import pygame.mixer
|
import pygame.mixer
|
||||||
import pygame.mixer_music
|
import pygame.mixer_music
|
||||||
|
|
Loading…
Add table
Reference in a new issue