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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864
|
/*
csoundCore.h:
Copyright (C) 1991-2006 Barry Vercoe, 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
*/
#if !defined(__BUILDING_LIBCSOUND) && !defined(CSOUND_CSDL_H)
# error "Csound plugins and host applications should not include csoundCore.h"
#endif
#ifndef CSOUNDCORE_H
#define CSOUNDCORE_H
#if defined(__EMSCRIPTEN__) && !defined(EMSCRIPTEN)
#define EMSCRIPTEN
#endif
#include "sysdep.h"
#if !defined(EMSCRIPTEN) && !defined(CABBAGE)
#if defined(HAVE_PTHREAD)
#include <pthread.h>
#endif
#endif
#include "cs_par_structs.h"
#include <stdarg.h>
#include <setjmp.h>
#include "csound_type_system.h"
#include "csound.h"
#include "cscore.h"
#include "csound_data_structures.h"
#include "csound_standard_types.h"
#include "pools.h"
#ifndef CSOUND_CSDL_H
/* VL not sure if we need to check for SSE */
#if defined(__SSE__) && !defined(EMSCRIPTEN)
#include <xmmintrin.h>
#ifndef _MM_DENORMALS_ZERO_ON
#define _MM_DENORMALS_ZERO_MASK 0x0040
#define _MM_DENORMALS_ZERO_ON 0x0040
#define _MM_DENORMALS_ZERO_OFF 0x0000
#define _MM_SET_DENORMALS_ZERO_MODE(mode) \
_mm_setcsr((_mm_getcsr() & ~_MM_DENORMALS_ZERO_MASK) | (mode))
#define _MM_GET_DENORMALS_ZERO_MODE() \
(_mm_getcsr() & _MM_DENORMALS_ZERO_MASK)
#endif
#else
#ifndef _MM_DENORMALS_ZERO_ON
#define _MM_DENORMALS_ZERO_MASK 0
#define _MM_DENORMALS_ZERO_ON 0
#define _MM_DENORMALS_ZERO_OFF 0
#define _MM_SET_DENORMALS_ZERO_MODE(mode)
#endif
#endif
#endif
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#if defined(__MACH__) || defined(__FreeBSD__) || defined(__DragonFly__)
#include <xlocale.h>
#endif
#if (defined(__MACH__) || defined(ANDROID) || defined(NACL) || defined(__CYGWIN__) || defined(__HAIKU__))
#include <pthread.h>
#define BARRIER_SERIAL_THREAD (-1)
typedef struct {
pthread_mutex_t mut;
pthread_cond_t cond;
unsigned int count, max, iteration;
} barrier_t;
#ifndef PTHREAD_BARRIER_SERIAL_THREAD
#define pthread_barrier_t barrier_t
#endif /* PTHREAD_BARRIER_SERIAL_THREAd */
#endif /* __MACH__ */
#define OK (0)
#define NOTOK (-1)
#define CSFILE_FD_R 1
#define CSFILE_FD_W 2
#define CSFILE_STD 3
#define CSFILE_SND_R 4
#define CSFILE_SND_W 5
#define MAXINSNO (200)
#define PMAX (1998)
#define VARGMAX (1999)
#define NOT_AN_INSTRUMENT INT32_MAX
#define ORTXT h.optext->t
#define INCOUNT ORTXT.inlist->count
#define OUTCOUNT ORTXT.outlist->count /* Not used */
//#define INOCOUNT ORTXT.inoffs->count
//#define OUTOCOUNT ORTXT.outoffs->count
#define INOCOUNT ORTXT.inArgCount
#define OUTOCOUNT ORTXT.outArgCount
#define IS_ASIG_ARG(x) (csoundGetTypeForArg(x) == &CS_VAR_TYPE_A)
#define IS_STR_ARG(x) (csoundGetTypeForArg(x) == &CS_VAR_TYPE_S)
#define CURTIME (((double)csound->icurTime)/((double)csound->esr))
#define CURTIME_inc (((double)csound->ksmps)/((double)csound->esr))
#ifdef B64BIT
#define MAXLEN 0x10000000
#define FMAXLEN ((MYFLT)(MAXLEN))
#define PHMASK 0x0fffffff
#else
#define MAXLEN 0x1000000L
#define FMAXLEN ((MYFLT)(MAXLEN))
#define PHMASK 0x0FFFFFFL
#endif
#define MAX_STRING_CHANNEL_DATASIZE 16384
#define PFRAC(x) ((MYFLT)((x) & ftp->lomask) * ftp->lodiv)
#define MAXPOS 0x7FFFFFFFL
#define BYTREVS(n) ((n>>8 & 0xFF) | (n<<8 & 0xFF00))
#define BYTREVL(n) ((n>>24 & 0xFF) | (n>>8 & 0xFF00L) | \
(n<<8 & 0xFF0000L) | (n<<24 & 0xFF000000L))
#define OCTRES 8192
#define CPSOCTL(n) ((MYFLT)(1<<((int)(n)>>13))*csound->cpsocfrc[(int)(n)&8191])
#define LOBITS 10
#define LOFACT 1024
/* LOSCAL is 1/LOFACT as MYFLT */
#define LOSCAL FL(0.0009765625)
#define LOMASK 1023
#ifdef USE_DOUBLE
extern int64_t MYNAN;
//#define SSTRCOD (nan("0"))
#define SSTRCOD (double)NAN
#else
extern int32 MYNAN;
#define SSTRCOD (float)NAN
//#define SSTRCOD (nanf("0"))
#endif
//#define ISSTRCOD(X) isnan(X)
//#ifndef __MACH__
extern int ISSTRCOD(MYFLT);
//#else
//#define ISSTRCOD(X) isnan(X)
//#endif
#define SSTRSIZ 1024
#define ALLCHNLS 0x7fff
#define DFLT_SR FL(44100.0)
#define DFLT_KR FL(4410.0)
#define DFLT_KSMPS 10
#define DFLT_NCHNLS 1
#define MAXCHNLS 256
#define MAXNAME (256)
#define DFLT_DBFS (FL(32768.0))
#define MAXOCTS 8
#define MAXCHAN 16 /* 16 MIDI channels; only one port for now */
/* A440 tuning factor */
#define ONEPT (csound->A4/430.5389646099018460319362438314060262605)
#define LOG10D20 0.11512925 /* for db to ampfac */
#define DV32768 FL(0.000030517578125)
#ifndef PI
#define PI (3.141592653589793238462643383279502884197)
#endif /* pi */
#define TWOPI (6.283185307179586476925286766559005768394)
#define HALFPI (1.570796326794896619231321691639751442099)
#define PI_F ((MYFLT) PI)
#define TWOPI_F ((MYFLT) TWOPI)
#define HALFPI_F ((MYFLT) HALFPI)
#define INF (2147483647.0)
#define ROOT2 (1.414213562373095048801688724209698078569)
/* CONSTANTS FOR USE IN MSGLEVEL */
#define CS_AMPLMSG 01
#define CS_RNGEMSG 02
#define CS_WARNMSG 04
//#define CS_UNUSED1 08
#define CS_NOMSG 0x10
//#define CS_UNUSED2 0x20
#define CS_RAWMSG 0x40
#define CS_TIMEMSG 0x80
#define CS_NOQQ 0x400
#define IGN(X) (void) X
#define ARG_CONSTANT 0
#define ARG_STRING 1
#define ARG_PFIELD 2
#define ARG_GLOBAL 3
#define ARG_LOCAL 4
#define ARG_LABEL 5
#define ASYNC_GLOBAL 1
#define ASYNC_LOCAL 2
enum {FFT_LIB=0, PFFT_LIB, VDSP_LIB};
enum {FFT_FWD=0, FFT_INV};
/* advance declaration for
API message queue struct
*/
struct _message_queue;
typedef struct CORFIL {
char *body;
unsigned int len;
unsigned int p;
} CORFIL;
typedef struct {
int odebug;
int sfread, sfwrite, sfheader, filetyp;
int inbufsamps, outbufsamps;
int informat, outformat;
int sfsampsize;
int displays, graphsoff, postscript, msglevel;
int Beatmode, oMaxLag;
int usingcscore, Linein;
int RTevents, Midiin, FMidiin, RMidiin;
int ringbell, termifend;
int rewrt_hdr, heartbeat, gen01defer;
double cmdTempo;
float sr_override, kr_override;
int nchnls_override, nchnls_i_override;
char *infilename, *outfilename;
CORFIL *playscore;
char *Linename, *Midiname, *FMidiname;
char *Midioutname; /* jjk 09252000 - MIDI output device, -Q option */
char *FMidioutname;
int midiKey, midiKeyCps, midiKeyOct, midiKeyPch;
int midiVelocity, midiVelocityAmp;
int noDefaultPaths; /* syy - Oct 25, 2006: for disabling relative paths
from files */
int numThreads;
int syntaxCheckOnly;
int useCsdLineCounts;
int sampleAccurate; /* switch for score events sample accuracy */
int realtime; /* realtime priority mode */
MYFLT e0dbfs_override;
int daemon;
double quality; /* for ogg encoding */
int ksmps_override;
int fft_lib;
int echo;
MYFLT limiter;
float sr_default, kr_default;
} OPARMS;
typedef struct arglst {
int count;
char *arg[1];
} ARGLST;
typedef struct arg {
int type;
void* argPtr;
int index;
struct arg* next;
} ARG;
// typedef struct argoffs {
// int count;
// int indx[1];
// } ARGOFFS;
typedef struct oentry {
char *opname;
uint16 dsblksiz;
uint16 flags;
uint8_t thread;
char *outypes;
char *intypes;
int (*iopadr)(CSOUND *, void *p);
int (*kopadr)(CSOUND *, void *p);
int (*aopadr)(CSOUND *, void *p);
void *useropinfo; /* user opcode parameters */
} OENTRY;
/**
* Storage for parsed orchestra code, for each opcode in an INSTRTXT.
*/
typedef struct text {
uint16_t linenum; /* Line num in orch file (currently buggy!) */
uint64_t locn; /* and location */
OENTRY *oentry;
char *opcod; /* Pointer to opcode name in global pool */
ARGLST *inlist; /* Input args (pointer to item in name list) */
ARGLST *outlist;
ARG *inArgs; /* Input args (index into list of values) */
unsigned int inArgCount;
ARG *outArgs;
unsigned int outArgCount;
char intype; /* Type of first input argument (g,k,a,w etc) */
char pftype; /* Type of output argument (k,a etc) */
} TEXT;
/**
* This struct is filled out by otran() at orch parse time.
* It is used as a template for instrument events.
*/
typedef struct instr {
struct op * nxtop; /* Linked list of instr opcodes */
TEXT t; /* Text of instrument (same in nxtop) */
int pmax, vmax, pextrab; /* Arg count, size of data for all
opcodes in instr */
//int mdepends; /* Opcode type (i/k/a) */
CS_VAR_POOL* varPool;
// int optxtcount;
int16 muted;
// int32 localen;
int32 opdstot; /* Total size of opds structs in instr */
// int32 *inslist; /* Only used in parsing (?) */
MYFLT *psetdata; /* Used for pset opcode */
struct insds * instance; /* Chain of allocated instances of
this instrument */
struct insds * lst_instance; /* last allocated instance */
struct insds * act_instance; /* Chain of free (inactive) instances */
/* (pointer to next one is INSDS.nxtact) */
struct instr * nxtinstxt; /* Next instrument in orch (num order) */
int active; /* To count activations for control */
int pending_release; /* To count instruments in release phase */
int maxalloc;
MYFLT cpuload; /* % load this instrumemnt makes */
struct opcodinfo *opcode_info; /* UDO info (when instrs are UDOs) */
char *insname; /* instrument name */
int instcnt; /* Count number of instances ever */
int isNew; /* is this a new definition */
int nocheckpcnt; /* Control checks on pcnt */
} INSTRTXT;
typedef struct namedInstr {
int32 instno;
char *name;
INSTRTXT *ip;
struct namedInstr *next;
} INSTRNAME;
/**
* A chain of TEXT structs. Note that this is identical with the first two
* members of struct INSTRTEXT, and is so typecast at various points in code.
*/
typedef struct op {
struct op *nxtop;
TEXT t;
} OPTXT;
typedef struct fdch {
struct fdch *nxtchp;
/** handle returned by csound->FileOpen() */
void *fd;
} FDCH;
typedef struct auxch {
struct auxch *nxtchp;
size_t size;
void *auxp, *endp;
} AUXCH;
/** this callback is used to notify the
availability of new storage in AUXCH *.
It can be used to swap the old storage
for the new one and return it for deallocation.
*/
typedef AUXCH* (*aux_cb)(CSOUND *, void *, AUXCH *);
/**
* AuxAllocAsync data
*/
typedef struct {
CSOUND *csound;
size_t nbytes;
AUXCH *auxchp;
void *userData;
aux_cb notify;
} AUXASYNC;
typedef struct {
int dimensions;
int* sizes; /* size of each dimensions */
int arrayMemberSize;
CS_TYPE* arrayType;
MYFLT* data;
size_t allocated;
// AUXCH aux;
} ARRAYDAT;
typedef struct {
int size; /* 0...size-1 */
MYFLT *data;
AUXCH aux;
} TABDAT;
typedef struct {
char *data;
int size;
} STRINGDAT;
typedef struct monblk {
int16 pch;
struct monblk *prv;
} MONPCH;
typedef struct {
int notnum[4];
} DPEXCL;
typedef struct {
DPEXCL dpexcl[8];
/** for keys 25-99 */
int exclset[75];
} DPARM;
typedef struct dklst {
struct dklst *nxtlst;
int32 pgmno;
/** cnt + keynos */
MYFLT keylst[1];
} DKLST;
typedef struct mchnblk {
/** most recently received program change */
int16 pgmno;
/** instrument number assigned to this channel */
int16 insno;
int16 RegParNo;
int16 mono;
MONPCH *monobas;
MONPCH *monocur;
/** list of active notes (NULL: not active) */
struct insds *kinsptr[128];
/** polyphonic pressure indexed by note number */
MYFLT polyaft[128];
/** ... with GS vib_rate, stored in c128-c135 */
MYFLT ctl_val[136];
/** program change to instr number (<=0: ignore) */
int16 pgm2ins[128];
/** channel pressure (0-127) */
MYFLT aftouch;
/** pitch bend (-1 to 1) */
MYFLT pchbend;
/** pitch bend sensitivity in semitones */
MYFLT pbensens;
/** number of held (sustaining) notes */
int16 ksuscnt;
/** current state of sustain pedal (0: off) */
int16 sustaining;
int dpmsb;
int dplsb;
int datenabl;
/** chain of dpgm keylists */
DKLST *klists;
/** drumset params */
DPARM *dparms;
} MCHNBLK;
/**
* This struct holds the data for one score event.
*/
typedef struct event {
/** String argument(s) (NULL if none) */
int scnt;
char *strarg;
/* instance pointer */
void *pinstance; /* used in nstance opcode */
/** Event type */
char opcod;
/** Number of p-fields */
int16 pcnt;
/** Event start time */
MYFLT p2orig;
/** Length */
MYFLT p3orig;
/** All p-fields for this event (SSTRCOD: string argument) */
MYFLT p[PMAX + 1];
union { /* To ensure size is same as earlier */
MYFLT *extra;
MYFLT p[2];
} c;
} EVTBLK;
/**
* This struct holds the info for a concrete instrument event
* instance in performance.
*/
typedef struct insds {
/* Chain of init-time opcodes */
struct opds * nxti;
/* Chain of performance-time opcodes */
struct opds * nxtp;
/* Next allocated instance */
struct insds * nxtinstance;
/* Previous allocated instance */
struct insds * prvinstance;
/* Next in list of active instruments */
struct insds * nxtact;
/* Previous in list of active instruments */
struct insds * prvact;
/* Next instrument to terminate */
struct insds * nxtoff;
/* Chain of files used by opcodes in this instr */
FDCH *fdchp;
/* Extra memory used by opcodes in this instr */
AUXCH *auxchp;
/* Extra release time requested with xtratim opcode */
int xtratim;
/* MIDI note info block if event started from MIDI */
MCHNBLK *m_chnbp;
/* ptr to next overlapping MIDI voice */
struct insds * nxtolap;
/* Instrument number */
int16 insno;
/* Instrument def address */
INSTRTXT *instr;
/* non-zero for sustaining MIDI note */
int16 m_sust;
/* MIDI pitch, for simple access */
unsigned char m_pitch;
/* ...ditto velocity */
unsigned char m_veloc;
/* Flag to indicate we are releasing, test with release opcode */
char relesing;
/* Set if instr instance is active (perfing) */
char actflg;
/* Time to turn off event, in score beats */
double offbet;
/* Time to turn off event, in seconds (negative on indef/tie) */
double offtim;
/* Python namespace for just this instance. */
void *pylocal;
/* pointer to Csound engine and API for externals */
CSOUND *csound;
uint64_t kcounter;
unsigned int ksmps; /* Instrument copy of ksmps */
MYFLT ekr; /* and of rates */
MYFLT onedksmps, onedkr, kicvt;
struct opds *pds; /* Used for jumping */
MYFLT scratchpad[4]; /* Persistent data */
/* user defined opcode I/O buffers */
void *opcod_iobufs;
void *opcod_deact, *subins_deact;
/* opcodes to be run at note deactivation */
void *nxtd;
uint32_t ksmps_offset; /* ksmps offset for sample accuracy */
uint32_t no_end; /* samps left at the end for sample accuracy
(calculated) */
uint32_t ksmps_no_end; /* samps left at the end for sample accuracy
(used by opcodes) */
MYFLT *spin; /* offset into csound->spin */
MYFLT *spout; /* offset into csound->spout, or local spout */
int init_done;
int tieflag;
int reinitflag;
MYFLT retval;
MYFLT *lclbas; /* base for variable memory pool */
char *strarg; /* string argument */
/* Copy of required p-field values for quick access */
CS_VAR_MEM p0;
CS_VAR_MEM p1;
CS_VAR_MEM p2;
CS_VAR_MEM p3;
} INSDS;
#define CS_KSMPS (p->h.insdshead->ksmps)
#define CS_KCNT (p->h.insdshead->kcounter)
#define CS_EKR (p->h.insdshead->ekr)
#define CS_ONEDKSMPS (p->h.insdshead->onedksmps)
#define CS_ONEDKR (p->h.insdshead->onedkr)
#define CS_KICVT (p->h.insdshead->kicvt)
#define CS_ESR (csound->esr)
#define CS_PDS (p->h.insdshead->pds)
#define CS_SPIN (p->h.insdshead->spin)
#define CS_SPOUT (p->h.insdshead->spout)
typedef int (*SUBR)(CSOUND *, void *);
/**
* This struct holds the info for one opcode in a concrete
* instrument instance in performance.
*/
typedef struct opds {
/** Next opcode in init-time chain */
struct opds * nxti;
/** Next opcode in perf-time chain */
struct opds * nxtp;
/** Initialization (i-time) function pointer */
SUBR iopadr;
/** Perf-time (k- or a-rate) function pointer */
SUBR opadr;
/** Orch file template part for this opcode */
OPTXT *optext;
/** Owner instrument instance data structure */
INSDS *insdshead;
} OPDS;
typedef struct lblblk {
OPDS h;
OPDS *prvi;
OPDS *prvp;
} LBLBLK;
typedef struct {
MYFLT *begp, *curp, *endp, feedback[6];
int32 scount;
} OCTDAT;
typedef struct {
int32 npts, nocts, nsamps;
MYFLT lofrq, hifrq, looct, srate;
OCTDAT octdata[MAXOCTS];
AUXCH auxch;
} DOWNDAT;
typedef struct {
uint32_t ktimstamp, ktimprd;
int32 npts, nfreqs, dbout;
DOWNDAT *downsrcp;
AUXCH auxch;
} SPECDAT;
typedef struct {
MYFLT gen01;
MYFLT ifilno;
MYFLT iskptim;
MYFLT iformat;
MYFLT channel;
MYFLT sample_rate;
char strarg[SSTRSIZ];
} GEN01ARGS;
typedef struct {
/** table length, not including the guard point */
uint32_t flen;
/** length mask ( = flen - 1) for power of two table size, 0 otherwise */
int32 lenmask;
/** log2(MAXLEN / flen) for power of two table size, 0 otherwise */
int32 lobits;
/** 2^lobits - 1 */
int32 lomask;
/** 1 / 2^lobits */
MYFLT lodiv;
/** LOFACT * (table_sr / orch_sr), cpscvt = cvtbas / base_freq */
MYFLT cvtbas, cpscvt;
/** sustain loop mode (0: none, 1: forward, 2: forward and backward) */
int16 loopmode1;
/** release loop mode (0: none, 1: forward, 2: forward and backward) */
int16 loopmode2;
/** sustain loop start and end in sample frames */
int32 begin1, end1;
/** release loop start and end in sample frames */
int32 begin2, end2;
/** sound file length in sample frames (flenfrms = soundend - 1) */
int32 soundend, flenfrms;
/** number of channels */
int32 nchanls;
/** table number */
int32 fno;
/** args */
MYFLT args[PMAX - 4];
/** arg count */
int argcnt;
/** GEN01 parameters */
GEN01ARGS gen01args;
/** table data (flen + 1 MYFLT values) */
MYFLT *ftable;
} FUNC;
typedef struct {
CSOUND *csound;
int32 flen;
int fno, guardreq;
EVTBLK e;
} FGDATA;
typedef struct {
char *name;
int (*fn)(FGDATA *, FUNC *);
} NGFENS;
typedef int (*GEN)(FGDATA *, FUNC *);
typedef struct MEMFIL {
char filename[256]; /* Made larger RWD */
char *beginp;
char *endp;
int32 length;
struct MEMFIL *next;
} MEMFIL;
typedef struct {
int16 type;
int16 chan;
int16 dat1;
int16 dat2;
} MEVENT;
typedef struct SNDMEMFILE_ {
/** file ID (short name) */
char *name;
struct SNDMEMFILE_ *nxt;
/** full path filename */
char *fullName;
/** file length in sample frames */
size_t nFrames;
/** sample rate in Hz */
double sampleRate;
/** number of channels */
int nChannels;
/** AE_SHORT, AE_FLOAT, etc. */
int sampleFormat;
/** TYP_WAV, TYP_AIFF, etc. */
int fileType;
/**
* loop mode:
* 0: no loop information
* 1: off
* 2: forward
* 3: backward
* 4: bidirectional
*/
int loopMode;
/** playback start offset frames */
double startOffs;
/** loop start (sample frames) */
double loopStart;
/** loop end (sample frames) */
double loopEnd;
/** base frequency (in Hz) */
double baseFreq;
/** amplitude scale factor */
double scaleFac;
/** interleaved sample data */
float data[1];
} SNDMEMFILE;
typedef struct pvx_memfile_ {
char *filename;
struct pvx_memfile_ *nxt;
float *data;
uint32 nframes;
int format;
int fftsize;
int overlap;
int winsize;
int wintype;
int chans;
MYFLT srate;
} PVOCEX_MEMFILE;
#ifdef __BUILDING_LIBCSOUND
#define INSTR 1
#define ENDIN 2
#define OPCODE 3
#define ENDOP 4
#define LABEL 5
#define SETBEG 6
#define PSET 6
#define USEROPCODE 7
#define SETEND 8
#define TOKMAX 50L /* Should be 50 but bust */
/* max number of input/output args for user defined opcodes */
#define OPCODENUMOUTS_LOW 16
#define OPCODENUMOUTS_HIGH 64
#define OPCODENUMOUTS_MAX 256
#define MBUFSIZ (4096)
#define MIDIINBUFMAX (1024)
#define MIDIINBUFMSK (MIDIINBUFMAX-1)
#define MIDIMAXPORTS (64)
typedef union {
uint32 dwData;
unsigned char bData[4];
} MIDIMESSAGE;
/* MIDI globals */
typedef struct midiglobals {
MEVENT *Midevtblk;
int sexp;
int MIDIoutDONE;
int MIDIINbufIndex;
MIDIMESSAGE MIDIINbuffer2[MIDIINBUFMAX];
int (*MidiInOpenCallback)(CSOUND *, void **, const char *);
int (*MidiReadCallback)(CSOUND *, void *, unsigned char *, int);
int (*MidiInCloseCallback)(CSOUND *, void *);
int (*MidiOutOpenCallback)(CSOUND *, void **, const char *);
int (*MidiWriteCallback)(CSOUND *, void *, const unsigned char *, int);
int (*MidiOutCloseCallback)(CSOUND *, void *);
const char *(*MidiErrorStringCallback)(int);
void *midiInUserData;
void *midiOutUserData;
void *midiFileData;
void *midiOutFileData;
int rawControllerMode;
char muteTrackList[256];
unsigned char mbuf[MBUFSIZ];
unsigned char *bufp, *endatp;
int16 datreq, datcnt;
} MGLOBAL;
typedef struct eventnode {
struct eventnode *nxt;
uint32 start_kcnt;
EVTBLK evt;
} EVTNODE;
typedef struct {
OPDS h;
MYFLT *ktempo, *istartempo;
MYFLT prvtempo;
} TEMPO;
/* typedef struct token { */
/* char *str; */
/* int16 prec; */
/* } TOKEN; */
typedef struct names {
char *mac;
struct names *next;
} NAMES;
typedef struct threadInfo {
struct threadInfo *next;
void * threadId;
} THREADINFO;
#include "sort.h"
#include "text.h"
#include "prototyp.h"
#include "cwindow.h"
#include "envvar.h"
#include "remote.h"
#define CS_STATE_PRE (1)
#define CS_STATE_COMP (2)
#define CS_STATE_UTIL (4)
#define CS_STATE_CLN (8)
#define CS_STATE_JMP (16)
/* These are used to set/clear bits in csound->tempStatus.
If the bit is set, it indicates that the given file is
a temporary. */
extern const uint32_t csOrcMask;
extern const uint32_t csScoInMask;
extern const uint32_t csScoSortMask;
extern const uint32_t csMidiScoMask;
extern const uint32_t csPlayScoMask;
/* kperf function protoypes. Used by the debugger to switch between debug
* and nodebug kperf functions */
int kperf_nodebug(CSOUND *csound);
int kperf_debug(CSOUND *csound);
#endif /* __BUILDING_LIBCSOUND */
#define MARGS (3)
#define MAX_INCLUDE_DEPTH 100
struct MACRO;
typedef struct MACRON {
int n;
unsigned int line;
struct MACRO *s;
char *path;
} MACRON;
typedef struct MACRO { /* To store active macros */
char *name; /* Use is by name */
int acnt; /* Count of arguments */
char *body; /* The text of the macro */
struct MACRO *next; /* Chain of active macros */
int margs; /* amount of space for args */
char *arg[MARGS]; /* With these arguments */
} MACRO;
typedef struct in_stack_s { /* Stack of active inputs */
int16 is_marked_repeat; /* 1 if this input created by 'n' stmnt */
int16 args; /* Argument count for macro */
//CORFIL *cf; /* In core file */
//void *fd; /* for closing stream */
MACRO *mac;
int line;
int32 oposit;
} IN_STACK;
typedef struct marked_sections {
char *name;
int32 posit;
int line;
} MARKED_SECTIONS;
typedef struct namelst {
char *name;
struct namelst *next;
} NAMELST;
typedef struct NAME__ {
char *namep;
struct NAME__ *nxt;
int type, count;
} NAME;
/* Holds UDO information, when an instrument is
defined as a UDO
*/
typedef struct opcodinfo {
int32 instno;
char *name, *intypes, *outtypes;
int16 inchns, outchns;
CS_VAR_POOL* out_arg_pool;
CS_VAR_POOL* in_arg_pool;
INSTRTXT *ip;
struct opcodinfo *prv;
} OPCODINFO;
/**
* This struct will hold the current engine state after compilation
*/
typedef struct engine_state {
CS_VAR_POOL *varPool; /* global variable pool */
CS_HASH_TABLE *constantsPool;
CS_HASH_TABLE *stringPool;
int maxopcno;
INSTRTXT **instrtxtp; /* instrument list */
INSTRTXT instxtanchor;
CS_HASH_TABLE *instrumentNames; /* instrument names */
int maxinsno;
} ENGINE_STATE;
/**
* Nen FFT interface
*/
typedef struct _FFT_SETUP{
int N, M;
void *setup;
MYFLT *buffer;
int lib;
int d;
int p2;
} CSOUND_FFT_SETUP;
/**
* plugin module info
*/
typedef struct {
char module[12];
char type[12];
} MODULE_INFO;
#define MAX_ALLOC_QUEUE 1024
typedef struct _alloc_data_ {
int type;
int insno;
EVTBLK blk;
MCHNBLK *chn;
MEVENT mep;
INSDS *ip;
OPDS *ids;
} ALLOC_DATA;
#define MAX_MESSAGE_STR 1024
typedef struct _message_queue_t_ {
int attr;
char str[MAX_MESSAGE_STR];
} message_string_queue_t;
#include "find_opcode.h"
/**
* Contains all function pointers, data, and data pointers required
* to run one instance of Csound.
*
* \b PUBLIC functions in CSOUND_
* These are used by plugins to access the
* Csound library functionality without the requirement
* of compile-time linkage to the csound library
* New functions only need to be added here if
* they are required by plugins.
*/
struct CSOUND_ {
/** @name Attributes */
/**@{ */
MYFLT (*GetSr)(CSOUND *);
MYFLT (*GetKr)(CSOUND *);
uint32_t (*GetKsmps)(CSOUND *);
/** Get number of output channels */
uint32_t (*GetNchnls)(CSOUND *);
/** Get number of input channels */
uint32_t (*GetNchnls_i)(CSOUND *);
MYFLT (*Get0dBFS) (CSOUND *);
/** Get number of control blocks elapsed */
uint64_t (*GetKcounter)(CSOUND *);
int64_t (*GetCurrentTimeSamples)(CSOUND *);
long (*GetInputBufferSize)(CSOUND *);
long (*GetOutputBufferSize)(CSOUND *);
MYFLT *(*GetInputBuffer)(CSOUND *);
MYFLT *(*GetOutputBuffer)(CSOUND *);
/** Set internal debug mode */
void (*SetDebug)(CSOUND *, int d);
int (*GetDebug)(CSOUND *);
int (*GetSizeOfMYFLT)(void);
void (*GetOParms)(CSOUND *, OPARMS *);
/** Get environment variable */
const char *(*GetEnv)(CSOUND *, const char *name);
/**@}*/
/** @name Message printout */
/**@{ */
CS_PRINTF2 void (*Message)(CSOUND *, const char *fmt, ...);
CS_PRINTF3 void (*MessageS)(CSOUND *, int attr, const char *fmt, ...);
void (*MessageV)(CSOUND *, int attr, const char *format, va_list args);
int (*GetMessageLevel)(CSOUND *);
void (*SetMessageLevel)(CSOUND *, int messageLevel);
void (*SetMessageCallback)(CSOUND *,
void (*csoundMessageCallback)(CSOUND *,
int attr, const char *format,
va_list valist));
/**@}*/
/** @name Event and MIDI functionality for opcodes */
/**@{ */
int (*SetReleaseLength)(void *p, int n);
MYFLT (*SetReleaseLengthSeconds)(void *p, MYFLT n);
int (*GetMidiChannelNumber)(void *p);
MCHNBLK *(*GetMidiChannel)(void *p);
int (*GetMidiNoteNumber)(void *p);
int (*GetMidiVelocity)(void *p);
int (*GetReleaseFlag)(void *p);
double (*GetOffTime)(void *p);
MYFLT *(*GetPFields)(void *p);
int (*GetInstrumentNumber)(void *p);
int (*GetZakBounds)(CSOUND *, MYFLT **);
int (*GetTieFlag)(CSOUND *);
int (*GetReinitFlag)(CSOUND *);
/** Current maximum number of strings, accessible through the strset
and strget opcodes */
int (*GetStrsmax)(CSOUND *);
char *(*GetStrsets)(CSOUND *, long);
/* Fast power of two function from a precomputed table */
MYFLT (*Pow2)(CSOUND *, MYFLT a);
/* Fast power function for positive integers */
MYFLT (*intpow)(MYFLT, int32);
/* Returns a string name for the file type */
char *(*type2string)(int type);
/**@}*/
/** @name Arguments to opcodes */
/**@{ */
CS_TYPE *(*GetTypeForArg)(void *p);
int (*GetInputArgCnt)(void *p);
char *(*GetInputArgName)(void *p, int n);
int (*GetOutputArgCnt)(void *p);
char *(*GetOutputArgName)(void *p, int n);
char *(*GetString)(CSOUND *, MYFLT);
int32 (*strarg2insno)(CSOUND *, void *p, int is_string);
char *(*strarg2name)(CSOUND *, char *, void *, const char *, int);
/**@}*/
/** @name Memory allocation */
/**@{ */
void (*AuxAlloc)(CSOUND *, size_t nbytes, AUXCH *auxchp);
void *(*Malloc)(CSOUND *, size_t nbytes);
void *(*Calloc)(CSOUND *, size_t nbytes);
void *(*ReAlloc)(CSOUND *, void *oldp, size_t nbytes);
char *(*Strdup)(CSOUND *, char*);
void (*Free)(CSOUND *, void *ptr);
/**@}*/
/** @name Function tables */
/**@{ */
int (*hfgens)(CSOUND *, FUNC **, const EVTBLK *, int);
int (*FTAlloc)(CSOUND *, int tableNum, int len);
int (*FTDelete)(CSOUND *, int tableNum);
/** Find tables with power of two size. If table exists but is
not a power of 2, NULL is returned. */
FUNC *(*FTFind)(CSOUND *, MYFLT *argp);
/** Find any table, except deferred load tables. */
FUNC *(*FTFindP)(CSOUND *, MYFLT *argp);
/** Find any table. */
FUNC *(*FTnp2Find)(CSOUND *, MYFLT *argp);
int (*GetTable)(CSOUND *, MYFLT **tablePtr, int tableNum);
int (*TableLength)(CSOUND *, int table);
MYFLT (*TableGet)(CSOUND *, int table, int index);
void (*TableSet)(CSOUND *, int table, int index, MYFLT value);
void *(*GetNamedGens)(CSOUND *);
/**@}*/
/** @name Global and config variable manipulation */
/**@{ */
int (*CreateGlobalVariable)(CSOUND *, const char *name, size_t nbytes);
void *(*QueryGlobalVariable)(CSOUND *, const char *name);
void *(*QueryGlobalVariableNoCheck)(CSOUND *, const char *name);
int (*DestroyGlobalVariable)(CSOUND *, const char *name);
int (*CreateConfigurationVariable)(CSOUND *, const char *name,
void *p, int type, int flags,
void *min, void *max,
const char *shortDesc,
const char *longDesc);
int (*SetConfigurationVariable)(CSOUND *, const char *name, void *value);
int (*ParseConfigurationVariable)(CSOUND *,
const char *name, const char *value);
csCfgVariable_t *(*QueryConfigurationVariable)(CSOUND *, const char *name);
csCfgVariable_t **(*ListConfigurationVariables)(CSOUND *);
int (*DeleteConfigurationVariable)(CSOUND *, const char *name);
const char *(*CfgErrorCodeToString)(int errcode);
/**@}*/
/** @name FFT support */
/**@{ */
MYFLT (*GetInverseComplexFFTScale)(CSOUND *, int FFTsize);
MYFLT (*GetInverseRealFFTScale)(CSOUND *, int FFTsize);
void (*ComplexFFT)(CSOUND *, MYFLT *buf, int FFTsize);
void (*InverseComplexFFT)(CSOUND *, MYFLT *buf, int FFTsize);
void (*RealFFT)(CSOUND *, MYFLT *buf, int FFTsize);
void (*InverseRealFFT)(CSOUND *, MYFLT *buf, int FFTsize);
void (*RealFFTMult)(CSOUND *, MYFLT *outbuf, MYFLT *buf1, MYFLT *buf2,
int FFTsize, MYFLT scaleFac);
void (*RealFFTnp2)(CSOUND *, MYFLT *buf, int FFTsize);
void (*InverseRealFFTnp2)(CSOUND *, MYFLT *buf, int FFTsize);
/**@}*/
/** @name PVOC-EX system */
/**@{ */
int (*PVOC_CreateFile)(CSOUND *, const char *,
uint32, uint32, uint32,
uint32, int32, int, int,
float, float *, uint32);
int (*PVOC_OpenFile)(CSOUND *, const char *, void *, void *);
int (*PVOC_CloseFile)(CSOUND *, int);
int (*PVOC_PutFrames)(CSOUND *, int, const float *, int32);
int (*PVOC_GetFrames)(CSOUND *, int, float *, uint32);
int (*PVOC_FrameCount)(CSOUND *, int);
int (*PVOC_fseek)(CSOUND *, int, int);
const char *(*PVOC_ErrorString)(CSOUND *);
int (*PVOCEX_LoadFile)(CSOUND *, const char *, PVOCEX_MEMFILE *);
/**@}*/
/** @name Error messages */
/**@{ */
CS_NORETURN CS_PRINTF2 void (*Die)(CSOUND *, const char *msg, ...);
CS_PRINTF2 int (*InitError)(CSOUND *, const char *msg, ...);
CS_PRINTF3 int (*PerfError)(CSOUND *, OPDS *h, const char *msg, ...);
CS_PRINTF2 void (*Warning)(CSOUND *, const char *msg, ...);
CS_PRINTF2 void (*DebugMsg)(CSOUND *, const char *msg, ...);
CS_NORETURN void (*LongJmp)(CSOUND *, int);
CS_PRINTF2 void (*ErrorMsg)(CSOUND *, const char *fmt, ...);
void (*ErrMsgV)(CSOUND *, const char *hdr, const char *fmt, va_list);
/**@}*/
/** @name Random numbers */
/**@{ */
uint32_t (*GetRandomSeedFromTime)(void);
void (*SeedRandMT)(CsoundRandMTState *p,
const uint32_t *initKey, uint32_t keyLength);
uint32_t (*RandMT)(CsoundRandMTState *p);
int (*Rand31)(int *seedVal);
int (*GetRandSeed)(CSOUND *, int which);
/**@}*/
/** @name Threads and locks */
/**@{ */
void *(*CreateThread)(uintptr_t (*threadRoutine)(void *), void *userdata);
uintptr_t (*JoinThread)(void *thread);
void *(*CreateThreadLock)(void);
void (*DestroyThreadLock)(void *lock);
int (*WaitThreadLock)(void *lock, size_t milliseconds);
void (*NotifyThreadLock)(void *lock);
void (*WaitThreadLockNoTimeout)(void *lock);
void *(*Create_Mutex)(int isRecursive);
int (*LockMutexNoWait)(void *mutex_);
void (*LockMutex)(void *mutex_);
void (*UnlockMutex)(void *mutex_);
void (*DestroyMutex)(void *mutex_);
void *(*CreateBarrier)(unsigned int max);
int (*DestroyBarrier)(void *);
int (*WaitBarrier)(void *);
void *(*GetCurrentThreadID)(void);
void (*Sleep)(size_t milliseconds);
void (*InitTimerStruct)(RTCLOCK *);
double (*GetRealTime)(RTCLOCK *);
double (*GetCPUTime)(RTCLOCK *);
/**@}*/
/** @name Circular lock-free buffer */
/**@{ */
void *(*CreateCircularBuffer)(CSOUND *, int, int);
int (*ReadCircularBuffer)(CSOUND *, void *, void *, int);
int (*WriteCircularBuffer)(CSOUND *, void *, const void *, int);
void (*FlushCircularBuffer)(CSOUND *, void *);
void (*DestroyCircularBuffer)(CSOUND *, void *);
/**@}*/
/** @name File access */
/**@{ */
char *(*FindInputFile)(CSOUND *, const char *filename, const char *envList);
char *(*FindOutputFile)(CSOUND *,
const char *filename, const char *envList);
void *(*SAsndgetset)(CSOUND *,
char *, void *, MYFLT *, MYFLT *, MYFLT *, int);
void *(*sndgetset)(CSOUND *, void *);
int (*getsndin)(CSOUND *, void *, MYFLT *, int, void *);
void (*rewriteheader)(void *ofd);
SNDMEMFILE *(*LoadSoundFile)(CSOUND *, const char *, void *);
void (*FDRecord)(CSOUND *, FDCH *fdchp);
void (*FDClose)(CSOUND *, FDCH *fdchp);
void *(*CreateFileHandle)(CSOUND *, void *, int, const char *);
char *(*GetFileName)(void *);
int (*FileClose)(CSOUND *, void *);
void *(*FileOpen2)(CSOUND *, void *, int, const char *, void *,
const char *, int, int);
int (*type2csfiletype)(int type, int encoding);
void (*NotifyFileOpened)(CSOUND*, const char*, int, int, int);
int (*sftype2csfiletype)(int type);
MEMFIL *(*ldmemfile2withCB)(CSOUND *, const char *, int,
int (*callback)(CSOUND *, MEMFIL *));
void *(*FileOpenAsync)(CSOUND *, void *, int, const char *, void *,
const char *, int, int, int);
unsigned int (*ReadAsync)(CSOUND *, void *, MYFLT *, int);
unsigned int (*WriteAsync)(CSOUND *, void *, MYFLT *, int);
int (*FSeekAsync)(CSOUND *, void *, int, int);
char *(*getstrformat)(int format);
int (*sfsampsize)(int format);
/**@}*/
/** @name RT audio IO and callbacks */
/**@{ */
void (*SetPlayopenCallback)(CSOUND *,
int (*playopen__)(CSOUND *, const csRtAudioParams *parm));
void (*SetRtplayCallback)(CSOUND *,
void (*rtplay__)(CSOUND *, const MYFLT *outBuf, int nbytes));
void (*SetRecopenCallback)(CSOUND *,
int (*recopen__)(CSOUND *, const csRtAudioParams *parm));
void (*SetRtrecordCallback)(CSOUND *,
int (*rtrecord__)(CSOUND *, MYFLT *inBuf, int nbytes));
void (*SetRtcloseCallback)(CSOUND *, void (*rtclose__)(CSOUND *));
void (*SetAudioDeviceListCallback)(CSOUND *csound,
int (*audiodevlist__)(CSOUND *, CS_AUDIODEVICE *list, int isOutput));
void **(*GetRtRecordUserData)(CSOUND *);
void **(*GetRtPlayUserData)(CSOUND *);
int (*GetDitherMode)(CSOUND *);
/**@}*/
/** @name RT MIDI and callbacks */
/**@{ */
void (*SetExternalMidiInOpenCallback)(CSOUND *,
int (*func)(CSOUND *, void **, const char *));
void (*SetExternalMidiReadCallback)(CSOUND *,
int (*func)(CSOUND *, void *, unsigned char *, int));
void (*SetExternalMidiInCloseCallback)(CSOUND *,
int (*func)(CSOUND *, void *));
void (*SetExternalMidiOutOpenCallback)(CSOUND *,
int (*func)(CSOUND *, void **, const char *));
void (*SetExternalMidiWriteCallback)(CSOUND *,
int (*func)(CSOUND *, void *, const unsigned char *, int));
void (*SetExternalMidiOutCloseCallback)(CSOUND *,
int (*func)(CSOUND *, void *));
void (*SetExternalMidiErrorStringCallback)(CSOUND *,
const char *(*func)(int));
void (*SetMIDIDeviceListCallback)(CSOUND *csound,
int (*audiodevlist__)(CSOUND *, CS_MIDIDEVICE *list, int isOutput));
void (*module_list_add)(CSOUND *, char *, char *);
/**@}*/
/** @name Displays & graphs */
/**@{ */
void (*dispset)(CSOUND *, WINDAT *, MYFLT *, int32, char *, int, char *);
void (*display)(CSOUND *, WINDAT *);
int (*dispexit)(CSOUND *);
void (*dispinit)(CSOUND *);
int (*SetIsGraphable)(CSOUND *, int isGraphable);
void (*SetMakeGraphCallback)(CSOUND *,
void (*makeGraphCallback)(CSOUND *, WINDAT *p,
const char *name));
void (*SetDrawGraphCallback)(CSOUND *,
void (*drawGraphCallback)(CSOUND *, WINDAT *p));
void (*SetKillGraphCallback)(CSOUND *,
void (*killGraphCallback)(CSOUND *, WINDAT *p));
void (*SetExitGraphCallback)(CSOUND *, int (*exitGraphCallback)(CSOUND *));
/**@}*/
/** @name Generic callbacks */
/**@{ */
void (*SetYieldCallback)(CSOUND *, int (*yieldCallback)(CSOUND *));
int (*Set_KeyCallback)(CSOUND *, int (*func)(void *, void *, unsigned int),
void *userData, unsigned int typeMask);
void (*Remove_KeyCallback)(CSOUND *,
int (*func)(void *, void *, unsigned int));
int (*RegisterSenseEventCallback)(CSOUND *, void (*func)(CSOUND *, void *),
void *userData);
int (*RegisterDeinitCallback)(CSOUND *, void *p,
int (*func)(CSOUND *, void *));
int (*RegisterResetCallback)(CSOUND *, void *userData,
int (*func)(CSOUND *, void *));
void (*SetInternalYieldCallback)(CSOUND *,
int (*yieldCallback)(CSOUND *));
/**@}*/
/** @name Opcodes and instruments */
/**@{ */
int (*AppendOpcode)(CSOUND *, const char *opname, int dsblksiz, int flags,
int thread, const char *outypes, const char *intypes,
int (*iopadr)(CSOUND *, void *),
int (*kopadr)(CSOUND *, void *),
int (*aopadr)(CSOUND *, void *));
int (*AppendOpcodes)(CSOUND *, const OENTRY *opcodeList, int n);
char *(*GetOpcodeName)(void *p);
INSTRTXT **(*GetInstrumentList)(CSOUND *);
/**@}*/
/** @name Events and performance */
/**@{ */
int (*CheckEvents)(CSOUND *);
int (*insert_score_event)(CSOUND *, EVTBLK *, double);
int (*insert_score_event_at_sample)(CSOUND *, EVTBLK *, int64_t);
int (*PerformKsmps)(CSOUND *);
/**@}*/
/** @name Utilities */
/**@{ */
int (*AddUtility)(CSOUND *, const char *name,
int (*UtilFunc)(CSOUND *, int, char **));
int (*RunUtility)(CSOUND *, const char *name, int argc, char **argv);
char **(*ListUtilities)(CSOUND *);
int (*SetUtilityDescription)(CSOUND *, const char *utilName,
const char *utilDesc);
const char *(*GetUtilityDescription)(CSOUND *, const char *utilName);
void (*SetUtilSr)(CSOUND *, MYFLT);
void (*SetUtilNchnls)(CSOUND *, int);
/**@}*/
/** @name Miscellaneous */
/**@{ */
long (*RunCommand)(const char * const *argv, int noWait);
int (*OpenLibrary)(void **library, const char *libraryPath);
int (*CloseLibrary)(void *library);
void *(*GetLibrarySymbol)(void *library, const char *procedureName);
#if defined (__CUDACC__) || defined (__MACH__)
char *(*LocalizeString)(const char *);
#else
char *(*LocalizeString)(const char *) __attribute__ ((format_arg (1)));
#endif
char *(*strtok_r)(char*, char*, char**);
double (*strtod)(char*, char**);
int (*sprintf)(char *str, const char *format, ...);
int (*sscanf)(char *str, const char *format, ...);
MYFLT (*system_sr)(CSOUND *, MYFLT );
/**@}*/
/** @name Score Event s*/
/**@{ */
MYFLT (*GetScoreOffsetSeconds)(CSOUND *);
void (*SetScoreOffsetSeconds)(CSOUND *, MYFLT offset);
void (*RewindScore)(CSOUND *);
void (*InputMessage)(CSOUND *, const char *message__);
int (*ISSTRCOD)(MYFLT);
void *(*RealFFT2Setup)(CSOUND *csound,
int FFTsize,
int d);
void (*RealFFT2)(CSOUND *csound,
void *p, MYFLT *sig);
int (*ftError)(const FGDATA *, const char *, ...);
MYFLT (*GetA4)(CSOUND *csound);
int (*AuxAllocAsync)(CSOUND *, size_t, AUXCH *,
AUXASYNC *, aux_cb, void *);
void *(*GetHostData)(CSOUND *);
char *(*strNcpy)(char *dst, const char *src, size_t siz);
int (*GetZaBounds)(CSOUND *, MYFLT **);
OENTRY* (*find_opcode_new)(CSOUND*, char*,
char* , char*);
OENTRY* (*find_opcode_exact)(CSOUND*, char*,
char* , char*);
int (*GetChannelPtr)(CSOUND *,MYFLT **, const char *, int);
int (*ListChannels)(CSOUND *, controlChannelInfo_t **);
int (*GetErrorCnt)(CSOUND *);
FUNC* (*FTnp2Finde)(CSOUND*, MYFLT *);
INSTRTXT *(*GetInstrument)(CSOUND*, int, const char *);
MYFLT* (*AutoCorrelation)(CSOUND *, MYFLT*, MYFLT*, int, MYFLT*, int);
void * (*LPsetup)(CSOUND *csound, int N, int M);
void (*LPfree)(CSOUND *csound, void *);
MYFLT* (*LPred)(CSOUND *, void *, MYFLT *);
MYFLT* (*LPCeps)(CSOUND *, MYFLT *, MYFLT *, int, int);
MYFLT* (*CepsLP)(CSOUND *, MYFLT *, MYFLT *, int, int);
MYFLT (*LPrms)(CSOUND *, void *);
void *(*CreateThread2)(uintptr_t (*threadRoutine)(void *), unsigned int, void *userdata);
/**@}*/
/** @name Placeholders
To allow the API to grow while maintining backward binary compatibility. */
/**@{ */
SUBR dummyfn_2[22];
/**@}*/
#ifdef __BUILDING_LIBCSOUND
/* ------- private data (not to be used by hosts or externals) ------- */
/** @name Private Data
Private Data in the CSOUND struct to be used internally by the Csound
library and should be hidden from plugins.
If a new variable member is needed by the library, add it below, as a
private data member. If access is required solely by plugins (and not
internally by the library), use the CreateGlobalVariable() etc. interface,
instead of adding to CSOUND.
If you find that a plugin needs to access existing private data,
first check above for an existing interface; if none is available,
add one. Please avoid giving full access, or allowing plugins to
change the values of private members, by using one of the two methods
below:
1) To get the data member value:
\code
returnType (*GetVar)(CSOUND *)
\endcode
2) in case of pointers, data should be copied out to a supplied memory
slot, rather than the pointer being obtained:
\code
void (*GetData)(CSOUND *, dataType *)
dataType var;
csound->GetData(csound, &var);
\endcode
*/
/**@{ */
SUBR first_callback_;
channelCallback_t InputChannelCallback_;
channelCallback_t OutputChannelCallback_;
void (*csoundMessageCallback_)(CSOUND *, int attr,
const char *format, va_list args);
int (*csoundConfigureCallback_)(CSOUND *);
void (*csoundMakeGraphCallback_)(CSOUND *, WINDAT *windat,
const char *name);
void (*csoundDrawGraphCallback_)(CSOUND *, WINDAT *windat);
void (*csoundKillGraphCallback_)(CSOUND *, WINDAT *windat);
int (*csoundExitGraphCallback_)(CSOUND *);
int (*csoundYieldCallback_)(CSOUND *);
void (*cscoreCallback_)(CSOUND *);
void (*FileOpenCallback_)(CSOUND*, const char*, int, int, int);
SUBR last_callback_;
/* these are not saved on RESET */
int (*playopen_callback)(CSOUND *, const csRtAudioParams *parm);
void (*rtplay_callback)(CSOUND *, const MYFLT *outBuf, int nbytes);
int (*recopen_callback)(CSOUND *, const csRtAudioParams *parm);
int (*rtrecord_callback)(CSOUND *, MYFLT *inBuf, int nbytes);
void (*rtclose_callback)(CSOUND *);
int (*audio_dev_list_callback)(CSOUND *, CS_AUDIODEVICE *, int);
int (*midi_dev_list_callback)(CSOUND *, CS_MIDIDEVICE *, int);
int (*doCsoundCallback)(CSOUND *, void *, unsigned int);
int (*csoundInternalYieldCallback_)(CSOUND *);
/* end of callbacks */
void (*spinrecv)(CSOUND *);
void (*spoutran)(CSOUND *);
int (*audrecv)(CSOUND *, MYFLT *, int);
void (*audtran)(CSOUND *, const MYFLT *, int);
void *hostdata;
char *orchname, *scorename;
CORFIL *orchstr, *scorestr;
OPDS *ids; /* used by init loops */
ENGINE_STATE engineState; /* current Engine State merged after
compilation */
INSTRTXT *instr0; /* instr0 */
INSTRTXT **dead_instr_pool;
int dead_instr_no;
TYPE_POOL* typePool;
unsigned int ksmps;
uint32_t nchnls;
int inchnls;
int spoutactive;
uint64_t kcounter, global_kcounter;
MYFLT esr;
MYFLT ekr;
/** current time in seconds, inc. per kprd */
int64_t icurTime; /* Current time in samples */
double curTime_inc;
/** start time of current section */
double timeOffs, beatOffs;
/** current time in beats, inc per kprd */
double curBeat, curBeat_inc;
/** beat time = 60 / tempo */
int64_t ibeatTime; /* Beat time in samples */
EVTBLK *currevent;
INSDS *curip;
MYFLT cpu_power_busy;
char *xfilename;
int peakchunks;
int keep_tmp;
CS_HASH_TABLE *opcodes;
int32 nrecs;
FILE* Linepipe;
int Linefd;
void *csoundCallbacks_;
FILE* scfp;
CORFIL *scstr;
FILE* oscfp;
MYFLT maxamp[MAXCHNLS];
MYFLT smaxamp[MAXCHNLS];
MYFLT omaxamp[MAXCHNLS];
uint32 maxpos[MAXCHNLS], smaxpos[MAXCHNLS], omaxpos[MAXCHNLS];
FILE* scorein;
FILE* scoreout;
int *argoffspace;
INSDS *frstoff;
/** reserved for std opcode library */
void *stdOp_Env;
int holdrand;
int randSeed1;
int randSeed2;
CsoundRandMTState *csRandState;
RTCLOCK *csRtClock;
int strsmax;
char **strsets;
MYFLT *spin;
MYFLT *spout;
MYFLT *spraw;
int nspin;
int nspout;
MYFLT *auxspin;
OPARMS *oparms;
/** reserve space for up to MIDIMAXPORTS MIDI devices */
MCHNBLK *m_chnbp[MIDIMAXPORTS*16];
int dither_output;
MYFLT onedsr, sicvt;
MYFLT tpidsr, pidsr, mpidsr, mtpdsr;
MYFLT onedksmps;
MYFLT onedkr;
MYFLT kicvt;
int reinitflag;
int tieflag;
MYFLT e0dbfs, dbfs_to_float;
double A4;
void *rtRecord_userdata;
void *rtPlay_userdata;
jmp_buf exitjmp;
SRTBLK *frstbp;
int sectcnt;
int inerrcnt, synterrcnt, perferrcnt;
INSDS actanchor;
int32 rngcnt[MAXCHNLS];
int16 rngflg, multichan;
void *evtFuncChain;
EVTNODE *OrcTrigEvts; /* List of events to be started */
EVTNODE *freeEvtNodes;
int csoundIsScorePending_;
int64_t advanceCnt;
int initonly;
int evt_poll_cnt;
int evt_poll_maxcnt;
int Mforcdecs, Mxtroffs, MTrkend;
OPCODINFO *opcodeInfo;
FUNC** flist;
int maxfnum;
GEN *gensub;
int genmax;
CS_HASH_TABLE *namedGlobals;
CS_HASH_TABLE *cfgVariableDB;
double prvbt, curbt, nxtbt;
double curp2, nxtim;
int64_t cyclesRemaining;
EVTBLK evt;
void *memalloc_db;
MGLOBAL *midiGlobals;
CS_HASH_TABLE *envVarDB;
MEMFIL *memfiles;
PVOCEX_MEMFILE *pvx_memfiles;
int FFT_max_size;
void *FFT_table_1;
void *FFT_table_2;
/* statics from twarp.c should be TSEG* */
void *tseg, *tpsave;
/* persistent macros */
MACRO *orc_macros;
/* Statics from express.c */
MYFLT *gbloffbas; /* was static in oload.c */
void *file_io_thread;
int file_io_start;
void *file_io_threadlock;
int realtime_audio_flag;
void *event_insert_thread;
int event_insert_loop;
void *init_pass_threadlock;
void *API_lock;
spin_lock_t spoutlock, spinlock;
spin_lock_t memlock, spinlock1;
char *delayederrormessages;
void *printerrormessagesflag;
struct sread__ {
SRTBLK *bp, *prvibp; /* current srtblk, prev w/same int(p1) */
char *sp, *nxp; /* string pntrs into srtblk text */
int op; /* opcode of current event */
int warpin; /* input format sensor */
int linpos; /* line position sensor */
int lincnt; /* count of lines/section in scorefile */
MYFLT prvp2 /* = -FL(1.0) */; /* Last event time */
MYFLT clock_base /* = FL(0.0) */;
MYFLT warp_factor /* = FL(1.0) */;
char *curmem;
char *memend; /* end of cur memblk */
MACRO *unused_ptr2;
int last_name /* = -1 */;
IN_STACK *inputs, *str;
int input_size, input_cnt;
int unused_int3;
int unused_int2;
int linepos /* = -1 */;
MARKED_SECTIONS names[30];
#define NAMELEN 40 /* array size of repeat macro names */
#define RPTDEPTH 40 /* size of repeat_n arrays (39 loop levels) */
char unused_char0[RPTDEPTH][NAMELEN];
int unused_int4[RPTDEPTH];
int32 unused_int7[RPTDEPTH];
int unused_int5;
MACRO *unused_ptr0[RPTDEPTH];
int unused_int6;
/* Variable for repeat sections */
char unused_char1[NAMELEN];
int unused_int8;
int32 unused_int9;
int unused_intA;
MACRO *unused_ptr1;
int nocarry;
} sread;
struct onefileStatics__ {
NAMELST *toremove;
char *orcname;
char *sconame;
char *midname;
int midiSet;
int csdlinecount;
} onefileStatics;
#define LBUFSIZ 32768
struct lineventStatics__ {
char *Linep, *Linebufend;
int stdmode;
EVTBLK prve;
char *Linebuf;
int linebufsiz;
char *orchestra, *orchestrab;
int oflag;
} lineventStatics;
struct musmonStatics__ {
int32 srngcnt[MAXCHNLS], orngcnt[MAXCHNLS];
int16 srngflg;
int16 sectno;
int lplayed;
int segamps, sormsg;
EVENT **ep, **epend; /* pointers for stepping through lplay list */
EVENT *lsect;
} musmonStatics;
struct libsndStatics__ {
SNDFILE *outfile;
SNDFILE *infile;
char *sfoutname; /* soundout filename */
MYFLT *inbuf;
MYFLT *outbuf; /* contin sndio buffers */
MYFLT *outbufp; /* MYFLT pntr */
uint32 inbufrem;
uint32 outbufrem; /* in monosamps */
/* (see openin, iotranset) */
unsigned int inbufsiz, outbufsiz; /* alloc in sfopenin/out */
int isfopen; /* (real set in sfopenin) */
int osfopen; /* (real set in sfopenout) */
int pipdevin, pipdevout; /* 0: file, 1: pipe, 2: rtaudio */
uint32 nframes /* = 1UL */;
FILE *pin, *pout;
int dither;
} libsndStatics;
int warped; /* rdscor.c */
int sstrlen;
char *sstrbuf;
int enableMsgAttr; /* csound.c */
int sampsNeeded;
MYFLT csoundScoreOffsetSeconds_;
int inChar_;
int isGraphable_;
int delayr_stack_depth; /* ugens6.c */
void *first_delayr;
void *last_delayr;
int32 revlpsiz[6];
int32 revlpsum;
double rndfrac; /* aops.c */
MYFLT *logbase2;
NAMES *omacros, *smacros;
void *namedgen; /* fgens.c */
void *open_files; /* fileopen.c */
void *searchPathCache;
CS_HASH_TABLE *sndmemfiles;
void *reset_list;
void *pvFileTable; /* pvfileio.c */
int pvNumFiles;
int pvErrorCode;
/* database for deferred loading of opcode plugin libraries */
// void *pluginOpcodeFiles;
int enableHostImplementedAudioIO;
int enableHostImplementedMIDIIO;
int hostRequestedBufferSize;
/* engineStatus is sum of:
* 1 (CS_STATE_PRE): csoundPreCompile was called
* 2 (CS_STATE_COMP): csoundCompile was called
* 4 (CS_STATE_UTIL): csoundRunUtility was called
* 8 (CS_STATE_CLN): csoundCleanup needs to be called
* 16 (CS_STATE_JMP): csoundLongJmp was called
*/
char engineStatus;
/* stdXX_assign_flags can be {1,2,4,8} */
char stdin_assign_flg;
char stdout_assign_flg;
char orcname_mode; /* 0: normal, 1: ignore, 2: fail */
int use_only_orchfile;
void *csmodule_db;
char *dl_opcodes_oplibs;
char *SF_csd_licence;
char *SF_id_title;
char *SF_id_copyright;
int SF_id_scopyright;
char *SF_id_software;
char *SF_id_artist;
char *SF_id_comment;
char *SF_id_date;
void *utility_db;
int16 *isintab; /* ugens3.c */
void *lprdaddr; /* ugens5.c */
int currentLPCSlot;
int max_lpc_slot;
CS_HASH_TABLE *chn_db;
int opcodedirWasOK;
int disable_csd_options;
CsoundRandMTState randState_;
int performState;
int ugens4_rand_16;
int ugens4_rand_15;
void *schedule_kicked;
MYFLT *disprep_fftcoefs;
void *winEPS_globals;
OPARMS oparms_;
REMOT_BUF SVrecvbuf; /* RM: rt_evt input Communications buffer */
void *remoteGlobals;
/* VL: pvs bus */
int nchanif, nchanof;
char *chanif, *chanof;
/* VL: internal yield callback */
int multiThreadedComplete;
THREADINFO *multiThreadedThreadInfo;
struct dag_t *multiThreadedDag;
void *barrier1;
void *barrier2;
/* Statics from cs_par_dispatch; */
/* ********These are no longer used******** */
void *pointer1; //struct global_var_lock_t *global_var_lock_root;
void *pointer2; //struct global_var_lock_t **global_var_lock_cache;
int int1; //global_var_lock_count;
/* statics from cs_par_orc_semantic_analysis */
struct instr_semantics_t *instCurr;
struct instr_semantics_t *instRoot;
int inInstr;
int dag_changed;
int dag_num_active;
INSDS **dag_task_map;
volatile stateWithPadding *dag_task_status;
watchList * volatile *dag_task_watch;
watchList *dag_wlmm;
char **dag_task_dep;
int dag_task_max_size;
uint32_t tempStatus; /* keeps track of which files are temps */
int orcLineOffset; /* 1 less than 1st orch line in the CSD */
int scoLineOffset; /* 1 less than 1st score line in the CSD */
char* csdname;
/* original CSD name; do not free() */
int parserUdoflag;
int parserNamedInstrFlag;
int tran_nchnlsi;
int scnt; /* Count of strings */
int strsiz; /* length of current strings space */
FUNC *sinetable; /* A useful table */
int sinelength; /* Size of table */
MYFLT *UNUSEDP; /* pow2 table */
MYFLT *cpsocfrc; /* cps conv table */
CORFIL* expanded_orc; /* output of preprocessor */
CORFIL* expanded_sco; /* output of preprocessor */
char *filedir[256];/* for location directory */
void *message_buffer;
int jumpset;
int info_message_request;
int modules_loaded;
MYFLT _system_sr;
void* csdebug_data; /* debugger data */
int (*kperf)(CSOUND *); /* kperf function pointer, to switch between debug
and nodebug function */
int score_parser;
CS_HASH_TABLE* symbtab;
int print_version;
int inZero; /* flag compilation of instr0 */
struct _message_queue **msg_queue;
volatile long msg_queue_wget; /* Writer - Get index */
volatile long msg_queue_wput; /* Writer - Put Index */
volatile long msg_queue_rstart; /* Reader - start index */
volatile long msg_queue_items;
int aftouch;
void *directory;
ALLOC_DATA *alloc_queue;
volatile unsigned long alloc_queue_items;
unsigned long alloc_queue_wp;
spin_lock_t alloc_spinlock;
EVTBLK *init_event;
void (*csoundMessageStringCallback)(CSOUND *csound,
int attr,
const char *str);
char* message_string;
volatile unsigned long message_string_queue_items;
unsigned long message_string_queue_wp;
message_string_queue_t *message_string_queue;
int io_initialised;
char *op;
int mode;
char *opcodedir;
char *score_srt;
int mp3_mode;
/*struct CSOUND_ **self;*/
/**@}*/
#endif /* __BUILDING_LIBCSOUND */
};
/*
* Move the C++ guards to enclose the entire file,
* in order to enable C++ to #include this file.
*/
#define LINKAGE_BUILTIN(name) \
long name##_init(CSOUND *csound, OENTRY **ep) \
{ (void) csound; *ep = name; return (long) (sizeof(name)); }
#define FLINKAGE_BUILTIN(name) \
NGFENS* name##_init(CSOUND *csound) \
{ (void) csound; return name; }
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* CSOUNDCORE_H */
|