forked from len0rd/rockbox
108 lines
4 KiB
C
108 lines
4 KiB
C
/* Copyright (c) 1997-1999 Miller Puckette.
|
|
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
|
|
* WARRANTIES, see the file, "LICENSE.txt," in this distribution. */
|
|
|
|
#include "m_pd.h"
|
|
#include "m_imp.h"
|
|
|
|
t_class *glob_pdobject;
|
|
static t_class *maxclass;
|
|
|
|
/* These "glob" routines, which implement messages to Pd, are from all
|
|
over. Some others are prototyped in m_imp.h as well. */
|
|
|
|
void glob_setfilename(void *dummy, t_symbol *name, t_symbol *dir);
|
|
void glob_quit(void *dummy);
|
|
void glob_dsp(void *dummy, t_symbol *s, int argc, t_atom *argv);
|
|
void glob_meters(void *dummy, t_floatarg f);
|
|
void glob_key(void *dummy, t_symbol *s, int ac, t_atom *av);
|
|
void glob_audiostatus(void);
|
|
void glob_finderror(t_pd *dummy);
|
|
void glob_audio_properties(t_pd *dummy, t_floatarg flongform);
|
|
void glob_audio_dialog(t_pd *dummy, t_symbol *s, int argc, t_atom *argv);
|
|
void glob_audio_setapi(t_pd *dummy, t_floatarg f);
|
|
void glob_midi_properties(t_pd *dummy, t_floatarg flongform);
|
|
void glob_midi_dialog(t_pd *dummy, t_symbol *s, int argc, t_atom *argv);
|
|
void glob_start_path_dialog(t_pd *dummy, t_floatarg flongform);
|
|
void glob_path_dialog(t_pd *dummy, t_symbol *s, int argc, t_atom *argv);
|
|
void glob_ping(t_pd *dummy);
|
|
|
|
void alsa_resync( void);
|
|
|
|
|
|
#ifdef MSW
|
|
void glob_audio(void *dummy, t_floatarg adc, t_floatarg dac);
|
|
#endif
|
|
|
|
/* a method you add for debugging printout */
|
|
void glob_foo(void *dummy, t_symbol *s, int argc, t_atom *argv);
|
|
|
|
#if 0
|
|
void glob_foo(void *dummy, t_symbol *s, int argc, t_atom *argv)
|
|
{
|
|
*(int *)1 = 3;
|
|
}
|
|
#endif
|
|
|
|
void max_default(t_pd *x, t_symbol *s, int argc, t_atom *argv)
|
|
{
|
|
int i;
|
|
char str[80];
|
|
startpost("%s: unknown message %s ", class_getname(pd_class(x)),
|
|
s->s_name);
|
|
for (i = 0; i < argc; i++)
|
|
{
|
|
atom_string(argv+i, str, 80);
|
|
poststring(str);
|
|
}
|
|
endpost();
|
|
}
|
|
|
|
void glob_init(void)
|
|
{
|
|
maxclass = class_new(gensym("max"), 0, 0, sizeof(t_pd),
|
|
CLASS_DEFAULT, A_NULL);
|
|
class_addanything(maxclass, max_default);
|
|
pd_bind(&maxclass, gensym("max"));
|
|
|
|
glob_pdobject = class_new(gensym("pd"), 0, 0, sizeof(t_pd),
|
|
CLASS_DEFAULT, A_NULL);
|
|
class_addmethod(glob_pdobject, (t_method)glob_initfromgui, gensym("init"),
|
|
A_GIMME, 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_setfilename, gensym("filename"),
|
|
A_SYMBOL, A_SYMBOL, 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_evalfile, gensym("open"),
|
|
A_SYMBOL, A_SYMBOL, 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_quit, gensym("quit"), 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_foo, gensym("foo"), A_GIMME, 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_dsp, gensym("dsp"), A_GIMME, 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_meters, gensym("meters"),
|
|
A_FLOAT, 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_key, gensym("key"), A_GIMME, 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_audiostatus,
|
|
gensym("audiostatus"), 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_finderror,
|
|
gensym("finderror"), 0);
|
|
#ifndef ROCKBOX
|
|
class_addmethod(glob_pdobject, (t_method)glob_audio_properties,
|
|
gensym("audio-properties"), A_DEFFLOAT, 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_audio_dialog,
|
|
gensym("audio-dialog"), A_GIMME, 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_audio_setapi,
|
|
gensym("audio-setapi"), A_FLOAT, 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_midi_properties,
|
|
gensym("midi-properties"), A_DEFFLOAT, 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_midi_dialog,
|
|
gensym("midi-dialog"), A_GIMME, 0);
|
|
#endif /* ROCKBOX */
|
|
class_addmethod(glob_pdobject, (t_method)glob_start_path_dialog,
|
|
gensym("start-path-dialog"), A_DEFFLOAT, 0);
|
|
class_addmethod(glob_pdobject, (t_method)glob_path_dialog,
|
|
gensym("path-dialog"), A_GIMME, 0);
|
|
#ifdef __linux__
|
|
class_addmethod(glob_pdobject, (t_method)glob_ping, gensym("ping"), 0);
|
|
#endif
|
|
class_addanything(glob_pdobject, max_default);
|
|
pd_bind(&glob_pdobject, gensym("pd"));
|
|
}
|
|
|