|
@@ -533,6 +533,10 @@ public class UserChannelContext {
|
|
|
|
|
|
public void evaluateForNote(MusicXmlNote musicXmlNote, NoteAnalysis noteAnalysis) {
|
|
public void evaluateForNote(MusicXmlNote musicXmlNote, NoteAnalysis noteAnalysis) {
|
|
|
|
|
|
|
|
+ if(noteAnalysis.isIgnore()){
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
double floatingRange = musicXmlNote.getDuration() * hardLevel.getTempoEffectiveRange(musicXmlNote.getDenominator(), musicXmlNote.getDuration()) / 100;
|
|
double floatingRange = musicXmlNote.getDuration() * hardLevel.getTempoEffectiveRange(musicXmlNote.getDenominator(), musicXmlNote.getDuration()) / 100;
|
|
|
|
|
|
double endTime = musicXmlNote.getTimeStamp() + dynamicOffset + floatingRange;
|
|
double endTime = musicXmlNote.getTimeStamp() + dynamicOffset + floatingRange;
|