File: goto_ops.c

package info (click to toggle)
csound 1%3A6.18.1%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 63,220 kB
  • sloc: ansic: 192,643; cpp: 14,149; javascript: 9,654; objc: 9,181; python: 3,376; java: 3,337; sh: 1,840; yacc: 1,255; xml: 985; perl: 635; lisp: 411; tcl: 341; lex: 217; makefile: 128
file content (387 lines) | stat: -rw-r--r-- 10,583 bytes parent folder | download | duplicates (2)
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
/*
  goto_ops.c:

  Copyright (C) 1991, 1997, 1999, 2002, 2005
  Barry Vercoe, Istvan Varga, John ffitch,
  Gabriel Maldonado, matt ingalls

  This file is part of Csound.

  The Csound Library is free software; you can redistribute it
  and/or modify it under the terms of the GNU Lesser General Public
  License as published by the Free Software Foundation; either
  version 2.1 of the License, or (at your option) any later version.

  Csound 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 Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with Csound; if not, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  02110-1301 USA
*/

#include "csoundCore.h" /*                            GOTO_OPS.C        */
#include "insert.h"     /* for goto's */
#include "aops.h"       /* for cond's */
extern int32_t strarg2insno(CSOUND *, void *p, int32_t is_string);

int32_t igoto(CSOUND *csound, GOTO *p)
{
  csound->ids = p->lblblk->prvi;
  return OK;
}

int32_t kgoto(CSOUND *csound, GOTO *p)
{
  IGN(csound);
  CS_PDS = p->lblblk->prvp;
  return OK;
}

int32_t icgoto(CSOUND *csound, CGOTO *p)
{
  if (*p->cond)
    csound->ids = p->lblblk->prvi;
  return OK;
}

int32_t kcgoto(CSOUND *csound, CGOTO *p)
{
  IGN(csound);
  if (*p->cond)
    CS_PDS = p->lblblk->prvp;

  return OK;
}

/* an 'if-then' variant of 'if-goto' */
int32_t ingoto(CSOUND *csound, CGOTO *p)
{
  /* Make sure we have an i-time conditional */
  if (p->h.optext->t.intype == 'b' && !*p->cond)
    csound->ids = p->lblblk->prvi;
  return OK;
}

int32_t kngoto(CSOUND *csound, CGOTO *p)
{
  IGN(csound);
  if (!*p->cond)
    CS_PDS = p->lblblk->prvp;
  return OK;
}

int32_t timset(CSOUND *csound, TIMOUT *p)
{
  if (UNLIKELY((p->cnt1 = (int32_t)(*p->idel * CS_EKR + FL(0.5))) < 0L ||
               (p->cnt2 = (int32_t)(*p->idur * CS_EKR + FL(0.5))) < 0L))
    return csoundInitError(csound, Str("negative time period"));
  return OK;
}

int32_t timout(CSOUND *csound, TIMOUT *p)
{
  IGN(csound);
  if (p->cnt1)                            /* once delay has expired, */
    p->cnt1--;
  else if (--p->cnt2 >= 0L)               /*  br during idur countdown */
    CS_PDS = p->lblblk->prvp;
  return OK;
}

int32_t rireturn(CSOUND *csound, LINK *p)
{
  IGN(p);
  IGN(csound);
  return OK;
}

int32_t reinit(CSOUND *csound, GOTO *p)
{
  csound->reinitflag = p->h.insdshead->reinitflag = 1;
  if (csound->oparms->realtime == 0) {
    csound->curip = p->h.insdshead;
    csound->ids = p->lblblk->prvi;        /* now, despite ANSI C warning:  */
    while ((csound->ids = csound->ids->nxti) != NULL &&
           (csound->ids->iopadr != (SUBR) rireturn))
      (*csound->ids->iopadr)(csound, csound->ids);
    csound->reinitflag = p->h.insdshead->reinitflag = 0;
  }
  else {
    uint64_t wp = csound->alloc_queue_wp;
    ATOMIC_SET(p->h.insdshead->init_done, 0);
    ATOMIC_SET8(p->h.insdshead->actflg, 0);
    csound->alloc_queue[wp].ip = p->h.insdshead;
    csound->alloc_queue[wp].ids = p->lblblk->prvi;
    csound->alloc_queue[wp].type = 3;
    csound->alloc_queue_wp = wp + 1 < MAX_ALLOC_QUEUE ? wp + 1 : 0;
    ATOMIC_INCR(csound->alloc_queue_items);
    return NOTOK;
  }
  return OK;
}

int32_t rigoto(CSOUND *csound, GOTO *p)
{
  if (p->h.insdshead->reinitflag)
    csound->ids = p->lblblk->prvi;
  return OK;
}

