aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/fldefs_setup.h
blob: 17455b3986fef14639b67640ac157fe7827ec9f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
/* 

flext - C++ layer for Max/MSP and pd (pure data) externals

Copyright (c) 2001-2005 Thomas Grill (gr@grrrr.org)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.  

*/

/*! \file fldefs_setup.h
    \brief This file contains all #defines for actual usage
    
*/

#ifndef __FLEXT_DEFS_SETUP_H
#define __FLEXT_DEFS_SETUP_H

// ====================================================================================

/*! \defgroup FLEXT_D_INSTANCE Class instantiation
    \note For stand-alone externals (not part of a library) the name of your class 
    \note is of importance! It must be the same as the external (excluded an eventual ~ (tilde))

    There are additional parameters that can be included in the NAME field of FLEXT_NEW etc.:

    - There may be additional names (aliases) appened, separated by spaces
    - There may be a help path prepended, separated by a colon
    - This help path doesn't work for Max/MSP. There you'll have to use a object mapping file (Max/MSP version >= 4.2)

    @{
*/


/*! \defgroup FLEXT_D_NEW Stand-alone class instantiation
    Makes an actual instance of a stand-alone class.
*/

/*! \defgroup FLEXT_D_NEW_DSP Dsp class instantiation
    Makes an actual instance of a dsp (aka "tilde") class (with signal processing).
*/

/*! \defgroup FLEXT_D_LIB Library class instantiation
    Makes an actual instance of a class which is part of an object library (and not stand-alone).
*/

/*! \defgroup FLEXT_D_LIB_DSP Dsp library class instantiation
    Makes an actual instance of a dsp (aka "tilde") class with signal processing
    which is part of an object library (and not stand-alone).
*/

// NO ARGUMENTS
// ----------------------------------------

/*! \brief Implementation of a flext class with no arguments
    \ingroup FLEXT_D_NEW
    \param NAME the object's actual name(s) as a string (like "*", "trigger", "noise~", etc.)
    \param NEW_CLASS the object's C++ class name 
*/
#define FLEXT_NEW(NAME,NEW_CLASS)       \
\
REAL_NEW(NAME,NEW_CLASS,0,0,0)

/*! \brief Implementation of a flext dsp class with no arguments
    \ingroup FLEXT_D_NEW_DSP
*/
#define FLEXT_NEW_DSP(NAME,NEW_CLASS)   \
\
REAL_NEW(NAME,NEW_CLASS,1,0,0)

/*! \brief Implementation of a flext dsp class with no arguments and no dsp inlet
    \ingroup FLEXT_D_NEW_DSP
*/
#define FLEXT_NEW_DSP0(NAME,NEW_CLASS)   \
\
REAL_NEW(NAME,NEW_CLASS,1,1,0)

/*! \brief Implementation of a flext class (part of a library) with no arguments
    \ingroup FLEXT_D_LIB
*/
#define FLEXT_LIB(NAME,NEW_CLASS) \
\
REAL_NEW(NAME,NEW_CLASS,0,0,1) 

/*! \brief Implementation of a flext dsp class (part of a library) with no arguments
    \ingroup FLEXT_D_LIB_DSP
*/
#define FLEXT_LIB_DSP(NAME,NEW_CLASS)   \
\
REAL_NEW(NAME,NEW_CLASS,1,0,1) 

/*! \brief Implementation of a flext dsp class (part of a library) with no arguments and no dsp inlet
    \ingroup FLEXT_D_LIB_DSP
*/
#define FLEXT_LIB_DSP0(NAME,NEW_CLASS)   \
\
REAL_NEW(NAME,NEW_CLASS,1,1,1) 


// VARIABLE ARGUMENT LIST
// ----------------------------------------

/*! \brief Implementation of a flext class with a variable argument list
    \ingroup FLEXT_D_NEW
*/
#define FLEXT_NEW_V(NAME,NEW_CLASS)         \
\
REAL_NEW_V(NAME,NEW_CLASS,0,0,0)

/*! \brief Implementation of a flext dsp class with a variable argument list
    \ingroup FLEXT_D_NEW_DSP
*/
#define FLEXT_NEW_DSP_V(NAME,NEW_CLASS) \
\
REAL_NEW_V(NAME,NEW_CLASS,1,0,0)

/*! \brief Implementation of a flext dsp class with a variable argument list and no dsp inlet
    \ingroup FLEXT_D_NEW_DSP
*/
#define FLEXT_NEW_DSP0_V(NAME,NEW_CLASS) \
\
REAL_NEW_V(NAME,NEW_CLASS,1,1,0)

/*! \brief Implementation of a flext class (part of a library) with a variable argument list
    \ingroup FLEXT_D_LIB
*/
#define FLEXT_LIB_V(NAME,NEW_CLASS)         \
\
REAL_NEW_V(NAME,NEW_CLASS, 0,0,1) 

