-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchord_transforms.py
51 lines (38 loc) · 1.63 KB
/
chord_transforms.py
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
import typing
if typing.TYPE_CHECKING:
from chord import Chord
class ChordTransformationStrategy(typing.Protocol):
def apply(self, chord: 'Chord') -> None:
raise NotImplementedError("This method should be overridden in subclasses.")
class Drop1(ChordTransformationStrategy):
def apply(self, chord: 'Chord') -> None:
chord.notes[-1].move_by_one_octave_downward()
chord.remove_duplicate_notes()
class Drop2(ChordTransformationStrategy):
def apply(self, chord: 'Chord') -> None:
chord.notes[-2].move_by_one_octave_downward()
chord.remove_duplicate_notes()
class Drop3(ChordTransformationStrategy):
def apply(self, chord: 'Chord') -> None:
if len(chord.notes) < 5:
chord.notes[-2].move_by_one_octave_downward()
else:
chord.notes[-3].move_by_one_octave_downward()
chord.remove_duplicate_notes()
class Drop23(ChordTransformationStrategy):
def apply(self, chord: 'Chord') -> None:
if len(chord.notes) < 5:
chord.notes[-2].move_by_one_octave_downward()
else:
chord.notes[-2].move_by_one_octave_downward()
chord.notes[-3].move_by_one_octave_downward()
chord.remove_duplicate_notes()
class Drop24(ChordTransformationStrategy):
def apply(self, chord: 'Chord') -> None:
if len(chord.notes) < 6:
chord.notes[-2].move_by_one_octave_downward()
chord.notes[-3].move_by_one_octave_downward()
else:
chord.notes[-2].move_by_one_octave_downward()
chord.notes[-4].move_by_one_octave_downward()
chord.remove_duplicate_notes()