2009-12-25 01:59:39 +01:00
|
|
|
|
|
|
|
/*******************************************************************************/
|
|
|
|
/* Copyright (C) 2009 Jonathan Moore Liles */
|
|
|
|
/* */
|
|
|
|
/* 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; see the file COPYING. If not,write to the Free Software */
|
|
|
|
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Module.H"
|
2009-12-28 06:25:28 +01:00
|
|
|
#include "Loggable.H"
|
2009-12-25 01:59:39 +01:00
|
|
|
|
2010-01-18 04:59:56 +01:00
|
|
|
class Fl_Menu_Button;
|
2010-01-20 08:43:22 +01:00
|
|
|
class Thread;
|
2010-01-18 04:59:56 +01:00
|
|
|
|
|
|
|
class Plugin_Module : public Module {
|
|
|
|
|
2010-01-20 08:43:22 +01:00
|
|
|
static Thread *plugin_discover_thread;
|
|
|
|
|
2010-01-18 04:59:56 +01:00
|
|
|
public:
|
|
|
|
|
|
|
|
struct Plugin_Info
|
|
|
|
{
|
|
|
|
const char *path;
|
|
|
|
unsigned long id;
|
|
|
|
|
|
|
|
Plugin_Info ( )
|
|
|
|
{
|
|
|
|
path = 0;
|
|
|
|
id = 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
bool load ( unsigned long id );
|
|
|
|
|
|
|
|
private:
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
|
|
void init ( void );
|
|
|
|
|
|
|
|
void bbox ( int &X, int &Y, int &W, int &H )
|
|
|
|
{
|
|
|
|
X = x();
|
|
|
|
Y = y() + 5;
|
|
|
|
W = w();
|
|
|
|
H = h() - 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cb_handle(Fl_Widget*);
|
|
|
|
static void cb_handle(Fl_Widget*, void*);
|
|
|
|
|
|
|
|
Fl_Button *close_button;
|
|
|
|
|
|
|
|
struct ImplementationData;
|
|
|
|
|
|
|
|
ImplementationData *_idata;
|
|
|
|
|
|
|
|
bool _active;
|
|
|
|
int _plugin_ins;
|
|
|
|
int _plugin_outs;
|
|
|
|
bool _crosswire;
|
|
|
|
|
2010-01-20 08:43:22 +01:00
|
|
|
static void *discover_thread ( void * );
|
|
|
|
static Plugin_Info* get_all_plugins ( void );
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
void set_input_buffer ( int n, void *buf );
|
|
|
|
void set_output_buffer ( int n, void *buf );
|
|
|
|
void set_control_buffer ( int n, void *buf );
|
|
|
|
void activate ( void );
|
|
|
|
void deactivate ( void );
|
|
|
|
void process ( unsigned long nframes );
|
|
|
|
bool active ( void ) const { return _active; }
|
|
|
|
|
2009-12-25 20:16:07 +01:00
|
|
|
bool plugin_instances ( unsigned int );
|
|
|
|
|
|
|
|
void connect_ports ( void );
|
|
|
|
|
2010-01-20 08:43:22 +01:00
|
|
|
|
2009-12-25 01:59:39 +01:00
|
|
|
public:
|
|
|
|
|
2010-01-20 08:43:22 +01:00
|
|
|
static void spawn_discover_thread ( void );
|
|
|
|
|
2009-12-25 01:59:39 +01:00
|
|
|
Plugin_Module ( );
|
|
|
|
virtual ~Plugin_Module();
|
|
|
|
|
|
|
|
static Plugin_Module * pick_plugin ( void );
|
2010-01-18 04:59:56 +01:00
|
|
|
static void add_plugins_to_menu ( Fl_Menu_Button *menu );
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
|
|
int plugin_ins ( void ) const { return _plugin_ins; }
|
|
|
|
int plugin_outs ( void ) const { return _plugin_outs; }
|
|
|
|
|
|
|
|
void select_plugin ( unsigned long id );
|
|
|
|
|
|
|
|
const char *name ( void ) const { return "Plugin"; }
|
|
|
|
|
|
|
|
int can_support_inputs ( int );
|
|
|
|
bool configure_inputs ( int );
|
|
|
|
|
|
|
|
void process ( void );
|
|
|
|
|
2009-12-25 20:16:07 +01:00
|
|
|
void handle_port_connection_change ( void );
|
|
|
|
|
2009-12-28 06:25:28 +01:00
|
|
|
LOG_CREATE_FUNC( Plugin_Module );
|
|
|
|
|
2009-12-25 01:59:39 +01:00
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual int handle ( int );
|
2009-12-28 06:25:28 +01:00
|
|
|
void get ( Log_Entry &e ) const;
|
|
|
|
void set ( Log_Entry &e );
|
2009-12-25 01:59:39 +01:00
|
|
|
|
|
|
|
};
|