123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- import {Staff} from "../VoiceData/Staff";
- import {BoundingBox} from "./BoundingBox";
- import {Instrument} from "../Instrument";
- import {GraphicalLine} from "./GraphicalLine";
- import {GraphicalStaffEntry} from "./GraphicalStaffEntry";
- import {GraphicalObject} from "./GraphicalObject";
- import {StaffMeasure} from "./StaffMeasure";
- import {MusicSystem} from "./MusicSystem";
- import {StaffLineActivitySymbol} from "./StaffLineActivitySymbol";
- import {PointF2D} from "../../Common/DataObjects/PointF2D";
- import {GraphicalLabel} from "./GraphicalLabel";
- /**
- * A StaffLine contains the [[Measure]]s in one line of the music sheet
- * (one instrument, one line, until a line break)
- */
- export abstract class StaffLine extends GraphicalObject {
- protected measures: StaffMeasure[] = [];
- protected staffLines: GraphicalLine[] = new Array(5);
- protected parentMusicSystem: MusicSystem;
- protected parentStaff: Staff;
- protected skyLine: number[];
- protected bottomLine: number[];
- protected lyricLines: GraphicalLine[] = [];
- protected lyricsDashes: GraphicalLabel[] = [];
- constructor(parentSystem: MusicSystem, parentStaff: Staff) {
- super();
- this.parentMusicSystem = parentSystem;
- this.parentStaff = parentStaff;
- this.boundingBox = new BoundingBox(this, parentSystem.PositionAndShape);
- }
- public get Measures(): StaffMeasure[] {
- return this.measures;
- }
- public set Measures(value: StaffMeasure[]) {
- this.measures = value;
- }
- public get StaffLines(): GraphicalLine[] {
- return this.staffLines;
- }
- public set StaffLines(value: GraphicalLine[]) {
- this.staffLines = value;
- }
- public get NextStaffLine(): StaffLine {
- const idxInParent: number = this.parentMusicSystem.StaffLines.indexOf(this);
- return idxInParent !== this.parentMusicSystem.StaffLines.length ? this.parentMusicSystem.StaffLines[idxInParent + 1] : undefined;
- }
- public get LyricLines(): GraphicalLine[] {
- return this.lyricLines;
- }
- public set LyricLines(value: GraphicalLine[]) {
- this.lyricLines = value;
- }
- public get LyricsDashes(): GraphicalLabel[] {
- return this.lyricsDashes;
- }
- public set LyricsDashes(value: GraphicalLabel[]) {
- this.lyricsDashes = value;
- }
- public get ParentMusicSystem(): MusicSystem {
- return this.parentMusicSystem;
- }
- public set ParentMusicSystem(value: MusicSystem) {
- this.parentMusicSystem = value;
- }
- public get ParentStaff(): Staff {
- return this.parentStaff;
- }
- public set ParentStaff(value: Staff) {
- this.parentStaff = value;
- }
- public get SkyLine(): number[] {
- return this.skyLine;
- }
- public set SkyLine(value: number[]) {
- this.skyLine = value;
- }
- public get BottomLine(): number[] {
- return this.bottomLine;
- }
- public set BottomLine(value: number[]) {
- this.bottomLine = value;
- }
- public addActivitySymbolClickArea(): void {
- const activitySymbol: StaffLineActivitySymbol = new StaffLineActivitySymbol(this);
- const staffLinePsi: BoundingBox = this.PositionAndShape;
- activitySymbol.PositionAndShape.RelativePosition =
- new PointF2D(staffLinePsi.RelativePosition.x + staffLinePsi.BorderRight + 0.5, staffLinePsi.RelativePosition.y + 0.5);
- activitySymbol.PositionAndShape.Parent = this.parentMusicSystem.PositionAndShape;
- }
- /**
- * True iff [[StaffLine]] belongs to an [[Instrument]] with more than one [[Staff]].
- * @returns {boolean}
- */
- public isPartOfMultiStaffInstrument(): boolean {
- const instrument: Instrument = this.parentStaff.ParentInstrument;
- if (instrument.Staves.length > 1) {
- return true;
- }
- return false;
- }
- /**
- * Find the [[GraphicalStaffEntry]] closest to the given xPosition.
- * @param xPosition
- * @returns {GraphicalStaffEntry}
- */
- public findClosestStaffEntry(xPosition: number): GraphicalStaffEntry {
- let closestStaffentry: GraphicalStaffEntry = undefined;
- for (let idx: number = 0, len: number = this.Measures.length; idx < len; ++idx) {
- const graphicalMeasure: StaffMeasure = this.Measures[idx];
- for (let idx2: number = 0, len2: number = graphicalMeasure.staffEntries.length; idx2 < len2; ++idx2) {
- const graphicalStaffEntry: GraphicalStaffEntry = graphicalMeasure.staffEntries[idx2];
- if (
- Math.abs(graphicalStaffEntry.PositionAndShape.RelativePosition.x - xPosition + graphicalMeasure.PositionAndShape.RelativePosition.x) < 5.0
- ) {
- closestStaffentry = graphicalStaffEntry;
- }
- }
- }
- return closestStaffentry;
- }
- }
|