Overview
Comment: | Can now set an instrument's default octave beside the instrument's score |
---|---|
Timelines: | family | ancestors | descendants | both | master |
Files: | files | file ages | folders |
SHA1: |
ff85cece1dc2388809b14e8cfc4a74ef |
User & Date: | spiffytech@gmail.com on 2010-11-18 03:10:24 |
Other Links: | branch diff | manifest | tags |
Context
2010-11-18
| ||
16:06 | Did some composing stuff check-in: 1987470dfc user: spiffytech@gmail.com tags: master | |
03:10 | Can now set an instrument's default octave beside the instrument's score check-in: ff85cece1d user: spiffytech@gmail.com tags: master | |
03:04 | Bug: octave modifiers (,') were acting as (up,down) not (down,up) check-in: e6bf0dbf82 user: spiffytech@gmail.com tags: master | |
Changes
Modified cfg.py from [2306af4935] to [8500dd2d15].
︙ | |||
14 15 16 17 18 19 20 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | - + - + | tempo = 1/bps max_duration = 1 composition = { "a": { # Movement block 'a' for reuse throughout the piece "bassline": { # Instrument 'melody' "score_line": "i1 %(time)f %(duration)f 10000 %(octave)d.%(note)s", |
︙ |
Modified parse.py from [40393160ad] to [668286027e].
︙ | |||
127 128 129 130 131 132 133 | 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | - - + - + | p[0] = p[2] def p_octave(p): '''pitch : pitch OCTAVE ''' count = len(p[2]) increment_or_decrement = 1 if p[2][0] == "'" else -1 |
︙ |
Modified test.sco from [c2061b1574] to [5fa24f6626].
| 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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + |
|
Modified todo.org from [f88a59ddf7] to [d5cbe62893].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | - + - + |
|
︙ |