2014-12-29 20:58:30 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-04-03 16:57:08 -06:00
|
|
|
import platform
|
2014-12-29 20:58:30 -06:00
|
|
|
import widgetUtils
|
|
|
|
import os
|
|
|
|
import paths
|
2015-01-18 17:19:39 -06:00
|
|
|
import logging
|
|
|
|
log = logging.getLogger("extra.SoundsTutorial.soundsTutorial")
|
2014-12-29 20:58:30 -06:00
|
|
|
import soundsTutorial_constants
|
2015-04-03 16:57:08 -06:00
|
|
|
if platform.system() == "Windows":
|
|
|
|
import wx_ui as UI
|
|
|
|
elif platform.system() == "Linux":
|
|
|
|
import gtk_ui as UI
|
2014-12-29 20:58:30 -06:00
|
|
|
|
|
|
|
class soundsTutorial(object):
|
2015-01-20 15:40:33 -06:00
|
|
|
def __init__(self, sessionObject):
|
2015-01-18 17:19:39 -06:00
|
|
|
log.debug("Creating sounds tutorial object...")
|
2014-12-29 20:58:30 -06:00
|
|
|
super(soundsTutorial, self).__init__()
|
2015-01-20 15:40:33 -06:00
|
|
|
self.session = sessionObject
|
2014-12-29 20:58:30 -06:00
|
|
|
self.actions = []
|
2015-01-18 17:19:39 -06:00
|
|
|
log.debug("Loading actions for sounds tutorial...")
|
2014-12-29 20:58:30 -06:00
|
|
|
[self.actions.append(i[1]) for i in soundsTutorial_constants.actions]
|
|
|
|
self.files = []
|
2015-01-18 17:19:39 -06:00
|
|
|
log.debug("Searching sound files...")
|
2014-12-29 20:58:30 -06:00
|
|
|
[self.files.append(i[0]) for i in soundsTutorial_constants.actions]
|
2015-01-18 17:19:39 -06:00
|
|
|
log.debug("Creating dialog...")
|
2015-04-03 16:57:08 -06:00
|
|
|
self.dialog = UI.soundsTutorialDialog(self.actions)
|
2014-12-29 20:58:30 -06:00
|
|
|
widgetUtils.connect_event(self.dialog.play, widgetUtils.BUTTON_PRESSED, self.on_play)
|
|
|
|
self.dialog.get_response()
|
|
|
|
|
|
|
|
def on_play(self, *args, **kwargs):
|
2015-01-18 17:19:39 -06:00
|
|
|
try:
|
2015-04-03 16:57:08 -06:00
|
|
|
self.session.sound.play(self.files[self.dialog.get_selection()]+".ogg")
|
2015-01-18 17:19:39 -06:00
|
|
|
except:
|
|
|
|
log.exception("Error playing the %s sound" % (self.files[self.dialog.items.GetSelection()],))
|