-
Notifications
You must be signed in to change notification settings - Fork 5
/
barycenter4
158 lines (121 loc) · 3.35 KB
/
barycenter4
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#!/usr/bin/env perl
use strict;
use warnings;
# Use local libraries
use AI::Genetic;
use List::Util qw/ uniq /;
use MIDI::Util qw(setup_score set_chan_patch);
use Music::Chord::Namer 'chordname';
use Music::Duration::Partition;
use Music::Interval::Barycentric;
use Music::Note;
use Music::Scales qw(get_scale_MIDI);
my $bpm = shift || 120;
my $patch = shift || 4; # Treble patch
my $population = 50;
my $iterations = 2;
my $reps = 7; # Loop repetitions
my $max = 50; # Number of evolved results
my $top = 8; # Highest value of chromosome
my $base = 60; # Base of middle C MIDI values
my $size = 4; # Phrase duration size in quarter notes
my $t_octave = 5; # Treble octave
my $b_octave = 2; # Bass octave
my $b_patch = 35; #42
my $whole = 'wn';
my $half = 'hn';
my $sizes = { %MIDI::Simple::Length };
my @fittest = evo($max);
my $score = setup_score(bpm => $bpm, patch => $patch);
my $count = 0; # Count the durations in fit()
$score->synch(
\&fit,
\&bass,
\&drums,
);
$score->write_score("$0.mid");
sub fit {
for my $i (0 .. $reps * @fittest) {
legato($whole, $fittest[$i % @fittest]);
}
# Resolution
legato($whole, [0, 4, 7]);
}
sub legato {
my ($dura, $fit) = @_;
$score->n($dura, map { $base + $_ } @$fit);
$count += $sizes->{$dura};
}
sub bass {
set_chan_patch($score, 1, $b_patch);
my @scale = get_scale_MIDI('C', $b_octave, 'pentatonic');
my $mdp = Music::Duration::Partition->new(
size => $size,
pool => [qw/ hn dhn qn /],
);
my $motif = $mdp->motif;
my $bass_count = 0;
my $n = 0;
# Play a random note for each motif
while ($bass_count < $count) {
my $m = $motif->[$n % @$motif];
$score->n($m, $scale[int rand @scale]);
$bass_count += $sizes->{$m};
$n++;
}
$score->n($whole, $scale[0]);
}
sub drums {
set_chan_patch($score, 9, 0);
for my $duration (('qn') x $count) {
$score->n($duration, 44); # hi-hat
}
# Resolution
$score->n($whole, 49); # crash
}
sub evo {
my $max = shift;
my $ga = AI::Genetic->new(
-fitness => \&fitness,
-type => 'listvector',
-population => $population,
-crossover => 0.95,
-mutation => 0.01,
);
my $items = [ ([ 0 .. 11 ]) x 3 ]; # Chromatic triad
$ga->init($items);
$ga->evolve('rouletteTwoPoint', $iterations);
my %seen;
my @genes;
for my $fit ($ga->getFittest($max)) {
my @sorted = sort { $a <=> $b } @{ $fit->{GENES} };
next if $seen{"@sorted"}++;
push @genes, \@sorted;
}
my $i = 0;
for my $fit (@genes) {
$i++;
my @named;
for my $n (@$fit) {
my $note = Music::Note->new($n + $base, 'midinum');
push @named, $note->format('isobase');
}
printf "%d. [%d,%d,%d] => (%s,%s,%s) => %s\n",
$i, @$fit, @named, scalar chordname(@named);
}
return @genes;
}
sub fitness {
my $chromosome = shift;
# Chords with duplicate notes not allowed
return 0
if @$chromosome > uniq(@$chromosome);
# Chords with sharps or flats not allowed
for my $i (@$chromosome) {
my $note = Music::Note->new($i + $base, 'midinum');
return 0
if $note->format('isobase') =~ /#|b/;
}
my $e = evenness_index($chromosome);
return $top - $e;
}