+
+
+ def handleExpertColumnDown(self, event) :
+ col = event.column
+ if col.state :
+ self.playnote(col, event.pos)
+ self.currentNotePlayed = True
+ else :
+ vel = self.getVelocity(event.pos) * MIDI_VELOCITY_WRONG_NOTE_ATTN
+ vel = int(vel)
+ self.playnote(col, event.pos, vel=vel)
+ self.alternateColumn = col
+ self.currentNotePlayed = False
+
+ def handleColumnUp(self, event) :
+ if self.currentNotePlayed :
+ self.synth.noteoff(0, self.currentColumn.tone.midi)
+ self.displayNext()
+
+ def handleExpertColumnUp(self, event) :
+ if self.currentNotePlayed :
+ self.synth.noteoff(0, self.currentColumn.tone.midi)
+ self.displayNext()
+ else :
+ self.synth.noteoff(0, self.alternateColumn.tone.midi)
+
+ # --- End HID listeners ---
+
+
+ def displayNext(self, event=None) :
+ if self.currentColumn:
+ self.currentColumn.update(False)
+ note, verseIndex = self.noteIterator.next()
+ syllabus = note.lyrics[verseIndex].syllabus()
+ column = self.columns[note.midi]
+ column.update(True, syllabus)
+ self.currentColumn = column
+ self.currentNote = note
+ self.currentNotePlayed = False