int32_t tigoto(CSOUND *csound, GOTO *p)     /* I-time only, NOP at reinit */
{
  if (p->h.insdshead->tieflag && !p->h.insdshead->reinitflag)
    csound->ids = p->lblblk->prvi;
  return OK;
}

int32_t tival(CSOUND *csound, EVAL *p)      /* I-time only, NOP at reinit */
{
  IGN(csound);
  if (!p->h.insdshead->reinitflag)
    *p->r = p->h.insdshead->tieflag;
  /* *p->r = (csound->tieflag ? FL(1.0) : FL(0.0)); */
  return OK;
}

int32_t ihold(CSOUND *csound, LINK *p)  /* make this note indefinit duration */
{                                       /* called by ihold statmnt at Itime  */
  IGN(csound);
  if (!p->h.insdshead->reinitflag) {  /* no-op at reinit                   */
    csound->curip->offbet = -1.0;
    csound->curip->offtim = -1.0;
  }
  return OK;
}

int32_t turnoff(CSOUND *csound, LINK *p)/* terminate the current instrument  */
{                                       /* called by turnoff statmt at Ptime */
  IGN(csound);
  INSDS *current = p->h.insdshead;
  INSDS *lcurip = p->h.insdshead;
  if (lcurip->actflg) {
    /* IV - Oct 16 2002: check for subinstr and user opcode */
    /* find top level instrument instance */
    while (lcurip->opcod_iobufs)
      lcurip = ((OPCOD_IOBUFS*) lcurip->opcod_iobufs)->parent_ip;
    xturnoff(csound, lcurip);
    if (current->xtratim <= 0) {
      OPDS* curOp = current->pds;
      while (curOp->nxtp != NULL)
        curOp = curOp->nxtp;                /* loop to last opds */
      current->pds = curOp;
    }
  }
  return OK;
}

/* turnoff2 opcode */
int32_t turnoff2(CSOUND *csound, TURNOFF2 *p, int32_t isStringArg)
{
  MYFLT p1;                     /* Shoud e a float */
  INSDS *ip, *ip2, *nip;
  int32_t   mode, insno, allow_release;

  if (isStringArg) {
    p1 = (MYFLT) strarg2insno(csound, ((STRINGDAT *)p->kInsNo)->data, 1);
  }
  else if (csound->ISSTRCOD(*p->kInsNo)) {
    p1 = (MYFLT) strarg2insno(csound, get_arg_string(csound, *p->kInsNo), 1);
  }
  else p1 = *(p->kInsNo);

  if (p1 <= FL(0.0))
    return OK;    /* not triggered */

  insno = (int32_t) p1;
  if (UNLIKELY(insno < 1 || insno > (int32_t) csound->engineState.maxinsno ||
               csound->engineState.instrtxtp[insno] == NULL)) {
    if(p->h.iopadr == NULL)
      return csoundPerfError(csound, &(p->h),
                             Str("turnoff2: invalid instrument number"));
    else return csoundInitError(csound,
                                Str("turnoff2: invalid instrument number"));

  }
  mode = (int32_t) (*(p->kFlags) + FL(0.5));
  allow_release = (*(p->kRelease) == FL(0.0) ? 0 : 1);
  if (UNLIKELY(mode < 0 || mode > 15 || (mode & 3) == 3)) {
    if(p->h.iopadr == NULL)
      return csoundPerfError(csound, &(p->h),
                             Str("turnoff2: invalid mode parameter"));
    else csoundInitError(csound,
                         Str("turnoff2: invalid mode parameter"));
  }
  ip = &(csound->actanchor);
  ip2 = NULL;
  /*     if ((mode & 4) && !ip->p1){ */
  /*       return csoundPerfError(csound, &(p->h), */
  /*                              Str("turnoff2: invalid instrument number")); */
  /*     }   */
  while ((ip = ip->nxtact) != NULL && (int32_t) ip->insno != insno);
  if (ip == NULL)
    return OK;
  do {                        /* This loop does not terminate in mode=0 */
    nip = ip->nxtact;
    if (((mode & 8) && ip->offtim >= 0.0) ||
        ((mode & 4) && ip->p1.value != p1) ||
        (allow_release && ip->relesing)) {
      ip = nip;
      continue;
    }
    if (!(mode & 3)) {
      if (allow_release) {
        xturnoff(csound, ip);
      }
      else {
        nip = ip->nxtact;
        xturnoff_now(csound, ip);
      }
    }
    else {
      ip2 = ip;
      if ((mode & 3) == 1)
        break;
    }
    ip = nip;
  } while (ip != NULL && (int32_t) ip->insno == insno);
  if (ip2 != NULL) {
    if (allow_release) {
      xturnoff(csound, ip2);
    }
    else {
      xturnoff_now(csound, ip2);
    }



    if (!p->h.insdshead->actflg) {  /* if current note was deactivated: */
      while (CS_PDS->nxtp != NULL)
        CS_PDS = CS_PDS->nxtp;            /* loop to last opds */
    }
  }
  return OK;
}

