Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/common/Generation/VariationPitch.py
blob: 5a2b1514cc39453167ccfc0dafe7185672cca363 (plain)
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
import random

class PitchReverse:
    def __init__( self ):
        self.pitchList = []

    def reorderPitch( self, notesList ):
        self.extractOneValue(notesList)
        self.pitchList.reverse()
        for i in range(len(notesList)):
            notesList[i].pitch = self.pitchList[i]

        return notesList

    def extractOneValue( self, notesList ):
        self.pitchList = []
        for note in notesList:
            self.pitchList.append(note.pitch)

class PitchSort( PitchReverse ):
    def __init__( self ):
        PitchReverse.__init__( self )

    def reorderPitch( self, notesList ):
        PitchReverse.extractOneValue(self, notesList)
        self.pitchList.sort()
        for i in range(len(notesList)):
            notesList[i].pitch = self.pitchList[i]

        return notesList

class PitchShuffle( PitchReverse ):
    def __init__( self ):
        PitchReverse.__init__ ( self )

    def reorderPitch( self, notesList ):
        PitchReverse.extractOneValue(self, notesList)
        self.pitchList = random.sample(self.pitchList, len(self.pitchList))
        for i in range(len(notesList)):
            notesList[i].pitch = self.pitchList[i]

        return notesList

class PitchMarkov:
    def __init__( self ):
        self.originalList = []

    def getNewList( self, notesList, order=1 ):
        self.playedNotes = []
        self.extractOneValue( notesList, order )
        self.playedNotes = self.originalList[:order]
        
        for i in range(len(self.originalList) - order):
            self.playedNotes.append(self.pickupNewValue(order))

        for i in range(len(notesList)):
            notesList[i].pitch = self.playedNotes[i]

        return notesList

    def extractOneValue( self, notesList, order ):
        self.originalList = []
        for note in notesList:
            self.originalList.append(note.pitch)
        for i in range(order):
            self.originalList.append(self.originalList[i])

    def pickupNewValue( self, order ):
        condition = False
        self.probTable = []
        for ilist in range(len(self.originalList) - order):         
            for iord in range(order):
                if self.playedNotes[len(self.playedNotes) - (iord + 1)] != self.originalList[(order - 1) + ilist - iord]:
                    condition = False
                    break
                else:
                    condition = True

            if condition == True:
                self.probTable.append(self.originalList[ilist + order])

        return self.probTable[random.randint(0, (len(self.probTable) - 1))]