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
|
/*
pitch0.c:
Copyright (C) 1999 John ffitch, Istvan Varga
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 "csdl.h"
#include "csoundCore.h" /* PITCH.C */
#include "cwindow.h"
#include <limits.h>
#include "spectra.h"
#include "pitch.h"
#include "uggab.h"
int32_t mute_inst(CSOUND *csound, MUTE *p)
{
int32_t n;
int32_t onoff = (*p->onoff == FL(0.0) ? 0 : 1);
if (csound->ISSTRCOD(*p->ins)) {
char *ss = get_arg_string(csound,*p->ins);
n = csound->strarg2insno(csound,ss,1);
} else n = *p->ins;
if (UNLIKELY(n < 1)) return NOTOK;
if (onoff==0) {
csound->Warning(csound, Str("Muting new instances of instr %d\n"), n);
}
else {
csound->Warning(csound, Str("Allowing instrument %d to start\n"), n);
}
csound->engineState.instrtxtp[n]->muted = onoff;
return OK;
}
int32_t mute_inst_S(CSOUND *csound, MUTE *p)
{
int32_t n;
int32_t onoff = (*p->onoff == FL(0.0) ? 0 : 1);
n = csound->strarg2insno(csound, ((STRINGDAT *)p->ins)->data, 1);
if (UNLIKELY(n < 1)) return NOTOK;
if (onoff==0) {
csound->Warning(csound, Str("Muting new instances of instr %d\n"), n);
}
else {
csound->Warning(csound, Str("Allowing instrument %d to start\n"), n);
}
csound->engineState.instrtxtp[n]->muted = onoff;
return OK;
}
int32_t instcount(CSOUND *csound, INSTCNT *p)
{
int32_t n;
if (csound->ISSTRCOD(*p->ins)) {
char *ss = get_arg_string(csound,*p->ins);
n = csound->strarg2insno(csound,ss,1);
}
else n = *p->ins;
if (n<0 || n > csound->engineState.maxinsno ||
csound->engineState.instrtxtp[n] == NULL)
*p->cnt = FL(0.0);
else if (n==0) { /* Count all instruments */
int32_t tot = 1;
for (n=1; n<csound->engineState.maxinsno; n++)
if (csound->engineState.instrtxtp[n]) /* If it exists */
tot += ((*p->opt) ? csound->engineState.instrtxtp[n]->instcnt :
csound->engineState.instrtxtp[n]->active);
*p->cnt = (MYFLT)tot;
}
else {
//csound->Message(csound, "Instr %p \n", csound->engineState.instrtxtp[n]);
*p->cnt = ((*p->opt) ?
(MYFLT) csound->engineState.instrtxtp[n]->instcnt :
(MYFLT) csound->engineState.instrtxtp[n]->active);
if (*p->norel)
*p->cnt -= csound->engineState.instrtxtp[n]->pending_release;
}
return OK;
}
int32_t instcount_S(CSOUND *csound, INSTCNT *p)
{
int32_t n = csound->strarg2insno(csound, ((STRINGDAT *)p->ins)->data, 1);
if (n<0 || n > csound->engineState.maxinsno ||
csound->engineState.instrtxtp[n] == NULL)
*p->cnt = FL(0.0);
else if (n==0) { /* Count all instruments */
int32_t tot = 1;
for (n=1; n<csound->engineState.maxinsno; n++)
if (csound->engineState.instrtxtp[n]) /* If it exists */
tot += ((*p->opt) ? csound->engineState.instrtxtp[n]->instcnt :
csound->engineState.instrtxtp[n]->active);
*p->cnt = (MYFLT)tot;
}
else {
*p->cnt = ((*p->opt) ?
(MYFLT) csound->engineState.instrtxtp[n]->instcnt :
(MYFLT) csound->engineState.instrtxtp[n]->active);
if (*p->norel)
*p->cnt -= csound->engineState.instrtxtp[n]->pending_release;
}
return OK;
}
/* After gabriel maldonado */
int32_t cpuperc(CSOUND *csound, CPU_PERC *p)
{
int32_t n;
if (csound->ISSTRCOD(*p->instrnum)) {
char *ss = get_arg_string(csound,*p->instrnum);
n = csound->strarg2insno(csound,ss,1);
} else n = *p->instrnum;
if (n > 0 && n <= csound->engineState.maxinsno &&
csound->engineState.instrtxtp[n] != NULL)
/* If instrument exists */
csound->engineState.instrtxtp[n]->cpuload = *p->ipercent;
return OK;
}
int32_t cpuperc_S(CSOUND *csound, CPU_PERC *p)
{
int32_t n = csound->strarg2insno(csound, ((STRINGDAT *)p->instrnum)->data, 1);
if (n > 0 && n <= csound->engineState.maxinsno &&
csound->engineState.instrtxtp[n] != NULL)
/* If instrument exists */
csound->engineState.instrtxtp[n]->cpuload = *p->ipercent;
return OK;
}
int32_t maxalloc(CSOUND *csound, CPU_PERC *p)
{
int32_t n;
if (csound->ISSTRCOD(*p->instrnum)) {
char *ss = get_arg_string(csound,*p->instrnum);
n = csound->strarg2insno(csound,ss,1);
}
else n = *p->instrnum;
if (n > 0 && n <= csound->engineState.maxinsno &&
csound->engineState.instrtxtp[n] != NULL)
/* If instrument exists */
csound->engineState.instrtxtp[n]->maxalloc = (int32_t)*p->ipercent;
return OK;
}
int32_t maxalloc_S(CSOUND *csound, CPU_PERC *p)
{
int32_t n = csound->strarg2insno(csound, ((STRINGDAT *)p->instrnum)->data, 1);
if (n > 0 && n <= csound->engineState.maxinsno &&
csound->engineState.instrtxtp[n] != NULL)
/* If instrument exists */
csound->engineState.instrtxtp[n]->maxalloc = (int32_t)*p->ipercent;
return OK;
}
int32_t pfun(CSOUND *csound, PFUN *p)
{
int32_t n = (int32_t)MYFLT2LONG(*p->pnum);
MYFLT ans;
if (n<1) ans = FL(0.0);
else if (n<PMAX) ans = csound->init_event->p[n];
else if (csound->init_event->c.extra && n<PMAX+csound->init_event->c.extra[0])
ans = csound->init_event->c.extra[n-PMAX+1];
else ans = FL(0.0);
/*csound->Message(csound, "p(%d) %f\n", n,ans);*/
*p->ans = ans;
return OK;
}
int32_t pfunk_init(CSOUND *csound, PFUNK *p)
{
int32_t i, n = (int32_t)MYFLT2LONG(*p->pnum);
MYFLT ans, *pfield;
if (n<1 || n>PMAX) ans = FL(0.0);
else ans = csound->init_event->p[n];
/* save the pfields of the current event */
csound->AuxAlloc(csound,
(csound->init_event->pcnt+1)*sizeof(MYFLT), &p->pfield);
pfield = p->pfield.auxp;
for (i=1; i<=csound->init_event->pcnt; i++)
pfield[i] = csound->init_event->p[i];
*p->ans = ans;
return OK;
}
int32_t pfunk(CSOUND *csound, PFUNK *p)
{
IGN(csound);
int32_t n = (int32_t)MYFLT2LONG(*p->pnum);
MYFLT ans, *pfield;
if (n<1 || n>PMAX) {
ans = FL(0.0);
}
else {
pfield = p->pfield.auxp;
ans = pfield[n];
}
*p->ans = ans;
return OK;
}
|