Skip to content

Commit

Permalink
Add copied symp. strings, tweak presets, fix duration dynamics
Browse files Browse the repository at this point in the history
  • Loading branch information
jonikorpi committed Jan 21, 2025
1 parent 9d9714b commit 5ea1376
Show file tree
Hide file tree
Showing 3 changed files with 119 additions and 148 deletions.
38 changes: 19 additions & 19 deletions example/heavens-tower.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Original by Naoshi Mizuta / Square Enix
// This is an adaptation based on https://musescore.com/user/31948143/scores/6465415

import { hammeredDulcimer } from "../instrumentPresets";
import { pluckedCello, pluckedContrabass, pluckedViola, pluckedViolin } from "../instrumentPresets";

export const heavensTower = () => {
const cycle = (60.0 / 70.0 / 2.0) * 8.0;
Expand Down Expand Up @@ -60,12 +60,12 @@ export const heavensTower = () => {
];

const tracks = [
// [pluckedViola, [...rhythm, { transpose: 0, volume: 0.146, velocity: 0.5 }]],
// [pluckedCello, [...plinkingMelody, { transpose: -12, volume: 0.09 }]],
// [pluckedViolin, [...melody, { transpose: 12, volume: 0.2 }]],
// [pluckedViola, [...highHarmony, { transpose: 0, volume: 0.09 }]],
// [pluckedCello, [...midHarmony, { transpose: -12, volume: 0.056 }]],
// [pluckedContrabass, [...lowHarmony, { transpose: -12, volume: 0.056 }]],
[pluckedViola, [...rhythm, { transpose: 0, volume: 0.146, velocity: 0.5 }]],
[pluckedCello, [...plinkingMelody, { transpose: -12, volume: 0.09 }]],
[pluckedViolin, [...melody, { transpose: 12, volume: 0.2 }]],
[pluckedViola, [...highHarmony, { transpose: 0, volume: 0.09 }]],
[pluckedCello, [...midHarmony, { transpose: -12, volume: 0.056 }]],
[pluckedContrabass, [...lowHarmony, { transpose: -12, volume: 0.056 }]],

// [viola, [...rhythm, { transpose: 0, volume: 0.146, velocity: 0.5 }]],
// [cello, [...plinkingMelody, { transpose: -12, volume: 0.09 }]],
Expand All @@ -74,19 +74,19 @@ export const heavensTower = () => {
// [cello, [...midHarmony, { transpose: -12, volume: 0.056 }]],
// [contrabass, [...lowHarmony, { transpose: -12, volume: 0.056 }]],

[hammeredDulcimer, [...rhythm, { transpose: 0, volume: 0.146, velocity: 0.5 }]],
[hammeredDulcimer, [...plinkingMelody, { transpose: -12, volume: 0.09 }]],
[hammeredDulcimer, [...melody, { transpose: 12, volume: 0.2 }]],
[hammeredDulcimer, [...highHarmony, { transpose: 0, volume: 0.09 }]],
[hammeredDulcimer, [...midHarmony, { transpose: -12, volume: 0.056 }]],
[hammeredDulcimer, [...lowHarmony, { transpose: -12, volume: 0.056 }]],
// [hammeredDulcimer, [...rhythm, { transpose: 0, volume: 0.146, velocity: 0.5 }]],
// [hammeredDulcimer, [...plinkingMelody, { transpose: -12, volume: 0.09 }]],
// [hammeredDulcimer, [...melody, { transpose: 12, volume: 0.2 }]],
// [hammeredDulcimer, [...highHarmony, { transpose: 0, volume: 0.09 }]],
// [hammeredDulcimer, [...midHarmony, { transpose: -12, volume: 0.056 }]],
// [hammeredDulcimer, [...lowHarmony, { transpose: -12, volume: 0.056 }]],

// [pluckedViola, [...rhythm, { transpose: 0, volume: 0.146, velocity: 0.236 }]],
// [glockenspiel, [...plinkingMelody, { transpose: 0, volume: 0.146, velocity: 0.854 }]],
// [violin, [...melody, { transpose: 12, volume: 0.18, velocity: 0.854 }]],
// [flute, [...highHarmony, { transpose: 0, volume: 0.146, velocity: 0.618 }]],
// [oboe, [...midHarmony, { transpose: -12, volume: 0.056, velocity: 0.5 }]],
// [trombone, [...lowHarmony, { transpose: -12, volume: 0.09, velocity: 0.5 }]],
// [pluckedViola, [...rhythm, { transpose: 0, volume: 0.146, velocity: 0.5 }]],
// [glockenspiel, [...plinkingMelody, { transpose: -12, volume: 0.09 }]],
// [violin, [...melody, { transpose: 12, volume: 0.2 }]],
// [flute, [...highHarmony, { transpose: 0, volume: 0.09 }]],
// [oboe, [...midHarmony, { transpose: -12, volume: 0.056 }]],
// [trombone, [...lowHarmony, { transpose: -12, volume: 0.056 }]],
];

return { tracks, cycle };
Expand Down
Loading

0 comments on commit 5ea1376

Please sign in to comment.