From 9be91674f5de3da9d27b6afcdf9d76d27f5b40cb Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 11 Feb 2007 04:03:20 +0000 Subject: Machina animation. git-svn-id: http://svn.drobilla.net/lad/machina@303 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/Machine.cpp | 7 ++-- src/gui/MachinaCanvas.cpp | 22 +++++++---- src/gui/MachinaGUI.cpp | 26 ++++++++++++- src/gui/MachinaGUI.hpp | 5 ++- src/gui/machina.glade | 93 +++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 139 insertions(+), 14 deletions(-) (limited to 'src') diff --git a/src/engine/Machine.cpp b/src/engine/Machine.cpp index 476e3d1..dbb212c 100644 --- a/src/engine/Machine.cpp +++ b/src/engine/Machine.cpp @@ -130,13 +130,14 @@ Machine::run(FrameCount nframes) bool entered = false; if ( ! _nodes.empty()) { for (Nodes::const_iterator n = _nodes.begin(); n != _nodes.end(); ++n) { + + assert( ! (*n)->is_active()); + if ((*n)->is_initial()) { (*n)->enter(0); entered = true; - } else { - if ((*n)->is_active()) - (*n)->exit(0); } + } } if (!entered) { diff --git a/src/gui/MachinaCanvas.cpp b/src/gui/MachinaCanvas.cpp index d725253..a691c9f 100644 --- a/src/gui/MachinaCanvas.cpp +++ b/src/gui/MachinaCanvas.cpp @@ -57,15 +57,21 @@ MachinaCanvas::node_clicked(SharedPtr item, GdkEventButton* event) if (event->button == 2) { _app->machine()->learn(Machina::LearnRequest::create(_app->maid(), node->node())); return; - } + } else if (event->button == 3) { - SharedPtr last = _last_clicked.lock(); + SharedPtr last = _last_clicked.lock(); - if (last) { - connect_node(last, node); - _last_clicked.reset(); - } else { - _last_clicked = node; + if (last) { + if (node != last) + connect_node(last, node); + + last->set_default_base_color(); + _last_clicked.reset(); + + } else { + _last_clicked = node; + node->set_base_color(0xFF0000FF); + } } } @@ -77,7 +83,7 @@ MachinaCanvas::canvas_event(GdkEvent* event) assert(event); - if (event->type == GDK_BUTTON_PRESS) { + if (event->type == GDK_BUTTON_RELEASE) { const double x = event->button.x; const double y = event->button.y; diff --git a/src/gui/MachinaGUI.cpp b/src/gui/MachinaGUI.cpp index f091e60..dab150f 100644 --- a/src/gui/MachinaGUI.cpp +++ b/src/gui/MachinaGUI.cpp @@ -23,6 +23,7 @@ #include #include "MachinaGUI.hpp" #include "MachinaCanvas.hpp" +#include "NodeView.hpp" //#include "config.h" @@ -105,10 +106,12 @@ MachinaGUI::MachinaGUI(SharedPtr machine) xml->get_widget("machina_win", _main_window); xml->get_widget("about_win", _about_window); + xml->get_widget("help_dialog", _help_dialog); xml->get_widget("file_quit_menuitem", _menu_file_quit); xml->get_widget("view_refresh_menuitem", _menu_view_refresh); xml->get_widget("view_messages_menuitem", _menu_view_messages); xml->get_widget("help_about_menuitem", _menu_help_about); + xml->get_widget("help_help_menuitem", _menu_help_help); xml->get_widget("canvas_scrolledwindow", _canvas_scrolledwindow); xml->get_widget("status_text", _status_text); xml->get_widget("main_paned", _main_paned); @@ -132,6 +135,7 @@ MachinaGUI::MachinaGUI(SharedPtr machine) _menu_view_refresh->signal_activate().connect( sigc::mem_fun(this, &MachinaGUI::menu_view_refresh)); _menu_view_messages->signal_toggled().connect( sigc::mem_fun(this, &MachinaGUI::show_messages_toggled)); _menu_help_about->signal_activate().connect( sigc::mem_fun(this, &MachinaGUI::menu_help_about)); + _menu_help_help->signal_activate().connect( sigc::mem_fun(this, &MachinaGUI::menu_help_help)); connect_widgets(); @@ -156,7 +160,14 @@ MachinaGUI::MachinaGUI(SharedPtr machine) _pane_closed = true; // Idle callback to drive the maid (collect garbage) - Glib::signal_timeout().connect(sigc::mem_fun(this, &MachinaGUI::idle_callback), 1000); + Glib::signal_timeout().connect( + sigc::bind_return( + sigc::mem_fun(_maid.get(), &Raul::Maid::cleanup), + true), + 1000); + + // Idle callback to update node states + Glib::signal_timeout().connect(sigc::mem_fun(this, &MachinaGUI::idle_callback), 100); // Faster idle callback to update DSP load progress bar //Glib::signal_timeout().connect(sigc::mem_fun(this, &MachinaGUI::update_load), 50); @@ -186,7 +197,12 @@ MachinaGUI::attach() bool MachinaGUI::idle_callback() { - _maid->cleanup(); + for (ItemMap::iterator i = _canvas->items().begin(); i != _canvas->items().end(); ++i) { + SharedPtr nv = PtrCast(i->second); + if (nv) + nv->update_state(); + } + return true; } @@ -343,3 +359,9 @@ MachinaGUI::menu_help_about() } +void +MachinaGUI::menu_help_help() +{ + _help_dialog->run(); + _help_dialog->hide(); +} diff --git a/src/gui/MachinaGUI.hpp b/src/gui/MachinaGUI.hpp index 23b9dba..147a506 100644 --- a/src/gui/MachinaGUI.hpp +++ b/src/gui/MachinaGUI.hpp @@ -59,6 +59,7 @@ protected: void show_messages_toggled(); void menu_view_refresh(); void menu_help_about(); + void menu_help_help(); void zoom(double z); void zoom_changed(); bool idle_callback(); @@ -80,11 +81,13 @@ protected: Gtk::Main* _gtk_main; Gtk::Window* _main_window; + Gtk::Dialog* _help_dialog; Gtk::AboutDialog* _about_window; Gtk::MenuItem* _menu_file_quit; + Gtk::MenuItem* _menu_help_about; Gtk::CheckMenuItem* _menu_view_messages; Gtk::MenuItem* _menu_view_refresh; - Gtk::MenuItem* _menu_help_about; + Gtk::MenuItem* _menu_help_help; Gtk::ScrolledWindow* _canvas_scrolledwindow; Gtk::TextView* _status_text; Gtk::Paned* _main_paned; diff --git a/src/gui/machina.glade b/src/gui/machina.glade index e1f6fa0..3216b96 100644 --- a/src/gui/machina.glade +++ b/src/gui/machina.glade @@ -145,6 +145,15 @@ + + + True + gtk-help + True + + + + True @@ -337,4 +346,88 @@ along with Machina; if not, write to the Free Software Foundation, Inc., machina-icon.svg + + 8 + Machina Help + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + True + False + True + False + False + GDK_WINDOW_TYPE_HINT_DIALOG + GDK_GRAVITY_NORTH_WEST + True + False + True + + + + True + False + 0 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + gtk-close + True + GTK_RELIEF_NORMAL + True + -7 + + + + + 0 + False + True + GTK_PACK_END + + + + + + True + Interface is a bit sketchy still: + +- Left click the canvas to create a new node +- Middle click nodes to learn a MIDI note for that node +- Right click two nodes in succession to connect nodes +- Double click a node to make it an initial node + +Connect some nodes up and double click one. You'll get it. + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 8 + True + True + + + + + + -- cgit v1.2.1