annotate projects/heavy/envelopeTrigger/ControlSlice.c @ 162:c3e8226a5651 heavy-updated

- added additional flags to C rules (-DNDEBUG, -mfpu=neon) - sample-accurate envelope triggering pd/heavy example
author chnrx <chris.heinrichs@gmail.com>
date Thu, 12 Nov 2015 14:59:46 +0000
parents
children
rev   line source
chris@162 1 /**
chris@162 2 * Copyright (c) 2014, 2015, Enzien Audio Ltd.
chris@162 3 *
chris@162 4 * Permission to use, copy, modify, and/or distribute this software for any
chris@162 5 * purpose with or without fee is hereby granted, provided that the above
chris@162 6 * copyright notice and this permission notice appear in all copies.
chris@162 7 *
chris@162 8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
chris@162 9 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
chris@162 10 * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
chris@162 11 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
chris@162 12 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
chris@162 13 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
chris@162 14 * PERFORMANCE OF THIS SOFTWARE.
chris@162 15 */
chris@162 16
chris@162 17 #include "ControlSlice.h"
chris@162 18
chris@162 19 hv_size_t cSlice_init(ControlSlice *o, int i, int n) {
chris@162 20 o->i = i;
chris@162 21 o->n = n;
chris@162 22 return 0;
chris@162 23 }
chris@162 24
chris@162 25 void cSlice_onMessage(HvBase *_c, ControlSlice *o, int letIn, const HvMessage *const m,
chris@162 26 void (*sendMessage)(HvBase *, int, const HvMessage *const)) {
chris@162 27 switch (letIn) {
chris@162 28 case 0: {
chris@162 29 // if the start point is greater than the number of elements in the source message, do nothing
chris@162 30 if (o->i < msg_getNumElements(m)) {
chris@162 31 int x = msg_getNumElements(m) - o->i; // number of elements in the new message
chris@162 32 if (o->n > 0) x = hv_min_i(x, o->n);
chris@162 33 HvMessage *n = HV_MESSAGE_ON_STACK(x);
chris@162 34 msg_init(n, x, msg_getTimestamp(m));
chris@162 35 hv_memcpy(&n->elem, &m->elem+o->i, x*sizeof(Element));
chris@162 36 sendMessage(_c, 0, n);
chris@162 37 } else {
chris@162 38 // if nothing can be sliced, send a bang out of the right outlet
chris@162 39 HvMessage *n = HV_MESSAGE_ON_STACK(1);
chris@162 40 msg_initWithBang(n, msg_getTimestamp(m));
chris@162 41 sendMessage(_c, 1, n);
chris@162 42 }
chris@162 43 break;
chris@162 44 }
chris@162 45 case 1: {
chris@162 46 if (msg_isFloat(m,0)) {
chris@162 47 o->i = (int) msg_getFloat(m,0);
chris@162 48 if (msg_isFloat(m,1)) {
chris@162 49 o->n = (int) msg_getFloat(m,1);
chris@162 50 }
chris@162 51 }
chris@162 52 break;
chris@162 53 }
chris@162 54 case 2: {
chris@162 55 if (msg_isFloat(m,0)) {
chris@162 56 o->n = (int) msg_getFloat(m,0);
chris@162 57 }
chris@162 58 break;
chris@162 59 }
chris@162 60 default: break;
chris@162 61 }
chris@162 62 }