X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=gtk2_ardour%2Fmidi_list_editor.cc;h=2310f574421e941e2006a671ab5380f3373830cc;hb=d6e96a688dda3a9fa8fbb4c3a60526475aabb7bc;hp=b18b57bab79e1e606820ef1860f64e842c404c68;hpb=2d015c06104186af6711f6040a82448723971481;p=ardour.git diff --git a/gtk2_ardour/midi_list_editor.cc b/gtk2_ardour/midi_list_editor.cc index b18b57bab7..2310f57442 100644 --- a/gtk2_ardour/midi_list_editor.cc +++ b/gtk2_ardour/midi_list_editor.cc @@ -1,19 +1,19 @@ /* Copyright (C) 2009 Paul Davis - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + 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 2 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, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include @@ -24,7 +24,7 @@ #include "evoral/midi_util.h" #include "evoral/Note.hpp" -#include "ardour/beats_frames_converter.h" +#include "ardour/beats_samples_converter.h" #include "ardour/midi_model.h" #include "ardour/midi_region.h" #include "ardour/midi_source.h" @@ -37,18 +37,20 @@ #include "midi_list_editor.h" #include "note_player.h" +#include "ui_config.h" -#include "i18n.h" +#include "pbd/i18n.h" using namespace std; using namespace Gtk; +using namespace Gtkmm2ext; using namespace Glib; using namespace ARDOUR; using Timecode::BBT_Time; static map note_length_map; -static void +static void fill_note_length_map () { note_length_map.insert (make_pair (BBT_Time::ticks_per_beat, _("Whole"))); @@ -70,7 +72,7 @@ MidiListEditor::MidiListEditor (Session* s, boost::shared_ptr r, boo if (note_length_map.empty()) { fill_note_length_map (); } - + /* We do not handle nested sources/regions. Caller should have tackled this */ if (r->max_source_level() > 0) { @@ -88,7 +90,7 @@ MidiListEditor::MidiListEditor (Session* s, boost::shared_ptr r, boo note_length_model = ListStore::create (note_length_columns); TreeModel::Row row; - + for (std::map::iterator i = note_length_map.begin(); i != note_length_map.end(); ++i) { row = *(note_length_model->append()); row[note_length_columns.ticks] = i->first; @@ -97,6 +99,7 @@ MidiListEditor::MidiListEditor (Session* s, boost::shared_ptr r, boo view.signal_key_press_event().connect (sigc::mem_fun (*this, &MidiListEditor::key_press), false); view.signal_key_release_event().connect (sigc::mem_fun (*this, &MidiListEditor::key_release), false); + view.signal_scroll_event().connect (sigc::mem_fun (*this, &MidiListEditor::scroll_event), false); view.append_column (_("Start"), columns.start); view.append_column (_("Channel"), columns.channel); @@ -119,15 +122,18 @@ MidiListEditor::MidiListEditor (Session* s, boost::shared_ptr r, boo comboCell->property_has_entry() = false; view.append_column (*lenCol); - view.append_column (_("End"), columns.end); + view.set_headers_visible (true); view.set_rules_hint (true); view.get_selection()->set_mode (SELECTION_MULTIPLE); view.get_selection()->signal_changed().connect (sigc::mem_fun (*this, &MidiListEditor::selection_changed)); - for (int i = 0; i < 7; ++i) { + for (int i = 0; i < 6; ++i) { CellRendererText* renderer = dynamic_cast(view.get_column_cell_renderer (i)); + TreeViewColumn* col = view.get_column (i); + col->set_data (X_("colnum"), GUINT_TO_POINTER(i)); + renderer->property_editable() = true; renderer->signal_editing_started().connect (sigc::bind (sigc::mem_fun (*this, &MidiListEditor::editing_started), i)); @@ -140,13 +146,13 @@ MidiListEditor::MidiListEditor (Session* s, boost::shared_ptr r, boo redisplay_model (); - region->midi_source(0)->model()->ContentsChanged.connect (content_connection, invalidator (*this), + region->midi_source(0)->model()->ContentsChanged.connect (content_connection, invalidator (*this), boost::bind (&MidiListEditor::redisplay_model, this), gui_context()); buttons.attach (sound_notes_button, 0, 1, 0, 1); Glib::RefPtr act = ActionManager::get_action ("Editor", "sound-midi-notes"); if (act) { - gtk_activatable_set_related_action (GTK_ACTIVATABLE (sound_notes_button.gobj()), act->gobj()); + gtk_activatable_set_related_action (GTK_ACTIVATABLE (sound_notes_button.gobj()), act->gobj()); } view.show (); @@ -168,6 +174,205 @@ MidiListEditor::~MidiListEditor () { } +bool +MidiListEditor::scroll_event (GdkEventScroll* ev) +{ + TreeModel::Path path; + TreeViewColumn* col; + int cellx; + int celly; + int idelta = 0; + double fdelta = 0; + MidiModel::NoteDiffCommand::Property prop (MidiModel::NoteDiffCommand::NoteNumber); + bool apply = false; + bool was_selected = false; + char const * opname; + + if (!view.get_path_at_pos (ev->x, ev->y, path, col, cellx, celly)) { + return false; + } + + if (view.get_selection()->count_selected_rows() == 0) { + was_selected = false; + } else if (view.get_selection()->is_selected (path)) { + was_selected = true; + } else { + was_selected = false; + } + + int colnum = GPOINTER_TO_UINT (col->get_data (X_("colnum"))); + + switch (colnum) { + case 0: + if (Keyboard::modifier_state_equals (ev->state, Keyboard::SecondaryModifier)) { + fdelta = 1/64.0; + } else { + fdelta = 1/4.0; + } + if (ev->direction == GDK_SCROLL_DOWN || ev->direction == GDK_SCROLL_LEFT) { + fdelta = -fdelta; + } + prop = MidiModel::NoteDiffCommand::StartTime; + opname = _("edit note start"); + apply = true; + break; + case 1: + idelta = 1; + if (ev->direction == GDK_SCROLL_DOWN || ev->direction == GDK_SCROLL_LEFT) { + idelta = -idelta; + } + prop = MidiModel::NoteDiffCommand::Channel; + opname = _("edit note channel"); + apply = true; + break; + case 2: + case 3: + idelta = 1; + if (ev->direction == GDK_SCROLL_DOWN || ev->direction == GDK_SCROLL_LEFT) { + idelta = -idelta; + } + prop = MidiModel::NoteDiffCommand::NoteNumber; + opname = _("edit note number"); + apply = true; + break; + + case 4: + idelta = 1; + if (ev->direction == GDK_SCROLL_DOWN || ev->direction == GDK_SCROLL_LEFT) { + idelta = -idelta; + } + prop = MidiModel::NoteDiffCommand::Velocity; + opname = _("edit note velocity"); + apply = true; + break; + + case 5: + if (Keyboard::modifier_state_equals (ev->state, Keyboard::SecondaryModifier)) { + fdelta = 1/64.0; + } else { + fdelta = 1/4.0; + } + if (ev->direction == GDK_SCROLL_DOWN || ev->direction == GDK_SCROLL_LEFT) { + fdelta = -fdelta; + } + prop = MidiModel::NoteDiffCommand::Length; + opname = _("edit note length"); + apply = true; + break; + + default: + break; + } + + + if (apply) { + + boost::shared_ptr m (region->midi_source(0)->model()); + MidiModel::NoteDiffCommand* cmd = m->new_note_diff_command (opname); + vector previous_selection; + + if (was_selected) { + + /* use selection */ + + TreeView::Selection::ListHandle_Path rows = view.get_selection()->get_selected_rows (); + TreeModel::iterator iter; + boost::shared_ptr note; + + for (TreeView::Selection::ListHandle_Path::iterator i = rows.begin(); i != rows.end(); ++i) { + + previous_selection.push_back (*i); + + if ((iter = model->get_iter (*i))) { + + note = (*iter)[columns._note]; + + switch (prop) { + case MidiModel::NoteDiffCommand::StartTime: + if (note->time() + fdelta >= 0) { + cmd->change (note, prop, note->time() + fdelta); + } else { + cmd->change (note, prop, Temporal::Beats()); + } + break; + case MidiModel::NoteDiffCommand::Velocity: + cmd->change (note, prop, (uint8_t) (note->velocity() + idelta)); + break; + case MidiModel::NoteDiffCommand::Length: + if (note->length().to_double() + fdelta >= + Temporal::Beats::tick().to_double()) { + cmd->change (note, prop, note->length() + fdelta); + } else { + cmd->change (note, prop, Temporal::Beats::tick()); + } + break; + case MidiModel::NoteDiffCommand::Channel: + cmd->change (note, prop, (uint8_t) (note->channel() + idelta)); + break; + case MidiModel::NoteDiffCommand::NoteNumber: + cmd->change (note, prop, (uint8_t) (note->note() + idelta)); + break; + default: + continue; + } + } + } + + } else { + + /* just this row */ + + TreeModel::iterator iter; + iter = model->get_iter (path); + + previous_selection.push_back (path); + + if (iter) { + boost::shared_ptr note = (*iter)[columns._note]; + + switch (prop) { + case MidiModel::NoteDiffCommand::StartTime: + if (note->time() + fdelta >= 0) { + cmd->change (note, prop, note->time() + fdelta); + } else { + cmd->change (note, prop, Temporal::Beats()); + } + break; + case MidiModel::NoteDiffCommand::Velocity: + cmd->change (note, prop, (uint8_t) (note->velocity() + idelta)); + break; + case MidiModel::NoteDiffCommand::Length: + if (note->length() + fdelta >= + Temporal::Beats::tick().to_double()) { + cmd->change (note, prop, note->length() + fdelta); + } else { + cmd->change (note, prop, Temporal::Beats::tick()); + } + break; + case MidiModel::NoteDiffCommand::Channel: + cmd->change (note, prop, (uint8_t) (note->channel() + idelta)); + break; + case MidiModel::NoteDiffCommand::NoteNumber: + cmd->change (note, prop, (uint8_t) (note->note() + idelta)); + break; + default: + break; + } + } + } + + m->apply_command (*_session, cmd); + + /* reset selection to be as it was before we rebuilt */ + + for (vector::iterator i = previous_selection.begin(); i != previous_selection.end(); ++i) { + view.get_selection()->select (*i); + } + } + + return true; +} + bool MidiListEditor::key_press (GdkEventKey* ev) { @@ -184,7 +389,7 @@ MidiListEditor::key_press (GdkEventKey* ev) if (editing_editable) { editing_editable->editing_done (); } - if (colnum >= 6) { + if (colnum >= 5) { /* wrap to next line */ colnum = 0; path.next(); @@ -196,7 +401,7 @@ MidiListEditor::key_press (GdkEventKey* ev) ret = true; } break; - + case GDK_Up: case GDK_uparrow: if (edit_column > 0) { @@ -230,7 +435,7 @@ MidiListEditor::key_press (GdkEventKey* ev) case GDK_Escape: stop_editing (true); break; - + } return ret; @@ -243,7 +448,6 @@ MidiListEditor::key_release (GdkEventKey* ev) TreeModel::Path path; TreeViewColumn* col; TreeModel::iterator iter; - TreeModel::Row row; MidiModel::NoteDiffCommand* cmd; boost::shared_ptr m (region->midi_source(0)->model()); boost::shared_ptr note; @@ -282,7 +486,7 @@ MidiListEditor::key_release (GdkEventKey* ev) ret = true; } break; - + case GDK_r: if (_session && Gtkmm2ext::Keyboard::modifier_state_contains (ev->state, Gtkmm2ext::Keyboard::PrimaryModifier)) { _session->redo (1); @@ -384,9 +588,9 @@ MidiListEditor::edited (const std::string& path, const std::string& text) double fval; int ival; bool apply = false; - int idelta; - double fdelta; - char* opname; + int idelta = 0; + double fdelta = 0; + char const * opname; switch (edit_column) { case 0: // start break; @@ -408,6 +612,13 @@ MidiListEditor::edited (const std::string& path, const std::string& text) } break; case 3: // name + ival = ParameterDescriptor::midi_note_num (text); + if (ival < 128) { + idelta = ival - note->note(); + prop = MidiModel::NoteDiffCommand::NoteNumber; + opname = _("change note number"); + apply = true; + } break; case 4: // velocity if (sscanf (text.c_str(), "%d", &ival) == 1 && ival != note->velocity()) { @@ -422,7 +633,7 @@ MidiListEditor::edited (const std::string& path, const std::string& text) if (sscanf (text.c_str(), "%lf", &fval) == 1) { /* numeric value entered */ - + if (text.find ('.') == string::npos && text.find (',') == string::npos) { /* integral => units are ticks */ fval = fval / BBT_Time::ticks_per_beat; @@ -436,7 +647,7 @@ MidiListEditor::edited (const std::string& path, const std::string& text) * entry for the actual note ticks */ - int len_ticks = lrint (note->length() * Timecode::BBT_Time::ticks_per_beat); + uint64_t len_ticks = note->length().to_ticks(); std::map::iterator x = note_length_map.find (len_ticks); if (x == note_length_map.end()) { @@ -445,13 +656,13 @@ MidiListEditor::edited (const std::string& path, const std::string& text) * displaying numeric value ... use new value * from note length map, and convert to beats. */ - + for (x = note_length_map.begin(); x != note_length_map.end(); ++x) { if (x->second == text) { break; } } - + if (x != note_length_map.end()) { fval = x->first / BBT_Time::ticks_per_beat; } @@ -461,7 +672,7 @@ MidiListEditor::edited (const std::string& path, const std::string& text) fval = -1.0; if (text != x->second) { - + /* get ticks for the newly selected * note length */ @@ -471,7 +682,7 @@ MidiListEditor::edited (const std::string& path, const std::string& text) break; } } - + if (x != note_length_map.end()) { /* convert to beats */ fval = (double) x->first / BBT_Time::ticks_per_beat; @@ -481,15 +692,13 @@ MidiListEditor::edited (const std::string& path, const std::string& text) } if (fval > 0.0) { - fdelta = fval - note->length(); + fdelta = fval - note->length().to_double(); prop = MidiModel::NoteDiffCommand::Length; opname = _("change note length"); apply = true; } break; - case 6: // end - break; default: break; } @@ -500,12 +709,12 @@ MidiListEditor::edited (const std::string& path, const std::string& text) MidiModel::NoteDiffCommand* cmd = m->new_note_diff_command (opname); TreeView::Selection::ListHandle_Path rows = view.get_selection()->get_selected_rows (); - + for (TreeView::Selection::ListHandle_Path::iterator i = rows.begin(); i != rows.end(); ++i) { - if (iter = model->get_iter (*i)) { + if ((iter = model->get_iter (*i))) { + + note = (*iter)[columns._note]; - note = (*iter)[columns._note]; - switch (prop) { case MidiModel::NoteDiffCommand::Velocity: cmd->change (note, prop, (uint8_t) (note->velocity() + idelta)); @@ -529,7 +738,7 @@ MidiListEditor::edited (const std::string& path, const std::string& text) /* model has been redisplayed by now */ /* keep selected row(s), move cursor there, don't continue editing */ - + TreeViewColumn* col = view.get_column (edit_column); view.set_cursor (edit_path, *col, 0); @@ -550,7 +759,7 @@ MidiListEditor::redisplay_model () if (_session) { - BeatsFramesConverter conv (_session->tempo_map(), region->position()); + BeatsSamplesConverter conv (_session->tempo_map(), region->position()); MidiModel::Notes notes = region->midi_source(0)->model()->notes(); TreeModel::Row row; stringstream ss; @@ -558,25 +767,22 @@ MidiListEditor::redisplay_model () for (MidiModel::Notes::iterator i = notes.begin(); i != notes.end(); ++i) { row = *(model->append()); row[columns.channel] = (*i)->channel() + 1; - row[columns.note_name] = Evoral::midi_note_name ((*i)->note()); + row[columns.note_name] = ParameterDescriptor::midi_note_name ((*i)->note()); row[columns.note] = (*i)->note(); row[columns.velocity] = (*i)->velocity(); - Timecode::BBT_Time bbt; - double dur; - - _session->tempo_map().bbt_time (conv.to ((*i)->time()), bbt); + Timecode::BBT_Time bbt (_session->tempo_map().bbt_at_sample (region->position() + conv.to ((*i)->time()))); ss.str (""); ss << bbt; row[columns.start] = ss.str(); bbt.bars = 0; - dur = (*i)->end_time() - (*i)->time(); - bbt.beats = floor (dur); - bbt.ticks = (uint32_t) lrint (fmod (dur, 1.0) * Timecode::BBT_Time::ticks_per_beat); - - int len_ticks = lrint ((*i)->length() * Timecode::BBT_Time::ticks_per_beat); + const Temporal::Beats dur = (*i)->end_time() - (*i)->time(); + bbt.beats = dur.get_beats (); + bbt.ticks = dur.get_ticks (); + + uint64_t len_ticks = (*i)->length().to_ticks(); std::map::iterator x = note_length_map.find (len_ticks); if (x != note_length_map.end()) { @@ -587,12 +793,6 @@ MidiListEditor::redisplay_model () row[columns.length] = ss.str(); } - _session->tempo_map().bbt_time (conv.to ((*i)->end_time()), bbt); - - ss.str (""); - ss << bbt; - row[columns.end] = ss.str(); - row[columns._note] = (*i); } } @@ -603,7 +803,7 @@ MidiListEditor::redisplay_model () void MidiListEditor::selection_changed () { - if (!Config->get_sound_midi_notes()) { + if (!UIConfiguration::instance().get_sound_midi_notes()) { return; } @@ -615,8 +815,8 @@ MidiListEditor::selection_changed () NotePlayer* player = new NotePlayer (track); for (TreeView::Selection::ListHandle_Path::iterator i = rows.begin(); i != rows.end(); ++i) { - if (iter = model->get_iter (*i)) { - note = (*iter)[columns._note]; + if ((iter = model->get_iter (*i))) { + note = (*iter)[columns._note]; player->add (note); } }