diff pyntnclick/speech.py @ 854:79b5c1be9a5e default tip

Remove pyntnclick, it's its own library, now
author Stefano Rivera <stefano@rivera.za.net>
date Sat, 21 Jun 2014 22:06:09 +0200
parents f95830b58336
children
line wrap: on
line diff
--- a/pyntnclick/speech.py	Sat Jun 21 22:04:35 2014 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,44 +0,0 @@
-# speech.py
-# Copyright Boomslang team, 2010 (see COPYING File)
-# Speech playing and cache
-
-import re
-
-from pyntnclick.sound import get_sound
-
-
-# cache of string -> sound object mappings
-_SPEECH_CACHE = {}
-
-# characters not to allow in filenames
-_REPLACE_RE = re.compile(r"[^a-z0-9-]+")
-
-
-class SpeechError(RuntimeError):
-    pass
-
-
-def get_filename(key, text):
-    """Simplify text to filename."""
-    filename = "%s-%s" % (key, text)
-    filename = filename.lower()
-    filename = _REPLACE_RE.sub("_", filename)
-    filename = filename[:30]
-    filename = "%s.ogg" % filename
-    return filename
-
-
-def get_speech(thing_name, text):
-    """Load a sound object from the cache."""
-    key = (thing_name, text)
-    if key in _SPEECH_CACHE:
-        return _SPEECH_CACHE[key]
-    filename = get_filename(thing_name, text)
-    _SPEECH_CACHE[key] = sound = get_sound("speech", filename)
-    return sound
-
-
-def say(thing_name, text):
-    """Play text as speech."""
-    sound = get_speech(thing_name, text)
-    sound.play()