EngravingRules.ts 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871
  1. import { PagePlacementEnum } from "./GraphicalMusicPage";
  2. //import {MusicSymbol} from "./MusicSymbol";
  3. import log from "loglevel";
  4. import { TextAlignmentEnum } from "../../Common/Enums/TextAlignment";
  5. import { PlacementEnum } from "../VoiceData/Expressions/AbstractExpression";
  6. import { AutoBeamOptions, AlignRestOption, FillEmptyMeasuresWithWholeRests } from "../../OpenSheetMusicDisplay/OSMDOptions";
  7. import { ColoringModes as ColoringMode } from "./DrawingParameters";
  8. import { Dictionary } from "typescript-collections";
  9. import { FontStyles } from "../../Common/Enums";
  10. import { NoteEnum } from "../../Common/DataObjects/Pitch";
  11. import { ChordSymbolEnum, CustomChord, DegreesInfo } from "../../MusicalScore/VoiceData/ChordSymbolContainer";
  12. import { GraphicalNote } from "./GraphicalNote";
  13. import { Note } from "../VoiceData/Note";
  14. /** Rendering and Engraving options, more fine-grained than [[IOSMDOptions]].
  15. * Not all of these options are meant to be modified by users of the library,
  16. * full support is only given for [[IOSMDOptions]].
  17. * Nevertheless, there are many useful options here,
  18. * like Render* to (not) render certain elements (e.g. osmd.rules.RenderRehearsalMarks = false)
  19. */
  20. export class EngravingRules {
  21. /** A unit of distance. 1.0 is the distance between lines of a stave for OSMD, which is 10 pixels in Vexflow. */
  22. public static unit: number = 1.0;
  23. public SamplingUnit: number;
  24. public StaccatoShorteningFactor: number;
  25. /** Height (size) of the sheet title. */
  26. public SheetTitleHeight: number;
  27. public SheetSubtitleHeight: number;
  28. public SheetMinimumDistanceBetweenTitleAndSubtitle: number;
  29. public SheetComposerHeight: number;
  30. public SheetAuthorHeight: number;
  31. public CompactMode: boolean;
  32. public PagePlacementEnum: PagePlacementEnum;
  33. public PageHeight: number;
  34. public PageTopMargin: number;
  35. public PageTopMarginNarrow: number;
  36. public PageBottomMargin: number;
  37. public PageLeftMargin: number;
  38. public PageRightMargin: number;
  39. public TitleTopDistance: number;
  40. public TitleBottomDistance: number;
  41. public SystemLeftMargin: number;
  42. public SystemRightMargin: number;
  43. public SystemLabelsRightMargin: number;
  44. public SystemComposerDistance: number;
  45. public InstrumentLabelTextHeight: number;
  46. public MinimumDistanceBetweenSystems: number;
  47. public MinSkyBottomDistBetweenSystems: number;
  48. public LastSystemMaxScalingFactor: number;
  49. public StaffDistance: number;
  50. public BetweenStaffDistance: number;
  51. public StaffHeight: number;
  52. public TabStaffInterlineHeight: number;
  53. public BetweenStaffLinesDistance: number;
  54. /** Whether to automatically beam notes that don't already have beams in XML. */
  55. public AutoBeamNotes: boolean;
  56. /** Options for autoBeaming like whether to beam over rests. See AutoBeamOptions interface. */
  57. public AutoBeamOptions: AutoBeamOptions;
  58. public BeamWidth: number;
  59. public BeamSpaceWidth: number;
  60. public BeamForwardLength: number;
  61. public FlatBeams: boolean;
  62. public FlatBeamOffset: number;
  63. public FlatBeamOffsetPerBeam: number;
  64. public ClefLeftMargin: number;
  65. public ClefRightMargin: number;
  66. /** How many unique note positions a percussion score needs to have to not be rendered on one line. */
  67. public PercussionOneLineCutoff: number;
  68. public PercussionForceVoicesOneLineCutoff: number;
  69. public PercussionUseXMLDisplayStep: boolean;
  70. public PercussionXMLDisplayStepNoteValueShift: number;
  71. public PercussionOneLineXMLDisplayStepOctaveOffset: number;
  72. public BetweenKeySymbolsDistance: number;
  73. public KeyRightMargin: number;
  74. public RhythmRightMargin: number;
  75. public ShowRhythmAgainAfterPartEndOrFinalBarline: boolean;
  76. public NewPartAndSystemAfterFinalBarline: boolean;
  77. public InStaffClefScalingFactor: number;
  78. public DistanceBetweenNaturalAndSymbolWhenCancelling: number;
  79. public NoteHelperLinesOffset: number;
  80. public MeasureLeftMargin: number;
  81. public MeasureRightMargin: number;
  82. public DistanceBetweenLastInstructionAndRepetitionBarline: number;
  83. public ArpeggioDistance: number;
  84. public IdealStemLength: number;
  85. public StemNoteHeadBorderYOffset: number;
  86. public StemWidth: number;
  87. public StemMargin: number;
  88. public StemMinLength: number;
  89. public StemMaxLength: number;
  90. public BeamSlopeMaxAngle: number;
  91. public StemMinAllowedDistanceBetweenNoteHeadAndBeamLine: number;
  92. public SetWantedStemDirectionByXml: boolean;
  93. public GraceNoteScalingFactor: number;
  94. public GraceNoteXOffset: number;
  95. public WedgeOpeningLength: number;
  96. public WedgeMeasureEndOpeningLength: number;
  97. public WedgeMeasureBeginOpeningLength: number;
  98. public WedgePlacementAboveY: number;
  99. public WedgePlacementBelowY: number;
  100. public WedgeHorizontalMargin: number;
  101. public WedgeVerticalMargin: number;
  102. public DistanceOffsetBetweenTwoHorizontallyCrossedWedges: number;
  103. public WedgeMinLength: number;
  104. public WedgeEndDistanceBetweenTimestampsFactor: number;
  105. public DistanceBetweenAdjacentDynamics: number;
  106. public TempoChangeMeasureValidity: number;
  107. public TempoContinousFactor: number;
  108. public StaccatoScalingFactor: number;
  109. public BetweenDotsDistance: number;
  110. public OrnamentAccidentalScalingFactor: number;
  111. public ChordSymbolTextHeight: number;
  112. public ChordSymbolTextAlignment: TextAlignmentEnum;
  113. public ChordSymbolRelativeXOffset: number;
  114. public ChordSymbolXSpacing: number;
  115. public ChordOverlapAllowedIntoNextMeasure: number;
  116. public ChordSymbolYOffset: number;
  117. public ChordSymbolYPadding: number;
  118. public ChordSymbolYAlignment: boolean;
  119. public ChordSymbolYAlignmentScope: string;
  120. public ChordSymbolLabelTexts: Dictionary<ChordSymbolEnum, string>;
  121. public CustomChords: CustomChord[];
  122. public RepetitionSymbolsYOffset: number;
  123. public RehearsalMarkXOffset: number;
  124. public RehearsalMarkXOffsetDefault: number;
  125. public RehearsalMarkXOffsetSystemStartMeasure: number;
  126. public RehearsalMarkYOffset: number;
  127. public RehearsalMarkYOffsetDefault: number;
  128. public RehearsalMarkFontSize: number;
  129. public MeasureNumberLabelHeight: number;
  130. public MeasureNumberLabelOffset: number;
  131. public MeasureNumberLabelXOffset: number;
  132. /** Whether tuplets should display ratio (3:2 instead of 3 for triplet). Default false. */
  133. public TupletsRatioed: boolean;
  134. /** Whether all tuplets should be bracketed (e.g. |--5--| instead of 5). Default false.
  135. * If false, only tuplets given as bracketed in XML (bracket="yes") will be bracketed.
  136. * (If not given in XML, bracketing is implementation-dependent according to standard)
  137. */
  138. public TupletsBracketed: boolean;
  139. /** Whether all triplets should be bracketed. Overrides tupletsBracketed for triplets.
  140. * If false, only triplets given as bracketed in XML (bracket="yes") will be bracketed.
  141. * (Bracketing all triplets can be cluttering)
  142. */
  143. public TripletsBracketed: boolean;
  144. public TupletNumberLabelHeight: number;
  145. public TupletNumberYOffset: number;
  146. public LabelMarginBorderFactor: number;
  147. public TupletVerticalLineLength: number;
  148. public TupletNumbersInTabs: boolean;
  149. public RepetitionEndingLabelHeight: number;
  150. public RepetitionEndingLabelXOffset: number;
  151. public RepetitionEndingLabelYOffset: number;
  152. public RepetitionEndingLineYLowerOffset: number;
  153. public RepetitionEndingLineYUpperOffset: number;
  154. public VoltaOffset: number;
  155. /** Default alignment of lyrics.
  156. * Left alignments will extend text to the right of the bounding box,
  157. * which facilitates spacing by extending measure width.
  158. */
  159. public LyricsAlignmentStandard: TextAlignmentEnum;
  160. public LyricsHeight: number;
  161. public LyricsYOffsetToStaffHeight: number;
  162. public VerticalBetweenLyricsDistance: number;
  163. public HorizontalBetweenLyricsDistance: number;
  164. public BetweenSyllableMaximumDistance: number;
  165. public BetweenSyllableMinimumDistance: number;
  166. public LyricOverlapAllowedIntoNextMeasure: number;
  167. public MinimumDistanceBetweenDashes: number;
  168. public MaximumLyricsElongationFactor: number;
  169. public SlurPlacementFromXML: boolean;
  170. public BezierCurveStepSize: number;
  171. public TPower3: number[];
  172. public OneMinusTPower3: number[];
  173. public FactorOne: number[];
  174. public FactorTwo: number[];
  175. public TieGhostObjectWidth: number;
  176. public TieYPositionOffsetFactor: number;
  177. public MinimumNeededXspaceForTieGhostObject: number;
  178. public TieHeightMinimum: number;
  179. public TieHeightMaximum: number;
  180. public TieHeightInterpolationK: number;
  181. public TieHeightInterpolationD: number;
  182. public SlurNoteHeadYOffset: number;
  183. public SlurStemXOffset: number;
  184. public SlurSlopeMaxAngle: number;
  185. public SlurTangentMinAngle: number;
  186. public SlurTangentMaxAngle: number;
  187. public SlurHeightFactor: number;
  188. public SlurHeightFlattenLongSlursFactorByWidth: number;
  189. public SlurHeightFlattenLongSlursFactorByAngle: number;
  190. public SlurHeightFlattenLongSlursCutoffAngle: number;
  191. public SlurHeightFlattenLongSlursCutoffWidth: number;
  192. public SlursStartingAtSameStaffEntryYOffset: number;
  193. public SlurMaximumYControlPointDistance: number;
  194. public InstantaneousTempoTextHeight: number;
  195. public ContinuousDynamicTextHeight: number;
  196. public MoodTextHeight: number;
  197. public UnknownTextHeight: number;
  198. public ContinuousTempoTextHeight: number;
  199. public VexFlowDefaultNotationFontScale: number;
  200. public VexFlowDefaultTabFontScale: number;
  201. public TremoloStrokeScale: number;
  202. public TremoloYSpacingScale: number;
  203. public StaffLineWidth: number;
  204. public StaffLineColor: string;
  205. public LedgerLineWidth: number;
  206. public LedgerLineStrokeStyle: string;
  207. public LedgerLineColorDefault: string;
  208. public WedgeLineWidth: number;
  209. public TupletLineWidth: number;
  210. public LyricUnderscoreLineWidth: number;
  211. public SystemThinLineWidth: number;
  212. public SystemBoldLineWidth: number;
  213. public SystemRepetitionEndingLineWidth: number;
  214. public SystemDotWidth: number;
  215. public MultipleRestMeasureDefaultWidth: number;
  216. public DistanceBetweenVerticalSystemLines: number;
  217. public DistanceBetweenDotAndLine: number;
  218. public RepeatEndStartPadding: number;
  219. public OctaveShiftLineWidth: number;
  220. public OctaveShiftVerticalLineLength: number;
  221. public GraceLineWidth: number;
  222. public MinimumStaffLineDistance: number;
  223. public MinSkyBottomDistBetweenStaves: number;
  224. public MinimumCrossedBeamDifferenceMargin: number;
  225. public VoiceSpacingMultiplierVexflow: number;
  226. public VoiceSpacingAddendVexflow: number;
  227. public PickupMeasureWidthMultiplier: number;
  228. public DisplacedNoteMargin: number;
  229. public MinNoteDistance: number;
  230. public SubMeasureXSpacingThreshold: number;
  231. public MeasureDynamicsMaxScalingFactor: number;
  232. public WholeRestXShiftVexflow: number;
  233. public MetronomeMarksDrawn: boolean;
  234. public MetronomeMarkXShift: number;
  235. public MetronomeMarkYShift: number;
  236. public SoftmaxFactorVexFlow: number;
  237. public MaxInstructionsConstValue: number;
  238. public NoteDistances: number[] = [1.0, 1.0, 1.3, 1.6, 2.0, 2.5, 3.0, 4.0];
  239. public NoteDistancesScalingFactors: number[] = [1.0, 2.0, 4.0, 8.0, 16.0, 32.0, 64.0, 128.0];
  240. public DurationDistanceDict: {[_: number]: number } = {};
  241. public DurationScalingDistanceDict: {[_: number]: number } = {};
  242. /** Whether to align rests. 0 = Never, 1 = Always, 2 = Auto.
  243. * Currently not recommended because rests are now positioned to avoid collisions with notes. */
  244. public AlignRests: AlignRestOption; // 0 = false, 1 = true, 2 = auto
  245. public RestCollisionYPadding: number;
  246. public FillEmptyMeasuresWithWholeRest: FillEmptyMeasuresWithWholeRests | number;
  247. public ArpeggiosGoAcrossVoices: boolean;
  248. public RenderArpeggios: boolean;
  249. public RenderSlurs: boolean;
  250. public ColoringMode: ColoringMode;
  251. public ColoringEnabled: boolean;
  252. public ColorStemsLikeNoteheads: boolean;
  253. public ColorFlags: boolean;
  254. public ColorBeams: boolean;
  255. public ColoringSetCurrent: Dictionary<NoteEnum|number, string>;
  256. public DefaultColorNotehead: string;
  257. public DefaultColorRest: string;
  258. public DefaultColorStem: string;
  259. public DefaultColorLabel: string;
  260. public DefaultColorTitle: string;
  261. public DefaultColorCursor: string;
  262. public DefaultFontFamily: string;
  263. public DefaultFontStyle: FontStyles;
  264. public DefaultVexFlowNoteFont: string;
  265. public MaxMeasureToDrawIndex: number;
  266. public MinMeasureToDrawIndex: number;
  267. public MaxPageToDrawNumber: number;
  268. public MaxSystemToDrawNumber: number;
  269. /** Whether to render a label for the composer of the piece at the top of the sheet. */
  270. public RenderComposer: boolean;
  271. public RenderTitle: boolean;
  272. public RenderSubtitle: boolean;
  273. public RenderLyricist: boolean;
  274. public RenderPartNames: boolean;
  275. public RenderPartAbbreviations: boolean;
  276. public RenderFingerings: boolean;
  277. public RenderMeasureNumbers: boolean;
  278. public RenderMeasureNumbersOnlyAtSystemStart: boolean;
  279. public UseXMLMeasureNumbers: boolean;
  280. public RenderLyrics: boolean;
  281. public RenderChordSymbols: boolean;
  282. public RenderMultipleRestMeasures: boolean;
  283. public AutoGenerateMutipleRestMeasuresFromRestMeasures: boolean;
  284. public RenderRehearsalMarks: boolean;
  285. public RenderKeySignatures: boolean;
  286. public RenderTimeSignatures: boolean;
  287. public DynamicExpressionMaxDistance: number;
  288. public DynamicExpressionSpacer: number;
  289. public MpatMode: boolean;
  290. public ArticulationPlacementFromXML: boolean;
  291. /** Where to draw fingerings (Above, Below, AboveOrBelow, Left, Right, or Auto).
  292. * Default AboveOrBelow. Auto experimental. */
  293. public FingeringPosition: PlacementEnum;
  294. public FingeringPositionFromXML: boolean;
  295. public FingeringPositionGrace: PlacementEnum;
  296. public FingeringInsideStafflines: boolean;
  297. public FingeringLabelFontHeight: number;
  298. public FingeringOffsetX: number;
  299. public FingeringOffsetY: number;
  300. public FingeringPaddingY: number;
  301. public FingeringTextSize: number;
  302. /** Whether to render string numbers in classical scores, i.e. not the string numbers in tabs, but e.g. for violin. */
  303. public RenderStringNumbersClassical: boolean;
  304. /** This is not for tabs, but for classical scores, especially violin. */
  305. public StringNumberOffsetY: number;
  306. public NewSystemAtXMLNewSystemAttribute: boolean;
  307. public NewPageAtXMLNewPageAttribute: boolean;
  308. public PageFormat: PageFormat;
  309. public PageBackgroundColor: string; // vexflow-color-string (#FFFFFF). Default undefined/transparent.
  310. public PerformanceMode: boolean;
  311. public RenderSingleHorizontalStaffline: boolean;
  312. public RestoreCursorAfterRerender: boolean;
  313. public StretchLastSystemLine: boolean;
  314. public SpacingBetweenTextLines: number;
  315. public NoteToGraphicalNoteMap: Dictionary<number, GraphicalNote>;
  316. // this is basically a WeakMap, except we save the id in the Note instead of using a WeakMap.
  317. public NoteToGraphicalNoteMapObjectCount: number = 0;
  318. public static FixStafflineBoundingBox: boolean; // TODO temporary workaround
  319. // Playback
  320. public PlayAlreadyStartedNotesFromCursorPosition: boolean = false;
  321. constructor() {
  322. this.loadDefaultValues();
  323. }
  324. public loadDefaultValues(): void {
  325. // global variables
  326. this.SamplingUnit = EngravingRules.unit * 3;
  327. // mpat specific settings
  328. this.MpatMode = true;
  329. // Page Label Variables
  330. this.SheetTitleHeight = 4.0;
  331. this.SheetSubtitleHeight = 2.0;
  332. this.SheetMinimumDistanceBetweenTitleAndSubtitle = 1.0;
  333. this.SheetComposerHeight = 2.0;
  334. this.SheetAuthorHeight = 2.0;
  335. // Staff sizing Variables
  336. this.CompactMode = false;
  337. this.PagePlacementEnum = PagePlacementEnum.Down;
  338. this.PageHeight = 100001.0;
  339. this.PageTopMargin = 5.0;
  340. this.PageTopMarginNarrow = 0.0; // for compact mode
  341. this.PageBottomMargin = 5.0;
  342. this.PageLeftMargin = 5.0;
  343. this.PageRightMargin = 5.0;
  344. this.TitleTopDistance = 5.0;
  345. this.TitleBottomDistance = 1.0;
  346. this.StaffDistance = 7.0;
  347. this.BetweenStaffDistance = 5.0;
  348. this.MinimumStaffLineDistance = 4.0;
  349. this.MinSkyBottomDistBetweenStaves = 1.0; // default. compacttight mode sets it to 1.0 (as well).
  350. // System Sizing and Label Variables
  351. this.StaffHeight = 4.0;
  352. this.TabStaffInterlineHeight = 1.1111;
  353. this.BetweenStaffLinesDistance = EngravingRules.unit;
  354. this.SystemLeftMargin = 0.0;
  355. this.SystemRightMargin = 0.0;
  356. this.SystemLabelsRightMargin = 2.0;
  357. this.SystemComposerDistance = 2.0;
  358. this.InstrumentLabelTextHeight = 2;
  359. this.MinimumDistanceBetweenSystems = 7.0;
  360. this.MinSkyBottomDistBetweenSystems = 5.0;
  361. this.LastSystemMaxScalingFactor = 1.4;
  362. // autoBeam options
  363. this.AutoBeamNotes = false;
  364. this.AutoBeamOptions = {
  365. beam_middle_rests_only: false,
  366. beam_rests: false,
  367. maintain_stem_directions: false
  368. };
  369. // Beam Sizing Variables
  370. this.BeamWidth = EngravingRules.unit / 2.0;
  371. this.BeamSpaceWidth = EngravingRules.unit / 3.0;
  372. this.BeamForwardLength = 1.25 * EngravingRules.unit;
  373. this.FlatBeams = false;
  374. this.FlatBeamOffset = 20;
  375. this.FlatBeamOffsetPerBeam = 10;
  376. // Beam Sizing Variables
  377. this.ClefLeftMargin = 0.5;
  378. this.ClefRightMargin = 0.75;
  379. this.PercussionOneLineCutoff = 3; // percussion parts with <3 unique note positions rendered on one line
  380. this.PercussionForceVoicesOneLineCutoff = 1;
  381. this.PercussionUseXMLDisplayStep = true;
  382. this.PercussionXMLDisplayStepNoteValueShift = 0;
  383. this.PercussionOneLineXMLDisplayStepOctaveOffset = 0;
  384. this.BetweenKeySymbolsDistance = 0.2;
  385. this.KeyRightMargin = 0.75;
  386. this.RhythmRightMargin = 1.25;
  387. this.ShowRhythmAgainAfterPartEndOrFinalBarline = true;
  388. this.NewPartAndSystemAfterFinalBarline = false;
  389. this.InStaffClefScalingFactor = 0.8;
  390. this.DistanceBetweenNaturalAndSymbolWhenCancelling = 0.4;
  391. // Beam Sizing Variables
  392. this.NoteHelperLinesOffset = 0.25;
  393. this.MeasureLeftMargin = 0.7;
  394. this.MeasureRightMargin = 0.0;
  395. this.DistanceBetweenLastInstructionAndRepetitionBarline = 1.0;
  396. this.ArpeggioDistance = 0.6;
  397. // Stems Variables
  398. this.StaccatoShorteningFactor = 2;
  399. this.IdealStemLength = 3.0;
  400. this.StemNoteHeadBorderYOffset = 0.2;
  401. this.StemMargin = 0.2;
  402. this.StemMinLength = 2.5;
  403. this.StemMaxLength = 4.5;
  404. this.BeamSlopeMaxAngle = 10.0;
  405. this.StemMinAllowedDistanceBetweenNoteHeadAndBeamLine = 1.0;
  406. this.SetWantedStemDirectionByXml = true;
  407. // also see stemwidth further below
  408. // GraceNote Variables
  409. this.GraceNoteScalingFactor = 0.6;
  410. this.GraceNoteXOffset = 0.2;
  411. // Wedge Variables
  412. this.WedgeOpeningLength = 1.2;
  413. this.WedgeMeasureEndOpeningLength = 0.75;
  414. this.WedgeMeasureBeginOpeningLength = 0.75;
  415. this.WedgePlacementAboveY = -1.5;
  416. this.WedgePlacementBelowY = 1.5;
  417. this.WedgeHorizontalMargin = 0.6;
  418. this.WedgeVerticalMargin = 0.5;
  419. this.DistanceOffsetBetweenTwoHorizontallyCrossedWedges = 0.3;
  420. this.WedgeMinLength = 2.0;
  421. this.WedgeEndDistanceBetweenTimestampsFactor = 1.75;
  422. this.DistanceBetweenAdjacentDynamics = 0.75;
  423. // Tempo Variables
  424. this.TempoChangeMeasureValidity = 4;
  425. this.TempoContinousFactor = 0.7;
  426. // various
  427. this.StaccatoScalingFactor = 0.8;
  428. this.BetweenDotsDistance = 0.8;
  429. this.OrnamentAccidentalScalingFactor = 0.65;
  430. this.ChordSymbolTextHeight = 2.0;
  431. this.ChordSymbolTextAlignment = TextAlignmentEnum.LeftBottom;
  432. this.ChordSymbolRelativeXOffset = -1.0;
  433. this.ChordSymbolXSpacing = 1.0;
  434. this.ChordOverlapAllowedIntoNextMeasure = 0;
  435. this.ChordSymbolYOffset = 0.1;
  436. this.ChordSymbolYPadding = 0.0;
  437. this.ChordSymbolYAlignment = true;
  438. this.ChordSymbolYAlignmentScope = "staffline"; // "measure" or "staffline"
  439. this.ChordSymbolLabelTexts = new Dictionary<ChordSymbolEnum, string>();
  440. this.resetChordSymbolLabelTexts(this.ChordSymbolLabelTexts);
  441. this.CustomChords = [];
  442. this.resetChordNames();
  443. this.RepetitionSymbolsYOffset = 0;
  444. this.RehearsalMarkXOffsetDefault = 10; // avoid collision with metronome number
  445. this.RehearsalMarkXOffset = 0; // user defined
  446. this.RehearsalMarkXOffsetSystemStartMeasure = -20; // good test: Haydn Concertante
  447. this.RehearsalMarkYOffsetDefault = -15;
  448. this.RehearsalMarkYOffset = 0; // user defined
  449. this.RehearsalMarkFontSize = 10; // vexflow default: 12, too big with chord symbols
  450. // Tuplets, MeasureNumber and TupletNumber Labels
  451. this.MeasureNumberLabelHeight = 1.5 * EngravingRules.unit;
  452. this.MeasureNumberLabelOffset = 2;
  453. this.MeasureNumberLabelXOffset = -0.5;
  454. this.TupletsRatioed = false;
  455. this.TupletsBracketed = false;
  456. this.TripletsBracketed = false; // special setting for triplets, overrides tuplet setting (for triplets only)
  457. this.TupletNumberLabelHeight = 1.5 * EngravingRules.unit;
  458. this.TupletNumberYOffset = 0.5;
  459. this.LabelMarginBorderFactor = 0.1;
  460. this.TupletVerticalLineLength = 0.5;
  461. this.TupletNumbersInTabs = false; // disabled by default, nonstandard in tabs, at least how we show them in non-tabs.
  462. // Slur and Tie variables
  463. this.SlurPlacementFromXML = true;
  464. this.BezierCurveStepSize = 1000;
  465. this.calculateCurveParametersArrays();
  466. this.TieGhostObjectWidth = 0.75;
  467. this.TieYPositionOffsetFactor = 0.3;
  468. this.MinimumNeededXspaceForTieGhostObject = 1.0;
  469. this.TieHeightMinimum = 0.28;
  470. this.TieHeightMaximum = 1.2;
  471. this.TieHeightInterpolationK = 0.0288;
  472. this.TieHeightInterpolationD = 0.136;
  473. this.SlurNoteHeadYOffset = 0.5;
  474. this.SlurStemXOffset = 0.3;
  475. this.SlurSlopeMaxAngle = 15.0;
  476. this.SlurTangentMinAngle = 30.0;
  477. this.SlurTangentMaxAngle = 80.0;
  478. this.SlurHeightFactor = 1; // 1 = 100% (standard height). 2 = 100% flattening of all slurs.
  479. this.SlurHeightFlattenLongSlursFactorByWidth = 0.24; // additional flattening for long slurs the longer they are.
  480. this.SlurHeightFlattenLongSlursFactorByAngle = 0.36; // when one of these factors is high, increasing the other has a very strong effect.
  481. this.SlurHeightFlattenLongSlursCutoffAngle = 47;
  482. this.SlurHeightFlattenLongSlursCutoffWidth = 16; // 15 ~ slur between measure's first notes in 4/4. 14 -> problem with test_slurs_highNotes
  483. this.SlursStartingAtSameStaffEntryYOffset = 0.8;
  484. //Maximum y difference between control points. Forces slurs to have less 'weight' either way in the x direction
  485. this.SlurMaximumYControlPointDistance = undefined;
  486. // Repetitions
  487. this.RepetitionEndingLabelHeight = 2.0;
  488. this.RepetitionEndingLabelXOffset = 0.5;
  489. this.RepetitionEndingLabelYOffset = 0.3;
  490. this.RepetitionEndingLineYLowerOffset = 0.5;
  491. this.RepetitionEndingLineYUpperOffset = 0.3;
  492. this.VoltaOffset = 2.5;
  493. // Lyrics
  494. this.LyricsAlignmentStandard = TextAlignmentEnum.LeftBottom; // CenterBottom and LeftBottom tested, spacing-optimized
  495. this.LyricsHeight = 2.0; // actually size of lyrics
  496. this.LyricsYOffsetToStaffHeight = 0.0; // distance between lyrics and staff. could partly be even lower/dynamic
  497. this.VerticalBetweenLyricsDistance = 0.5;
  498. this.HorizontalBetweenLyricsDistance = 0.2;
  499. this.BetweenSyllableMaximumDistance = 10.0;
  500. this.BetweenSyllableMinimumDistance = 0.5; // + 1.0 for CenterAlignment added in lyrics spacing
  501. this.LyricOverlapAllowedIntoNextMeasure = 3.4; // optimal for dashed last lyric, see Land der Berge
  502. this.MinimumDistanceBetweenDashes = 10;
  503. this.MaximumLyricsElongationFactor = 2.5;
  504. // expressions variables
  505. this.InstantaneousTempoTextHeight = 2.3;
  506. this.ContinuousDynamicTextHeight = 2.3;
  507. this.MoodTextHeight = 2.3;
  508. this.UnknownTextHeight = 2.0;
  509. this.ContinuousTempoTextHeight = 2.3;
  510. this.DynamicExpressionMaxDistance = 2;
  511. this.DynamicExpressionSpacer = 0.5;
  512. // Line Widths
  513. this.VexFlowDefaultNotationFontScale = 39; // scales notes, including rests. default value 39 in Vexflow.
  514. this.VexFlowDefaultTabFontScale = 39;
  515. this.TremoloStrokeScale = 1;
  516. this.TremoloYSpacingScale = 1;
  517. this.StemWidth = 0.15; // originally 0.13. vexflow default 0.15. should probably be adjusted when increasing vexFlowDefaultNotationFontScale,
  518. this.StaffLineWidth = 0.10; // originally 0.12, but this will be pixels in Vexflow (*10).
  519. this.StaffLineColor = undefined; // if undefined, vexflow default (grey). not a width, but affects visual line clarity.
  520. this.LedgerLineWidth = 1; // vexflow units (pixels). if not undefined, the vexflow default will be overwritten
  521. this.LedgerLineStrokeStyle = undefined; // if not undefined, the vexflow default will be overwritten
  522. this.LedgerLineColorDefault = "#000000"; // black, previously grey by default
  523. this.WedgeLineWidth = 0.12;
  524. this.TupletLineWidth = 0.12;
  525. this.LyricUnderscoreLineWidth = 0.12;
  526. this.SystemThinLineWidth = 0.12;
  527. this.SystemBoldLineWidth = EngravingRules.unit / 2.0;
  528. this.SystemRepetitionEndingLineWidth = 0.12;
  529. this.SystemDotWidth = EngravingRules.unit / 2.0;
  530. this.DistanceBetweenVerticalSystemLines = 0.35;
  531. this.DistanceBetweenDotAndLine = 0.7;
  532. this.RepeatEndStartPadding = 2.0; // set to 0.0 to restore old padding/width with :||: measures
  533. this.OctaveShiftLineWidth = 0.12;
  534. this.OctaveShiftVerticalLineLength = EngravingRules.unit;
  535. this.GraceLineWidth = this.StaffLineWidth * this.GraceNoteScalingFactor;
  536. this.MultipleRestMeasureDefaultWidth = 4;
  537. // Line Widths
  538. this.MinimumCrossedBeamDifferenceMargin = 0.0001;
  539. // xSpacing Variables
  540. this.VoiceSpacingMultiplierVexflow = 0.85;
  541. this.VoiceSpacingAddendVexflow = 3.0;
  542. this.PickupMeasureWidthMultiplier = 1.0;
  543. this.DisplacedNoteMargin = 0.1;
  544. this.MinNoteDistance = 2.0;
  545. this.SubMeasureXSpacingThreshold = 35;
  546. this.MeasureDynamicsMaxScalingFactor = 2.5;
  547. this.WholeRestXShiftVexflow = -1.5; // VexFlow draws rest notes too far to the right
  548. this.MetronomeMarksDrawn = true;
  549. this.MetronomeMarkXShift = -6; // our unit, is taken * unitInPixels
  550. this.MetronomeMarkYShift = -0.5;
  551. this.SoftmaxFactorVexFlow = 15; // only applies to Vexflow 3.x. 15 seems like the sweet spot. Vexflow default is 100.
  552. // if too high, score gets too big, especially half notes. with half note quarter quarter, the quarters get squeezed.
  553. // if too low, smaller notes aren't positioned correctly.
  554. // Render options (whether to render specific or invisible elements)
  555. this.AlignRests = AlignRestOption.Never; // 0 = false, 1 = true, 2 = auto
  556. this.RestCollisionYPadding = 0.0; // 1.0 = half distance between staff lines (e.g. E to F). will be rounded to whole numbers.
  557. this.FillEmptyMeasuresWithWholeRest = FillEmptyMeasuresWithWholeRests.No;
  558. this.ArpeggiosGoAcrossVoices = false; // safe option, as otherwise arpeggios will always go across all voices in Vexflow, which is often unwanted
  559. this.RenderArpeggios = true;
  560. this.RenderSlurs = true;
  561. this.ColoringMode = ColoringMode.XML;
  562. this.ColoringEnabled = true;
  563. this.ColorStemsLikeNoteheads = false;
  564. this.ColorBeams = true;
  565. this.ColorFlags = true;
  566. this.DefaultColorNotehead = "#000000"; // black. undefined is only black if a note's color hasn't been changed before.
  567. this.DefaultColorRest = this.DefaultColorNotehead;
  568. this.DefaultColorStem = this.DefaultColorNotehead;
  569. this.DefaultColorLabel = this.DefaultColorNotehead;
  570. this.DefaultColorTitle = this.DefaultColorNotehead;
  571. this.DefaultColorCursor = "#33e02f"; // green
  572. this.DefaultFontFamily = "Times New Roman"; // what OSMD was initially optimized for
  573. this.DefaultFontStyle = FontStyles.Regular;
  574. this.DefaultVexFlowNoteFont = "gonville"; // was the default vexflow font up to vexflow 1.2.93, now it's Bravura, which is more cursive/bold
  575. this.MaxMeasureToDrawIndex = Number.MAX_VALUE;
  576. this.MinMeasureToDrawIndex = 0;
  577. this.MaxSystemToDrawNumber = Number.MAX_VALUE;
  578. this.MaxPageToDrawNumber = Number.MAX_VALUE;
  579. this.RenderComposer = true;
  580. this.RenderTitle = true;
  581. this.RenderSubtitle = true;
  582. this.RenderLyricist = true;
  583. this.RenderPartNames = true;
  584. this.RenderPartAbbreviations = true;
  585. this.RenderFingerings = true;
  586. this.RenderMeasureNumbers = true;
  587. this.RenderMeasureNumbersOnlyAtSystemStart = false;
  588. this.UseXMLMeasureNumbers = true;
  589. this.RenderLyrics = true;
  590. this.RenderChordSymbols = true;
  591. this.RenderMultipleRestMeasures = true;
  592. this.AutoGenerateMutipleRestMeasuresFromRestMeasures = true;
  593. this.RenderRehearsalMarks = true;
  594. this.RenderKeySignatures = true;
  595. this.RenderTimeSignatures = true;
  596. this.ArticulationPlacementFromXML = true;
  597. this.FingeringPosition = PlacementEnum.AboveOrBelow; // AboveOrBelow = correct bounding boxes
  598. this.FingeringPositionFromXML = true;
  599. this.FingeringPositionGrace = PlacementEnum.Left;
  600. this.FingeringInsideStafflines = false;
  601. this.FingeringLabelFontHeight = 1.7;
  602. this.FingeringOffsetX = 0.0;
  603. this.FingeringOffsetY = 0.0;
  604. this.FingeringPaddingY = -0.2;
  605. this.FingeringTextSize = 1.5;
  606. this.RenderStringNumbersClassical = true;
  607. this.StringNumberOffsetY = 0.0;
  608. this.NewSystemAtXMLNewSystemAttribute = false;
  609. this.NewPageAtXMLNewPageAttribute = false;
  610. this.RestoreCursorAfterRerender = true;
  611. this.StretchLastSystemLine = false;
  612. EngravingRules.FixStafflineBoundingBox = false; // TODO temporary workaround
  613. this.PageFormat = PageFormat.UndefinedPageFormat; // default: undefined / 'infinite' height page, using the canvas'/container's width and height
  614. this.PageBackgroundColor = undefined; // default: transparent. half-transparent white: #FFFFFF88"
  615. this.PerformanceMode = false;
  616. this.RenderSingleHorizontalStaffline = false;
  617. this.SpacingBetweenTextLines = 0;
  618. this.NoteToGraphicalNoteMap = new Dictionary<number, GraphicalNote>();
  619. this.NoteToGraphicalNoteMapObjectCount = 0;
  620. // this.populateDictionaries(); // these values aren't used currently
  621. try {
  622. this.MaxInstructionsConstValue = this.ClefLeftMargin + this.ClefRightMargin + this.KeyRightMargin + this.RhythmRightMargin + 11;
  623. //if (FontInfo.Info) {
  624. // this.maxInstructionsConstValue += FontInfo.Info.getBoundingBox(MusicSymbol.G_CLEF).width
  625. // + FontInfo.Info.getBoundingBox(MusicSymbol.FOUR).width
  626. // + 7 * FontInfo.Info.getBoundingBox(MusicSymbol.SHARP).width;
  627. //}
  628. } catch (ex) {
  629. log.info("EngravingRules()", ex);
  630. }
  631. // collect mpat-specific changes at the end
  632. if (this.MpatMode) {
  633. this.NewPartAndSystemAfterFinalBarline = true;
  634. }
  635. }
  636. public addGraphicalNoteToNoteMap(note: Note, graphicalNote: GraphicalNote): void {
  637. note.NoteToGraphicalNoteObjectId = this.NoteToGraphicalNoteMapObjectCount;
  638. this.NoteToGraphicalNoteMap.setValue(note.NoteToGraphicalNoteObjectId, graphicalNote);
  639. this.NoteToGraphicalNoteMapObjectCount++;
  640. }
  641. /** Returns the GraphicalNote corresponding to (its) note. Also used by Cursor.GNotesUnderCursor().
  642. * We don't want to save a GraphicalNote reference in Note, see Note.NoteToGraphicalNoteObjectId.
  643. */
  644. public GNote(note: Note): GraphicalNote {
  645. return GraphicalNote.FromNote(note, this);
  646. }
  647. /** This should be done before a new sheet is loaded, not each re-render (otherwise the map would end empty). */
  648. public clearMusicSheetObjects(): void {
  649. this.NoteToGraphicalNoteMap = new Dictionary<number, GraphicalNote>();
  650. this.NoteToGraphicalNoteMapObjectCount = 0;
  651. }
  652. public setChordSymbolLabelText(key: ChordSymbolEnum, value: string): void {
  653. this.ChordSymbolLabelTexts.setValue(key, value);
  654. }
  655. public resetChordSymbolLabelTexts(chordtexts: Dictionary<ChordSymbolEnum, string>): Dictionary<ChordSymbolEnum, string> {
  656. chordtexts.setValue(ChordSymbolEnum.minor, "m");
  657. chordtexts.setValue(ChordSymbolEnum.augmented, "aug");
  658. chordtexts.setValue(ChordSymbolEnum.diminished, "dim");
  659. chordtexts.setValue(ChordSymbolEnum.dominant, "7");
  660. chordtexts.setValue(ChordSymbolEnum.majorseventh, "maj7");
  661. chordtexts.setValue(ChordSymbolEnum.minorseventh, "m7");
  662. chordtexts.setValue(ChordSymbolEnum.diminishedseventh, "dim7");
  663. chordtexts.setValue(ChordSymbolEnum.augmentedseventh, "aug7");
  664. chordtexts.setValue(ChordSymbolEnum.halfdiminished, "m7b5");
  665. chordtexts.setValue(ChordSymbolEnum.majorminor, "m(maj7)");
  666. chordtexts.setValue(ChordSymbolEnum.majorsixth, "maj6");
  667. chordtexts.setValue(ChordSymbolEnum.minorsixth, "m6");
  668. chordtexts.setValue(ChordSymbolEnum.dominantninth, "9");
  669. chordtexts.setValue(ChordSymbolEnum.majorninth, "maj9");
  670. chordtexts.setValue(ChordSymbolEnum.minorninth, "m9");
  671. chordtexts.setValue(ChordSymbolEnum.dominant11th, "11");
  672. chordtexts.setValue(ChordSymbolEnum.major11th, "maj11");
  673. chordtexts.setValue(ChordSymbolEnum.minor11th, "m11");
  674. chordtexts.setValue(ChordSymbolEnum.dominant13th, "13");
  675. chordtexts.setValue(ChordSymbolEnum.major13th, "maj13");
  676. chordtexts.setValue(ChordSymbolEnum.minor13th, "m13");
  677. chordtexts.setValue(ChordSymbolEnum.suspendedsecond, "sus2");
  678. chordtexts.setValue(ChordSymbolEnum.suspendedfourth, "sus4");
  679. chordtexts.setValue(ChordSymbolEnum.power, "5");
  680. chordtexts.setValue(ChordSymbolEnum.none, "N.C.");
  681. return chordtexts;
  682. }
  683. public addChordName(
  684. altName: string,
  685. chordKindText: string,
  686. adds: string[],
  687. alts: string[],
  688. subs: string[],
  689. ): void {
  690. if (ChordSymbolEnum[chordKindText] !== undefined) {
  691. const degrees: DegreesInfo = {
  692. adds,
  693. alts,
  694. subs,
  695. };
  696. this.CustomChords.push(CustomChord.createCustomChord(altName, ChordSymbolEnum[chordKindText], degrees));
  697. }
  698. }
  699. public renameChord(altName: string, newAltName: string): void {
  700. CustomChord.renameCustomChord(altName, newAltName, this.CustomChords);
  701. }
  702. public resetChordNames(): void {
  703. // addChordName(alternateName, chordKindText, adds, alters, subtracts)
  704. this.addChordName("alt", "major", ["#5", "b9", "#9"], ["b5"], []);
  705. this.addChordName("7alt", "dominant", ["#5", "b9", "#9"], ["b5"], []);
  706. this.addChordName("7sus4", "dominant", ["4"], [], ["3"]);
  707. this.addChordName("7sus4", "suspendedfourth", ["7"], [], []);
  708. this.addChordName("9sus4", "dominantninth", ["4"], [], ["3"]);
  709. this.addChordName("9sus4", "suspendedfourth", ["9"], [], []);
  710. this.addChordName("11sus4", "dominant11th", ["4"], [], ["3"]);
  711. this.addChordName("11sus4", "suspendedfourth", ["11"], [], []);
  712. this.addChordName("13sus4", "dominant13th", ["4"], [], ["3"]);
  713. this.addChordName("13sus4", "suspendedfourth", ["13"], [], []);
  714. this.addChordName("7sus2", "dominant", ["2"], [], ["3"]);
  715. this.addChordName("7sus2", "suspendedsecond", ["7"], [], []);
  716. this.addChordName("m7b5", "minorseventh", [], ["b5"], []);
  717. this.addChordName("9sus2", "dominantninth", ["2"], [], ["3"]);
  718. this.addChordName("9sus2", "suspendedsecond", ["9"], [], []);
  719. this.addChordName("11sus2", "dominant11th", ["2"], [], ["3"]);
  720. this.addChordName("11sus2", "suspendedsecond", ["11"], [], []);
  721. this.addChordName("13sus2", "dominant13th", ["2"], [], ["3"]);
  722. this.addChordName("13sus2", "suspendedsecond", ["13"], [], []);
  723. this.addChordName("m(maj9)", "majorminor", ["9"], [], []);
  724. this.addChordName("m(maj11)", "majorminor", ["11"], [], []);
  725. this.addChordName("m(maj13)", "majorminor", ["13"], [], []);
  726. this.addChordName("69", "majorsixth", ["9"], [], []);
  727. this.addChordName("mi69", "minorsixth", ["9"], [], []);
  728. }
  729. /**
  730. * This method maps NoteDurations to Distances and DistancesScalingFactors.
  731. */
  732. // private populateDictionaries(): void {
  733. // for (let i: number = 0; i < this.NoteDistances.length; i++) {
  734. // switch (i) {
  735. // case 0:
  736. // this.DurationDistanceDict[0.015625] = this.NoteDistances[i];
  737. // this.DurationScalingDistanceDict[0.015625] = this.NoteDistancesScalingFactors[i];
  738. // break;
  739. // case 1:
  740. // this.DurationDistanceDict[0.03125] = this.NoteDistances[i];
  741. // this.DurationScalingDistanceDict[0.03125] = this.NoteDistancesScalingFactors[i];
  742. // break;
  743. // case 2:
  744. // this.DurationDistanceDict[0.0625] = this.NoteDistances[i];
  745. // this.DurationScalingDistanceDict[0.0625] = this.NoteDistancesScalingFactors[i];
  746. // break;
  747. // case 3:
  748. // this.DurationDistanceDict[0.125] = this.NoteDistances[i];
  749. // this.DurationScalingDistanceDict[0.125] = this.NoteDistancesScalingFactors[i];
  750. // break;
  751. // case 4:
  752. // this.DurationDistanceDict[0.25] = this.NoteDistances[i];
  753. // this.DurationScalingDistanceDict[0.25] = this.NoteDistancesScalingFactors[i];
  754. // break;
  755. // case 5:
  756. // this.DurationDistanceDict[0.5] = this.NoteDistances[i];
  757. // this.DurationScalingDistanceDict[0.5] = this.NoteDistancesScalingFactors[i];
  758. // break;
  759. // case 6:
  760. // this.DurationDistanceDict[1.0] = this.NoteDistances[i];
  761. // this.DurationScalingDistanceDict[1.0] = this.NoteDistancesScalingFactors[i];
  762. // break;
  763. // case 7:
  764. // this.DurationDistanceDict[2.0] = this.NoteDistances[i];
  765. // this.DurationScalingDistanceDict[2.0] = this.NoteDistancesScalingFactors[i];
  766. // break;
  767. // default:
  768. // // FIXME
  769. // }
  770. // }
  771. // }
  772. /**
  773. * Calculate Curve-independend factors, to be used later in the Slur- and TieCurvePoints calculation
  774. */
  775. private calculateCurveParametersArrays(): void {
  776. this.TPower3 = new Array(this.BezierCurveStepSize);
  777. this.OneMinusTPower3 = new Array(this.BezierCurveStepSize);
  778. this.FactorOne = new Array(this.BezierCurveStepSize);
  779. this.FactorTwo = new Array(this.BezierCurveStepSize);
  780. for (let i: number = 0; i < this.BezierCurveStepSize; i++) {
  781. const t: number = i / this.BezierCurveStepSize;
  782. this.TPower3[i] = Math.pow(t, 3);
  783. this.OneMinusTPower3[i] = Math.pow((1 - t), 3);
  784. this.FactorOne[i] = 3 * Math.pow((1 - t), 2) * t;
  785. this.FactorTwo[i] = 3 * (1 - t) * Math.pow(t, 2);
  786. }
  787. }
  788. }
  789. // TODO maybe this should be moved to OSMDOptions. Also see OpenSheetMusicDisplay.PageFormatStandards
  790. export class PageFormat {
  791. constructor(width: number, height: number, idString: string = "noIdStringGiven") {
  792. this.width = width;
  793. this.height = height;
  794. this.idString = idString;
  795. }
  796. public width: number;
  797. public height: number;
  798. public idString: string;
  799. public get aspectRatio(): number {
  800. if (!this.IsUndefined) {
  801. return this.width / this.height;
  802. } else {
  803. return 0; // infinite page height
  804. }
  805. }
  806. /** Undefined page format: use default page format. */
  807. public get IsUndefined(): boolean {
  808. return this.width === undefined || this.height === undefined || this.height === 0 || this.width === 0;
  809. }
  810. public static get UndefinedPageFormat(): PageFormat {
  811. return new PageFormat(0, 0);
  812. }
  813. public Equals(otherPageFormat: PageFormat): boolean {
  814. if (!otherPageFormat) {
  815. return false;
  816. }
  817. return otherPageFormat.width === this.width && otherPageFormat.height === this.height;
  818. }
  819. }