![]() |
cueOS
2.4
cueOS - Universal Show Control OS for ARM
|
Data Structures | |
struct | OSC_packet_s |
DEfines en OSC packet instance. TODO: this is not a RAM-efficient implementation... EIther leave packet data as raw or slice it in URI/Payload but not both. More... | |
struct | OSC_server_s |
Defines an OSC server instance. Open Sound Control (OSC) is a protocol for networking sound synthesizers, computers, and other multimedia devices for purposes such as musical performance or show control. More... | |
Macros | |
#define | OSC_PACKET_URI_PATH_DELIMITOR '/' |
#define | OSC_PACKET_MESSAGE_DELIMITOR ',' |
#define | OSC_PACKET_DATA_TYPE_INTEGER 'i' |
#define | OSC_PACKET_DATA_TYPE_FLOAT 'f' |
#define | OSC_PACKET_DATA_TYPE_STTRING 's' |
#define | OSC_PACKET_NULL_CHAR '\0' |
#define | OSC_PACKET_URI_FORMAT "/%d/%d/%d" |
#define | OSC_PACKET_PAYLOAD_LEN 8 |
#define | OSC_PACKET_URI_BASEPATH_LEN 4 |
Enumerations | |
enum | osc_media_type_e { OSC_MEDIATYPE_LIGHTING , OSC_MEDIATYPE_PYROTECHNICS , OSC_MEDIATYPE_MEDIASERVER } |
List of OSC-controllable media types (As implemented by ASLS) More... | |
enum | osc_control_type_e { OSC_CTRLTYPE_CUE , OSC_CTRLTYPE_VAL } |
List of OSC control types (As implemented by ASLS) More... | |
Functions | |
void | osc_server_init (void) |
Initialises the OSC server instance. More... | |
void | osc_packet_send (osc_media_type_e media_type, osc_control_type_e ctrl_type, uint16_t ctrl_id, uint32_t ctrl_val) |
Prepares and send an OSC packet over UDP. More... | |
Handles inter-system communication through Open SOund Control protocol.
#define OSC_PACKET_DATA_TYPE_FLOAT 'f' |
Definition at line 18 of file osc_server.h.
#define OSC_PACKET_DATA_TYPE_INTEGER 'i' |
Definition at line 17 of file osc_server.h.
#define OSC_PACKET_DATA_TYPE_STTRING 's' |
Definition at line 19 of file osc_server.h.
#define OSC_PACKET_MESSAGE_DELIMITOR ',' |
Definition at line 16 of file osc_server.h.
#define OSC_PACKET_NULL_CHAR '\0' |
Definition at line 20 of file osc_server.h.
#define OSC_PACKET_PAYLOAD_LEN 8 |
Definition at line 23 of file osc_server.h.
#define OSC_PACKET_URI_BASEPATH_LEN 4 |
Definition at line 24 of file osc_server.h.
#define OSC_PACKET_URI_FORMAT "/%d/%d/%d" |
Definition at line 21 of file osc_server.h.
#define OSC_PACKET_URI_PATH_DELIMITOR '/' |
Definition at line 15 of file osc_server.h.
enum osc_control_type_e |
List of OSC control types (As implemented by ASLS)
Enumerator | |
---|---|
OSC_CTRLTYPE_CUE | The parameter to be controlled is a cue (value may either be 0 or 255) |
OSC_CTRLTYPE_VAL | The parameter to be controlled is a value (value may be defined between 0-255 range) |
Definition at line 42 of file osc_server.h.
enum osc_media_type_e |
List of OSC-controllable media types (As implemented by ASLS)
Definition at line 31 of file osc_server.h.
void osc_packet_send | ( | osc_media_type_e | media_type, |
osc_control_type_e | ctrl_type, | ||
uint16_t | ctrl_id, | ||
uint32_t | ctrl_val | ||
) |
Prepares and send an OSC packet over UDP.
media_type | Type of media to be controlled over OSC |
ctrl_type | Type of control to be modified over OSC |
ctrl_id | Identifier of the control to be modified OSC |
ctrl_val | Value of the control to be modified. |
WARNING: the use of sprintf tends to cause memory leaks... FIXED by implementing thread-safe printf-stdarg library.
Definition at line 115 of file osc_server.c.
void osc_server_init | ( | void | ) |
Initialises the OSC server instance.
input_port | Input port of the OSC Server |
output_port | Output port of the OSC Server |
Definition at line 101 of file osc_server.c.