ShellGui.py 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. from dialog import Dialog
  2. import locale
  3. from core import ConfigurationManager
  4. from neurons import Say
  5. class ShellGui:
  6. def __init__(self):
  7. # get settings
  8. self.conf = ConfigurationManager().get_settings()
  9. locale.setlocale(locale.LC_ALL, '')
  10. self.d = Dialog(dialog="dialog")
  11. self.d.set_background_title("Jarvis shell UI")
  12. self.show_main_menu()
  13. def show_main_menu(self):
  14. """
  15. Main menu of the shell UI.
  16. Provide a list of action the user can select to test his settings
  17. :return:
  18. """
  19. code, tag = self.d.menu("Test your JARVIS settings from this menu",
  20. choices=[("TTS", "Text to Speech"),
  21. ("STT", "Speech to text")])
  22. if code == self.d.OK:
  23. if tag == "STT":
  24. self.show_stt_test_menu()
  25. if tag == "TTS":
  26. self.show_tts_test_menu()
  27. def show_stt_test_menu(self):
  28. pass
  29. def show_tts_test_menu(self, sentence_to_test=None):
  30. """
  31. A menu for testing text to speech
  32. :return:
  33. """
  34. continue_bool = True
  35. # if we don't have yet a sentence to test, we ask the user to type one
  36. if sentence_to_test is None:
  37. # First, we ask the user to type a sentence that will be passed in the TTS
  38. code, sentence_to_test = self.d.inputbox("Please type the sentence you want to test", height=20, width=50)
  39. if code == self.d.CANCEL:
  40. self.show_main_menu()
  41. continue_bool = False
  42. if code == self.d.OK:
  43. continue_bool = True
  44. if continue_bool:
  45. # we get TTS from settings
  46. tts_list = ConfigurationManager.get_tts_list()
  47. # create a list of tuple that can be used by the dialog menu
  48. choices = list()
  49. for tts in tts_list:
  50. for name, settings in tts.iteritems():
  51. print name
  52. print settings
  53. tup = (str(name), str(settings))
  54. choices.append(tup)
  55. code, tag = self.d.menu("Sentence to test: %s" % sentence_to_test,
  56. choices=choices)
  57. if code == self.d.CANCEL:
  58. self.show_tts_test_menu()
  59. if code == self.d.OK:
  60. self._run_tts_test(tag, sentence_to_test)
  61. # then go back to this menu with the same sentence
  62. self.show_tts_test_menu(sentence_to_test=sentence_to_test)
  63. def _run_tts_test(self, tag, sentence_to_test):
  64. """
  65. Call the TTS
  66. :param tag:
  67. :param sentence_to_test:
  68. :return:
  69. """
  70. Say(message=sentence_to_test, tts=tag)