Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Util/CSoundNote.py
blob: 168d267a2bf9e3e5d1704229a0b59bf6662478c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
import Config
from Util.CSoundClient import CSoundClient
from Generation.GenerationConstants import GenerationConstants
#----------------------------------------------------------------------
# TODO: extend this hierarchy to include a Note base class
# 		i.e. Event -> Note -> CSoundNote
#		most classes should only deal with Events and Notes, 
#		and not CSoundNotes
#----------------------------------------------------------------------
#----------------------------------------------------------------------
# An Event subclass that represents a CSound note event
#----------------------------------------------------------------------

class Event:
    #-----------------------------------
    # initialization
    #-----------------------------------
    def __init__( self, onset ):
	   self.onset = onset

    #-----------------------------------
    # playback (must be implemented by subclasses)
    #-----------------------------------
    def play( self ):
	   raise NotImplementedError

    #-----------------------------------
    # adjustment
    #-----------------------------------
    def adjustOnset( self, amount ):
	   self.onset += amount
class CSoundNote( Event ):
    #-----------------------------------
    # initialization
    #-----------------------------------
    def __init__( self, onset, 
                                    pitch, 
                                    amplitude, 
                                    pan, 
                                    duration, 
                                    trackID, 
                                    fullDuration = False, 
                                    instrument = Config.FLUTE, 
                                    attack = 0.002, 
                                    decay = 0.098, 
                                    reverbSend = 0.1, 
                                    filterType = 0, 
                                    filterCutoff = 1000,
                                    tied = False,
                                    overlap = False,
                                    instrumentFlag = Config.FLUTE  ):
        Event.__init__( self, onset )
        
        self.onset = onset
        self.pitch = pitch
        self.amplitude = amplitude
        self.pan = pan
        self.duration = duration
        self.trackID = trackID
        self.instrument = instrument
        self.fullDuration = fullDuration
        self.attack = attack
        self.decay = decay
        self.reverbSend = reverbSend
        self.filterType = filterType
        self.filterCutoff = filterCutoff
        self.tied = tied
        self.overlap = overlap
        if self.instrument == 'drum1kit':
            self.instrumentFlag = Config.DRUM1INSTRUMENTS[ self.pitch ]
        else:
            self.instrumentFlag = self.instrument

    def __getstate__(self):
        return {'pitch': self.pitch,
                'amplitude': self.amplitude,
                'pan': self.pan,
                'duration': self.duration,
                'trackID': self.trackID,
                'instrument': self.instrument,
                'fullDuration': self.fullDuration,
                'attack': self.attack,
                'decay': self.decay,
                'reverbSend': self.reverbSend,
                'filterType': self.filterType,
                'filterCutoff': self.filterCutoff,
                'onset': self.onset,
                'tied': self.tied,
                'overlap': self.overlap,
                'instrumentFlag': self.instrumentFlag }

    def __setstate__(self,dict):
        Event.__init__(self, dict['onset'])
        self.pitch = dict['pitch']
        self.amplitude = dict['amplitude']
        self.pan = dict['pan']
        self.duration = dict['duration']
        self.trackID = dict['trackID']
        self.instrument = dict['instrument']
        self.fullDuration = dict['fullDuration']
        self.attack = dict['attack']
        self.decay = dict['decay']
        self.reverbSend = dict['reverbSend']
        self.filterType = dict['filterType']
        self.filterCutoff = dict['filterCutoff']
        self.tied = dict['tied']
        self.overlap = dict['overlap']
        self.instrumentFlag = dict['instrumentFlag']

    def clone( self ):
        return CSoundNote( self.onset, self.pitch, self.amplitude, self.pan, 
                           self.duration, self.trackID, self.fullDuration,  self.instrument, 
                           self.attack, self.decay, self.reverbSend, self.filterType, self.filterCutoff, self.tied, self.overlap, self.instrumentFlag )

    def play( self ):
        CSoundClient.sendText( self.getText(120, 0) )
        
    def getText( self, tempo, delay ):
        if self.instrument == 'drum1kit':
            if GenerationConstants.DRUMPITCH.has_key( self.pitch ):
                print self.pitch
                self.pitch = GenerationConstants.DRUMPITCH[ self.pitch ]

            self.instrumentFlag = Config.DRUM1INSTRUMENTS[ self.pitch ]
            newPitch = 1
        else:
            self.instrumentFlag = self.instrument
            newPitch = pow( GenerationConstants.TWO_ROOT_TWELVE, self.pitch - 36 )

        oneTickDuration = (Constants.MS_PER_MINUTE / 1000)  / tempo / Constants.TICKS_PER_BEAT

        newDuration = oneTickDuration * self.duration

        # condition for tied notes
        if Config.INSTRUMENTS[ self.instrumentFlag ].csoundInstrumentID  == 101  and self.tied and self.fullDuration:
            newDuration = -1
        # condition for overlaped notes
        if Config.INSTRUMENTS[ self.instrumentFlag ].csoundInstrumentID == 102 and self.overlap:
            newDuration = oneTickDuration * self.duration + 1.

        if True: newAmplitude = self.amplitude * 0.8
        else : newAmplitude = self.amplitude * music_volume_get( self.trackID )

        newAttack = newDuration * self.attack
        if newAttack <= 0.002:
            newAttack = 0.002

        newDecay = newDuration * self.decay
        if newDecay <= 0.002:
            newDecay = 0.002

        return Config.PLAY_NOTE_COMMAND % ( Config.INSTRUMENTS[ self.instrumentFlag ].csoundInstrumentID, 
                                                     self.trackID, 
                                                     delay,
                                                     newDuration, 
                                                     newPitch, 
                                                     self.reverbSend, 
                                                     newAmplitude, 
                                                     self.pan, 
                                                     Config.INSTRUMENT_TABLE_OFFSET + Config.INSTRUMENTS[ self.instrumentFlag ].instrumentID,
                                                     newAttack,
                                                     newDecay,
                                                     self.filterType,
                                                     self.filterCutoff )

    #-----------------------------------
    # adjustment functions
    #-----------------------------------
    def adjustDuration( self, amount ):
        self.duration += amount
        
    def adjustAmplitude( self, amount ):
        self.amplitude += amount
            
    def adjustPitch( self, amount ):
        self.pitch += amount