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 "SignalTabread.h"
|
chris@162
|
18
|
chris@162
|
19 hv_size_t sTabread_init(SignalTabread *o, HvTable *table, bool forceAlignedLoads) {
|
chris@162
|
20 o->table = table;
|
chris@162
|
21 o->head = 0;
|
chris@162
|
22 o->forceAlignedLoads = forceAlignedLoads;
|
chris@162
|
23 return 0;
|
chris@162
|
24 }
|
chris@162
|
25
|
chris@162
|
26 void sTabread_onMessage(HvBase *_c, SignalTabread *o, int letIn, const HvMessage *const m) {
|
chris@162
|
27 switch (letIn) {
|
chris@162
|
28 case 0: {
|
chris@162
|
29 if (o->table != NULL) {
|
chris@162
|
30 switch (msg_getType(m,0)) {
|
chris@162
|
31 case BANG: o->head = 0; break;
|
chris@162
|
32 case FLOAT: {
|
chris@162
|
33 hv_uint32_t h = (hv_uint32_t) hv_abs_f(msg_getFloat(m,0));
|
chris@162
|
34 if (msg_getFloat(m,0) < 0.0f) {
|
chris@162
|
35 // if input is negative, wrap around the end of the table
|
chris@162
|
36 h = (hv_uint32_t) hTable_getSize(o->table) - h;
|
chris@162
|
37 }
|
chris@162
|
38 o->head = o->forceAlignedLoads ? h & ~HV_N_SIMD_MASK : h;
|
chris@162
|
39 break;
|
chris@162
|
40 }
|
chris@162
|
41 default: break;
|
chris@162
|
42 }
|
chris@162
|
43 }
|
chris@162
|
44 break;
|
chris@162
|
45 }
|
chris@162
|
46 case 1: {
|
chris@162
|
47 if (msg_isHashLike(m,0)) {
|
chris@162
|
48 o->table = ctx_getTableForHash(_c, msg_getHash(m,0));
|
chris@162
|
49 }
|
chris@162
|
50 break;
|
chris@162
|
51 }
|
chris@162
|
52 default: break;
|
chris@162
|
53 }
|
chris@162
|
54 }
|
chris@162
|
55
|
chris@162
|
56
|
chris@162
|
57
|
chris@162
|
58 #if HV_APPLE
|
chris@162
|
59 #pragma mark - Tabhead
|
chris@162
|
60 #endif
|
chris@162
|
61
|
chris@162
|
62 void sTabhead_onMessage(HvBase *_c, SignalTabhead *o, const HvMessage *const m) {
|
chris@162
|
63 if (msg_isHashLike(m,0)) {
|
chris@162
|
64 o->table = ctx_getTableForHash(_c, msg_getHash(m,0));
|
chris@162
|
65 }
|
chris@162
|
66 }
|
chris@162
|
67
|
chris@162
|
68 hv_size_t sTabhead_init(SignalTabhead *o, HvTable *table) {
|
chris@162
|
69 o->table = table;
|
chris@162
|
70 return 0;
|
chris@162
|
71 }
|