/* This file is part of Machina. * Copyright (C) 2007-2009 David 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 3 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 more details. * * You should have received a copy of the GNU General Public License * along with Machina. If not, see . */ #ifndef MACHINA_SMFDRIVER_HPP #define MACHINA_SMFDRIVER_HPP #include #include #include "raul/SMFReader.hpp" #include "raul/SMFWriter.hpp" #include "raul/SharedPtr.hpp" #include "machina/Driver.hpp" #include "machina/types.hpp" #include "MachineBuilder.hpp" namespace Machina { class Node; class Machine; class SMFDriver : public Driver, public boost::enable_shared_from_this { public: SMFDriver(Raul::TimeUnit unit); SharedPtr learn(const std::string& filename, double q, Raul::TimeDuration max_duration); SharedPtr learn(const std::string& filename, unsigned track, double q, Raul::TimeDuration max_duration); void run(SharedPtr machine, Raul::TimeStamp max_time); void write_event(Raul::TimeStamp 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; void learn_track(SharedPtr builder, Raul::SMFReader& reader, unsigned track, double q, Raul::TimeDuration max_duration); }; } // namespace Machina #endif // MACHINA_SMFDRIVER_HPP