/* 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_ACTION_HPP #define MACHINA_ACTION_HPP #include #include #include "raul/MIDISink.hpp" #include "raul/SharedPtr.hpp" #include "raul/TimeSlice.hpp" #include "machina/types.hpp" #include "Stateful.hpp" namespace Machina { /** An Action, executed on entering or exiting of a state. */ struct Action : public Raul::Deletable, public Stateful { virtual void execute(SharedPtr sink, Raul::TimeStamp time) = 0; virtual void write_state(Sord::Model& model); }; class PrintAction : public Action { public: PrintAction(const std::string& msg) : _msg(msg) {} void execute(SharedPtr, Raul::TimeStamp time) { std::cout << "t=" << time << ": " << _msg << std::endl; } private: std::string _msg; }; } // namespace Machina #endif // MACHINA_ACTION_HPP