Created
July 13, 2016 21:58
-
-
Save josiah-wolf-oberholtzer/ec8f6ad0c1d8614ad4643c3cd893b810 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- encoding: utf-8 -*- | |
from abjad import * | |
def make_string_trio(): | |
#rhythm_maker = rhythmmakertools.TaleaRhythmMaker( | |
# talea=rhythmmakertools.Talea([1, 2, 3, -1], 8), | |
# ) | |
#durations = [Duration(4, 4)] * 4 | |
score = make_empty_score() | |
#score = add_rhythms(score, rhythm_maker, durations) | |
#score = add_pitches(score) | |
#score = add_attachments(score) | |
#score = add_midi_instruments(score) | |
return score | |
#lilypond_file = prettify_score(score) | |
#return lilypond_file | |
def make_empty_score(): | |
# Violin | |
violin_voice = Voice() | |
violin_staff = Staff([violin_voice], name='Violin Staff') | |
attach(Clef('treble'), violin_staff) | |
attach(instrumenttools.Violin(), violin_staff) | |
# Viola | |
viola_voice = Voice() | |
viola_staff = Staff([viola_voice], name='Viola Staff') | |
attach(Clef('alto'), viola_staff) | |
attach(instrumenttools.Viola(), viola_staff) | |
# Cello | |
cello_voice = Voice() | |
cello_staff = Staff([cello_voice], name='Cello Staff') | |
attach(Clef('bass'), cello_staff) | |
attach(instrumenttools.Cello(), cello_staff) | |
# Everything else | |
staff_group = StaffGroup([violin_staff, viola_staff, cello_staff]) | |
score = Score([staff_group]) | |
# Return the score | |
return score | |
def add_rhythms(score, rhythm_maker, durations): | |
selection = select(score).by_class(Voice) | |
for index, voice in enumerate(selection): | |
rhythm = rhythm_maker(durations, rotation=-index) | |
voice.extend(rhythm) | |
return score | |
def add_pitches(score): | |
pitches = pitchtools.PitchSegment("g b d' f'") | |
logical_ties = select(score).by_logical_tie(pitched=True) | |
for i, logical_tie in enumerate(logical_ties): | |
index = i % len(pitches) | |
pitch = pitches[index] | |
for note in logical_tie: | |
note.written_pitch = pitch | |
return score | |
def add_attachments(score): | |
selection = select(score).by_class(Voice) | |
for voice in selection: | |
phrase_selection = select(voice).by_leaf().by_run(Note) | |
for phrase in phrase_selection: | |
if len(phrase) > 1: | |
slur = Slur() | |
attach(slur, phrase) | |
accent = Articulation('accent') | |
attach(accent, phrase[0]) | |
return score | |
def add_midi_instruments(score): | |
violin_staff = score['Violin Staff'] | |
set_(violin_staff).midi_instrument = schemetools.Scheme( | |
'violin', force_quotes=True) | |
viola_staff = score['Viola Staff'] | |
set_(viola_staff).midi_instrument = schemetools.Scheme( | |
'viola', force_quotes=True) | |
cello_staff = score['Cello Staff'] | |
set_(cello_staff).midi_instrument = schemetools.Scheme( | |
'cello', force_quotes=True) | |
return score | |
def prettify_score(score): | |
override(score).spacing_spanner.strict_grace_spacing = True | |
override(score).spacing_spanner.strict_note_spacing = True | |
override(score).spacing_spanner.uniform_stretching = True | |
override(score).stem.length = 8.25 | |
override(score).text_script.outside_staff_padding = 1 | |
override(score).tuplet_bracket.bracket_visibility = True | |
override(score).tuplet_bracket.minimum_length = 3 | |
override(score).tuplet_bracket.outside_staff_padding = 1.5 | |
override(score).tuplet_bracket.padding = 1.5 | |
override(score).tuplet_bracket.springs_and_rods = \ | |
schemetools.Scheme('ly:spanner::set-spacing-rods', verbatim=True) | |
override(score).tuplet_bracket.staff_padding = 2.25 | |
override(score).tuplet_number.text = \ | |
schemetools.Scheme('tuplet-number::calc-fraction-text', verbatim=True) | |
set_(score).proportional_notation_duration = \ | |
schemetools.SchemeMoment(1, 24) | |
set_(score).tuplet_full_length = True | |
lilypond_file = lilypondfiletools.make_basic_lilypond_file(score) | |
lilypond_file.layout_block.indent = lilypondfiletools.LilyPondDimension(20, 'mm') | |
lilypond_file.layout_block.short_indent = lilypondfiletools.LilyPondDimension(15, 'mm') | |
return lilypond_file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment