~ubuntu-branches/ubuntu/saucy/solfege/saucy

« back to all changes in this revision

Viewing changes to solfege/soundcard/fakesynth.py

  • Committer: Bazaar Package Importer
  • Author(s): Tom Cato Amundsen
  • Date: 2010-03-28 06:34:28 UTC
  • mfrom: (1.1.10 upstream) (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100328063428-wg2bqvoce2aq4xfb
Tags: 3.15.9-1
* New upstream release.
* Redo packaging. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# GNU Solfege - free ear training software
 
2
# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2008  Tom Cato Amundsen
 
3
#
 
4
# This program is free software: you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation, either version 3 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 
 
17
from __future__ import absolute_import
 
18
import logging
 
19
 
 
20
from solfege.mpd.track import MidiEventStream
 
21
class Synth:
 
22
    NUM_CHANNELS = 16
 
23
    def __init__(self, verbose_init):
 
24
        logging.debug("Solfege will use fakesynth")
 
25
        self.m_type_major = "Fake"
 
26
    def close(self):
 
27
        pass
 
28
    def stop(self):
 
29
        pass
 
30
    def play_track(self, *tracks):
 
31
        logging.debug("FakeSynth.play_track()")
 
32
        for e in MidiEventStream(*tracks):
 
33
            logging.debug(str(e))
 
34
        logging.debug("")
 
35