Overview
Comment: | Added back in section ordering support |
---|---|
Timelines: | family | ancestors | descendants | both | feature/abc |
Files: | files | file ages | folders |
SHA1: |
1560bc634c7c6dec751c050050629195 |
User & Date: | brian on 2011-09-22 17:44:23 |
Other Links: | branch diff | manifest | tags |
Context
2011-09-22
| ||
17:46 | Added back in section ordering support check-in: 6dd4fffb1d user: brian tags: feature/abc | |
17:44 | Added back in section ordering support check-in: 1560bc634c user: brian tags: feature/abc | |
17:04 | Finally broke the program out into functions. It's now much cleaner and easier to underntand. check-in: 3cac4f013d user: brian tags: feature/abc | |
Changes
Modified cfg.py from [77ab4fec9b] to [b052479df1].
︙ | ︙ | |||
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | "score_line": "i2 %(time)f %(duration)f 7000 %(octave)d.%(note)s 2", "octave": 8, "duration": 10, "grammars": { # Notes for this instrument to use in this piece "u": ["C C C C F/2 F/2 F/2 (u)", "D D G/2 A/2 D D (u)"], }, }, }, } print '''f1 0 512 10 1 f2 0 8192 10 .24 .64 .88 .76 .06 .5 .34 .08 f3 0 1025 10 1 t 0 60 ''' start = 0 | > > > > > > > > | > | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | "score_line": "i2 %(time)f %(duration)f 7000 %(octave)d.%(note)s 2", "octave": 8, "duration": 10, "grammars": { # Notes for this instrument to use in this piece "u": ["C C C C F/2 F/2 F/2 (u)", "D D G/2 A/2 D D (u)"], }, }, "harmony": { # Instrument 'melody' "score_line": "i2 %(time)f %(duration)f 7000 %(octave)d.%(note)s 2", "octave": 8, "duration": 10, "grammars": { # Notes for this instrument to use in this piece "u": ["C C C C F/2 F/2 F/2 (u)", "D D G/2 A/2 D D (u)"], }, }, }, } print '''f1 0 512 10 1 f2 0 8192 10 .24 .64 .88 .76 .06 .5 .34 .08 f3 0 1025 10 1 t 0 60 ''' start = 0 for section in ["verse1", "verse2"]: section = composition[section] # for subsection in section instrs = [] for instr in section.values(): sync = None max_time = instr["duration"] instr_score = render_instr(instr, sync, max_time) instrs.append(instr_score) |
︙ | ︙ |
Modified test.sco from [4da964b4dc] to [00c6c84bf8].
|
| | | | | < < < < < < < < < < < < < < < < < | | | | | | | | | | | | | < < < < | < | | < < | | < < | | < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | f1 0 512 10 1 f2 0 8192 10 .24 .64 .88 .76 .06 .5 .34 .08 f3 0 1025 10 1 t 0 60 i2 0.000000 0.250000 7000 8.00 2 i2 0.250000 0.500000 7000 8.07 2 i2 0.750000 0.500000 7000 8.07 2 i2 1.250000 0.500000 7000 8.07 2 i2 1.750000 0.250000 7000 8.00 2 i2 2.000000 0.250000 7000 7.11 2 i2 2.250000 0.250000 7000 9.05 2 i2 2.500000 0.250000 7000 8.00 2 i2 2.750000 0.250000 7000 8.05 2 i2 3.000000 0.250000 7000 8.00 2 i2 3.250000 0.250000 7000 8.11 2 i2 3.500000 0.250000 7000 8.04 2 i2 3.750000 0.250000 7000 8.09 2 i2 4.000000 0.250000 7000 8.02 2 i2 4.250000 0.250000 7000 8.07 2 i2 4.500000 0.250000 7000 8.05 2 i2 4.750000 0.250000 7000 8.05 2 i2 5.000000 2.000000 7000 8.11 2 i2 7.000000 0.250000 7000 8.00 2 i2 7.250000 0.250000 7000 8.00 2 i2 7.500000 0.250000 7000 8.00 2 i2 7.750000 0.250000 7000 8.00 2 i2 8.000000 0.500000 7000 8.05 2 i2 8.500000 0.500000 7000 8.05 2 i2 9.000000 0.250000 7000 8.00 2 i2 9.250000 0.250000 7000 8.00 2 i2 9.500000 0.250000 7000 8.00 2 i2 9.750000 0.250000 7000 8.00 2 i2 10.000000 0.500000 7000 8.05 2 i2 10.500000 0.500000 7000 8.05 2 i2 11.000000 0.500000 7000 8.05 2 i2 7.000000 0.250000 7000 8.02 2 i2 7.250000 0.250000 7000 8.02 2 i2 7.500000 0.500000 7000 8.07 2 i2 8.000000 0.500000 7000 8.09 2 i2 8.500000 0.250000 7000 8.02 2 i2 8.750000 3.000000 7000 8.02 2 |