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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
|
# GNU Solfege - free ear training software
# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 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 gtk, gobject
import gu
import inputwidgets
from specialwidgets import RandomTransposeDialog
from exceptiondialog import ExceptionDialog
import soundcard, mpd
import utils
import random
import locale
import sys
import traceback
import cfg
import lessonfile
import osutils
class QstatusDefs:
QSTATUS_NO = 0
QSTATUS_NEW = 1
QSTATUS_WRONG = 2
QSTATUS_SOLVED = 3
QSTATUS_GIVE_UP = 4
QSTATUS_VOICING_SOLVED = 5
QSTATUS_VOICING_WRONG = 6
QSTATUS_TYPE_WRONG = 7
QSTATUS_TYPE_SOLVED = 8
class Teacher(cfg.ConfigUtils, QstatusDefs):
def __init__(self, exname, app):
cfg.ConfigUtils.__init__(self, exname)
self.m_app = app
self.q_status = self.QSTATUS_NO
self.m_statistics = None
self.m_timeout_handle = None
self.m_P = None
# The file name, not a file object
self.m_lessonfile = None
self.m_question = None
def get_instrument_config(self, num):
if self.get_bool('config/override_default_instrument'):
instr_low = self.get_int('config/lowest_instrument')
instr_low_vel = self.get_int('config/lowest_instrument_velocity')
instr_middle = self.get_int('config/middle_instrument')
instr_middle_vel = self.get_int('config/middle_instrument_velocity')
instr_high = self.get_int('config/highest_instrument')
instr_high_vel = self.get_int('config/highest_instrument_velocity')
else:
instr_low = instr_middle = instr_high \
= self.get_int('config/preferred_instrument')
instr_low_vel = instr_middle_vel = instr_high_vel \
= self.get_int('config/preferred_instrument_velocity')
if num == 2:
return instr_low, instr_low_vel, instr_high, instr_high_vel
else:
return instr_low, instr_low_vel, \
instr_middle, instr_middle_vel, instr_high, instr_high_vel
def maybe_auto_new_question(self):
if self.get_bool('new_question_automatically'):
if self.m_timeout_handle is None:
def remove_timeout(self=self):
self.m_timeout_handle = None
self.g_view.new_question()
self.m_timeout_handle = gobject.timeout_add(int(self.get_float('seconds_before_new_question')*1000), remove_timeout)
def end_practise(self):
if self.m_timeout_handle:
gobject.source_remove(self.m_timeout_handle)
self.m_timeout_handle = None
self.q_status = self.QSTATUS_NO
soundcard.synth.stop()
# We test for m_P because m_P might be None in some cases. For example
# if the user answers no when asked to run a lesson file that will
# run external programs.
if self.m_statistics and self.m_P:
self.m_statistics.save_data()
def exit_test_mode(self):
"""
Shared between harmonic and melodic interval.
"""
self.m_statistics.exit_test_mode()
def set_lessonfile(self, lessonfile):
"""
Set the variable 'm_lessonfile' and
parse the lesson file and save the statistics.
"""
self.m_lessonfile = lessonfile
self.parse_lessonfile()
if self.m_P and self.m_statistics:
self.m_statistics.lessonfile_changed(self.m_lessonfile)
def parse_lessonfile(self):
self.m_question = None
self.q_status = self.QSTATUS_NO
if not self.m_lessonfile:
self.m_P = None
return
self.m_P = self.lessonfileclass()
try:
self.m_P.parse_file(self.m_lessonfile)
# We don't have to check for LessonfileExceptions here because
# the global exception hook will catch them.
except IOError, e:
self.m_P = None
self.m_app.m_ui.display_error_message(
"""There was an IOError while trying to parse a lesson file:
%s.""" % e)
return
if [q for q in self.m_P.m_questions if isinstance(q['music'], lessonfile.Cmdline)]:
run = gu.dialog_yesno(_("The lessonfile contain potentially dangerous code because it run external programs. Run anyway?"))
if not run:
self.m_P = None
def check_askfor(self):
if self.m_custom_mode:
self.set_list('ask_for_names', range(len(self.m_P.get_unique_cnames())))
def play_tonic(self):
"""
Play the tonic of the question, if defined.
"""
if 'tonic' in self.m_P.get_question():
self.m_P.play_question(None, 'tonic')
class MelodicIntervalTeacher(Teacher):
"""
Base class for interval exercises where
you can have more than one interval.
When this class was created it was used by melodic-intevall
and sing-interval.
"""
OK = 0
ERR_PICKY = 1
ERR_CONFIGURE = 2
def __init__(self, exname, app):
Teacher.__init__(self, exname, app)
self.m_tonika = None
self.m_question = []
def new_question(self, L, H):
assert isinstance(L, basestring)
assert isinstance(H, basestring)
if self.get_list('ask_for_intervals_0') == []:
return self.ERR_CONFIGURE
L, H = utils.adjust_low_high_to_irange(L, H,
self.get_list('ask_for_intervals_0'))
if self.m_timeout_handle:
gobject.source_remove(self.m_timeout_handle)
self.m_timeout_handle = None
if self.m_app.m_test_mode:
old_tonika = self.m_tonika
if old_tonika:
old_toptone = old_tonika + self.m_question[0]
self.m_P.next_test_question()
self.m_question = [self.m_P.m_test_questions[self.m_P.m_test_idx]]
#FIXME use tone pitch range from preferences window.
self.m_tonika = mpd.MusicalPitch()
# Do this loop to make sure two questions in a row does not have
# the same top or bottom tone.
while True:
self.m_tonika.randomize("f", "f'")
if not old_tonika:
break
if old_tonika != self.m_tonika and self.m_tonika + self.m_question[0] != old_toptone:
break
print "try again."
self.q_status = self.QSTATUS_NEW
return self.OK
if self.get_bool('config/picky_on_new_question') \
and self.q_status in [self.QSTATUS_NEW, self.QSTATUS_WRONG]:
return self.ERR_PICKY
self.q_status = self.QSTATUS_NO
last_tonika = self.m_tonika
last_question = self.m_question
for x in range(10):# we try max 10 times to get a question that
# is different from the last one.
self.m_tonika, i = utils.random_tonika_and_interval(L, H,
self.get_list('ask_for_intervals_0'))
self.m_question = [i]
t = self.m_tonika + i
for x in range(1, self.get_int('number_of_intervals=1')):
if not self.get_list('ask_for_intervals_%i' % x):
return self.ERR_CONFIGURE
i = utils.random_interval(t, L, H,
self.get_list('ask_for_intervals_%i' % x))
if not i:
# if we can't find an interval that is with the range
# we, find the interval that is closest to the range
# of notes the user want. This mean that the questions
# are not necessarily that random.
low = mpd.MusicalPitch.new_from_int(L)
high = mpd.MusicalPitch.new_from_int(H)
off = 1000
best = None
for interval in self.get_list('ask_for_intervals_%i'%x):
try:
if t + interval > high:
if t + interval - high < off:
off = t + interval - high
best = interval
if t + interval < low:
if low - (t + interval) < off:
off = low - (t + interval)
best = interval
except ValueError:
return self.ERR_CONFIGURE
i = best
self.m_question.append(i)
t = t + i
if last_tonika is not None \
and last_tonika == self.m_tonika \
and last_question == self.m_question:
continue
break
self.q_status = self.QSTATUS_NEW
return self.OK
def play_question(self):
if self.q_status == self.QSTATUS_NO:
return
t = self.m_tonika
m = soundcard.Track()
m.set_bpm(self.get_int('config/default_bpm'))
m.set_patch(self.get_int('config/preferred_instrument'))
m.note(4, self.m_tonika.semitone_pitch(),
self.get_int('config/preferred_instrument_velocity'))
for i in self.m_question:
t = t + i
m.note(4, t.semitone_pitch(),
self.get_int('config/preferred_instrument_velocity'))
soundcard.synth.play_track(m)
class RhythmAddOnClass:
RHYTHMS = ("c4", "c8 c8", "c16 c16 c16 c16", "c8 c16 c16",
"c16 c16 c8", "c16 c8 c16", "c8. c16", "c16 c8.",
"r4", "r8c8", "r8 c16 c16", "r16 c16 c8", "r16c8c16",
"r16 c16 c16 c16", "r8 r16 c16", "r16 c8.",
"c12 c12 c12", "r12 c12 c12",
"c12 r12 c12", "c12 c12 r12", "r12 r12 c12", "r12 c12 r12",
"c4.", "c4 c8", # 22, 23
"c8 c4", "c8 c8 c8", # 24, 25
"c4 c16 c16", # 26
"c16 c16 c4", # 27
"c8 c8 c16 c16", #28
"c8 c16 c16 c8", #29
"c16 c16 c8 c8", #30
"c8 c16 c16 c16 c16", #31
"c16 c16 c8 c16 c16", #32
"c16 c16 c16 c16 c8", #33
"c16 c16 c16 c16 c16 c16", #34
)
def new_question(self):
"""returns:
self.ERR_PICKY : if the question is not yet solved and the
teacher is picky (== you have to solve the
question before a new is asked).
self.OK : if a new question was created.
self.ERR_NO_ELEMS : if no elements are set to be practised.
"""
if self.m_timeout_handle:
gobject.source_remove(self.m_timeout_handle)
self.m_timeout_handle = None
if self.get_bool('config/picky_on_new_question') \
and self.q_status in [self.QSTATUS_NEW, self.QSTATUS_WRONG]:
return self.ERR_PICKY
self.q_status = self.QSTATUS_NO
norest_v = []
v = []
for x in self.m_P.header.rhythm_elements:
if not (self.RHYTHMS[x][0] == "r"
and self.get_bool("not_start_with_rest")):
norest_v.append(x)
v.append(x)
if not v:
return self.ERR_NO_ELEMS
if not norest_v:
return self.ERR_NO_ELEMS
self.m_question = [random.choice(norest_v)]
for x in range(1, self.get_int("num_beats")):
self.m_question.append(random.choice(v))
self.q_status = self.QSTATUS_NEW
return self.OK
def get_music_notenames(self, count_in):
"""
Return a string with the notenames of the current question.
Include count in if count_in == True
"""
s = ""
if count_in:
if self.m_P.header.count_in_notelen:
count_in_notelen = self.m_P.header.count_in_notelen
else:
count_in_notelen = "4"
s = "d%s " % count_in_notelen * self.get_int("count_in")
s += " ".join([self.RHYTHMS[k] for k in self.m_question])
return s
def get_music_string(self):
"""
Return a complete mpd string of the current question that can
be feed to mpd.play_music.
"""
return r"\staff{%s}" % self.get_music_notenames(True)
def play_rhythm(self, rhythm):
"""
rhythm is a string. Example: 'c4 c8 c8 c4'
"""
# FIXME can we use lessonfile.Rhythm insted of this?
score = mpd.parser.parse_to_score_object(rhythm)
track = score.get_midi_events_as_percussion(cfg.get_int('config/preferred_instrument_velocity'))[0]
track.prepend_bpm(self.get_int("bpm"))
track.replace_note(mpd.notename_to_int("c"),
self.get_int("config/rhythm_perc"))
track.replace_note(mpd.notename_to_int("d"),
self.get_int("config/countin_perc"))
soundcard.synth.play_track(track)
def set_elements_variables(self):
"""
This is called from the on_start_practise() method of exercise
modules that generate rhythms and use these variables to select
rhythm elements.
"""
if self.m_custom_mode:
if not self.m_P.header.rhythm_elements:
self.m_P.header.rhythm_elements = self.m_P.header.configurable_rhythm_elements[:3]
self.m_P.header.visible_rhythm_elements = self.m_P.header.rhythm_elements[:]
else:
if not self.m_P.header.visible_rhythm_elements:
self.m_P.header.visible_rhythm_elements = \
self.m_P.header.rhythm_elements[:]
self.m_P.header.rhythm_elements = \
[n for n in self.m_P.header.rhythm_elements if n != 'newline']
def set_default_header_values(self):
for n, default in (('bpm', 60),
('count_in', 2),
('num_beats', 4)):
if n in self.m_P.header:
self.set_int(n, self.m_P.header[n])
else:
self.set_int(n, default)
class Gui(gtk.VBox, cfg.ConfigUtils, QstatusDefs):
"""Important members:
- practise_box
- action_area
- config_box
"""
short_delay=700
def __init__(self, teacher, window, no_notebook=0):
gtk.VBox.__init__(self)
cfg.ConfigUtils.__init__(self, teacher.m_exname)
self.m_key_bindings = {}
self.m_t = teacher
self.g_win = window
vbox = gtk.VBox()
vbox.set_spacing(gu.PAD)
vbox.set_border_width(gu.PAD)
vbox.show()
self.practise_box = gtk.VBox()
self.practise_box.show()
vbox.pack_start(self.practise_box, False)
self.g_lesson_heading = gtk.Label()
self.practise_box.pack_start(self.g_lesson_heading, padding=18)
self.action_area = gtk.HBox()
self.action_area.show()
vbox.pack_start(self.action_area, False)
self.config_box = gtk.VBox()
self.config_box.set_border_width(gu.PAD)
self.config_box.show()
if no_notebook:
self.pack_start(vbox)
self.pack_start(self.config_box, False)
self.g_notebook = None
else:
self.g_notebook = gtk.Notebook()
self.pack_start(self.g_notebook)
self.g_notebook.append_page(vbox, gtk.Label(_("Practise")))
self.g_notebook.append_page(self.config_box, gtk.Label(_("Config")))
self.g_notebook.show()
self.g_cancel_test = gtk.Button(_("_Cancel test"))
self.g_cancel_test.connect('clicked', self.on_cancel_test)
self.action_area.pack_end(self.g_cancel_test, False)
def on_cancel_test(self, *w):
self.g_cancel_test.hide()
self.on_end_practise()
self.g_win.exit_test_mode()
def do_test_complete(self):
self.on_end_practise()
req = self.m_t.m_P.get_test_requirement()
res = self.m_t.m_statistics.get()
if res >= req:
gu.dialog_ok(_("Test completed!\nYour score was %(score).1f%%.\nThe test requirement was %(requirement).1f%%.") % {'score': res * 100, 'requirement': req * 100})
self.m_t.m_statistics.store_test_passed()
else:
gu.dialog_ok(_("Test failed.\nYour score was %(score).1f%%.\nThe test requirement was %(requirement).1f%%.") % {'score': res * 100, 'requirement': req * 100})
self.g_cancel_test.hide()
self.g_win.exit_test_mode()
def set_lesson_heading(self, txt):
if txt:
self.g_lesson_heading.set_text('<span size="large"><b>%s</b></span>' % gu.escape(txt))
self.g_lesson_heading.set_use_markup(True)
self.g_lesson_heading.show()
else:
self.g_lesson_heading.hide()
def on_start_practise(self):
"""Dummy function that child classes can override.
"""
print "dummy abstract.Gui.on_start_practise", self.m_exname
def on_end_practise(self):
print "dummy abstract.Gui.on_end_practise", self.m_exname
def handle_config_box_visibility(self):
"""
Show self.config_box if it has any visible children, otherwise
hide it.
"""
if [c for c in self.config_box.get_children() \
if c.get_property('visible')]:
self.config_box.show()
else:
self.config_box.hide()
def on_key_press_event(self, widget, event):
if (self.g_notebook is None or self.g_notebook.get_current_page() == 0) \
and event.type == gtk.gdk.KEY_PRESS:
for s in self.m_key_bindings:
if self.keymatch(event, s):
self.m_key_bindings[s]()
return 1
def keymatch(self, event, cfname):
a, b = utils.parse_key_string(self.get_string(cfname))
return ((event.state & (gtk.gdk.CONTROL_MASK|gtk.gdk.SHIFT_MASK|gtk.gdk.MOD1_MASK)) == a) and (event.keyval == b)
def setup_statisticsviewer(self, viewclass, heading):
self.g_statview = viewclass(self.m_t.m_statistics, heading)
self.g_statview.show()
self.g_notebook.append_page(self.g_statview, gtk.Label(_("Statistics")))
self.g_notebook.connect('switch_page', self.on_switch_page)
def on_switch_page(self, notebook, obj, pagenum):
if pagenum == 2:
if isinstance(self.m_t, Teacher):
if self.m_t.m_P:
self.g_statview.update()
else:
self.g_statview.clear()
else:
self.g_statview.update()
def _add_auto_new_question_gui(self, box):
hbox = gu.bHBox(box, False)
hbox.set_spacing(gu.PAD_SMALL)
adj = gtk.Adjustment(0, 0, 10, 0.1, 1, 1)
spin = gu.nSpinButton(self.m_exname, 'seconds_before_new_question',
adj)
spin.set_digits(1)
label = gtk.Label(_("Delay (seconds):"))
label.show()
def f(button, spin=spin, label=label):
spin.set_sensitive(button.get_active())
label.set_sensitive(button.get_active())
b = gu.nCheckButton(self.m_exname, 'new_question_automatically',
_("_New question automatically."), callback=f)
hbox.pack_start(b, False)
label.set_sensitive(b.get_active())
hbox.pack_start(label, False)
spin.set_sensitive(b.get_active())
hbox.pack_start(spin, False)
def _lessonfile_exception(self, exception, sourcefile, lineno):
m = ExceptionDialog(exception)
try:
idx = exception.m_question_idx
except AttributeError:
idx = self.m_t.m_P._idx
if idx is not None:
m.add_text(_('Please check question number %(idx)i in the lesson file "%(lf)s".') % {'idx': self.m_t.m_P._idx+1, 'lf': self.m_t.m_P.m_filename})
if 'm_nonwrapped_text' in dir(exception):
m.add_nonwrapped_text(exception.m_nonwrapped_text)
if 'm_mpd_badcode' in dir(exception) and exception.m_mpd_badcode:
# some music classes may return an empty string if they have
# nothing useful to display.
m.add_nonwrapped_text(exception.m_mpd_badcode)
m.add_text(_('The exception was caught in\n"%(filename)s", line %(lineno)i.') % {'filename': sourcefile, 'lineno': lineno})
m.run()
m.destroy()
def _mpd_exception(self, exception, sourcefile, lineno):
try:
idx = exception.m_question_idx + 1
except AttributeError:
idx = self.m_t.m_P._idx + 1
m = ExceptionDialog(exception)
if 'm_mpd_varname' in dir(exception):
m.add_text(_('Failed to parse the music in the variable "%(varname)s" in question number %(idx)i in the lesson file "%(lf)s".') % {
'idx': idx,
'lf': self.m_t.m_P.m_filename,
'varname': exception.m_mpd_varname})
else:
m.add_text(_('Failed to parse the music for question number %(idx)i in the lesson file "%(lf)s".') % {'idx': self.m_t.m_P._idx+1, 'lf': self.m_t.m_P.m_filename})
if 'm_mpd_badcode' in dir(exception):
m.add_nonwrapped_text(exception.m_mpd_badcode)
m.add_text(_('The exception was caught in\n"%(filename)s", line %(lineno)i.') % {'filename': sourcefile, 'lineno': lineno})
m.run()
m.destroy()
def run_exception_handled(self, method, *args, **kwargs):
"""
Call method() and catch exceptions with standard_exception_handler.
"""
try:
return method(*args, **kwargs)
except Exception, e:
if not self.standard_exception_handler(e):
raise
def standard_exception_handler(self, e, cleanup_function=lambda: False):
"""
Use this method to try to catch a few common solfege exceptions.
It should only be used to catch exceptions after the file has
successfully parsed by the lessonfile parser, and only used in
exercises where the mpd code that might be wrong is comming from
lesson files, not generated code.
Usage:
try:
do something
except Exception, e:
if not self.standard_exception_handler(e):
raise
"""
sourcefile, lineno, func, code = traceback.extract_tb(sys.exc_info()[2])[0]
# We can replace characters because we will only display the
# file name, not open the file.
sourcefile = sourcefile.decode(sys.getfilesystemencoding(), 'replace')
if self.m_t.m_app.m_options.disable_exception_handler:
return False
elif isinstance(e, lessonfile.NoQuestionsConfiguredException):
cleanup_function()
self.g_win.display_error_message2(e.args[0], e.args[1])
return True
elif isinstance(e, lessonfile.LessonfileException):
cleanup_function()
self._lessonfile_exception(e, sourcefile, lineno)
return True
elif isinstance(e, mpd.MpdException):
cleanup_function()
self._mpd_exception(e, sourcefile, lineno)
return True
elif isinstance(e, osutils.OsUtilsException):
cleanup_function()
self.g_win.display_exception_message(e)
return True
return False
class RhythmAddOnGuiClass(object):
def add_select_elements_gui(self):
self.g_element_frame = frame = gtk.Frame(_("Rhythms to use in question"))
self.config_box.pack_start(frame, False)
self.g_select_rhythms_box = gu.NewLineBox()
self.g_select_rhythms_box.set_border_width(gu.PAD_SMALL)
frame.add(self.g_select_rhythms_box)
def add_select_num_beats_gui(self):
table = gtk.Table(2, 4, False)
self.config_box.pack_start(table, False)
###
label = gtk.Label(_("Number of beats in question:"))
label.set_alignment(1.0, 0.5)
table.attach(label, 0, 1, 0, 1, xpadding=gu.PAD_SMALL,
xoptions=gtk.FILL)
table.attach(gu.nSpinButton(self.m_exname, "num_beats",
gtk.Adjustment(4, 1, 100, 1, 10)),
1, 2, 0, 1, xoptions=gtk.FILL)
label = gtk.Label(_("Count in before question:"))
label.set_alignment(1.0, 0.5)
table.attach(label, 0, 1, 1, 2, xpadding=gu.PAD_SMALL,
xoptions=gtk.FILL)
table.attach(gu.nSpinButton(self.m_exname, "count_in",
gtk.Adjustment(2, 0, 10, 1, 10)),
1, 2, 1, 2, xoptions=gtk.FILL)
table.show_all()
def pngcheckbutton(self, i):
btn = gtk.CheckButton()
btn.add(gu.create_rhythm_image(RhythmAddOnClass.RHYTHMS[i]))
btn.show()
btn.connect('clicked', self.select_element_cb, i)
return btn
def update_select_elements_buttons(self):
"""
(Re)create the checkbuttons used to select which rhythm elements
to be used when creating questions. We only need to do this if
we are in m_custom_mode.
"""
self.g_select_rhythms_box.empty()
for n in self.m_t.m_P.header.configurable_rhythm_elements:
if n == 'newline':
self.g_select_rhythms_box.newline()
else:
b = self.pngcheckbutton(n)
self.g_select_rhythms_box.add_widget(b)
b.set_active(n in self.m_t.m_P.header.rhythm_elements)
self.g_select_rhythms_box.show_widgets()
def select_element_cb(self, button, element_num):
def sortlike(orig, b):
ret = []
for n in orig:
if n == 'newline':
ret.append('newline')
elif n in b:
ret.append(n)
return ret
if button.get_active():
if element_num not in self.m_t.m_P.header.rhythm_elements:
self.m_t.m_P.header.rhythm_elements.append(element_num)
self.m_t.m_P.header.rhythm_elements = sortlike(
self.m_t.m_P.header.configurable_rhythm_elements,
self.m_t.m_P.header.rhythm_elements)
else:
if element_num in self.m_t.m_P.header.rhythm_elements:
self.m_t.m_P.header.rhythm_elements.remove(element_num)
self.m_t.m_P.header.visible_rhythm_elements = \
self.m_t.m_P.header.rhythm_elements[:]
self.m_t.m_P.header.rhythm_elements = \
[n for n in self.m_t.m_P.header.rhythm_elements if n != 'newline']
class IntervalGui(Gui):
"""
Creates 'New interval' and 'Repeat' buttons in the action_area.
"""
def __init__(self, teacher, window):
Gui.__init__(self, teacher, window)
self.g_input = None
self.g_flashbar = gu.FlashBar()
self.g_flashbar.show()
self.practise_box.pack_start(self.g_flashbar, False)
self.practise_box.set_spacing(gu.PAD)
self.g_new_interval = gu.bButton(self.action_area, _("_New interval"),
self.new_question)
self.g_repeat = gu.bButton(self.action_area, _("_Repeat"), self.repeat_question)
self.g_repeat.set_sensitive(False)
self.setup_key_bindings()
def _create_select_inputwidget_gui(self):
"""
This will be called by HarmonicInterval and MelodicInterval
constructor
"""
hbox = gu.bHBox(self.config_box, False)
hbox.set_spacing(gu.PAD_SMALL)
gu.bLabel(hbox, _("Input interface:"), False)
combo = gtk.combo_box_new_text()
for i in range(len(inputwidgets.inputwidget_names)):
combo.append_text(inputwidgets.inputwidget_names[i])
if self.get_int('inputwidget') < len(inputwidgets.inputwidget_names):
combo.set_active(self.get_int('inputwidget'))
else:
combo.set_active(0)
combo.connect('changed', lambda w: self.use_inputwidget(w.get_active()))
hbox.pack_start(combo, False)
self.g_disable_unused_buttons = gu.nCheckButton(self.m_exname,
'disable_unused_intervals', _("_Disable unused buttons"))
hbox.pack_start(self.g_disable_unused_buttons)
def select_inputwidget(self):
"""
This will be called by HarmonicInterval and MelodicInterval
constructor
"""
i = self.get_int('inputwidget')
if i >= len(inputwidgets.inputwidget_names):
i = 0
self.use_inputwidget(i)
def use_inputwidget(self, i):
self.set_int('inputwidget', i)
if self.g_input:
self.g_input.destroy()
# FIXME UGH ugly ugly ugly, I'm lazy lazy lazy
import harmonicinterval
if isinstance(self, harmonicinterval.Gui):
v = ['intervals']
else:
v = []
for x in range(self.get_int('maximum_number_of_intervals')):
v.append('ask_for_intervals_%i' % x)
if i == 0:
assert inputwidgets.inputwidget_names[i] == _("Buttons")
self.g_input = inputwidgets.IntervalButtonsWidget(self.m_exname,
'intervals', self.click_on_interval, self.get_interval_input_list, v)
else:
self.g_input = inputwidgets.name_to_inputwidget(
inputwidgets.inputwidget_names[i],
self.click_on_interval)
self.practise_box.pack_start(self.g_input)
self.practise_box.reorder_child(self.g_input, 1)
self.g_input.show()
if self.m_t.m_tonika:
# Don't call on_end_practise if we are starting up the exercise.
# This whole thing is a mess.
self.on_end_practise()
self.g_disable_unused_buttons.set_sensitive(self.get_int('inputwidget')==0)
def setup_key_bindings(self):
keys = ['minor2', 'major2', 'minor3', 'major3',
'perfect4', 'diminished5', 'perfect5', 'minor6',
'major6', 'minor7', 'major7', 'perfect8',
'minor9', 'major9', 'minor10', 'major10']
self.m_key_bindings = {}
for idx in range(len(keys)):
self.m_key_bindings['interval_input/'+keys[idx]] = lambda idx=idx, self=self: self.click_on_interval(1, idx+1, None)
def repeat_question(self, *w):
self.m_t.play_question()
self.g_input.grab_focus_first_sensitive_button()
class LessonbasedGui(Gui):
def __init__(self, teacher, window, no_notebook=0):
Gui.__init__(self, teacher, window, no_notebook)
def add_random_transpose_gui(self):
self.g_random_transpose_box = hbox = gu.bHBox(self.config_box, False, False)
label = gtk.Label(_("Random transpose:"))
label.show()
hbox.pack_start(label, False)
hbox.set_spacing(6)
self.g_random_transpose = gtk.Label()
self.g_random_transpose.show()
hbox.pack_start(self.g_random_transpose)
button = gtk.Button(_("Change ..."))
button.show()
button.connect('clicked', self.run_random_transpose_dialog)
hbox.pack_start(button)
def run_random_transpose_dialog(self, widget):
dlg = RandomTransposeDialog(self.m_t.m_P.header.random_transpose, self.g_win)
response = dlg.run()
if response == gtk.RESPONSE_OK:
self.m_t.m_P.header.random_transpose = dlg.get_value()
if self.m_t.m_P.header.random_transpose == True:
self.g_random_transpose.set_text(_("Yes"))
elif self.m_t.m_P.header.random_transpose == False:
self.g_random_transpose.set_text(_("No"))
else:
self.g_random_transpose.set_text(str(self.m_t.m_P.header.random_transpose))
dlg.destroy()
def show_answer(self, widget=None):
"""
Show the answer in the g_music_displayer if we have one, if not
use a new window.
"""
if 'vmusic' in self.m_t.m_P.get_question():
varname = 'vmusic'
else:
varname = 'music'
if not isinstance(self.m_t.m_P.get_question()[varname], lessonfile.MpdDisplayable):
return
self.display_music(varname)
def display_music(self, varname):
"""
Display the music in the variable named by varname from
the currently selected question. This method will handle
the normal mpd and lessonfile exceptions.
"""
try:
if self.m_t.m_P.header.have_music_displayer:
fontsize = self.get_int('config/feta_font_size=20')
self.g_music_displayer.display(self.m_t.m_P.get_music(varname), fontsize)
else:
self.g_win.display_in_musicviewer(self.m_t.m_P.get_music(varname))
except mpd.MpdException, e:
e.m_mpd_varname = varname
e.m_mpd_badcode = self.m_t.m_P.get_question()[varname].get_err_context(e, self.m_t.m_P)
if not self.standard_exception_handler(e):
raise
def do_at_question_start_show_play(self):
"""
This method is shared by idbyname and elembuilder, and possibly
other exercises later. It will show and/or play music based on
the header.at_question_start variable.
It might raise mpd.MpdException.
"""
if self.m_t.m_P.header.at_question_start == 'show':
self.show_answer()
elif self.m_t.m_P.header.at_question_start == 'play':
self.m_t.m_P.play_question()
if 'cuemusic' in self.m_t.m_P.get_question():
self.display_music('cuemusic')
else:
self.m_t.m_P.play_question()
if 'show' in self.m_t.m_P.header.at_question_start \
and 'play' in self.m_t.m_P.header.at_question_start:
self.show_answer()
elif 'cuemusic' in self.m_t.m_P.get_question():
self.display_music('cuemusic')
def show_hide_at_question_start_buttons(self):
"""
Show and hide g_play_music, g_repeat and g_display_music
depending on the content of header.at_question_start.
This method is used by at least idbyname and elembuilder.
"""
if self.m_t.m_P.header.at_question_start == 'show':
self.g_play_music.show()
self.g_repeat.hide()
else:
self.g_play_music.hide()
self.g_repeat.show()
if self.m_t.m_P.header.at_question_start == 'play':
self.g_display_music.show()
else:
self.g_display_music.hide()
|