2016-05-31 14:09:38 -07:00
|
|
|
/*
|
2019-08-03 14:34:29 +02:00
|
|
|
* Copyright (C) 2016-2018 Len Ovens <len@ovenwerks.net>
|
|
|
|
|
*
|
|
|
|
|
* 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.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
*/
|
2016-05-31 14:09:38 -07:00
|
|
|
|
|
|
|
|
#ifndef __osc_oscglobalobserver_h__
|
|
|
|
|
#define __osc_oscglobalobserver_h__
|
|
|
|
|
|
2024-10-19 15:54:24 +02:00
|
|
|
#include "osc.h"
|
|
|
|
|
|
2023-02-16 10:59:41 -07:00
|
|
|
#include <memory>
|
2016-05-31 14:09:38 -07:00
|
|
|
#include <string>
|
2023-02-16 10:59:41 -07:00
|
|
|
|
2016-05-31 14:09:38 -07:00
|
|
|
#include <sigc++/sigc++.h>
|
|
|
|
|
#include <lo/lo.h>
|
|
|
|
|
|
|
|
|
|
#include "pbd/controllable.h"
|
|
|
|
|
#include "pbd/stateful.h"
|
2024-10-19 15:54:24 +02:00
|
|
|
|
|
|
|
|
#include "ardour/route_group.h"
|
|
|
|
|
#include "ardour/session.h"
|
2016-05-31 14:09:38 -07:00
|
|
|
#include "ardour/types.h"
|
|
|
|
|
|
2025-11-25 17:59:12 -07:00
|
|
|
namespace ArdourSurface {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct LocationMarker {
|
|
|
|
|
LocationMarker (const std::string& l, samplepos_t w)
|
|
|
|
|
: label (l), when (w) {}
|
|
|
|
|
std::string label;
|
|
|
|
|
samplepos_t when;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct LocationMarkerSort {
|
|
|
|
|
bool operator() (const LocationMarker& a, const LocationMarker& b) {
|
|
|
|
|
return (a.when < b.when);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2016-05-31 14:09:38 -07:00
|
|
|
class OSCGlobalObserver
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public:
|
2017-10-17 14:56:44 -07:00
|
|
|
OSCGlobalObserver (ArdourSurface::OSC& o, ARDOUR::Session& s, ArdourSurface::OSC::OSCSurface* su);
|
2016-05-31 14:09:38 -07:00
|
|
|
~OSCGlobalObserver ();
|
|
|
|
|
|
|
|
|
|
lo_address address() const { return addr; };
|
|
|
|
|
void tick (void);
|
2017-10-17 14:56:44 -07:00
|
|
|
void clear_observer (void);
|
2018-02-05 10:39:58 -08:00
|
|
|
void jog_mode (uint32_t jogmode);
|
2016-05-31 14:09:38 -07:00
|
|
|
|
|
|
|
|
private:
|
2025-11-25 17:59:12 -07:00
|
|
|
friend ArdourSurface::OSC;
|
|
|
|
|
|
2017-10-17 14:56:44 -07:00
|
|
|
ArdourSurface::OSC& _osc;
|
2016-05-31 14:09:38 -07:00
|
|
|
|
|
|
|
|
PBD::ScopedConnectionList strip_connections;
|
|
|
|
|
PBD::ScopedConnectionList session_connections;
|
|
|
|
|
|
2016-10-28 13:45:30 -07:00
|
|
|
enum STRIP {
|
|
|
|
|
Master,
|
|
|
|
|
Monitor,
|
|
|
|
|
};
|
|
|
|
|
|
2017-07-23 20:07:01 -07:00
|
|
|
ArdourSurface::OSC::OSCSurface* sur;
|
|
|
|
|
bool _init;
|
2017-07-24 10:14:21 -07:00
|
|
|
float _last_master_gain;
|
|
|
|
|
float _last_master_trim;
|
|
|
|
|
float _last_monitor_gain;
|
2016-05-31 14:09:38 -07:00
|
|
|
lo_address addr;
|
|
|
|
|
std::string path;
|
2018-04-17 13:10:59 -07:00
|
|
|
std::string mark_text;
|
2016-05-31 14:09:38 -07:00
|
|
|
uint32_t gainmode;
|
|
|
|
|
std::bitset<32> feedback;
|
|
|
|
|
ARDOUR::Session* session;
|
2018-02-05 10:39:58 -08:00
|
|
|
uint32_t _jog_mode;
|
2017-09-18 12:39:17 -04:00
|
|
|
samplepos_t _last_sample;
|
2016-05-31 14:09:38 -07:00
|
|
|
uint32_t _heartbeat;
|
|
|
|
|
float _last_meter;
|
2016-10-28 17:34:17 -07:00
|
|
|
uint32_t master_timeout;
|
|
|
|
|
uint32_t monitor_timeout;
|
2017-10-25 21:22:59 -07:00
|
|
|
uint32_t last_punchin;
|
|
|
|
|
uint32_t last_punchout;
|
|
|
|
|
uint32_t last_click;
|
2017-12-23 13:16:23 -08:00
|
|
|
samplepos_t prev_mark;
|
|
|
|
|
samplepos_t next_mark;
|
|
|
|
|
std::vector<LocationMarker> lm;
|
|
|
|
|
|
2022-11-07 10:28:13 -06:00
|
|
|
void update_mixer_scene_state();
|
2023-02-16 16:33:28 -07:00
|
|
|
void send_change_message (std::string path, std::shared_ptr<PBD::Controllable> controllable);
|
|
|
|
|
void send_gain_message (std::string path, std::shared_ptr<PBD::Controllable> controllable);
|
|
|
|
|
void send_trim_message (std::string path, std::shared_ptr<PBD::Controllable> controllable);
|
2016-10-28 13:45:30 -07:00
|
|
|
void send_transport_state_changed (void);
|
2016-05-31 14:09:38 -07:00
|
|
|
void send_record_state_changed (void);
|
2016-07-13 09:56:35 -07:00
|
|
|
void solo_active (bool active);
|
2017-10-17 14:56:44 -07:00
|
|
|
void session_name (std::string path, std::string name);
|
2017-10-25 21:22:59 -07:00
|
|
|
void extra_check (void);
|
2017-12-23 13:16:23 -08:00
|
|
|
void marks_changed (void);
|
|
|
|
|
void mark_update (void);
|
2018-02-06 08:47:12 -08:00
|
|
|
void group_changed (ARDOUR::RouteGroup*);
|
|
|
|
|
void group_changed (void);
|
2016-05-31 14:09:38 -07:00
|
|
|
};
|
|
|
|
|
|
2025-11-25 17:59:12 -07:00
|
|
|
} /* namespace */
|
|
|
|
|
|
2016-05-31 14:09:38 -07:00
|
|
|
#endif /* __osc_oscglobalobserver_h__ */
|