-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfreejam.py
executable file
·759 lines (678 loc) · 23.2 KB
/
freejam.py
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import os
import pyglet
try:
import audiere
except ImportError:
try:
import medussa as audiere
except ImportError:
print "Could not import an audio library! Dividing by zero!"
x = 0/0
from pyglet import clock
from pyglet.window import key
import threading
import math
import rtmidi
import xml.etree.ElementTree as etree
def xml_to_dict(el):
d={}
if el.text:
d[el.tag] = el.text
else:
d[el.tag] = {}
children = el.getchildren()
def setd(key, val, e):
e[key] = val
if children:
print map(xml_to_dict,children)
d[el.tag] = dict([[i.keys()[0],i[i.keys()[0]]] for i in map(xml_to_dict, children)])
return d
def strip_whitespace(list):
for i in xrange(len(list)):
if type(list[i])==str and list[i].strip()=='':
del list[i]
def xml_to_dictionary(element):
namespace = ''
l = len(namespace)
dictionary={}
tag = element.tag[l:]
if element.text:
if (element.text == ' '):
dictionary[tag] = {}
else:
dictionary[tag] = element.text
children = element.getchildren()
if children:
subdictionary = {}
for child in children:
for k,v in xml_to_dictionary(child).items():
if k in subdictionary:
if ( isinstance(subdictionary[k], list)):
subdictionary[k].append(v)
else:
subdictionary[k] = [subdictionary[k], v]
else:
subdictionary[k] = v
if (dictionary[tag] == {}):
dictionary[tag] = subdictionary
else:
dictionary[tag] = [dictionary[tag], subdictionary]
if element.attrib:
attribs = {}
for k,v in element.attrib.items():
attribs[k] = v
if (dictionary[tag] == {}):
dictionary[tag] = attribs
else:
dictionary[tag] = [dictionary[tag], attribs]
return dictionary
audio = audiere.open_device()
#### Global variables ######
stageimg = pyglet.image.load('resources/image-textures/floor.png')
barimg = pyglet.image.load('resources/image-textures/bar.png')
record_img = pyglet.image.load('resources/image-textures/record_b.png')
recording_img = pyglet.image.load('resources/image-textures/record_active.png')
rw_beg_img = pyglet.image.load('resources/image-textures/rewind_to_beginning.png')
rw_img = pyglet.image.load('resources/image-textures/rewind.png')
play_img = pyglet.image.load('resources/image-textures/play.png')
pause_img = pyglet.image.load('resources/image-textures/pause.png')
ff_img = pyglet.image.load('resources/image-textures/fastforward.png')
ff_end_img = pyglet.image.load('resources/image-textures/forward_to_end.png')
slider_img = pyglet.image.load('resources/image-textures/slider.png')
tsa_img = pyglet.image.load('resources/image-textures/track_software_active.png')
tra_img = pyglet.image.load('resources/image-textures/track_real_active.png')
tla_img = pyglet.image.load('resources/image-textures/track_loop_active.png')
toa_img = pyglet.image.load('resources/image-textures/track_other_active.png')
tg_img = pyglet.image.load('resources/image-textures/track_generic.png')
tbg_s_img = pyglet.image.load('resources/image-textures/track_software_bg.png')
tbg_s_l_img = pyglet.image.load('resources/image-textures/track_software_bg_left.png')
tbg_s_r_img = pyglet.image.load('resources/image-textures/track_software_bg_right.png')
tbg_r_img = pyglet.image.load('resources/image-textures/track_real_bg.png')
tbg_r_l_img = pyglet.image.load('resources/image-textures/track_real_bg_left.png')
tbg_r_r_img = pyglet.image.load('resources/image-textures/track_real_bg_right.png')
tbg_l_img = pyglet.image.load('resources/image-textures/track_loop_bg.png')
tbg_l_l_img = pyglet.image.load('resources/image-textures/track_loop_bg_left.png')
tbg_l_r_img = pyglet.image.load('resources/image-textures/track_loop_bg_right.png')
tbg_o_img = pyglet.image.load('resources/image-textures/track_other_bg.png')
tbg_o_l_img = pyglet.image.load('resources/image-textures/track_other_bg_left.png')
tbg_o_r_img = pyglet.image.load('resources/image-textures/track_other_bg_right.png')
trackbg_img = pyglet.image.load('resources/image-textures/trackbg.png')
# Colors for fills. OpenGL is overdrawing my stuff if I use primitives.
rgb237237237= pyglet.image.load('resources/image-textures/colors/237-237-237.png')
rgb184184184= pyglet.image.load('resources/image-textures/colors/184-184-184.png')
rgb084084084= pyglet.image.load('resources/image-textures/colors/084-084-084.png')
rgb255000000= pyglet.image.load('resources/image-textures/colors/255-000-000.png')
key_cf_img = pyglet.image.load('resources/image-textures/key_cf.png')
key_dga_img = pyglet.image.load('resources/image-textures/key_dga.png')
key_eb_img = pyglet.image.load('resources/image-textures/key_eb.png')
key_black_img = pyglet.image.load('resources/image-textures/key_black.png')
key_cf_pressed_img = pyglet.image.load('resources/image-textures/key_cf_pressed.png')
key_dga_pressed_img = pyglet.image.load('resources/image-textures/key_dga_pressed.png')
key_eb_pressed_img = pyglet.image.load('resources/image-textures/key_eb_pressed.png')
key_black_pressed_img = pyglet.image.load('resources/image-textures/key_black_pressed.png')
key_cf = pyglet.sprite.Sprite(key_cf_img)
key_dga = pyglet.sprite.Sprite(key_dga_img)
key_eb = pyglet.sprite.Sprite(key_eb_img)
key_black = pyglet.sprite.Sprite(key_black_img)
key_cf_pressed = pyglet.sprite.Sprite(key_cf_pressed_img)
key_dga_pressed = pyglet.sprite.Sprite(key_dga_pressed_img)
key_eb_pressed = pyglet.sprite.Sprite(key_eb_pressed_img)
key_black_pressed = pyglet.sprite.Sprite(key_black_pressed_img)
window = pyglet.window.Window(resizable=True)
window.maximize()
global vbarloc
global dragging_vbar
global dragging_scale
global STEP
global VIEW_SCALE
global SCROLL
global INDEX
global PLAYBACK_SPEED
global PLAYMODE
global KEYPRESS_MASK
global playing
global recording
global pitchbend
vbarloc = 100
dragging_vbar = False
dragging_scale = False
STEP = 64 # maximum res is 64th-notes
VIEW_SCALE = 1.0
SCROLL = 0
INDEX = 0
PLAYBACK_SPEED = 16.0
PLAYMODE = 'keyboard'
KEYPRESS_MASK = []
NOTE_RATIOS = [1,1.059,1.122,1.189,1.26,1.334,1.4142,1.498,1.587,1.682,1.7818,1.887]
KEYMAP = {key.A:36,key.W:37,key.S:38,key.E:39,key.D:40,key.F:41,key.T:42,
key.G:43,key.Y:44,key.H:45,key.U:46,key.J:47,key.K:48,
key.O:49,key.L:50,key.P:51,key.SEMICOLON:52,key.APOSTROPHE:53}
playing = False
recording = False
pitchbend = 1.0
############################
def note(val):
val-=36
if 0<=val<12:
return NOTE_RATIOS[val]
else:
return (2**(int(val)/12))*NOTE_RATIOS[val%12]
class NotePlayer:
def __init__(self,continuous):
self.notes = []
self.continuous = continuous
self.fadein = False
for i in range(88):
#self.notes.append(audio.open_file('instruments/keyboards/piano1/c.wav'))
self.notes.append(audio.open_file('instruments/strings/basic strings/c.wav'))
self.notes[-1].pitchshift = note(i)
self.notes[-1].repeating = self.continuous
#if self.fadein:
# self.notes[-1].volume = 0
#self.acnotes.append(False)
#self.recnotes.append(None)
def set_fadein(self):
self.fadein = True
for i in xrange(88):
self.notes[i].volume = 0
def play_note(self, noteval, volume):
self.notes[noteval].stop()
self.notes[noteval].play()
#self.acnotes[noteval] = True
if self.fadein:
#self.notes[noteval].volume = 0
#fadein_note(None,self.notes,noteval,self.acnotes,self.fadein,velocity)
fadein_note(None,self.notes,noteval,self.fadein,volume)
else:
self.notes[noteval].volume = velocity
def stop_note(self,noteval):
if self.cutoff:
#cutoff_note(None,self.notes,noteval,self.acnotes,self.cutoff)
cutoff_note(None,self.notes,noteval,self.cutoff)
else:
pass
class Silence(object):
def __getitem__(self,item):
return None
def __len__(self):
return self.n
def __init__(self,n):
self.n = n
def play(self,index):
return index==self.n-1
def is_silence(self):
return True
class Subtrack(object):
def __len__(self):
return len(self.data)
def __init__(self):
self.data = [[0]*176]
def play(self,index,player):
for i in xrange(88):
#player = pyglet.media.ManagedSoundPlayer()
#player.queue(c)
#player.pitch = note(i)
#player.play()
if self.data[index][i]==1:
j = self.data[index][i+88]
#k = self.data[index][i+176]
player.play_note(i,j)
'''self.track.notes[i].stop()
self.track.notes[i].play()
self.track.acnotes[i] = True
if self.track.fadein:
fadein_note(None,self.track.notes,i,self.track.acnotes,self.track.fadein,j)
else:
self.track.notes[i].volume = j'''
#pyglet.clock.schedule_once(self.stop_note,k,i)
return (index==len(self.data)-1)
def is_silence(self):
return False
#def stop_note(self,dt,noteval):
# self.track.stop_note(noteval)
def add_data(self):
self.data.append([0]*176)
class Track(object):
def __init__(self):
self.tracks=[]
self.trackslen=[0]
self.tracksindex=0
self.playing=True
#self.definition = xml_to_dict(etree.parse('instruments/keyboards/piano1/instrument.xml').getroot())['instrument']
self.definition = xml_to_dict(etree.parse('instruments/strings/basic strings/instrument.xml').getroot())['instrument']
try:
self.player = NotePlayer(True if self.definition['continuous'].lower()=='yes' else False)
except:
self.player = NotePlayer(False)
try:
self.player.cutoff = int(self.definition['cutoff'])
except:
self.player.cutoff = 100
try:
if int(self.definition['fadein']):
self.player.set_fadein()
except:
pass # fadein is already False
try:
self.name = self.definition['name']
except:
self.name = 'Untitled instrument'
try:
self.player.pitchbend = True if self.definition['pitchbend'].lower()=='yes' else False
except:
self.player.pitchbend = False
self.label = pyglet.text.Label(self.name,font_name='Times New Roman',font_size=10)
self.labelshadow = pyglet.text.Label(self.name, font_name='Times New Roman', font_size=10, color=(0,0,0,255))
self.int_img = tsa_img
self.cimg = tbg_s_img
self.leftimg = tbg_s_l_img
self.rightimg = tbg_s_r_img
#self.acnotes = []
#self.recnotes = []
def img(self):
return self.int_img if self==ACTIVETRACK else tg_img
def add(self,track):
self.tracks.append(track)
self.trackslen.append(len(track))
#track.track = self
self.currenttrack = track
def play(self,INDEX):
b = 0
for i in self.tracks:
if INDEX-b<len(i):
return i.play(INDEX-b,self.player)
else:
b+=len(i)
def set_text(self,text):
self.label.text = str(text)
self.labelshadow.text = str(text)
def play_note(self,noteval, volume):
if recording:
self.currenttrack.data[INDEX][noteval] = True
self.currenttrack.data[INDEX][noteval+88] = int(volume*255)
#self.recnotes[noteval]=[self.tracks[-1].data[-1],len(self.tracks[-1].data)]
self.player.play_note(noteval,volume)
def stop_note(self,noteval):
#self.acnotes[noteval] = False
if recording:
#self.recnotes[noteval][0]=len(self.tracks[-1].data)-self.recnotes[noteval][1]
self.currenttrack.data[INDEX][noteval] = 255
def log(message):
pass
track1 = Subtrack()
#track1.data = [[0.5,1],None,None,[0.561,1.122],[0.63,1.26],
# [0.667,1.334],None,[0.7071,1.4142],[0.749,1.498],None]
track2 = Subtrack()
#track2.data = [None,None,[1.498,2,2.52,2.996],None,None,None,[2,2.52,2.996]]
TRACKS = [Track(),Track()]
ACTIVETRACK = TRACKS[0]
#TRACKS[0].add(track1)
#TRACKS[0].add(Silence(5))
#TRACKS[0].add(track1)
#TRACKS[0].add(track1)
#TRACKS[1].add(track2)
TRACKSINDEX = [0]
stagesprite = pyglet.sprite.Sprite(stageimg)
pyglet.resource.path = ['instruments/keyboards/piano1']
pyglet.resource.reindex()
def draw(*args):
#Dummy function to redraw the window
pass
#def cutoff_note(dt,notes,noteval,acnotes,cutoff):
def cutoff_note(dt,notes,noteval,cutoff):
#print note.volume
#if not acnotes[noteval]:
if notes[noteval].volume>0:
notes[noteval].volume-=100.0/(20*cutoff)
#pyglet.clock.schedule_once(cutoff_note,0.02,notes,noteval,acnotes,cutoff)
pyglet.clock.schedule_once(cutoff_note,0.02,notes,noteval,cutoff)
else:
notes[noteval].stop()
#def fadein_note(dt,notes,noteval,acnotes,fadein,maxvol):
def fadein_note(dt,notes,noteval,fadein,maxvol):
#print note.volume
#if acnotes[noteval]:
if notes[noteval].volume<maxvol:
notes[noteval].volume+=100.0/(20*fadein)
#pyglet.clock.schedule_once(fadein_note,0.02,notes,noteval,acnotes,fadein,maxvol)
pyglet.clock.schedule_once(fadein_note,0.02,notes,noteval,fadein,maxvol)
def play_note(noteval, velocity):
player = pyglet.media.ManagedSoundPlayer()
player.queue(c)
player.pitch = note(noteval)
player.volume = velocity
player.play()
notelen = 10
if recording:
ACTIVETRACK.tracks[-1].data[-1].append([noteval,velocity,notelen])
SIDE_WIDTH = 150
def draw_track(track,num,width):
BASE_HEIGHT=(vbarloc-barimg.height)-((num+1)*track.img().height)
trackbg_img.blit(0,BASE_HEIGHT,width=width)
for i in xrange(*VIEW_EXTENTS):
if i%STEP==0:
rgb084084084.blit((i-SCROLL)*VIEW_SCALE+SIDE_WIDTH+1,BASE_HEIGHT+4,height=tsa_img.height-4)
track_index = 0
time_index = 0
for i in track.tracks:
if not i.is_silence():
pass
#print time_index
track.leftimg.blit((time_index-SCROLL)*VIEW_SCALE+SIDE_WIDTH+1,BASE_HEIGHT+4)
track.cimg.blit((time_index-SCROLL)*VIEW_SCALE+SIDE_WIDTH+5,BASE_HEIGHT+4,width=len(i)*VIEW_SCALE-8)
track.rightimg.blit((time_index-SCROLL)*VIEW_SCALE+SIDE_WIDTH+len(i)*VIEW_SCALE-4,BASE_HEIGHT+4)
for j in xrange(len(i.data)):
if i.data[j]:
#for [k,l,m] in i.data[j]:
# rgb084084084.blit((time_index+j-SCROLL)*VIEW_SCALE+SIDE_WIDTH+1,BASE_HEIGHT+8+k%28,width=m*VIEW_SCALE)
for r in xrange(len(i.data[j])):
#1 indicates note-on, 255 indicates note-off
if i.data[j][r]==1 :
length = 0;
for k in xrange(j, len(i.data)):
if i.data[k][r]==255:
break
length+=1
rgb084084084.blit((time_index+j-SCROLL)*VIEW_SCALE+SIDE_WIDTH+1,BASE_HEIGHT+8+r%28,width=length*VIEW_SCALE)
#draw_rect((time_index+j-SCROLL)*VIEW_SCALE+SIDE_WIDTH+1,BASE_HEIGHT+8+r%28,length*VIEW_SCALE,1,0.33,0.33,0.33);
time_index+=len(i)
track_index+=1
track.img().blit(0,BASE_HEIGHT,width=SIDE_WIDTH,height=track.img().height)
track.labelshadow.x = 15
track.labelshadow.y = (vbarloc-barimg.height)-(num*track.img().height+track.label.font_size)-2
track.label.x = 16
track.label.y = (vbarloc-barimg.height)-(num*track.img().height+track.label.font_size)-3
track.labelshadow.draw()
track.label.draw()
@window.event
def on_draw():
window.clear()
width, height = window.get_size()
global VIEW_EXTENTS
VIEW_EXTENTS = (0,width) # for now, at least
if PLAYMODE=='stage':
stagesprite.scale = max(width/(stageimg.width*1.0), height/(stageimg.height*1.0))
stagesprite.y = vbarloc
stagesprite.draw()
elif PLAYMODE=='keyboard':
keyscale = max((height-vbarloc)/(key_cf_img.height*1.0),0.25)
index = 0
key_cf.scale = keyscale
key_dga.scale = keyscale
key_eb.scale = keyscale
key_cf.y = vbarloc
key_dga.y = vbarloc
key_eb.y = vbarloc
key_black.scale = keyscale
key_black.y = vbarloc+256*keyscale
key_cf_pressed.scale = keyscale
key_dga_pressed.scale = keyscale
key_eb_pressed.scale = keyscale
key_cf_pressed.y = vbarloc
key_dga_pressed.y = vbarloc
key_eb_pressed.y = vbarloc
key_black_pressed.scale = keyscale
key_black_pressed.y = vbarloc+256*keyscale
while index*128*keyscale<width:
key_cf.x = index*128*keyscale; index+=1
key_cf.draw()
key_dga.x = index*128*keyscale; index+=1
key_dga.draw()
key_eb.x = index*128*keyscale; index+=1
key_eb.draw()
key_cf.x = index*128*keyscale; index+=1
key_cf.draw()
key_dga.x = index*128*keyscale; index+=1
key_dga.draw()
key_dga.x = index*128*keyscale; index+=1
key_dga.draw()
key_eb.x = index*128*keyscale; index+=1
key_eb.draw()
index = 0
while index*128*keyscale<width:
key_black.x = (index*128+96)*keyscale
key_black.draw()
index+=1
key_black.x = (index*128+96)*keyscale
key_black.draw()
index+=1
index+=1
key_black.x = (index*128+96)*keyscale
key_black.draw()
index+=1
key_black.x = (index*128+96)*keyscale
key_black.draw()
index+=1
key_black.x = (index*128+96)*keyscale
key_black.draw()
index+=1
index+=1
for i in KEYPRESS_MASK:
if i%12 in (1,3,6,8,10):
x = (int((i-41)*7/12.0+3)*128+96)*keyscale
key_black_pressed.x=x
key_black_pressed.draw()
else:
x = int((i-41)*7/12.0+3)*128*keyscale
if i%12 in (0,5):
key_cf_pressed.x = x
key_cf_pressed.draw()
elif i%12 in (2,7,9):
key_dga_pressed.x = x
key_dga_pressed.draw()
else:
key_eb_pressed.x = x
key_eb_pressed.draw()
#------ Control Bar ----------#
barimg.blit(0,vbarloc-barimg.height,width=width,height=barimg.height)
controlheight = vbarloc-(barimg.height/2+play_img.height/2)
controlsx = width/2
if recording:
recording_img.blit(max(controlsx-100,width/3),vbarloc-(barimg.height/2+record_img.height/2))
else:
record_img.blit(max(controlsx-100,width/3),vbarloc-(barimg.height/2+record_img.height/2))
rw_beg_img.blit(controlsx,controlheight)
controlsx+=rw_beg_img.width
rw_img.blit(controlsx,controlheight)
controlsx+=rw_img.width
if playing:
pause_img.blit(controlsx,controlheight)
controlsx+=pause_img.width
else:
play_img.blit(controlsx,controlheight)
controlsx+=play_img.width
ff_img.blit(controlsx,controlheight)
controlsx+=ff_img.width
ff_end_img.blit(controlsx,controlheight)
#------------------------------#
#---------- Tracks ------------#
rgb184184184.blit(0,0,width=width,height=vbarloc-barimg.height)
for i in xrange(len(TRACKS)):
draw_track(TRACKS[i],i,width)
rgb084084084.blit(150,0,height=vbarloc-barimg.height)
rgb255000000.blit(151+(INDEX-SCROLL)*VIEW_SCALE,0,height=vbarloc-barimg.height)
rgb237237237.blit(151,0,width=width-150,height=16)
rgb084084084.blit(155,8,width=width-159)
slider_img.blit(min(VIEW_SCALE*64+154,width-8),4)
#------------------------------#
@window.event
def on_mouse_press(x, y, button, modifiers):
width, height = window.get_size()
# Put other hit tests here first.
ch = vbarloc-(barimg.height/2+play_img.height/2)
cx = width/2
if y>vbarloc and PLAYMODE=='keyboard':
keyscale = max((height-vbarloc)/(key_cf_img.height*1.0),0.25)
noteval = int(x/(key_cf_img.width*keyscale)*12/7.0)+36
if y<vbarloc+256*keyscale:
if noteval%12 in (1,3,6,8,10):
noteval-=int(int((x+31)/(key_cf_img.width*keyscale)*12/7.0)+36==noteval)*2-1
if not noteval in KEYPRESS_MASK:
KEYPRESS_MASK.append(noteval)
#player = pyglet.media.ManagedSoundPlayer()
#player.queue(c)
#player.pitch = note(noteval)
#player.volume = 127
#player.play()
ACTIVETRACK.play_note(noteval,1)
return None
if max(cx-100,width/3)<x<max(cx-100,width/3)+record_img.width and vbarloc-(barimg.height/2+record_img.height/2)<y<vbarloc-(barimg.height/2)+record_img.height/2:
global playing, recording
if recording:
recording = False
else:
if not playing:
playing = True
#pyglet.clock.schedule_interval(play, 1/PLAYBACK_SPEED)
recording = True
ACTIVETRACK.add(Subtrack())
return None
if cx<x<cx+rw_beg_img.width and ch<y<ch+rw_beg_img.height:
global INDEX
INDEX = 0
return None
cx+=rw_beg_img.width
if cx<x<cx+rw_img.width and ch<y<ch+rw_img.height:
global INDEX
INDEX = (INDEX-1)
INDEX = INDEX-INDEX%STEP
return None
cx+=rw_img.width
if playing:
if cx<x<cx+pause_img.width and ch<y<ch+pause_img.height:
global playing
playing = False
recording = False
#pyglet.clock.unschedule(play)
return None
cx+=pause_img.width
else:
if cx<x<cx+play_img.width and ch<y<ch+play_img.height:
global playing
playing = True
#pyglet.clock.schedule_interval(play, 1/PLAYBACK_SPEED)
return None
cx+=play_img.width
if cx<x<cx+ff_img.width and ch<y<ch+ff_img.height:
global INDEX
INDEX = INDEX-INDEX%STEP+STEP
return None
cx+=ff_img.width
if cx<x<cx+ff_end_img.width and ch<y<ch+ff_end_img.height:
fast_forward_end()
return None
print VIEW_SCALE*64+150, x
if VIEW_SCALE*64+154<x<VIEW_SCALE*64+162 and 4<y<12:
global dragging_scale
dragging_scale = True
print 345
return None
if vbarloc-barimg.height<y<vbarloc:
global dragging_vbar
dragging_vbar = True
else:
print "no"
@window.event
def on_mouse_drag(x, y, dx, dy, buttons, modifiers):
width, height = window.get_size()
if dragging_vbar:
global vbarloc
vbarloc=max(min(vbarloc+dy,height),barimg.height)
elif dragging_scale:
global VIEW_SCALE
VIEW_SCALE = (x-154)/64.0
elif y>vbarloc and PLAYMODE=='keyboard':
global KEYPRESS_MASK
keyscale = max((height-vbarloc)/(key_cf_img.height*1.0),0.125)
noteval = int(x/(key_cf_img.width*keyscale)*12/7.0)+36
if y<vbarloc+256*keyscale:
if noteval%12 in (1,3,6,8,10):
noteval-=int(int((x+31)/(key_cf_img.width*keyscale)*12/7.0)+36==noteval)*2-1
if not noteval in KEYPRESS_MASK:
for i in KEYPRESS_MASK:
ACTIVETRACK.stop_note(i)
KEYPRESS_MASK = []
KEYPRESS_MASK.append(noteval)
ACTIVETRACK.play_note(noteval,1)
return None
'''
'''
@window.event
def on_mouse_release(x, y, button, modifiers):
global dragging_vbar
dragging_vbar = False
global KEYPRESS_MASK
for i in KEYPRESS_MASK:
ACTIVETRACK.stop_note(i)
KEYPRESS_MASK = []
global dragging_scale
dragging_scale = False
@window.event
def on_key_press(symbol, modifiers):
if symbol in KEYMAP:
noteval = KEYMAP[symbol]
if not noteval in KEYPRESS_MASK:
KEYPRESS_MASK.append(noteval)
ACTIVETRACK.play_note(noteval,1)
@window.event
def on_key_release(symbol,modifiers):
if symbol in KEYMAP:
if KEYMAP[symbol] in KEYPRESS_MASK:
del KEYPRESS_MASK[KEYPRESS_MASK.index(KEYMAP[symbol])]
ACTIVETRACK.stop_note(KEYMAP[symbol])
@window.event
def on_close():
inp.stop = True
pyglet.gl.glEnable(pyglet.gl.GL_BLEND)
pyglet.gl.glBlendFunc(pyglet.gl.GL_SRC_ALPHA, pyglet.gl.GL_ONE_MINUS_SRC_ALPHA)
clock.set_fps_limit(128)
#clock.schedule_interval_soft(draw,0.0625)
c = pyglet.resource.media('c.wav', streaming=False)
def play(dt):
global INDEX
if playing:
for i in TRACKS:
i.play(INDEX)
if INDEX<256: #TODO: calculate this value
INDEX+=1
else:
global playing, recording
playing = False
recording = False
if recording:
ACTIVETRACK.currenttrack.add_data()
class input(threading.Thread):
def run(self):
self.stop = False
midiin = rtmidi.RtMidiIn()
ports = range(midiin.getPortCount())
if ports:
for i in ports:
print "Found port", i, midiin.getPortName(i)
midiin.openPort(int(raw_input("Enter MIDI port to use: ")))
while not self.stop:
m = midiin.getMessage(25) # some timeout in ms
if m != None:
if m.isNoteOn():
if not m.getNoteNumber() in KEYPRESS_MASK:
KEYPRESS_MASK.append(m.getNoteNumber())
#play_note(m.getNoteNumber(),(m.getVelocity()/128.0)**2)
ACTIVETRACK.play_note(m.getNoteNumber(),(m.getVelocity()/128.0)**2)
#window.dispatch_events()
elif m.isNoteOff():
if m.getNoteNumber() in KEYPRESS_MASK:
del KEYPRESS_MASK[KEYPRESS_MASK.index(m.getNoteNumber())]
ACTIVETRACK.stop_note(m.getNoteNumber())
else:
if ACTIVETRACK.pitchbend:
pitchbend = m.getPitchWheelValue()/8192.0
pitchbend = (pitchbend-1)*0.122+1
for i in xrange(len(ACTIVETRACK.notes)):
ACTIVETRACK.notes[i].pitchshift = note(i)*pitchbend
pyglet.clock.schedule_once(draw,0.01)
inp = input()
pyglet.clock.schedule_interval(play, 1/PLAYBACK_SPEED)
inp.start()
pyglet.app.run()