@k-l-lambda/lilylet 0.1.56 → 0.1.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -587,10 +587,6 @@ const parseLilyDocument = (lilyDocument) => {
|
|
|
587
587
|
duration: convertDuration(term.durationValue),
|
|
588
588
|
invisible: term.isSpacer || undefined,
|
|
589
589
|
};
|
|
590
|
-
// Positioned rest
|
|
591
|
-
if (!term.isSpacer && context.pitch) {
|
|
592
|
-
restEvent.pitch = convertPitch(context.pitch.phonetStep, 0, context.pitch.octave);
|
|
593
|
-
}
|
|
594
590
|
voice.events.push(restEvent);
|
|
595
591
|
}
|
|
596
592
|
}
|
|
@@ -982,7 +978,7 @@ const parsedMeasuresToDoc = (parsedMeasures, metadata) => {
|
|
|
982
978
|
const measures = parsedMeasures.map(pm => {
|
|
983
979
|
// Filter out voices that only contain spacer rests and context changes
|
|
984
980
|
const filteredVoices = pm.voices.filter(v => hasRealContent(v.events));
|
|
985
|
-
// Group voices by partIndex, then
|
|
981
|
+
// Group voices by partIndex, then collect voice arrays per staff
|
|
986
982
|
const partMap = new Map();
|
|
987
983
|
for (const v of filteredVoices) {
|
|
988
984
|
const pi = v.partIndex || 1;
|
|
@@ -990,23 +986,23 @@ const parsedMeasuresToDoc = (parsedMeasures, metadata) => {
|
|
|
990
986
|
partMap.set(pi, new Map());
|
|
991
987
|
}
|
|
992
988
|
const staffMap = partMap.get(pi);
|
|
993
|
-
//
|
|
989
|
+
// Preserve each voice as a separate array
|
|
994
990
|
if (!staffMap.has(v.staff)) {
|
|
995
991
|
staffMap.set(v.staff, []);
|
|
996
992
|
}
|
|
997
|
-
staffMap.get(v.staff).push(
|
|
993
|
+
staffMap.get(v.staff).push(v.events);
|
|
998
994
|
}
|
|
999
995
|
// Convert to parts array (sorted by part index, then by staff)
|
|
1000
|
-
// Apply deduplication to
|
|
996
|
+
// Apply deduplication to each voice's events
|
|
1001
997
|
const partIndices = Array.from(partMap.keys()).sort((a, b) => a - b);
|
|
1002
998
|
const parts = partIndices.map(pi => {
|
|
1003
999
|
const staffMap = partMap.get(pi);
|
|
1004
1000
|
const staffNums = Array.from(staffMap.keys()).sort((a, b) => a - b);
|
|
1005
1001
|
return {
|
|
1006
|
-
voices: staffNums.
|
|
1002
|
+
voices: staffNums.flatMap(staff => staffMap.get(staff).map(events => ({
|
|
1007
1003
|
staff,
|
|
1008
|
-
events: dedupeContextEvents(
|
|
1009
|
-
})),
|
|
1004
|
+
events: dedupeContextEvents(events),
|
|
1005
|
+
}))),
|
|
1010
1006
|
};
|
|
1011
1007
|
});
|
|
1012
1008
|
// Fallback to single empty part if no voices
|
|
@@ -294,11 +294,19 @@ const encodeNoteEvent = (event, env, lastDuration) => {
|
|
|
294
294
|
if (event.pitches.length > 1) {
|
|
295
295
|
result += '<';
|
|
296
296
|
const pitchStrs = [];
|
|
297
|
-
|
|
298
|
-
|
|
297
|
+
let firstPitchEnv;
|
|
298
|
+
for (let i = 0; i < event.pitches.length; i++) {
|
|
299
|
+
// In LilyPond relative mode, each pitch in a chord is relative
|
|
300
|
+
// to the previous pitch in the chord (cascading).
|
|
301
|
+
// After the chord, env becomes the first pitch.
|
|
302
|
+
const { str, newEnv: ne } = encodePitch(event.pitches[i], newEnv);
|
|
299
303
|
pitchStrs.push(str);
|
|
300
304
|
newEnv = ne;
|
|
305
|
+
if (i === 0)
|
|
306
|
+
firstPitchEnv = ne;
|
|
301
307
|
}
|
|
308
|
+
// After chord, reference resets to first pitch
|
|
309
|
+
newEnv = firstPitchEnv;
|
|
302
310
|
result += pitchStrs.join(' ');
|
|
303
311
|
result += '>';
|
|
304
312
|
}
|
|
@@ -347,12 +355,14 @@ const encodeRestEvent = (event, env, lastDuration) => {
|
|
|
347
355
|
result += encodeDuration(event.duration);
|
|
348
356
|
}
|
|
349
357
|
// Positioned rest
|
|
358
|
+
let newEnv = env;
|
|
350
359
|
if (event.pitch && !event.fullMeasure && !event.invisible) {
|
|
351
|
-
const { str } = encodePitch(event.pitch, env);
|
|
360
|
+
const { str, newEnv: ne } = encodePitch(event.pitch, env);
|
|
352
361
|
result = str + result.slice(1); // Replace 'r' with pitch
|
|
353
362
|
result += '\\rest';
|
|
363
|
+
newEnv = ne;
|
|
354
364
|
}
|
|
355
|
-
return { str: result, newEnv
|
|
365
|
+
return { str: result, newEnv, newDuration: event.duration };
|
|
356
366
|
};
|
|
357
367
|
/**
|
|
358
368
|
* Encode a context change event
|
|
@@ -397,8 +407,9 @@ const encodeTupletEvent = (event, env, lastDuration) => {
|
|
|
397
407
|
newDuration = nd;
|
|
398
408
|
}
|
|
399
409
|
else if (subEvent.type === 'rest') {
|
|
400
|
-
const { str, newDuration: nd } = encodeRestEvent(subEvent, newEnv, newDuration);
|
|
410
|
+
const { str, newEnv: ne, newDuration: nd } = encodeRestEvent(subEvent, newEnv, newDuration);
|
|
401
411
|
result += str + ' ';
|
|
412
|
+
newEnv = ne;
|
|
402
413
|
newDuration = nd;
|
|
403
414
|
}
|
|
404
415
|
}
|
|
@@ -415,11 +426,15 @@ const encodeTremoloEvent = (event, env) => {
|
|
|
415
426
|
if (event.pitchA.length > 1) {
|
|
416
427
|
pitchA += '<';
|
|
417
428
|
const pitchStrs = [];
|
|
418
|
-
|
|
419
|
-
|
|
429
|
+
let firstPitchEnv;
|
|
430
|
+
for (let i = 0; i < event.pitchA.length; i++) {
|
|
431
|
+
const { str, newEnv: ne } = encodePitch(event.pitchA[i], newEnv);
|
|
420
432
|
pitchStrs.push(str);
|
|
421
433
|
newEnv = ne;
|
|
434
|
+
if (i === 0)
|
|
435
|
+
firstPitchEnv = ne;
|
|
422
436
|
}
|
|
437
|
+
newEnv = firstPitchEnv;
|
|
423
438
|
pitchA += pitchStrs.join(' ');
|
|
424
439
|
pitchA += '>';
|
|
425
440
|
}
|
|
@@ -433,11 +448,15 @@ const encodeTremoloEvent = (event, env) => {
|
|
|
433
448
|
if (event.pitchB.length > 1) {
|
|
434
449
|
pitchB += '<';
|
|
435
450
|
const pitchStrs = [];
|
|
436
|
-
|
|
437
|
-
|
|
451
|
+
let firstPitchEnv;
|
|
452
|
+
for (let i = 0; i < event.pitchB.length; i++) {
|
|
453
|
+
const { str, newEnv: ne } = encodePitch(event.pitchB[i], newEnv);
|
|
438
454
|
pitchStrs.push(str);
|
|
439
455
|
newEnv = ne;
|
|
456
|
+
if (i === 0)
|
|
457
|
+
firstPitchEnv = ne;
|
|
440
458
|
}
|
|
459
|
+
newEnv = firstPitchEnv;
|
|
441
460
|
pitchB += pitchStrs.join(' ');
|
|
442
461
|
pitchB += '>';
|
|
443
462
|
}
|
|
@@ -490,8 +509,9 @@ const encodeVoice = (voice, measureContext, voiceIndex) => {
|
|
|
490
509
|
break;
|
|
491
510
|
}
|
|
492
511
|
case 'rest': {
|
|
493
|
-
const { str, newDuration } = encodeRestEvent(event, env, lastDuration);
|
|
512
|
+
const { str, newEnv, newDuration } = encodeRestEvent(event, env, lastDuration);
|
|
494
513
|
result += str + ' ';
|
|
514
|
+
env = newEnv;
|
|
495
515
|
lastDuration = newDuration;
|
|
496
516
|
break;
|
|
497
517
|
}
|
|
@@ -528,7 +548,8 @@ const encodeVoice = (voice, measureContext, voiceIndex) => {
|
|
|
528
548
|
break;
|
|
529
549
|
}
|
|
530
550
|
case 'pitchReset': {
|
|
531
|
-
|
|
551
|
+
// Ignore: each measure already gets its own \relative c' block,
|
|
552
|
+
// and within a measure the LilyPond reference pitch is not reset.
|
|
532
553
|
break;
|
|
533
554
|
}
|
|
534
555
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@k-l-lambda/lilylet",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.57",
|
|
4
4
|
"description": "Lilylet is a lilyopnd-like sheet music language designed for Markdown rendering and symbolic music representation in AIGC applications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -711,15 +711,6 @@ const parseLilyDocument = (lilyDocument: lilyParser.LilyDocument): ParsedMeasure
|
|
|
711
711
|
invisible: term.isSpacer || undefined,
|
|
712
712
|
};
|
|
713
713
|
|
|
714
|
-
// Positioned rest
|
|
715
|
-
if (!term.isSpacer && context.pitch) {
|
|
716
|
-
restEvent.pitch = convertPitch(
|
|
717
|
-
context.pitch.phonetStep,
|
|
718
|
-
0,
|
|
719
|
-
context.pitch.octave
|
|
720
|
-
);
|
|
721
|
-
}
|
|
722
|
-
|
|
723
714
|
voice.events.push(restEvent);
|
|
724
715
|
}
|
|
725
716
|
}
|
|
@@ -1145,8 +1136,8 @@ const parsedMeasuresToDoc = (parsedMeasures: ParsedMeasure[], metadata?: Metadat
|
|
|
1145
1136
|
// Filter out voices that only contain spacer rests and context changes
|
|
1146
1137
|
const filteredVoices = pm.voices.filter(v => hasRealContent(v.events));
|
|
1147
1138
|
|
|
1148
|
-
// Group voices by partIndex, then
|
|
1149
|
-
const partMap = new Map<number, Map<number, Event[]>>();
|
|
1139
|
+
// Group voices by partIndex, then collect voice arrays per staff
|
|
1140
|
+
const partMap = new Map<number, Map<number, Event[][]>>();
|
|
1150
1141
|
for (const v of filteredVoices) {
|
|
1151
1142
|
const pi = v.partIndex || 1;
|
|
1152
1143
|
if (!partMap.has(pi)) {
|
|
@@ -1154,24 +1145,26 @@ const parsedMeasuresToDoc = (parsedMeasures: ParsedMeasure[], metadata?: Metadat
|
|
|
1154
1145
|
}
|
|
1155
1146
|
const staffMap = partMap.get(pi)!;
|
|
1156
1147
|
|
|
1157
|
-
//
|
|
1148
|
+
// Preserve each voice as a separate array
|
|
1158
1149
|
if (!staffMap.has(v.staff)) {
|
|
1159
1150
|
staffMap.set(v.staff, []);
|
|
1160
1151
|
}
|
|
1161
|
-
staffMap.get(v.staff)!.push(
|
|
1152
|
+
staffMap.get(v.staff)!.push(v.events);
|
|
1162
1153
|
}
|
|
1163
1154
|
|
|
1164
1155
|
// Convert to parts array (sorted by part index, then by staff)
|
|
1165
|
-
// Apply deduplication to
|
|
1156
|
+
// Apply deduplication to each voice's events
|
|
1166
1157
|
const partIndices = Array.from(partMap.keys()).sort((a, b) => a - b);
|
|
1167
1158
|
const parts = partIndices.map(pi => {
|
|
1168
1159
|
const staffMap = partMap.get(pi)!;
|
|
1169
1160
|
const staffNums = Array.from(staffMap.keys()).sort((a, b) => a - b);
|
|
1170
1161
|
return {
|
|
1171
|
-
voices: staffNums.
|
|
1172
|
-
staff
|
|
1173
|
-
|
|
1174
|
-
|
|
1162
|
+
voices: staffNums.flatMap(staff =>
|
|
1163
|
+
staffMap.get(staff)!.map(events => ({
|
|
1164
|
+
staff,
|
|
1165
|
+
events: dedupeContextEvents(events),
|
|
1166
|
+
}))
|
|
1167
|
+
),
|
|
1175
1168
|
};
|
|
1176
1169
|
});
|
|
1177
1170
|
|
|
@@ -394,11 +394,18 @@ const encodeNoteEvent = (event: NoteEvent, env: PitchEnv, lastDuration: Duration
|
|
|
394
394
|
if (event.pitches.length > 1) {
|
|
395
395
|
result += '<';
|
|
396
396
|
const pitchStrs: string[] = [];
|
|
397
|
-
|
|
398
|
-
|
|
397
|
+
let firstPitchEnv: PitchEnv | undefined;
|
|
398
|
+
for (let i = 0; i < event.pitches.length; i++) {
|
|
399
|
+
// In LilyPond relative mode, each pitch in a chord is relative
|
|
400
|
+
// to the previous pitch in the chord (cascading).
|
|
401
|
+
// After the chord, env becomes the first pitch.
|
|
402
|
+
const { str, newEnv: ne } = encodePitch(event.pitches[i], newEnv);
|
|
399
403
|
pitchStrs.push(str);
|
|
400
404
|
newEnv = ne;
|
|
405
|
+
if (i === 0) firstPitchEnv = ne;
|
|
401
406
|
}
|
|
407
|
+
// After chord, reference resets to first pitch
|
|
408
|
+
newEnv = firstPitchEnv!;
|
|
402
409
|
result += pitchStrs.join(' ');
|
|
403
410
|
result += '>';
|
|
404
411
|
} else if (event.pitches.length === 1) {
|
|
@@ -455,13 +462,15 @@ const encodeRestEvent = (event: RestEvent, env: PitchEnv, lastDuration: Duration
|
|
|
455
462
|
}
|
|
456
463
|
|
|
457
464
|
// Positioned rest
|
|
465
|
+
let newEnv = env;
|
|
458
466
|
if (event.pitch && !event.fullMeasure && !event.invisible) {
|
|
459
|
-
const { str } = encodePitch(event.pitch, env);
|
|
467
|
+
const { str, newEnv: ne } = encodePitch(event.pitch, env);
|
|
460
468
|
result = str + result.slice(1); // Replace 'r' with pitch
|
|
461
469
|
result += '\\rest';
|
|
470
|
+
newEnv = ne;
|
|
462
471
|
}
|
|
463
472
|
|
|
464
|
-
return { str: result, newEnv
|
|
473
|
+
return { str: result, newEnv, newDuration: event.duration };
|
|
465
474
|
};
|
|
466
475
|
|
|
467
476
|
|
|
@@ -512,8 +521,9 @@ const encodeTupletEvent = (event: TupletEvent, env: PitchEnv, lastDuration: Dura
|
|
|
512
521
|
newEnv = ne;
|
|
513
522
|
newDuration = nd;
|
|
514
523
|
} else if (subEvent.type === 'rest') {
|
|
515
|
-
const { str, newDuration: nd } = encodeRestEvent(subEvent, newEnv, newDuration);
|
|
524
|
+
const { str, newEnv: ne, newDuration: nd } = encodeRestEvent(subEvent, newEnv, newDuration);
|
|
516
525
|
result += str + ' ';
|
|
526
|
+
newEnv = ne;
|
|
517
527
|
newDuration = nd;
|
|
518
528
|
}
|
|
519
529
|
}
|
|
@@ -535,11 +545,14 @@ const encodeTremoloEvent = (event: TremoloEvent, env: PitchEnv): { str: string;
|
|
|
535
545
|
if (event.pitchA.length > 1) {
|
|
536
546
|
pitchA += '<';
|
|
537
547
|
const pitchStrs: string[] = [];
|
|
538
|
-
|
|
539
|
-
|
|
548
|
+
let firstPitchEnv: PitchEnv | undefined;
|
|
549
|
+
for (let i = 0; i < event.pitchA.length; i++) {
|
|
550
|
+
const { str, newEnv: ne } = encodePitch(event.pitchA[i], newEnv);
|
|
540
551
|
pitchStrs.push(str);
|
|
541
552
|
newEnv = ne;
|
|
553
|
+
if (i === 0) firstPitchEnv = ne;
|
|
542
554
|
}
|
|
555
|
+
newEnv = firstPitchEnv!;
|
|
543
556
|
pitchA += pitchStrs.join(' ');
|
|
544
557
|
pitchA += '>';
|
|
545
558
|
} else if (event.pitchA.length === 1) {
|
|
@@ -553,11 +566,14 @@ const encodeTremoloEvent = (event: TremoloEvent, env: PitchEnv): { str: string;
|
|
|
553
566
|
if (event.pitchB.length > 1) {
|
|
554
567
|
pitchB += '<';
|
|
555
568
|
const pitchStrs: string[] = [];
|
|
556
|
-
|
|
557
|
-
|
|
569
|
+
let firstPitchEnv: PitchEnv | undefined;
|
|
570
|
+
for (let i = 0; i < event.pitchB.length; i++) {
|
|
571
|
+
const { str, newEnv: ne } = encodePitch(event.pitchB[i], newEnv);
|
|
558
572
|
pitchStrs.push(str);
|
|
559
573
|
newEnv = ne;
|
|
574
|
+
if (i === 0) firstPitchEnv = ne;
|
|
560
575
|
}
|
|
576
|
+
newEnv = firstPitchEnv!;
|
|
561
577
|
pitchB += pitchStrs.join(' ');
|
|
562
578
|
pitchB += '>';
|
|
563
579
|
} else if (event.pitchB.length === 1) {
|
|
@@ -624,8 +640,9 @@ const encodeVoice = (
|
|
|
624
640
|
break;
|
|
625
641
|
}
|
|
626
642
|
case 'rest': {
|
|
627
|
-
const { str, newDuration } = encodeRestEvent(event, env, lastDuration);
|
|
643
|
+
const { str, newEnv, newDuration } = encodeRestEvent(event, env, lastDuration);
|
|
628
644
|
result += str + ' ';
|
|
645
|
+
env = newEnv;
|
|
629
646
|
lastDuration = newDuration;
|
|
630
647
|
break;
|
|
631
648
|
}
|
|
@@ -662,7 +679,8 @@ const encodeVoice = (
|
|
|
662
679
|
break;
|
|
663
680
|
}
|
|
664
681
|
case 'pitchReset': {
|
|
665
|
-
|
|
682
|
+
// Ignore: each measure already gets its own \relative c' block,
|
|
683
|
+
// and within a measure the LilyPond reference pitch is not reset.
|
|
666
684
|
break;
|
|
667
685
|
}
|
|
668
686
|
}
|