2016-05-31 17:09:38 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2009 Paul Davis
|
|
|
|
|
|
|
|
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_oscglobalobserver_h__
|
|
|
|
#define __osc_oscglobalobserver_h__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <sigc++/sigc++.h>
|
|
|
|
#include <lo/lo.h>
|
|
|
|
|
|
|
|
#include "pbd/controllable.h"
|
|
|
|
#include "pbd/stateful.h"
|
|
|
|
#include "ardour/types.h"
|
|
|
|
|
|
|
|
class OSCGlobalObserver
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
2017-10-17 17:56:44 -04:00
|
|
|
OSCGlobalObserver (ArdourSurface::OSC& o, ARDOUR::Session& s, ArdourSurface::OSC::OSCSurface* su);
|
2016-05-31 17:09:38 -04:00
|
|
|
~OSCGlobalObserver ();
|
|
|
|
|
|
|
|
lo_address address() const { return addr; };
|
|
|
|
void tick (void);
|
2017-10-17 17:56:44 -04:00
|
|
|
void clear_observer (void);
|
2018-02-05 13:39:58 -05:00
|
|
|
void jog_mode (uint32_t jogmode);
|
2016-05-31 17:09:38 -04:00
|
|
|
|
|
|
|
private:
|
2017-10-17 17:56:44 -04:00
|
|
|
ArdourSurface::OSC& _osc;
|
2016-05-31 17:09:38 -04:00
|
|
|
|
|
|
|
PBD::ScopedConnectionList strip_connections;
|
|
|
|
PBD::ScopedConnectionList session_connections;
|
|
|
|
|
2016-10-28 16:45:30 -04:00
|
|
|
enum STRIP {
|
|
|
|
Master,
|
|
|
|
Monitor,
|
|
|
|
};
|
|
|
|
|
2017-07-23 23:07:01 -04:00
|
|
|
ArdourSurface::OSC::OSCSurface* sur;
|
|
|
|
bool _init;
|
2017-07-24 13:14:21 -04:00
|
|
|
float _last_master_gain;
|
|
|
|
float _last_master_trim;
|
|
|
|
float _last_monitor_gain;
|
2016-05-31 17:09:38 -04:00
|
|
|
lo_address addr;
|
|
|
|
std::string path;
|
2018-04-17 16:10:59 -04:00
|
|
|
std::string mark_text;
|
2016-05-31 17:09:38 -04:00
|
|
|
uint32_t gainmode;
|
|
|
|
std::bitset<32> feedback;
|
|
|
|
ARDOUR::Session* session;
|
2018-02-05 13:39:58 -05:00
|
|
|
uint32_t _jog_mode;
|
2017-09-18 12:39:17 -04:00
|
|
|
samplepos_t _last_sample;
|
2016-05-31 17:09:38 -04:00
|
|
|
uint32_t _heartbeat;
|
|
|
|
float _last_meter;
|
2016-10-28 20:34:17 -04:00
|
|
|
uint32_t master_timeout;
|
|
|
|
uint32_t monitor_timeout;
|
2017-10-26 00:22:59 -04:00
|
|
|
uint32_t last_punchin;
|
|
|
|
uint32_t last_punchout;
|
|
|
|
uint32_t last_click;
|
2017-12-23 16:16:23 -05:00
|
|
|
samplepos_t prev_mark;
|
|
|
|
samplepos_t next_mark;
|
|
|
|
struct LocationMarker {
|
|
|
|
LocationMarker (const std::string& l, samplepos_t w)
|
|
|
|
: label (l), when (w) {}
|
|
|
|
std::string label;
|
|
|
|
samplepos_t when;
|
|
|
|
};
|
|
|
|
std::vector<LocationMarker> lm;
|
|
|
|
|
|
|
|
struct LocationMarkerSort {
|
|
|
|
bool operator() (const LocationMarker& a, const LocationMarker& b) {
|
|
|
|
return (a.when < b.when);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
|
|
|
|
void send_change_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
|
|
|
|
void send_gain_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
|
|
|
|
void send_trim_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
|
2016-10-28 16:45:30 -04:00
|
|
|
void send_transport_state_changed (void);
|
2016-05-31 17:09:38 -04:00
|
|
|
void send_record_state_changed (void);
|
2016-07-13 12:56:35 -04:00
|
|
|
void solo_active (bool active);
|
2017-10-17 17:56:44 -04:00
|
|
|
void session_name (std::string path, std::string name);
|
2017-10-26 00:22:59 -04:00
|
|
|
void extra_check (void);
|
2017-12-23 16:16:23 -05:00
|
|
|
void marks_changed (void);
|
|
|
|
void mark_update (void);
|
2018-02-06 11:47:12 -05:00
|
|
|
void group_changed (ARDOUR::RouteGroup*);
|
|
|
|
void group_changed (void);
|
2016-05-31 17:09:38 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __osc_oscglobalobserver_h__ */
|