schedule.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 typedef struct {
00026 OPDS h;
00027 MYFLT *which, *when, *dur;
00028 MYFLT *argums[VARGMAX-3];
00029 int midi;
00030 INSDS *kicked;
00031 } SCHED;
00032
00033 typedef struct {
00034 OPDS h;
00035 MYFLT *trigger;
00036 MYFLT *which, *when, *dur;
00037 MYFLT *argums[VARGMAX-3];
00038 int todo;
00039 MYFLT abs_when;
00040 int midi;
00041 INSDS *kicked;
00042 } WSCHED;
00043
00044 typedef struct {
00045 OPDS h;
00046 MYFLT *res;
00047 MYFLT *kamp, *xcps, *type;
00048 AUXCH auxd;
00049 MYFLT *sine;
00050 int lasttype;
00051 long phs;
00052 } LFO;
00053
00054
00055
00056
00057
00058
00059 typedef struct {
00060 OPDS h;
00061 MYFLT *trigger, *mintime, *maxinst;
00062 MYFLT *args[PMAX+1];
00063 MYFLT prvmintim;
00064 long timrem, prvktim, kadjust;
00065 } TRIGINSTR;
00066
00067
00068
00069
00070
00071
00072 typedef struct {
00073 OPDS h;
00074 MYFLT *ktrig, *kstart, *kloop, *initndx, *kfn, *outargs[VARGMAX];
00075 long ndx;
00076 int nargs, done;
00077 long pfn;
00078 MYFLT *table;
00079 } TRIGSEQ;
00080
00081 typedef struct {
00082 OPDS h;
00083 MYFLT *ktrig, *unit_time, *kstart, *kloop, *initndx, *kfn;
00084 long ndx;
00085 int done;
00086 double start, newtime;
00087 long pfn;
00088 MYFLT *table;
00089 } SEQTIM;
00090