int32_t turnoff2S(CSOUND *csound, TURNOFF2 *p){
  return turnoff2(csound, p, 1);
}

int32_t turnoff2k(CSOUND *csound, TURNOFF2 *p){
  return turnoff2(csound, p, 0);
}

extern void delete_selected_rt_events(CSOUND*, MYFLT);
int32_t turnoff3(CSOUND *csound, TURNOFF2 *p, int32_t isStringArg)
{
  MYFLT p1;
  int32_t   insno;

  if (isStringArg) {
    p1 = (MYFLT) strarg2insno(csound, ((STRINGDAT *)p->kInsNo)->data, 1);
  }
  else if (csound->ISSTRCOD(*p->kInsNo)) {
    p1 = (MYFLT) strarg2insno(csound, get_arg_string(csound, *p->kInsNo), 1);
  }
  else p1 = *(p->kInsNo);

  if (p1 <= FL(0.0))
    return OK;    /* not triggered */

  insno = (int32_t) p1;
  //printf("*** turnoff3: insno = %d, p1 = %f\n", insno, p1);
  if (UNLIKELY(insno < 1 || insno > (int32_t) csound->engineState.maxinsno ||
               csound->engineState.instrtxtp[insno] == NULL)) {
    return csoundPerfError(csound, &(p->h),
                           Str("turnoff3: invalid instrument number"));
  }
  delete_selected_rt_events(csound, p1);
  return OK;
}

int32_t turnoff3S(CSOUND *csound, TURNOFF2 *p){
  return turnoff3(csound, p, 1);
}

int32_t turnoff3k(CSOUND *csound, TURNOFF2 *p){
  return turnoff3(csound, p, 0);
}

int32_t loop_l_i(CSOUND *csound, LOOP_OPS *p)
{
  /* if ((indxvar += iincr) < ilimit) igoto l */
  *(p->ndxvar) += *(p->incr);
  if (*(p->ndxvar) < *(p->limit))
    csound->ids = p->l->prvi;
  return OK;
}

int32_t loop_le_i(CSOUND *csound, LOOP_OPS *p)
{
  /* if ((indxvar += iincr) <= ilimit) igoto l */
  *(p->ndxvar) += *(p->incr);
  if (*(p->ndxvar) <= *(p->limit))
    csound->ids = p->l->prvi;
  return OK;
}

int32_t loop_g_i(CSOUND *csound, LOOP_OPS *p)
{
  /* if ((indxvar -= idecr) > ilimit) igoto l */
  *(p->ndxvar) -= *(p->incr);
  if (*(p->ndxvar) > *(p->limit))
    csound->ids = p->l->prvi;
  return OK;
}

int32_t loop_ge_i(CSOUND *csound, LOOP_OPS *p)
{
  /* if ((indxvar -= idecr) >= ilimit) igoto l */
  *(p->ndxvar) -= *(p->incr);
  if (*(p->ndxvar) >= *(p->limit))
    csound->ids = p->l->prvi;
  return OK;
}

int32_t loop_l_p(CSOUND *csound, LOOP_OPS *p)
{
  /* if ((kndxvar += kincr) < klimit) kgoto l */
  IGN(csound);
  *(p->ndxvar) += *(p->incr);
  if (*(p->ndxvar) < *(p->limit))
    CS_PDS = p->l->prvp;
  return OK;
}

int32_t loop_le_p(CSOUND *csound, LOOP_OPS *p)
{
  /* if ((kndxvar += kincr) <= klimit) kgoto l */
  IGN(csound);
  *(p->ndxvar) += *(p->incr);
  if (*(p->ndxvar) <= *(p->limit))
    CS_PDS = p->l->prvp;
  return OK;
}

int32_t loop_g_p(CSOUND *csound, LOOP_OPS *p)
{
  /* if ((kndxvar -= kdecr) > klimit) kgoto l */
  IGN(csound);
  *(p->ndxvar) -= *(p->incr);
  if (*(p->ndxvar) > *(p->limit))
    CS_PDS = p->l->prvp;
  return OK;
}

int32_t loop_ge_p(CSOUND *csound, LOOP_OPS *p)
{
  /* if ((kndxvar -= kdecr) >= klimit) kgoto l */
  IGN(csound);
  *(p->ndxvar) -= *(p->incr);
  if (*(p->ndxvar) >= *(p->limit))
    CS_PDS = p->l->prvp;
  return OK;
}