You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
195 lines
7.4 KiB
195 lines
7.4 KiB
5 years ago
|
/*
|
||
|
Calf Box, an open source musical instrument.
|
||
|
Copyright (C) 2010 Krzysztof Foltman
|
||
|
|
||
|
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 3 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, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
#ifndef CBOX_IO_H
|
||
|
#define CBOX_IO_H
|
||
|
|
||
|
#include <glib.h>
|
||
|
#include "config.h"
|
||
|
#if USE_JACK
|
||
|
#include <jack/jack.h>
|
||
|
#endif
|
||
|
#include "dspmath.h"
|
||
|
#include "dom.h"
|
||
|
#include "ioenv.h"
|
||
|
#include "master.h"
|
||
|
#include "mididest.h"
|
||
|
#include "recsrc.h"
|
||
|
|
||
|
struct cbox_io;
|
||
|
struct cbox_io_callbacks;
|
||
|
struct cbox_recording_source;
|
||
|
struct cbox_meter;
|
||
|
struct cbox_midi_buffer;
|
||
|
struct cbox_scene;
|
||
|
|
||
|
struct cbox_open_params
|
||
|
{
|
||
|
};
|
||
|
|
||
|
struct cbox_io_impl
|
||
|
{
|
||
|
struct cbox_io *pio;
|
||
|
|
||
|
int (*getsampleratefunc)(struct cbox_io_impl *ioi);
|
||
|
gboolean (*startfunc)(struct cbox_io_impl *ioi, struct cbox_command_target *fb, GError **error);
|
||
|
gboolean (*stopfunc)(struct cbox_io_impl *ioi, GError **error);
|
||
|
gboolean (*cyclefunc)(struct cbox_io_impl *ioi, struct cbox_command_target *fb, GError **error);
|
||
|
gboolean (*getstatusfunc)(struct cbox_io_impl *ioi, GError **error);
|
||
|
void (*pollfunc)(struct cbox_io_impl *ioi, struct cbox_command_target *fb);
|
||
|
int (*getmidifunc)(struct cbox_io_impl *ioi, struct cbox_midi_buffer *destination);
|
||
|
struct cbox_midi_output *(*createmidioutfunc)(struct cbox_io_impl *ioi, const char *name, GError **error);
|
||
|
void (*destroymidioutfunc)(struct cbox_io_impl *ioi, struct cbox_midi_output *midiout);
|
||
|
struct cbox_midi_input *(*createmidiinfunc)(struct cbox_io_impl *ioi, const char *name, GError **error);
|
||
|
void (*destroymidiinfunc)(struct cbox_io_impl *ioi, struct cbox_midi_input *midiout);
|
||
|
void (*updatemidiinroutingfunc)(struct cbox_io_impl *ioi);
|
||
|
struct cbox_audio_output *(*createaudiooutfunc)(struct cbox_io_impl *ioi, const char *name, GError **error);
|
||
|
void (*destroyaudiooutfunc)(struct cbox_io_impl *ioi, struct cbox_audio_output *audioout);
|
||
|
void (*controltransportfunc)(struct cbox_io_impl *ioi, gboolean roll, uint32_t pos); // (uint32_t)-1 if no change
|
||
|
gboolean (*getsynccompletedfunc)(struct cbox_io_impl *ioi);
|
||
|
void (*destroyfunc)(struct cbox_io_impl *ioi);
|
||
|
};
|
||
|
|
||
|
struct cbox_io
|
||
|
{
|
||
|
struct cbox_io_impl *impl;
|
||
|
struct cbox_command_target cmd_target;
|
||
|
|
||
|
float **input_buffers; // only valid inside jack_rt_process
|
||
|
float **output_buffers; // only valid inside jack_rt_process
|
||
|
struct cbox_io_env io_env;
|
||
|
|
||
|
struct cbox_io_callbacks *cb;
|
||
|
GSList *midi_inputs;
|
||
|
GSList *midi_outputs;
|
||
|
GSList *audio_outputs;
|
||
|
uint32_t free_running_frame_counter;
|
||
|
};
|
||
|
|
||
|
enum cbox_transport_state
|
||
|
{
|
||
|
ts_stopping,
|
||
|
ts_stopped,
|
||
|
ts_starting,
|
||
|
ts_rolling,
|
||
|
};
|
||
|
|
||
|
struct cbox_transport_position
|
||
|
{
|
||
|
uint32_t bar;
|
||
|
uint32_t beat;
|
||
|
uint32_t tick;
|
||
|
uint32_t offset;
|
||
|
double tempo;
|
||
|
double ticks_per_beat;
|
||
|
double bar_start_tick;
|
||
|
uint32_t timesig_num;
|
||
|
uint32_t timesig_denom;
|
||
|
};
|
||
|
|
||
|
struct cbox_io_callbacks
|
||
|
{
|
||
|
void *user_data;
|
||
|
|
||
|
void (*process)(void *user_data, struct cbox_io *io, uint32_t nframes);
|
||
|
void (*on_started)(void *user_data);
|
||
|
void (*on_stopped)(void *user_data);
|
||
|
void (*on_disconnected)(void *user_data);
|
||
|
void (*on_reconnected)(void *user_data);
|
||
|
void (*on_midi_inputs_changed)(void *user_data);
|
||
|
void (*on_midi_outputs_changed)(void *user_data);
|
||
|
void (*on_audio_outputs_changed)(void *user_data);
|
||
|
gboolean (*on_transport_sync)(void *user_data, enum cbox_transport_state state, uint32_t frame);
|
||
|
void (*get_transport_data)(void *user_data, gboolean explicit_pos, uint32_t time_samples, struct cbox_transport_position *tp);
|
||
|
gboolean (*on_tempo_sync)(void *user_data, double beats_per_minute);
|
||
|
};
|
||
|
|
||
|
struct cbox_midi_input
|
||
|
{
|
||
|
gchar *name;
|
||
|
struct cbox_uuid uuid;
|
||
|
struct cbox_midi_buffer buffer;
|
||
|
gboolean removing;
|
||
|
gboolean output_set;
|
||
|
struct cbox_uuid output;
|
||
|
gboolean enable_appsink;
|
||
|
struct cbox_midi_appsink appsink;
|
||
|
};
|
||
|
|
||
|
struct cbox_midi_output
|
||
|
{
|
||
|
gchar *name;
|
||
|
struct cbox_uuid uuid;
|
||
|
struct cbox_midi_buffer buffer;
|
||
|
struct cbox_midi_merger merger;
|
||
|
// This is set if the output is in process of being removed and should not
|
||
|
// be used for output.
|
||
|
gboolean removing;
|
||
|
};
|
||
|
|
||
|
struct cbox_audio_output
|
||
|
{
|
||
|
gchar *name;
|
||
|
struct cbox_uuid uuid;
|
||
|
// This is set if the output is in process of being removed and should not
|
||
|
// be used for output.
|
||
|
gboolean removing;
|
||
|
float *buffer;
|
||
|
uint32_t users;
|
||
|
};
|
||
|
|
||
|
struct cbox_audio_output_router
|
||
|
{
|
||
|
struct cbox_recorder recorder;
|
||
|
struct cbox_recording_source *source;
|
||
|
struct cbox_audio_output *left, *right;
|
||
|
struct cbox_gain gain;
|
||
|
int attached;
|
||
|
};
|
||
|
|
||
|
extern gboolean cbox_io_init(struct cbox_io *io, struct cbox_open_params *const params, struct cbox_command_target *fb, GError **error);
|
||
|
#if USE_JACK
|
||
|
extern gboolean cbox_io_init_jack(struct cbox_io *io, struct cbox_open_params *const params, struct cbox_command_target *fb, GError **error);
|
||
|
#endif
|
||
|
extern gboolean cbox_io_init_usb(struct cbox_io *io, struct cbox_open_params *const params, struct cbox_command_target *fb, GError **error);
|
||
|
|
||
|
extern int cbox_io_start(struct cbox_io *io, struct cbox_io_callbacks *cb, struct cbox_command_target *fb);
|
||
|
extern int cbox_io_stop(struct cbox_io *io);
|
||
|
extern int cbox_io_get_sample_rate(struct cbox_io *io);
|
||
|
extern int cbox_io_get_midi_data(struct cbox_io *io, struct cbox_midi_buffer *destination);
|
||
|
extern gboolean cbox_io_get_disconnect_status(struct cbox_io *io, GError **error);
|
||
|
extern gboolean cbox_io_cycle(struct cbox_io *io, struct cbox_command_target *fb, GError **error);
|
||
|
extern void cbox_io_poll_ports(struct cbox_io *io, struct cbox_command_target *fb);
|
||
|
extern struct cbox_midi_input *cbox_io_get_midi_input(struct cbox_io *io, const char *name, const struct cbox_uuid *uuid);
|
||
|
extern struct cbox_midi_output *cbox_io_get_midi_output(struct cbox_io *io, const char *name, const struct cbox_uuid *uuid);
|
||
|
extern struct cbox_audio_output *cbox_io_get_audio_output(struct cbox_io *io, const char *name, const struct cbox_uuid *uuid);
|
||
|
extern struct cbox_audio_output *cbox_io_get_audio_output_by_uuid_string(struct cbox_io *io, const char *uuidstr, GError **error);
|
||
|
extern struct cbox_midi_output *cbox_io_create_midi_output(struct cbox_io *io, const char *name, GError **error);
|
||
|
extern void cbox_io_destroy_midi_output(struct cbox_io *io, struct cbox_midi_output *midiout);
|
||
|
extern struct cbox_audio_output *cbox_io_create_audio_output(struct cbox_io *io, const char *name, GError **error);
|
||
|
extern gboolean cbox_io_destroy_audio_output(struct cbox_io *io, struct cbox_audio_output *audioout, GError **error);
|
||
|
extern struct cbox_midi_input *cbox_io_create_midi_input(struct cbox_io *io, const char *name, GError **error);
|
||
|
extern void cbox_io_destroy_midi_input(struct cbox_io *io, struct cbox_midi_input *midiin);
|
||
|
extern void cbox_io_destroy_all_midi_ports(struct cbox_io *io);
|
||
|
extern gboolean cbox_io_process_cmd(struct cbox_io *io, struct cbox_command_target *fb, struct cbox_osc_command *cmd, GError **error, gboolean *cmd_handled);
|
||
|
extern void cbox_io_close(struct cbox_io *io);
|
||
|
|
||
|
extern const char *cbox_io_section;
|
||
|
|
||
|
#endif
|