-
Notifications
You must be signed in to change notification settings - Fork 138
/
OSCData.h
191 lines (156 loc) · 4.62 KB
/
OSCData.h
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
/*
Written by Yotam Mann, The Center for New Music and Audio Technologies,
University of California, Berkeley. Copyright (c) 2013, The Regents of
the University of California (Regents).
Permission to use, copy, modify, distribute, and distribute modified versions
of this software and its documentation without fee and without a signed
licensing agreement, is hereby granted, provided that the above copyright
notice, this paragraph and the following two paragraphs appear in all copies,
modifications, and distributions.
IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING
OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
For bug reports and feature requests please email me at [email protected]
*/
#ifndef OSCDATA_h
#define OSCDATA_h
#include "Arduino.h"
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#include <string.h>
#include "OSCTiming.h"
#if (defined(TEENSYDUINO) && defined(USB_SERIAL)) || (!defined(TEENSYDUINO) && defined(__AVR_ATmega32U4__)) || defined(__SAM3X8E__) || (defined(_USB) && defined(_USE_USB_FOR_SERIAL_)) || defined(BOARD_maple_mini)
#define BOARD_HAS_USB_SERIAL
#if defined(__SAM3X8E__)
#define thisBoardsSerialUSB SerialUSB
#else
#define thisBoardsSerialUSB Serial
#endif
#endif
#if defined(ESP8266) || defined(ESP32)
#define ESPxx
#endif
#if INT_MAX!=2147483647
typedef int32_t intOSC_t;
#else
typedef int intOSC_t;
#endif
//ERRORS/////////////////////////////////////////////////
typedef enum { OSC_OK = 0,
BUFFER_FULL, INVALID_OSC, ALLOCFAILED, INDEX_OUT_OF_BOUNDS
} OSCErrorCode;
typedef struct {
uint8_t r,g,b,a;
} oscrgba_t;
typedef struct {
uint8_t port, status, channel, data1, data2;
} oscmidi_t;
extern osctime_t zerotime;
extern oscrgba_t zeroRgba;
extern oscmidi_t zeroMidi;
typedef enum {
OSC_NULL, OSC_IMPULSE
} oscevent_t;
class OSCData
{
private:
//friends
friend class OSCMessage;
//should only be used while decoding
//leaves an invalid OSCMessage with a type, but no data
OSCData(char t);
public:
//an error flag
OSCErrorCode error;
//the size (in bytes) of the data
int bytes;
//the type of the data
int type;
//the data
union {
char * s; //string
int32_t i; //int
float f; //float
double d; //double
int64_t l; //long
uint8_t * b; //blob
oscrgba_t rgba;
oscmidi_t midi;
osctime_t time;
oscevent_t event;
} data;
//overload the constructor to account for all the types and sizes
OSCData(const char * s);
#if defined(__SAM3X8E__)
OSCData (int16_t);
OSCData (uint16_t);
#endif
OSCData (intOSC_t);
OSCData (int64_t);
#if INT_MAX!=2147483647
OSCData (int);
#endif
OSCData (unsigned int);
OSCData (float);
OSCData (double);
OSCData (uint8_t *, int);
//accepts another OSCData objects and clones it
OSCData (OSCData *);
OSCData (boolean);
OSCData (oscrgba_t);
OSCData (oscmidi_t);
OSCData (oscevent_t);
OSCData (osctime_t);
//destructor
~OSCData();
//GETTERS
int32_t getInt();
int64_t getInt64();
float getFloat();
double getDouble();
int getString(char *);
int getString(char *, int);
int getString(char *, int, int, int);
int getBlob(uint8_t *);
int getBlob(uint8_t *, int);
int getBlob(uint8_t *, int, int, int);
const uint8_t* getBlob();
int getBlobLength();
bool getBoolean();
oscrgba_t getRgba();
oscmidi_t getMidi();
oscevent_t getEvent();
osctime_t getTime();
//constructor from byte array with type and length
OSCData(char, uint8_t *, int);
//fill the passed in buffer with the data
//uint8_t * asByteArray();
};
/*
based on http://stackoverflow.com/questions/809902/64-bit-ntohl-in-c
if the system is little endian, it will flip the bits
if the system is big endian, it'll do nothing
*/
template<typename T>
static inline T BigEndian(const T& x)
{
const int one = 1;
const char sig = *(char*)&one;
if (sig == 0) return x; // for big endian machine just return the input
T ret;
int size = sizeof(T);
char* src = (char*)&x + sizeof(T) - 1;
char* dst = (char*)&ret;
while (size-- > 0){
*dst++ = *src--;
}
return ret;
}
#endif