|
@@ -94,6 +94,8 @@ export class PedalMarking extends Element {
|
|
|
super();
|
|
|
this.setAttribute('type', 'PedalMarking');
|
|
|
this.EndsStave = false;
|
|
|
+ this.ChangeBegin = false;
|
|
|
+ this.ChangeEnd = false;
|
|
|
this.notes = notes;
|
|
|
this.style = PedalMarking.TEXT;
|
|
|
this.line = 0;
|
|
@@ -175,31 +177,47 @@ export class PedalMarking extends Element {
|
|
|
|
|
|
//If this pedal doesn't end a stave...
|
|
|
if(!this.EndsStave){
|
|
|
- //pedal across a single note or just the end note
|
|
|
- if(!is_pedal_depressed && note){
|
|
|
- switch(pedal.style) {
|
|
|
- case PedalMarking.Styles.BRACKET_OPEN_END:
|
|
|
- case PedalMarking.Styles.BRACKET_OPEN_BOTH:
|
|
|
- case PedalMarking.Styles.MIXED_OPEN_END:
|
|
|
- x = note.getNoteHeadEndX();
|
|
|
- break;
|
|
|
- default:
|
|
|
- x = note.getNoteHeadBeginX() - pedal.render_options.text_margin_right;
|
|
|
- this.startMargin = -pedal.render_options.text_margin_right;
|
|
|
- break;
|
|
|
+ if(note){
|
|
|
+ //pedal across a single note or just the end note
|
|
|
+ if(!is_pedal_depressed){
|
|
|
+ switch(pedal.style) {
|
|
|
+ case PedalMarking.Styles.BRACKET_OPEN_END:
|
|
|
+ case PedalMarking.Styles.BRACKET_OPEN_BOTH:
|
|
|
+ case PedalMarking.Styles.MIXED_OPEN_END:
|
|
|
+ x = note.getNoteHeadEndX();
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ if(this.ChangeEnd){
|
|
|
+ //Start in the middle of the note
|
|
|
+ x = note.getAbsoluteX();
|
|
|
+ } else {
|
|
|
+ x = note.getNoteHeadBeginX() - pedal.render_options.text_margin_right;
|
|
|
+ this.startMargin = -pedal.render_options.text_margin_right;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ } else if(this.ChangeBegin){
|
|
|
+ x = note.getAbsoluteX();
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
|
- //pedal across a single note or just the end note
|
|
|
+ //Ends stave and we are at the end...
|
|
|
if(!is_pedal_depressed){
|
|
|
//IF we are the end, set the end to the stave end
|
|
|
if(note){
|
|
|
- x = note.getStave().end_x + this.endStaveAddedWidth - pedal.render_options.text_margin_right;
|
|
|
+ if(this.ChangeEnd){
|
|
|
+ //Start in the middle of the note
|
|
|
+ x = note.getAbsoluteX();
|
|
|
+ } else {
|
|
|
+ x = note.getStave().end_x + this.endStaveAddedWidth - pedal.render_options.text_margin_right;
|
|
|
+ }
|
|
|
} else {
|
|
|
x = this.endStave.end_x + this.endStaveAddedWidth - pedal.render_options.text_margin_right;
|
|
|
}
|
|
|
|
|
|
this.endMargin = -pedal.render_options.text_margin_right;
|
|
|
+ } else if (this.ChangeBegin){
|
|
|
+ x = note.getAbsoluteX();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -251,7 +269,13 @@ export class PedalMarking extends Element {
|
|
|
if (pedal.style === PedalMarking.Styles.BRACKET_OPEN_BEGIN || pedal.style === PedalMarking.Styles.BRACKET_OPEN_BOTH) {
|
|
|
ctx.moveTo(x + x_shift, y);
|
|
|
} else {
|
|
|
+ if(this.ChangeBegin){
|
|
|
+ x += 5;
|
|
|
+ }
|
|
|
ctx.moveTo(x, y - pedal.render_options.bracket_height);
|
|
|
+ if(this.ChangeBegin){
|
|
|
+ x += 5;
|
|
|
+ }
|
|
|
ctx.lineTo(x + x_shift, y);
|
|
|
}
|
|
|
ctx.stroke();
|
|
@@ -267,6 +291,9 @@ export class PedalMarking extends Element {
|
|
|
ctx.lineTo(x + x_shift, y);
|
|
|
if (pedal.style !== PedalMarking.Styles.BRACKET_OPEN_END && pedal.style !== PedalMarking.Styles.MIXED_OPEN_END &&
|
|
|
pedal.style !== PedalMarking.Styles.BRACKET_OPEN_BOTH) {
|
|
|
+ if(this.ChangeEnd){
|
|
|
+ x += 5;
|
|
|
+ }
|
|
|
ctx.lineTo(x, y - pedal.render_options.bracket_height);
|
|
|
}
|
|
|
ctx.stroke();
|