/*! \brief Implementation of a flext dsp class (part of a library) with a variable argument list
    \ingroup FLEXT_D_LIB_DSP
*/
#define FLEXT_LIB_DSP_V(NAME,NEW_CLASS) \
\
REAL_NEW_V(NAME,NEW_CLASS, 1,0,1) 

/*! \brief Implementation of a flext dsp class (part of a library) with a variable argument list and no dsp inlet
    \ingroup FLEXT_D_LIB_DSP
*/
#define FLEXT_LIB_DSP0_V(NAME,NEW_CLASS) \
\
REAL_NEW_V(NAME,NEW_CLASS, 1,1,1) 


// ONE ARGUMENT
// ----------------------------------------

/*! \brief Implementation of a flext class with one argument
    \ingroup FLEXT_D_NEW
*/
#define FLEXT_NEW_1(NAME,NEW_CLASS, TYPE)       \
\
REAL_NEW_1(NAME,NEW_CLASS, 0,0,0, TYPE)

/*! \brief Implementation of a flext dsp class with one argument
    \ingroup FLEXT_D_NEW_DSP
*/
#define FLEXT_NEW_DSP_1(NAME,NEW_CLASS, TYPE)   \
\
REAL_NEW_1(NAME,NEW_CLASS, 1,0,0, TYPE)

/*! \brief Implementation of a flext dsp class with one argument and no dsp inlet
    \ingroup FLEXT_D_NEW_DSP
*/
#define FLEXT_NEW_DSP0_1(NAME,NEW_CLASS, TYPE)   \
\
REAL_NEW_1(NAME,NEW_CLASS, 1,1,0, TYPE)

/*! \brief Implementation of a flext class (part of a library) with one argument
    \ingroup FLEXT_D_LIB
*/
#define FLEXT_LIB_1(NAME,NEW_CLASS, TYPE) \
\
REAL_NEW_1(NAME,NEW_CLASS, 0,0,1, TYPE)

/*! \brief Implementation of a flext dsp class (part of a library) with one argument
    \ingroup FLEXT_D_LIB_DSP
*/
#define FLEXT_LIB_DSP_1(NAME,NEW_CLASS, TYPE)   \
\
REAL_NEW_1(NAME,NEW_CLASS, 1,0,1, TYPE)

/*! \brief Implementation of a flext dsp class (part of a library) with one argument and no dsp inlet
    \ingroup FLEXT_D_LIB_DSP
*/
#define FLEXT_LIB_DSP0_1(NAME,NEW_CLASS, TYPE)   \
\
REAL_NEW_1(NAME,NEW_CLASS, 1,1,1, TYPE)


// TWO ARGUMENTS
// ----------------------------------------

/*! \brief Implementation of a flext class with 2 arguments
    \ingroup FLEXT_D_NEW
*/
#define FLEXT_NEW_2(NAME,NEW_CLASS, TYPE1, TYPE2)           \
\
REAL_NEW_2(NAME,NEW_CLASS, 0,0,0, TYPE1, TYPE2)

/*! \brief Implementation of a flext dsp class with 2 arguments
    \ingroup FLEXT_D_NEW_DSP
*/
#define FLEXT_NEW_DSP_2(NAME,NEW_CLASS, TYPE1, TYPE2)   \
\
REAL_NEW_2(NAME,NEW_CLASS, 1,0,0, TYPE1, TYPE2)

/*! \brief Implementation of a flext dsp class with 2 arguments and no dsp inlet
    \ingroup FLEXT_D_NEW_DSP
*/
#define FLEXT_NEW_DSP0_2(NAME,NEW_CLASS, TYPE1, TYPE2)   \
\
REAL_NEW_2(NAME,NEW_CLASS, 1,1,0, TYPE1, TYPE2)

/*! \brief Implementation of a flext class (part of a library) with 2 arguments
    \ingroup FLEXT_D_LIB
*/
#define FLEXT_LIB_2(NAME,NEW_CLASS, TYPE1, TYPE2)       \
\
REAL_NEW_2(NAME,NEW_CLASS, 0,0,1, TYPE1, TYPE2)

/*! \brief Implementation of a flext dsp class (part of a library) with 2 arguments
    \ingroup FLEXT_D_LIB_DSP
*/
#define FLEXT_LIB_DSP_2(NAME,NEW_CLASS, TYPE1, TYPE2)   \
\
REAL_NEW_2(NAME,NEW_CLASS, 1,0,1, TYPE1, TYPE2)

