2016-06-05 10:25:54 -04:00
|
|
|
/*
|
2019-08-03 08:34:29 -04: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-06-05 10:25:54 -04:00
|
|
|
|
|
|
|
#ifndef __osc_oscselectobserver_h__
|
|
|
|
#define __osc_oscselectobserver_h__
|
|
|
|
|
|
|
|
#include <bitset>
|
2023-02-16 12:59:41 -05:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
|
2016-06-05 10:25:54 -04:00
|
|
|
#include <sigc++/sigc++.h>
|
|
|
|
#include <lo/lo.h>
|
|
|
|
|
|
|
|
#include "pbd/controllable.h"
|
|
|
|
#include "pbd/stateful.h"
|
|
|
|
#include "ardour/types.h"
|
2016-11-18 10:53:40 -05:00
|
|
|
#include "ardour/processor.h"
|
2016-06-05 10:25:54 -04:00
|
|
|
|
2017-06-06 10:35:24 -04:00
|
|
|
#include "osc.h"
|
|
|
|
|
2016-06-05 10:25:54 -04:00
|
|
|
class OSCSelectObserver
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
2018-02-27 23:55:30 -05:00
|
|
|
OSCSelectObserver (ArdourSurface::OSC& o, ARDOUR::Session& s, ArdourSurface::OSC::OSCSurface* sur);
|
2016-06-05 10:25:54 -04:00
|
|
|
~OSCSelectObserver ();
|
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<ARDOUR::Stripable> strip () const { return _strip; }
|
2016-06-05 10:25:54 -04:00
|
|
|
lo_address address() const { return addr; };
|
|
|
|
void tick (void);
|
2017-06-06 10:35:24 -04:00
|
|
|
void renew_sends (void);
|
|
|
|
void renew_plugin (void);
|
2017-06-12 15:29:58 -04:00
|
|
|
void eq_restart (int);
|
2017-10-17 17:56:44 -04:00
|
|
|
void clear_observer (void);
|
2023-02-16 18:33:28 -05:00
|
|
|
void refresh_strip (std::shared_ptr<ARDOUR::Stripable> new_strip, uint32_t nsends, uint32_t g_mode, bool force);
|
2017-11-23 15:04:21 -05:00
|
|
|
void set_expand (uint32_t expand);
|
|
|
|
void set_send_page (uint32_t page);
|
|
|
|
void set_send_size (uint32_t size);
|
2017-11-28 15:16:36 -05:00
|
|
|
void set_plugin_id (int id, uint32_t page);
|
|
|
|
void set_plugin_page (uint32_t page);
|
|
|
|
void set_plugin_size (uint32_t size);
|
osc: Let OSCSelectObserver know about feedback config changes
Before this commit, OSCSelectObserver would read the feedback value when
it was created, but then never update it anymore. In practice, the
OSCSelectObserver is created on startup, and when the surface connects
and configures feeback, this value is not applied.
For example, when sending `/set_surface` with a feedback value of
4 (Send SSID as path extension), `/strip/*` would get their ssid put
into the path, but `/select/plugin/*` messages would not have their
parameter id in the path. When setting the corresponding checkbox in the
default feedback preferences, it is applied as expected.
This commit passes the new feedback value to the OSCSelectObserver
instance whenever it changes, which ensures the value is applied as
expected.
2024-06-30 07:29:09 -04:00
|
|
|
void set_feedback (std::bitset<32> fb);
|
2016-06-05 10:25:54 -04:00
|
|
|
|
|
|
|
private:
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<ARDOUR::Stripable> _strip;
|
2017-10-17 17:56:44 -04:00
|
|
|
ArdourSurface::OSC& _osc;
|
2018-07-02 11:18:42 -04:00
|
|
|
|
2016-06-05 10:25:54 -04:00
|
|
|
PBD::ScopedConnectionList strip_connections;
|
2020-06-23 02:28:12 -04:00
|
|
|
// pans, sends, plugins and eq need their own
|
|
|
|
PBD::ScopedConnectionList pan_connections;
|
2016-06-09 02:08:56 -04:00
|
|
|
PBD::ScopedConnectionList send_connections;
|
2017-06-12 15:29:58 -04:00
|
|
|
PBD::ScopedConnectionList plugin_connections;
|
2016-07-11 19:00:14 -04:00
|
|
|
PBD::ScopedConnectionList eq_connections;
|
2016-06-05 10:25:54 -04:00
|
|
|
|
|
|
|
lo_address addr;
|
|
|
|
std::string path;
|
|
|
|
uint32_t gainmode;
|
|
|
|
std::bitset<32> feedback;
|
2017-10-23 00:21:57 -04:00
|
|
|
bool in_line;
|
2017-06-06 10:35:24 -04:00
|
|
|
ArdourSurface::OSC::OSCSurface* sur;
|
2016-08-05 20:24:09 -04:00
|
|
|
std::vector<int> send_timeout;
|
2016-08-05 22:08:43 -04:00
|
|
|
uint32_t gain_timeout;
|
2016-06-05 10:25:54 -04:00
|
|
|
float _last_meter;
|
2016-06-09 02:08:56 -04:00
|
|
|
uint32_t nsends;
|
2017-05-09 17:10:49 -04:00
|
|
|
float _last_gain;
|
2017-07-24 13:14:21 -04:00
|
|
|
float _last_trim;
|
|
|
|
std::vector<float> _last_send;
|
2017-07-23 23:07:01 -04:00
|
|
|
bool _init;
|
2017-06-23 16:12:43 -04:00
|
|
|
float _comp_redux;
|
2017-05-09 17:10:49 -04:00
|
|
|
ARDOUR::AutoState as;
|
2017-11-07 23:18:23 -05:00
|
|
|
uint32_t send_page_size;
|
2017-06-06 10:35:24 -04:00
|
|
|
uint32_t send_size;
|
2017-11-23 15:04:21 -05:00
|
|
|
uint32_t send_page;
|
2017-11-28 15:16:36 -05:00
|
|
|
|
2017-06-12 15:29:58 -04:00
|
|
|
uint32_t nplug_params;
|
2017-11-23 15:04:21 -05:00
|
|
|
uint32_t plug_page_size;
|
2017-11-28 15:16:36 -05:00
|
|
|
uint32_t plug_page;
|
|
|
|
int plug_id;
|
2017-06-12 15:29:58 -04:00
|
|
|
uint32_t plug_size;
|
2017-11-28 15:16:36 -05:00
|
|
|
std::vector<int> plug_params;
|
2017-11-03 15:35:19 -04:00
|
|
|
int eq_bands;
|
2017-11-23 15:04:21 -05:00
|
|
|
uint32_t _expand;
|
2018-03-10 15:58:14 -05:00
|
|
|
std::bitset<16> _group_sharing;
|
|
|
|
bool _tick_busy;
|
2018-02-27 23:55:30 -05:00
|
|
|
ARDOUR::Session* session;
|
2016-06-05 10:25:54 -04:00
|
|
|
|
|
|
|
void name_changed (const PBD::PropertyChange& what_changed);
|
2020-06-23 02:28:12 -04:00
|
|
|
void panner_changed ();
|
2018-01-31 14:47:03 -05:00
|
|
|
void group_name ();
|
2018-02-27 23:55:30 -05:00
|
|
|
void group_sharing (ARDOUR::RouteGroup *rg_c);
|
2018-02-17 10:26:23 -05:00
|
|
|
void comment_changed ();
|
2018-01-13 11:41:58 -05:00
|
|
|
void pi_changed (PBD::PropertyChange const&);
|
2023-02-16 18:33:28 -05:00
|
|
|
void change_message (std::string path, std::shared_ptr<PBD::Controllable> controllable);
|
|
|
|
void enable_message (std::string path, std::shared_ptr<PBD::Controllable> controllable);
|
2016-07-20 11:59:06 -04:00
|
|
|
void comp_mode (void);
|
2023-02-16 18:33:28 -05:00
|
|
|
void change_message_with_id (std::string path, uint32_t id, std::shared_ptr<PBD::Controllable> controllable);
|
|
|
|
void enable_message_with_id (std::string path, uint32_t id, std::shared_ptr<PBD::Controllable> controllable);
|
|
|
|
void monitor_status (std::shared_ptr<PBD::Controllable> controllable);
|
2017-05-10 10:10:44 -04:00
|
|
|
void gain_message ();
|
|
|
|
void gain_automation ();
|
2023-02-16 18:33:28 -05:00
|
|
|
void send_automation (std::string path, std::shared_ptr<PBD::Controllable> control);
|
|
|
|
void trim_message (std::string path, std::shared_ptr<PBD::Controllable> controllable);
|
2016-06-09 02:08:56 -04:00
|
|
|
// sends stuff
|
|
|
|
void send_init (void);
|
|
|
|
void send_end (void);
|
2017-06-12 15:29:58 -04:00
|
|
|
void plugin_init (void);
|
|
|
|
void plugin_end (void);
|
2023-02-16 18:33:28 -05:00
|
|
|
void plugin_parameter_changed (int pid, bool swtch, std::shared_ptr<PBD::Controllable> controllable);
|
|
|
|
void send_gain (uint32_t id, std::shared_ptr<PBD::Controllable> controllable);
|
|
|
|
void send_enable (std::string path, uint32_t id, std::shared_ptr<ARDOUR::Processor> proc);
|
|
|
|
void plug_enable (std::string path, std::shared_ptr<ARDOUR::Processor> proc);
|
2016-07-11 19:00:14 -04:00
|
|
|
void eq_init (void);
|
|
|
|
void eq_end (void);
|
2017-10-18 18:29:52 -04:00
|
|
|
void no_strip ();
|
2023-02-16 18:33:28 -05:00
|
|
|
void slaved_changed (std::shared_ptr<ARDOUR::VCA> vca, bool state);
|
2016-06-05 10:25:54 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __osc_oscselectobserver_h__ */
|