2016-07-13 05:15:19 -04:00
|
|
|
#!/bin/python
|
|
|
|
|
|
|
|
class outputManager():
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
2016-07-26 10:19:23 -04:00
|
|
|
def presentText(self, environment, text, interrupt=True, soundIconName = ''):
|
|
|
|
self.speakText(environment, text, interrupt)
|
|
|
|
self.brailleText(environment, text)
|
2016-07-26 17:39:22 -04:00
|
|
|
self.playSoundIcon(environment, soundIconName)
|
2016-07-14 17:00:02 -04:00
|
|
|
|
2016-07-26 10:19:23 -04:00
|
|
|
def speakText(self, environment, text, interrupt=True):
|
2016-07-14 17:00:02 -04:00
|
|
|
if not environment['runtime']['settingsManager'].getSettingAsBool(environment, 'speech', 'enabled'):
|
2016-07-26 10:19:23 -04:00
|
|
|
return
|
|
|
|
if environment['runtime']['speechDriver'] == None:
|
2016-07-14 17:00:02 -04:00
|
|
|
return
|
2016-07-26 10:19:23 -04:00
|
|
|
if interrupt:
|
2016-07-14 17:00:02 -04:00
|
|
|
self.interruptOutput(environment)
|
2016-07-14 17:25:33 -04:00
|
|
|
environment['runtime']['speechDriver'].setLanguage(environment['runtime']['settingsManager'].getSetting(environment, 'speech', 'language'))
|
|
|
|
environment['runtime']['speechDriver'].setVoice(environment['runtime']['settingsManager'].getSetting(environment, 'speech', 'voice'))
|
|
|
|
environment['runtime']['speechDriver'].setPitch(environment['runtime']['settingsManager'].getSettingAsInt(environment, 'speech', 'pitch'))
|
|
|
|
environment['runtime']['speechDriver'].setSpeed(environment['runtime']['settingsManager'].getSettingAsInt(environment, 'speech', 'rate'))
|
|
|
|
environment['runtime']['speechDriver'].setModule(environment['runtime']['settingsManager'].getSetting(environment, 'speech', 'module'))
|
2016-07-14 18:21:23 -04:00
|
|
|
environment['runtime']['speechDriver'].setVolume(environment['runtime']['settingsManager'].getSettingAsInt(environment, 'speech', 'volume'))
|
2016-07-26 10:19:23 -04:00
|
|
|
environment['runtime']['speechDriver'].speak(text)
|
2016-07-14 17:00:02 -04:00
|
|
|
|
2016-07-26 10:19:23 -04:00
|
|
|
def brailleText(self, environment, text, interrupt=True):
|
2016-07-15 10:31:19 -04:00
|
|
|
if not environment['runtime']['settingsManager'].getSettingAsBool(environment, 'braille', 'enabled'):
|
2016-07-26 10:19:23 -04:00
|
|
|
return
|
|
|
|
if environment['runtime']['braillehDriver'] == None:
|
|
|
|
return
|
2016-07-14 17:00:02 -04:00
|
|
|
print('braille')
|
|
|
|
def interruptOutput(self, environment):
|
|
|
|
environment['runtime']['speechDriver'].cancel()
|
2016-07-26 10:19:23 -04:00
|
|
|
environment['runtime']['soundDriver'].cancel()
|
2016-07-26 17:39:22 -04:00
|
|
|
|
|
|
|
def playSoundIcon(self, environment, soundIconName, interrupt=True):
|
2016-07-26 09:59:27 -04:00
|
|
|
if soundIconName == '':
|
|
|
|
return
|
2016-07-14 17:25:33 -04:00
|
|
|
if not environment['runtime']['settingsManager'].getSettingAsBool(environment, 'sound', 'enabled'):
|
|
|
|
return
|
2016-07-26 10:19:23 -04:00
|
|
|
if environment['runtime']['soundDriver'] == None:
|
|
|
|
return
|
2016-07-26 17:39:22 -04:00
|
|
|
print(soundIconName)
|
2016-07-26 09:59:27 -04:00
|
|
|
try:
|
2016-07-26 17:39:22 -04:00
|
|
|
print(environment['soundIcons'][soundIconName])
|
|
|
|
environment['runtime']['soundDriver'].playSoundFile(environment, environment['soundIcons'][soundIconName], interrupt)
|
2016-07-26 09:59:27 -04:00
|
|
|
except:
|
|
|
|
print('no icon there for' + IconName)
|