Created
July 31, 2016 00:38
-
-
Save jefftrevino/14ddd7578d3b2b8897bb991e5c9d8bde 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
# -*- coding: utf-8 -*- | |
from abjad import * | |
from itertools import product | |
from presentation import * | |
def intListToPitchClasses(intList): | |
pitchClasses = [] | |
masterStrings = ['d', 'c', 'b', 'e', 'f', 'g', 'a'] | |
masterPitchClasses = [pitchtools.NamedPitchClass(x) for x in masterStrings] | |
deviationDict = {-1:'s', 0:'', 1:'f'} | |
for pitchClass, deviation in zip(masterPitchClasses, intList): | |
pitchClass = pitchClass.apply_accidental(deviationDict[deviation]) | |
pitchClasses.append(pitchClass) | |
return pitchClasses | |
def sortPitchClasses(unsorted): | |
return [unsorted[1], unsorted[0], unsorted[3], unsorted[4], unsorted[5], unsorted[6], unsorted[2] ] | |
def classesToPitches(classList): | |
pitches = [pitchtools.NamedPitch(x, 4) for x in classList] | |
return pitches | |
def pitchesToNotes(pitchList): | |
return [Note(x, (1,4)) for x in pitchList] | |
def intListToString(intList): | |
outString = "" | |
conversionDict = {-1:'v', 0:'-', 1:'^'} | |
for c in intList: | |
outString += conversionDict[c] | |
outString = outString[:3] + "|" + outString[3:] | |
return outString | |
def addMarkupToMeasure(intList, measure): | |
pString = intListToString(intList) | |
scheme = schemetools.Scheme(pString, force_quotes=True) | |
markup = markuptools.Markup(markuptools.MarkupCommand('harp-pedal', scheme)) | |
attach(markup, measure[0]) | |
def intListToMeasure(intList): | |
pitchClasses = intListToPitchClasses(intList) | |
sortedClasses = sortPitchClasses(pitchClasses) | |
pitches = classesToPitches(sortedClasses) | |
notes = pitchesToNotes(pitches) | |
measure = Measure((7,4), notes) | |
addMarkupToMeasure(intList, measure) | |
return measure | |
def makeChart(): | |
staff = Staff([]) | |
voice = Voice([]) | |
intLists = list(product([-1,0,1],repeat=7)) | |
for n,x in enumerate(intLists): | |
print('rendering', x) | |
voice.append(intListToMeasure(x)) | |
staff.append(voice) | |
return staff | |
staff = makeChart() | |
score = Score([staff]) | |
lily = make_sketch_lilypond_file(score) | |
show(lily) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment