2009-01-15 17:09:23 -05:00
|
|
|
/*
|
2009-01-30 02:40:13 -05:00
|
|
|
Copyright (C) 2009 Paul Davis
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2009-01-15 17:09:23 -05:00
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __osc_osccontrollable_h__
|
|
|
|
#define __osc_osccontrollable_h__
|
|
|
|
|
|
|
|
#include <string>
|
2009-01-30 02:40:13 -05:00
|
|
|
#include <boost/shared_ptr.hpp>
|
2009-01-15 17:09:23 -05:00
|
|
|
#include <sigc++/sigc++.h>
|
|
|
|
#include <lo/lo.h>
|
|
|
|
|
2009-10-29 20:21:40 -04:00
|
|
|
#include "pbd/controllable.h"
|
|
|
|
#include "pbd/stateful.h"
|
|
|
|
#include "ardour/types.h"
|
2009-01-15 17:09:23 -05:00
|
|
|
|
2009-01-30 02:40:13 -05:00
|
|
|
namespace ARDOUR {
|
2009-12-21 13:23:07 -05:00
|
|
|
class Route;
|
2009-01-30 02:40:13 -05:00
|
|
|
}
|
|
|
|
|
2009-01-15 17:09:23 -05:00
|
|
|
class OSCControllable : public PBD::Stateful
|
|
|
|
{
|
|
|
|
public:
|
2009-05-13 11:45:38 -04:00
|
|
|
OSCControllable (lo_address addr, const std::string& path, boost::shared_ptr<PBD::Controllable>);
|
2009-01-15 17:09:23 -05:00
|
|
|
virtual ~OSCControllable ();
|
|
|
|
|
2009-01-30 02:40:13 -05:00
|
|
|
lo_address address() const { return addr; }
|
|
|
|
|
2009-01-15 17:09:23 -05:00
|
|
|
XMLNode& get_state ();
|
2009-10-15 14:56:11 -04:00
|
|
|
int set_state (const XMLNode& node, int version);
|
2009-01-15 17:09:23 -05:00
|
|
|
|
2009-01-30 02:40:13 -05:00
|
|
|
protected:
|
|
|
|
boost::shared_ptr<PBD::Controllable> controllable;
|
2009-12-19 15:26:31 -05:00
|
|
|
PBD::ScopedConnection changed_connection;
|
2009-01-15 17:09:23 -05:00
|
|
|
lo_address addr;
|
2009-05-13 11:45:38 -04:00
|
|
|
std::string path;
|
2009-01-30 02:40:13 -05:00
|
|
|
|
2010-03-02 13:05:26 -05:00
|
|
|
virtual void send_change_message ();
|
2009-01-30 02:40:13 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
class OSCRouteControllable : public OSCControllable
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
2015-10-04 14:51:05 -04:00
|
|
|
OSCRouteControllable (lo_address addr, const std::string& path,
|
|
|
|
boost::shared_ptr<PBD::Controllable>,
|
2009-01-30 02:40:13 -05:00
|
|
|
boost::shared_ptr<ARDOUR::Route>);
|
|
|
|
~OSCRouteControllable ();
|
|
|
|
|
|
|
|
boost::shared_ptr<ARDOUR::Route> route() const { return _route; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
boost::shared_ptr<ARDOUR::Route> _route;
|
|
|
|
|
2010-03-02 13:05:26 -05:00
|
|
|
void send_change_message ();
|
2009-01-15 17:09:23 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __osc_osccontrollable_h__ */
|