/*! \brief Implementation of a flext dsp class (part of a library) with 2 arguments and no dsp inlet
    \ingroup FLEXT_D_LIB_DSP
*/
#define FLEXT_LIB_DSP0_2(NAME,NEW_CLASS, TYPE1, TYPE2)   \
\
REAL_NEW_2(NAME,NEW_CLASS, 1,1,1, TYPE1, TYPE2)


// THREE ARGUMENTS
// ----------------------------------------

/*! \brief Implementation of a flext class with 3 arguments
    \ingroup FLEXT_D_NEW
*/
#define FLEXT_NEW_3(NAME,NEW_CLASS, TYPE1, TYPE2, TYPE3) \
\
REAL_NEW_3(NAME,NEW_CLASS, 0,0,0, TYPE1, TYPE2, TYPE3)

/*! \brief Implementation of a flext dsp class with 3 arguments
    \ingroup FLEXT_D_NEW_DSP
*/
#define FLEXT_NEW_DSP_3(NAME,NEW_CLASS, TYPE1, TYPE2, TYPE3)    \
\
REAL_NEW_3(NAME,NEW_CLASS, 1,0,0, TYPE1, TYPE2, TYPE3)

/*! \brief Implementation of a flext dsp class with 3 arguments and no dsp inlet
    \ingroup FLEXT_D_NEW_DSP
*/
#define FLEXT_NEW_DSP0_3(NAME,NEW_CLASS, TYPE1, TYPE2, TYPE3)    \
\
REAL_NEW_3(NAME,NEW_CLASS, 1,1,0, TYPE1, TYPE2, TYPE3)

/*! \brief Implementation of a flext class (part of a library) with 3 arguments
    \ingroup FLEXT_D_LIB
*/
#define FLEXT_LIB_3(NAME,NEW_CLASS, TYPE1, TYPE2, TYPE3)        \
\
REAL_NEW_3(NAME,NEW_CLASS, 0,0,1, TYPE1, TYPE2, TYPE3)

/*! \brief Implementation of a flext dsp class (part of a library) with 3 arguments
    \ingroup FLEXT_D_LIB_DSP
*/
#define FLEXT_LIB_DSP_3(NAME,NEW_CLASS, TYPE1, TYPE2, TYPE3)    \
\
REAL_NEW_3(NAME,NEW_CLASS, 1,0,1, TYPE1, TYPE2, TYPE3)

/*! \brief Implementation of a flext dsp class (part of a library) with 3 arguments and no dsp inlet
    \ingroup FLEXT_D_LIB_DSP
*/
#define FLEXT_LIB_DSP0_3(NAME,NEW_CLASS, TYPE1, TYPE2, TYPE3)    \
\
REAL_NEW_3(NAME,NEW_CLASS, 1,1,1, TYPE1, TYPE2, TYPE3)


// deprecated stuff

/*! \defgroup FLEXT_D_DEPRECATED Deprecated definitions 
    \deprecated
    @{ 
*/

#define FLEXT_NEW_G FLEXT_NEW_V

#define FLEXT_NEW_TILDE FLEXT_NEW_DSP
#define FLEXT_NEW_TILDE_G FLEXT_NEW_DSP_V
#define FLEXT_NEW_TILDE_1 FLEXT_NEW_DSP_1
#define FLEXT_NEW_TILDE_2 FLEXT_NEW_DSP_2
#define FLEXT_NEW_TILDE_3 FLEXT_NEW_DSP_3

#define FLEXT_LIB_G FLEXT_LIB_V

#define FLEXT_LIB_TILDE FLEXT_LIB_DSP
#define FLEXT_LIB_TILDE_G FLEXT_LIB_DSP_V
#define FLEXT_LIB_TILDE_1 FLEXT_LIB_DSP_1
#define FLEXT_LIB_TILDE_2 FLEXT_LIB_DSP_2
#define FLEXT_LIB_TILDE_3 FLEXT_LIB_DSP_3

#define FLEXT_TILDE_SETUP FLEXT_DSP_SETUP

//! @} FLEXT_D_DEPRECATED


/*! \defgroup FLEXT_D_LIBRARY Definitions for library objects
    @{ 
*/

/*! \brief Specify that to declare the library itself.
    \note If you have a library this is compulsory (to register all the objects of the library)
*/
#define FLEXT_LIB_SETUP(NAME,SETUPFUN) REAL_LIB_SETUP(NAME,SETUPFUN)

/*! \brief Register an object in the library.
    \note This is used in the library setup function
*/
#define FLEXT_SETUP(cl) REAL_SETUP(cl,0)

/*! \brief Register a DSP object in the library.
    \note This is used in the library setup function
*/
#define FLEXT_DSP_SETUP(cl) REAL_SETUP(cl,1)

//! @} FLEXT_D_LIBRARY 


//! @} FLEXT_D_INSTANCE


#endif