/* This file is part of Machina. * Copyright (C) 2007 Dave Robillard * * Machina 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. * * Machina 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 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., * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef MACHINA_SMFDRIVER_HPP #define MACHINA_SMFDRIVER_HPP #include #include #include #include #include #include "machina/types.hpp" #include "machina/Driver.hpp" namespace Machina { class Node; class Machine; class SMFDriver : public Driver, public boost::enable_shared_from_this { public: SMFDriver(SharedPtr machine = SharedPtr()); SharedPtr learn(const std::string& filename, double q=0.0, Raul::BeatTime max_duration=0); SharedPtr learn(const std::string& filename, unsigned track, double q=0.0, Raul::BeatTime max_duration=0); void run(SharedPtr machine, Raul::BeatTime max_time); void write_event(Raul::BeatTime time, size_t ev_size, const unsigned char* ev) throw (std::logic_error) { _writer->write_event(time, ev_size, ev); } void set_bpm(double /*bpm*/) { } void set_quantization(double /*quantization*/) { } SharedPtr writer() { return _writer; } private: SharedPtr _writer; bool is_delay_node(SharedPtr node) const; SharedPtr connect_nodes(SharedPtr m, SharedPtr tail, Raul::BeatTime tail_end_time, SharedPtr head, Raul::BeatTime head_start_time); void learn_track(SharedPtr machine, Raul::SMFReader& reader, unsigned track, double q, Raul::BeatTime max_duration=0); }; } // namespace Machina #endif // MACHINA_SMFDRIVER_HPP