mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
- improved sound support
git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@65 efabe8c0-fbe8-4139-b769-b5e6d273206e
This commit is contained in:
parent
575c8d7bde
commit
c237c107a3
7 changed files with 81 additions and 65 deletions
30
MANIFEST.in
30
MANIFEST.in
|
@ -1,3 +1,4 @@
|
||||||
|
# -*- mode: sh -*-
|
||||||
## MANIFEST.in for PySolFC
|
## MANIFEST.in for PySolFC
|
||||||
##
|
##
|
||||||
## code
|
## code
|
||||||
|
@ -9,23 +10,42 @@ include pysollib/games/*.py pysollib/games/special/*.py
|
||||||
include pysollib/games/ultra/*.py pysollib/games/mahjongg/*.py
|
include pysollib/games/ultra/*.py pysollib/games/mahjongg/*.py
|
||||||
include scripts/build.bat scripts/create_iss.py scripts/mahjongg_utils.py
|
include scripts/build.bat scripts/create_iss.py scripts/mahjongg_utils.py
|
||||||
include scripts/all_games.py scripts/cardset_viewer.py
|
include scripts/all_games.py scripts/cardset_viewer.py
|
||||||
|
#graft data/plugins
|
||||||
##
|
##
|
||||||
## data
|
## data - docs
|
||||||
##
|
##
|
||||||
include docs/*
|
include docs/*
|
||||||
graft data/html
|
graft data/html
|
||||||
graft data/html-src
|
graft data/html-src
|
||||||
|
##
|
||||||
|
## data - images
|
||||||
|
##
|
||||||
#graft data/images
|
#graft data/images
|
||||||
recursive-include data/images *.gif *.png
|
recursive-include data/images *.gif *.png
|
||||||
#graft data/music
|
|
||||||
#graft data/plugins
|
|
||||||
graft data/sound
|
|
||||||
graft data/tiles
|
graft data/tiles
|
||||||
include data/pysol.xbm data/pysol.xpm data/pysol.ico
|
include data/pysol.xbm data/pysol.xpm data/pysol.ico
|
||||||
|
##
|
||||||
|
## data - sound
|
||||||
|
##
|
||||||
|
#graft data/music
|
||||||
|
#include data/music/Astral_Dreams.COPYRIGHT
|
||||||
|
#include data/music/Astral_Dreams.it
|
||||||
|
include data/music/Bye_For_Now.COPYRIGHT
|
||||||
|
include data/music/Bye_For_Now.s3m
|
||||||
|
#include data/music/Past_and_Future.COPYRIGHT
|
||||||
|
#include data/music/Past_and_Future.it
|
||||||
|
include data/music/Ranger_Song.COPYRIGHT
|
||||||
|
include data/music/Ranger_Song.s3m
|
||||||
|
include data/music/Subsequential.COPYRIGHT
|
||||||
|
include data/music/Subsequential.mod
|
||||||
|
graft data/sound
|
||||||
|
##
|
||||||
|
## data - i18n
|
||||||
|
##
|
||||||
include po/*
|
include po/*
|
||||||
graft locale
|
graft locale
|
||||||
##
|
##
|
||||||
## cardsets
|
## data - cardsets
|
||||||
##
|
##
|
||||||
graft data/cardset-2000
|
graft data/cardset-2000
|
||||||
graft data/cardset-crystal-mahjongg
|
graft data/cardset-crystal-mahjongg
|
||||||
|
|
12
README
12
README
|
@ -7,9 +7,15 @@ Requirements.
|
||||||
|
|
||||||
- Python (2.3 or later)
|
- Python (2.3 or later)
|
||||||
- Tkinter
|
- Tkinter
|
||||||
- PySol-Sound-Server: http://www.pysol.org/ (not necessarily)
|
|
||||||
- PIL (Python Image Library): http://www.pythonware.com/products/pil (not necessarily)
|
** for sound support (not necessarily) **
|
||||||
- Freecell Solver: http://vipe.technion.ac.il/~shlomif/freecell-solver/ (not necessarily)
|
- PySol-Sound-Server: http://www.pysol.org/
|
||||||
|
or
|
||||||
|
- PyGame: http://www.pygame.org/
|
||||||
|
|
||||||
|
** other modules (not necessarily) **
|
||||||
|
- PIL (Python Image Library): http://www.pythonware.com/products/pil
|
||||||
|
- Freecell Solver: http://vipe.technion.ac.il/~shlomif/freecell-solver/
|
||||||
|
|
||||||
|
|
||||||
Installation.
|
Installation.
|
||||||
|
|
|
@ -408,14 +408,14 @@ Please check your %s installation.
|
||||||
|
|
||||||
# init audio 2)
|
# init audio 2)
|
||||||
app.audio.connectServer(app)
|
app.audio.connectServer(app)
|
||||||
if app.audio.audiodev is None:
|
if not app.audio.CAN_PLAY_SOUND:
|
||||||
app.opt.sound = 0
|
app.opt.sound = 0
|
||||||
if not opts["nosound"] and not opts['sound-mod'] and pysolsoundserver and not app.audio.connected:
|
if not opts["nosound"] and not opts['sound-mod'] and pysolsoundserver and not app.audio.connected:
|
||||||
print PACKAGE + ": could not connect to pysolsoundserver, sound disabled."
|
print PACKAGE + ": could not connect to pysolsoundserver, sound disabled."
|
||||||
warn_pysolsoundserver = 1
|
warn_pysolsoundserver = 1
|
||||||
app.audio.updateSettings()
|
app.audio.updateSettings()
|
||||||
# start up the background music
|
# start up the background music
|
||||||
if app.audio.audiodev:
|
if app.audio.CAN_PLAY_MUSIC:
|
||||||
music = app.music_manager.getAll()
|
music = app.music_manager.getAll()
|
||||||
if music:
|
if music:
|
||||||
app.music_playlist = list(music)[:]
|
app.music_playlist = list(music)[:]
|
||||||
|
|
|
@ -56,7 +56,7 @@ except ImportError:
|
||||||
|
|
||||||
class AbstractAudioClient:
|
class AbstractAudioClient:
|
||||||
|
|
||||||
EXTENTIONS = r"\.((it)|(mod)|(mp3)|(pym)|(s3m)|(xm))$"
|
EXTENTIONS = r"\.((wav)|(it)|(mod)|(mp3)|(pym)|(s3m)|(xm))$"
|
||||||
|
|
||||||
CAN_PLAY_SOUND = False
|
CAN_PLAY_SOUND = False
|
||||||
CAN_PLAY_MUSIC = False
|
CAN_PLAY_MUSIC = False
|
||||||
|
@ -72,10 +72,7 @@ class AbstractAudioClient:
|
||||||
self.music_loop = 0
|
self.music_loop = 0
|
||||||
|
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
try:
|
self.destroy()
|
||||||
self.destroy()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
|
|
||||||
# start server - set self.server on success (may also set self.audiodev)
|
# start server - set self.server on success (may also set self.audiodev)
|
||||||
def startServer(self):
|
def startServer(self):
|
||||||
|
@ -95,7 +92,8 @@ class AbstractAudioClient:
|
||||||
|
|
||||||
# disconnect and stop server
|
# disconnect and stop server
|
||||||
def destroy(self):
|
def destroy(self):
|
||||||
self._destroy()
|
if self.audiodev:
|
||||||
|
self._destroy()
|
||||||
self.server = None
|
self.server = None
|
||||||
self.audiodev = None
|
self.audiodev = None
|
||||||
self.connected = 0
|
self.connected = 0
|
||||||
|
@ -189,15 +187,15 @@ class PysolSoundServerModuleClient(AbstractAudioClient):
|
||||||
CAN_PLAY_MUSIC = True
|
CAN_PLAY_MUSIC = True
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
import pysolsoundserver
|
|
||||||
AbstractAudioClient.__init__(self)
|
AbstractAudioClient.__init__(self)
|
||||||
|
import pysolsoundserver
|
||||||
|
|
||||||
def startServer(self):
|
def startServer(self):
|
||||||
# use the module
|
# use the module
|
||||||
try:
|
try:
|
||||||
self.audiodev = pysolsoundserver
|
self.audiodev = pysolsoundserver
|
||||||
self.audiodev.init()
|
self.audiodev.init()
|
||||||
self.server = 1 # success - see also tk/menubar.py
|
self.server = 1
|
||||||
except:
|
except:
|
||||||
if traceback: traceback.print_exc()
|
if traceback: traceback.print_exc()
|
||||||
self.server = None
|
self.server = None
|
||||||
|
@ -277,18 +275,12 @@ class Win32AudioClient(AbstractAudioClient):
|
||||||
CAN_PLAY_MUSIC = False
|
CAN_PLAY_MUSIC = False
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
import winsound
|
|
||||||
AbstractAudioClient.__init__(self)
|
AbstractAudioClient.__init__(self)
|
||||||
|
import winsound
|
||||||
|
self.audiodev = winsound
|
||||||
|
|
||||||
def startServer(self):
|
def startServer(self):
|
||||||
# use the built-in winsound module
|
pass
|
||||||
try:
|
|
||||||
import winsound
|
|
||||||
self.audiodev = winsound
|
|
||||||
self.server = 0 # success - see also tk/menubar.py
|
|
||||||
except:
|
|
||||||
self.server = None
|
|
||||||
self.audiodev = None
|
|
||||||
|
|
||||||
def _playSample(self, filename, priority, loop, volume):
|
def _playSample(self, filename, priority, loop, volume):
|
||||||
a = self.audiodev
|
a = self.audiodev
|
||||||
|
@ -397,25 +389,21 @@ class OSSAudioClient(AbstractAudioClient):
|
||||||
CAN_PLAY_MUSIC = False
|
CAN_PLAY_MUSIC = False
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
import ossaudiodev, wave
|
|
||||||
AbstractAudioClient.__init__(self)
|
AbstractAudioClient.__init__(self)
|
||||||
|
|
||||||
def startServer(self):
|
|
||||||
try:
|
try:
|
||||||
import ossaudiodev, wave
|
import ossaudiodev, wave
|
||||||
self.server = 0 # success - see also tk/menubar.py
|
|
||||||
self.audiodev = ossaudiodev
|
|
||||||
pin, pout = os.pipe()
|
|
||||||
self.pout = pout
|
|
||||||
server = OSSAudioServer(pin)
|
|
||||||
pid = os.fork()
|
|
||||||
if pid == 0:
|
|
||||||
server.mainLoop()
|
|
||||||
except:
|
except:
|
||||||
if traceback: traceback.print_exc()
|
if traceback: traceback.print_exc()
|
||||||
self.server = None
|
raise
|
||||||
self.audiodev = None
|
self.audiodev = ossaudiodev
|
||||||
|
|
||||||
|
def startServer(self):
|
||||||
|
pin, pout = os.pipe()
|
||||||
|
self.pout = pout
|
||||||
|
server = OSSAudioServer(pin)
|
||||||
|
pid = os.fork()
|
||||||
|
if pid == 0:
|
||||||
|
server.mainLoop()
|
||||||
|
|
||||||
def _playSample(self, filename, priority, loop, volume):
|
def _playSample(self, filename, priority, loop, volume):
|
||||||
##print '_playSample:', filename, loop
|
##print '_playSample:', filename, loop
|
||||||
|
@ -435,33 +423,32 @@ class OSSAudioClient(AbstractAudioClient):
|
||||||
|
|
||||||
class PyGameAudioClient(AbstractAudioClient):
|
class PyGameAudioClient(AbstractAudioClient):
|
||||||
|
|
||||||
EXTENTIONS = r'\.((ogg)|(mp3)|(it)|(mod)|(s3m)|(xm)|(mid))$'
|
EXTENTIONS = r'\.((ogg)|(mp3)|(wav)|(it)|(mod)|(s3m)|(xm)|(mid))$'
|
||||||
if os.name == 'nt': # without mp3
|
|
||||||
EXTENTIONS = r'\.((ogg)|(it)|(mod)|(s3m)|(xm)|(mid))$'
|
|
||||||
|
|
||||||
CAN_PLAY_SOUND = True
|
CAN_PLAY_SOUND = True
|
||||||
CAN_PLAY_MUSIC = True
|
CAN_PLAY_MUSIC = True
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
import pygame.mixer, pygame.time
|
|
||||||
AbstractAudioClient.__init__(self)
|
AbstractAudioClient.__init__(self)
|
||||||
|
|
||||||
def startServer(self):
|
|
||||||
try:
|
try:
|
||||||
import pygame.mixer, pygame.time
|
import pygame.mixer, pygame.time
|
||||||
self.server = 0 # success - see also tk/menubar.py
|
if os.name == 'nt':
|
||||||
self.audiodev = pygame.mixer
|
# for py2exe
|
||||||
|
import pygame.base, pygame.rwobject, pygame.mixer_music
|
||||||
self.mixer = pygame.mixer
|
self.mixer = pygame.mixer
|
||||||
self.mixer.init()
|
self.mixer.init()
|
||||||
self.music = self.mixer.music
|
self.music = self.mixer.music
|
||||||
self.time = pygame.time
|
self.time = pygame.time
|
||||||
self.sound = None
|
|
||||||
self.sound_channel = None
|
|
||||||
self.sound_priority = -1
|
|
||||||
except:
|
except:
|
||||||
if traceback: traceback.print_exc()
|
##if traceback: traceback.print_exc()
|
||||||
self.server = None
|
raise
|
||||||
self.audiodev = None
|
self.audiodev = self.mixer
|
||||||
|
self.sound = None
|
||||||
|
self.sound_channel = None
|
||||||
|
self.sound_priority = -1
|
||||||
|
|
||||||
|
def startServer(self):
|
||||||
|
pass
|
||||||
|
|
||||||
def _playSample(self, filename, priority, loop, volume):
|
def _playSample(self, filename, priority, loop, volume):
|
||||||
##print '_playSample:', filename, priority, loop, volume
|
##print '_playSample:', filename, priority, loop, volume
|
||||||
|
@ -475,10 +462,10 @@ class PyGameAudioClient(AbstractAudioClient):
|
||||||
self.sound = self.mixer.Sound(filename)
|
self.sound = self.mixer.Sound(filename)
|
||||||
self.sound.set_volume(vol)
|
self.sound.set_volume(vol)
|
||||||
self.sound_channel = self.sound.play(loop)
|
self.sound_channel = self.sound.play(loop)
|
||||||
self.sound_priority = priority
|
|
||||||
except:
|
except:
|
||||||
if traceback: traceback.print_exc()
|
if traceback: traceback.print_exc()
|
||||||
pass
|
pass
|
||||||
|
self.sound_priority = priority
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
def _stopSamples(self):
|
def _stopSamples(self):
|
||||||
|
@ -511,6 +498,11 @@ class PyGameAudioClient(AbstractAudioClient):
|
||||||
if traceback: traceback.print_exc()
|
if traceback: traceback.print_exc()
|
||||||
self.time.wait(1000)
|
self.time.wait(1000)
|
||||||
|
|
||||||
|
def _destroy(self):
|
||||||
|
self.mixer.stop()
|
||||||
|
self.mixer.quit()
|
||||||
|
self.music = None
|
||||||
|
|
||||||
def playContinuousMusic(self, music_list):
|
def playContinuousMusic(self, music_list):
|
||||||
##print 'playContinuousMusic'
|
##print 'playContinuousMusic'
|
||||||
self.music_list = music_list
|
self.music_list = music_list
|
||||||
|
@ -521,15 +513,6 @@ class PyGameAudioClient(AbstractAudioClient):
|
||||||
th = Thread(target=self._playMusicLoop)
|
th = Thread(target=self._playMusicLoop)
|
||||||
th.start()
|
th.start()
|
||||||
|
|
||||||
def _destroy(self):
|
|
||||||
try:
|
|
||||||
self.mixer.stop()
|
|
||||||
self.mixer.quit()
|
|
||||||
self.music = None
|
|
||||||
except:
|
|
||||||
if traceback: traceback.print_exc()
|
|
||||||
pass
|
|
||||||
|
|
||||||
def updateSettings(self):
|
def updateSettings(self):
|
||||||
if not self.app.opt.sound or self.app.opt.sound_music_volume == 0:
|
if not self.app.opt.sound or self.app.opt.sound_music_volume == 0:
|
||||||
if self.music:
|
if self.music:
|
||||||
|
|
|
@ -5,6 +5,10 @@ rm -rf dist
|
||||||
mkdir dist
|
mkdir dist
|
||||||
cp -r locale dist
|
cp -r locale dist
|
||||||
cp fc-solve.exe dist
|
cp fc-solve.exe dist
|
||||||
|
cp smpeg.dll dist
|
||||||
|
cp ogg.dll dist
|
||||||
|
cp vorbis.dll dist
|
||||||
|
cp vorbisfile.dll dist
|
||||||
python setup.py py2exe
|
python setup.py py2exe
|
||||||
python scripts\create_iss.py
|
python scripts\create_iss.py
|
||||||
"d:\Program Files\Inno Setup 5\ISCC.exe" setup.iss
|
"d:\Program Files\Inno Setup 5\ISCC.exe" setup.iss
|
||||||
|
|
|
@ -6,3 +6,4 @@ force_manifest = 1
|
||||||
release = 1
|
release = 1
|
||||||
doc_files = COPYING README
|
doc_files = COPYING README
|
||||||
use_bzip2 = 1
|
use_bzip2 = 1
|
||||||
|
group = Amusements/Games
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -21,9 +21,11 @@ datas = [
|
||||||
'tiles',
|
'tiles',
|
||||||
'toolbar',
|
'toolbar',
|
||||||
]
|
]
|
||||||
for s in open('MANIFEST.in'):
|
for s in file('MANIFEST.in'):
|
||||||
if s.startswith('graft data/cardset-'):
|
if s.startswith('graft data/cardset-'):
|
||||||
datas.append(s[11:].strip())
|
datas.append(s[11:].strip())
|
||||||
|
elif s.startswith('include data/music/'):
|
||||||
|
datas.append(s[19:].strip())
|
||||||
data_files = []
|
data_files = []
|
||||||
for d in datas:
|
for d in datas:
|
||||||
for root, dirs, files in os.walk(os.path.join('data', d)):
|
for root, dirs, files in os.walk(os.path.join('data', d)):
|
||||||
|
|
Loading…
Add table
Reference in a new issue