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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
# GNU Solfege - free ear training software
# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2008 Tom Cato Amundsen
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import urlparse
import gtk
import re, math
import mpd
import random
import soundcard, cfg
def mangle_email(email):
email = email.replace("@", " ,, ")
email = email.replace(".", " ,, ")
return email
def play_tone(midi_int):
soundcard.play_note(cfg.get_int('config/preferred_instrument'),
4, midi_int,
cfg.get_int('config/preferred_instrument_velocity'))
def int_to_intervalname(i, shortname=None, updown=None):
if shortname:
n = mpd.interval.short_name[abs(i)]
else:
n = mpd.Interval.new_from_int(abs(i)).get_name()
if updown:
if i > 0:
n = "%s %s" % (n, _("up"))
elif i < 0:
n = "%s %s" % (n, _("down"))
return n
def filter_intervals_within_range(lowest, highest, irange):
assert isinstance(lowest, basestring)
assert isinstance(highest, basestring)
lowest = mpd.notename_to_int(lowest)
highest = mpd.notename_to_int(highest)
i = highest - lowest
return [x for x in irange if abs(x) <= i]
def random_interval(tonika, lowest, highest, irange):
"""
Return an int representing the interval.
Return None if it is not possible to create an interval.
"""
if isinstance(tonika, mpd.MusicalPitch):
tonika = tonika.semitone_pitch()
assert isinstance(tonika, int)
assert type(lowest) == type(highest)
if isinstance(lowest, basestring):
lowest = mpd.notename_to_int(lowest)
if isinstance(highest, basestring):
highest = mpd.notename_to_int(highest)
assert isinstance(lowest, int)
assert isinstance(highest, int)
assert lowest <= highest
assert isinstance(irange, list)
v = []
for i in irange:
if lowest <= tonika + i <= highest:
v.append(i)
if not v:
return None
return random.choice(v)
def random_tonika_and_interval(lowest, highest, irange):
""" Return a tuple (tonika, interval) of types (MusicalPitch, int).
Return (None, None) if it is not possible to make an interval
because of a conflict between the lowest/highest and the available
intervals
lowest
highest an integer or a string representing a notename
irange list of integers representing intervals. 1 is minor
second up, -2 is major second down
"""
assert type(lowest) == type(highest)
if isinstance(lowest, basestring):
lowest = mpd.notename_to_int(lowest)
if isinstance(highest, basestring):
highest = mpd.notename_to_int(highest)
assert isinstance(lowest, int)
assert isinstance(highest, int)
assert lowest <= highest
assert isinstance(irange, list)
# first we find out what is the largest interval we can have
i = highest - lowest
# then filter irange to only use intervals <= i
v = [x for x in irange if abs(x) <= i]
if not v:
return None, None
interval = random.choice(v)
# then, using that interval, make a list of possible tonikas
tl = []
for t in range(lowest, highest + 1):
if lowest <= t + interval <= highest:
tl.append(t)
tonika = mpd.MusicalPitch.new_from_int(random.choice(tl))
return tonika, interval
def adjust_low_high_to_irange(lowest, highest, irange):
"""
lowest
highest string representing a notename
irange list of integers representing intervals. 1 is minor
second up, -2 is major second down
return tuple with two integers
"""
assert isinstance(lowest, basestring)
assert isinstance(highest, basestring)
L = mpd.notename_to_int(lowest)
H = mpd.notename_to_int(highest)
# find the largest interval that can be asked for
r = max(abs(max(irange)), abs(min(irange)))
# adjust the lowest and highest note, if the intervals are larger than
# the range we should try to stay within
if H - L < r:
H = H + (r - (H - L)) / 2
L = L - (r - (H - L))
return L, H
def un_escape_url_string(s):
r = re.compile("(%([0-9A-F][0-9A-F]))")
m = r.search(s)
def f(m):
return chr(eval("0x%s" % m.groups()[1]))
return r.sub(f, s)
def _str_to_dict(s):
D = {}
if s:
V = s.split(";")
for e in V:
n, v = e.split("=")
D[n.strip()] = v.strip()
for k in D:
D[k] = un_escape_url_string(D[k])
return D
def get_modifier(s):
m = (('<ctrl>', gtk.gdk.CONTROL_MASK),
('<shift>', gtk.gdk.SHIFT_MASK),
('<alt>', gtk.gdk.MOD1_MASK))
for mod, mask in m:
if s.startswith(mod):
return mask, s[len(mod):]
return None, s
def parse_key_string(string):
if not string:
return None, None
mod = 0
m, s = get_modifier(string)
while m:
mod = mod + m
m, s = get_modifier(s)
if len(s) == 1:
return mod, ord(s)
else:
return mod, gtk.keysyms.__dict__[s]
def freq_to_notename_cent(freq):
e = 440.0
if e > freq:
while e > freq:
e = e / 2
else:
while e < freq/2:
e = e * 2
d = freq / e
v = 12 * math.log(d) / math.log(2)
i = int(v)
cent = (v-i) * 100
n = ('a', 'ais', 'b', 'c', 'cis', 'd', 'dis', 'e', 'f', 'fis', 'g', 'gis')
if cent > 50:
return n[(i+1) % 12], cent-100
return n[int(v)], (v-int(v)) * 100
def exercise_name_to_module_name(name):
# it is just plain luck that this works...
return name.replace('-', '')
def compare_version_strings(A, B):
"""
Works with version strings like 1, 1.0, 1.1.3, 1.4.3.2
Returns:
-1 if A < B
0 if A == B
1 if A > B
"""
if A == B == "":
return 0
elif A == "":
return -1
elif B == "":
return 1
av = map(lambda s: int(s), A.split("."))
bv = map(lambda s: int(s), B.split("."))
x = 0
while len(av) > x < len(bv):
if av[x] > bv[x]:
return 1
elif av[x] < bv[x]:
return -1
x = x + 1
if len(av) > len(bv):
return 1
elif len(av) < len(bv):
return -1
return 0
class Url:
def __init__(self, href):
self.href = href
self.protocol, loc, path, params, query, self.anchor = urlparse.urlparse(self.href)
if not self.protocol:
self.filename = path
elif self.protocol == 'solfege':
v = path.split("/")
self.action = v[0]
self.lessonfile = "/".join(v[1:])
if len(v) > 2 and self.lessonfile and '?' in self.lessonfile:
self.lessonfile, self.config = self.lessonfile.split('?', 1)
else:
self.config = {}
if self.config:
self.config = _str_to_dict(self.config)
def string_get_line_at(s, idx):
"""
Return the whole line, excluding new-line characters, that
the character at idx is part of. It the char at idx is a new-line
character, then we consider this char the last character of the line.
"""
start = idx
while start > 0 and s[start -1] != "\n":
start -= 1
end = idx
if s[end] != "\n":
while end < len(s) -1 and s[end + 1] != "\n":
end += 1
return s[start:end+1].strip("\n")
|