use of com.xenoage.zong.musiclayout.spacing.SystemSpacing in project Zong by Xenoage.
the class StretchMeasuresTest method createSystemWith1Measure.
/**
* Creates and returns a simple {@link SystemSpacing} with only one
* measure with a clef and two notes, using the given parameters.
* @param leadingWidth width of the leading spacing in mm
* @param offsetBeat0 offset of beat 1/4 in mm
* @param offsetBeat1 offset of beat 3/4 in mm
* @param offsetBeat2 width of the voice spacing in mm
*/
public static SystemSpacing createSystemWith1Measure(float leadingWidth, float offsetBeat0, float offsetBeat1, float offsetBeat2) {
Chord chord1 = chord(Companion.pi(0, 0, 4), Companion.fr(2, 4));
Chord chord2 = chord(Companion.pi(1, 0, 4), Companion.fr(2, 4));
Voice voice = new Voice(alist(chord1, chord2));
List<BeatOffset> beatOffsets = alist(new BeatOffset(Companion.fr(1, 4), offsetBeat0), new BeatOffset(Companion.fr(3, 4), offsetBeat1), new BeatOffset(Companion.fr(5, 4), offsetBeat2));
float is = 1;
List<VoiceSpacing> voiceSpacings = alist(new VoiceSpacing(voice, is, alist(new ChordSpacing(new ChordNotation(chord1), beatOffsets.get(0).getBeat(), beatOffsets.get(0).getOffsetMm()), new ChordSpacing(new ChordNotation(chord2), beatOffsets.get(1).getBeat(), beatOffsets.get(1).getOffsetMm()))));
MeasureSpacing measureSpacing = new MeasureSpacing(atMeasure(0, 0), is, voiceSpacings, empty, LeadingSpacingMock.createGClefSpacing(leadingWidth));
List<MeasureSpacing> measureSpacings = alist(measureSpacing);
ColumnSpacing mcs = new ColumnSpacing(-1, measureSpacings, beatOffsets, alist(new BeatOffset(Companion.fr(0, 4), 0), new BeatOffset(Companion.fr(6, 4), offsetBeat2)));
SystemSpacing system = new SystemSpacing(ilist(mcs), 0, 0, leadingWidth + offsetBeat2, null, 0);
return system;
}
use of com.xenoage.zong.musiclayout.spacing.SystemSpacing in project Zong by Xenoage.
the class StretchMeasuresTest method computeSystemArrangementTestGrace.
/**
* Checking if the elements are stretched correctly in a simple system
* where there are grace notes. The space between grace notes and their following
* full chord may not be stretched.
*/
@Test
public void computeSystemArrangementTestGrace() {
// create an easy system for testing
float offsetChord1 = 3;
float offsetChord2 = 12;
float offsetMeasureEnd = 16;
float graceDistance = 2;
SystemSpacing system = createSystemWith1MeasureGrace(offsetChord1, offsetChord2, offsetMeasureEnd, graceDistance);
// stretch the system
float newWidth = 28;
testee.compute(system, newWidth);
// compare the result
ColumnSpacing newCol = system.columns.get(0);
float stretch = (newWidth - +newCol.getLeadingWidthMm()) / offsetMeasureEnd;
// beat offsets
assertEquals(offsetChord1 * stretch, newCol.getBeatOffsets().get(0).getOffsetMm(), df);
assertEquals(offsetChord2 * stretch, newCol.getBeatOffsets().get(1).getOffsetMm(), df);
// element spacings
VoiceSpacing newVoice = newCol.measures.get(0).voices.get(0);
assertEquals(offsetChord1 * stretch, newVoice.elements.get(0).xIs, df);
assertEquals(offsetChord2 * stretch - 2 * graceDistance, newVoice.elements.get(1).xIs, df);
assertEquals(offsetChord2 * stretch - 1 * graceDistance, newVoice.elements.get(2).xIs, df);
assertEquals(offsetChord2 * stretch, newVoice.elements.get(3).xIs, df);
}
use of com.xenoage.zong.musiclayout.spacing.SystemSpacing in project Zong by Xenoage.
the class StretchMeasuresTest method computeTest.
@Test
public void computeTest() {
// create an easy system for testing
float leadingWidth = 4;
float offsetBeat1 = 3;
float offsetBeat2 = 7;
float offsetBeat3 = 12;
SystemSpacing system = createSystemWith1Measure(leadingWidth, offsetBeat1, offsetBeat2, offsetBeat3);
// stretch the system
float newWidth = 20;
testee.compute(system, newWidth);
// compare the result
// since the leading spacing (4 spaces) is not scaled, the
// remaining 12 spaces of the voices width have to be scaled
float stretch = (newWidth - leadingWidth) / offsetBeat3;
ColumnSpacing newCol = system.columns.get(0);
// beat offsets
assertEquals(offsetBeat1 * stretch, newCol.getBeatOffsets().get(0).getOffsetMm(), df);
assertEquals(offsetBeat2 * stretch, newCol.getBeatOffsets().get(1).getOffsetMm(), df);
// element spacings
VoiceSpacing newVoice = newCol.measures.get(0).voices.get(0);
assertEquals(offsetBeat1 * stretch, newVoice.elements.get(0).xIs, df);
assertEquals(offsetBeat2 * stretch, newVoice.elements.get(1).xIs, df);
}
use of com.xenoage.zong.musiclayout.spacing.SystemSpacing in project Zong by Xenoage.
the class EmptySystems method createEmptySystem.
/**
* Creates an additional system for the given {@link Score} with
* the given width and y-offset in mm and returns it.
*/
private SystemSpacing createEmptySystem(Score score, float width, float offsetY) {
// compute staves spacing
StavesSpacing stavesSpacing = StavesSpacer.stavesSpacer.compute(score, 0);
// create and returns system
SystemLayout defaultSystemLayout = score.getFormat().getSystemLayout();
return new SystemSpacing(CollectionUtils.<ColumnSpacing>alist(), defaultSystemLayout.getMarginLeft(), defaultSystemLayout.getMarginRight(), width, stavesSpacing, offsetY);
}
use of com.xenoage.zong.musiclayout.spacing.SystemSpacing in project Zong by Xenoage.
the class ScoreLayouter method fillSystemsHorizontally.
/**
* Fills the systems horizontally according to the {@link SystemFiller}
* of the frame.
*/
void fillSystemsHorizontally(FramesSpacing frames, Target target) {
for (int iFrame : range(frames.size())) {
FrameSpacing frameArr = frames.get(iFrame);
SystemFiller hFill = target.getArea(iFrame).hFill;
// apply strategy
for (SystemSpacing oldSystemArr : frameArr.getSystems()) {
float usableWidth = frameArr.getUsableSizeMm().width - oldSystemArr.getMarginLeftMm() - oldSystemArr.getMarginRightMm();
hFill.compute(oldSystemArr, usableWidth);
}
}
}
Aggregations