Mercurial > hg > beaglert
comparison projects/heavy/circularBuffer/ControlCast.c @ 163:20b52283c7b4 heavy-updated
- added circular buffer pd/heavy example (works but process needs to be killed manually if launched via ssh?)
author | chnrx <chris.heinrichs@gmail.com> |
---|---|
date | Thu, 12 Nov 2015 15:55:30 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
162:c3e8226a5651 | 163:20b52283c7b4 |
---|---|
1 /** | |
2 * Copyright (c) 2014, 2015, Enzien Audio Ltd. | |
3 * | |
4 * Permission to use, copy, modify, and/or distribute this software for any | |
5 * purpose with or without fee is hereby granted, provided that the above | |
6 * copyright notice and this permission notice appear in all copies. | |
7 * | |
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | |
9 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | |
10 * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | |
11 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | |
12 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR | |
13 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | |
14 * PERFORMANCE OF THIS SOFTWARE. | |
15 */ | |
16 | |
17 #include "ControlCast.h" | |
18 | |
19 void cCast_onMessage(HvBase *_c, CastType castType, int letIn, const HvMessage *const m, | |
20 void (*sendMessage)(HvBase *, int, const HvMessage *const)) { | |
21 switch (castType) { | |
22 case HV_CAST_BANG: { | |
23 HvMessage *n = HV_MESSAGE_ON_STACK(1); | |
24 msg_initWithBang(n, msg_getTimestamp(m)); | |
25 sendMessage(_c, 0, n); | |
26 break; | |
27 } | |
28 case HV_CAST_FLOAT: { | |
29 if (msg_isFloat(m, 0)) { | |
30 HvMessage *n = HV_MESSAGE_ON_STACK(1); | |
31 msg_initWithFloat(n, msg_getTimestamp(m), msg_getFloat(m, 0)); | |
32 sendMessage(_c, 0, n); | |
33 } | |
34 break; | |
35 } | |
36 case HV_CAST_SYMBOL: { | |
37 switch (msg_getType(m, 0)) { | |
38 case BANG: { | |
39 HvMessage *n = HV_MESSAGE_ON_STACK(1); | |
40 msg_initWithSymbol(n, msg_getTimestamp(m), "bang"); | |
41 sendMessage(_c, 0, n); | |
42 break; | |
43 } | |
44 case FLOAT: { | |
45 HvMessage *n = HV_MESSAGE_ON_STACK(1); | |
46 msg_initWithSymbol(n, msg_getTimestamp(m), "float"); | |
47 sendMessage(_c, 0, n); | |
48 break; | |
49 } | |
50 case SYMBOL: { | |
51 sendMessage(_c, 0, m); | |
52 break; | |
53 } | |
54 default: return; | |
55 } | |
56 break; | |
57 } | |
58 default: return; | |
59 } | |
60 } |