summaryrefslogtreecommitdiff
path: root/Libraries/OSC/OSCMessage.h
blob: 2660b91219957a359f9e864fa620a7c58ec99054 (plain)
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
/*
 
 ArdOSC - OSC Library for Arduino.
 
 -------- Lisence -----------------------------------------------------------
 
 ArdOSC
 
 The MIT License
 
 Copyright (c) 2009 - 2010 recotana( http://recotana.com ) All right reserved
 
 */	




#ifndef OSCMessage_h
#define OSCMessage_h


#include "OSCcommon.h"


class OSCMessage{
	
private:
	
	uint16_t	allPackSize;	//
	char	   *oscAddress;		// "/ard"
	uint16_t	oscAdrSize;		// "/ard" ->4
	uint16_t	oscAdrPacSize;	// "/ard\0\0\0\0" ->8
	
	char	   *typeTag;		// "iif"
	uint16_t	typeTagSize;	// ",iif" -> 4
	uint16_t	typeTagPacSize;	// ",iif\0\0\0\0" -> 8
	
	
	void	  **arguments;
	uint16_t	argsNum;		// "iif" -> 3
	uint16_t	argsPacSize;	// "iif" -> 4 + 4 + 4 = 12
	
	uint8_t		ipAddress[4];	//{192,168,0,10}	
	uint16_t	portNumber;		//10000
		
public:
	
	

	OSCMessage();
	OSCMessage(const char *_oscAddress);
	~OSCMessage();

	void flush();
	
	
	uint16_t getAllPackSize();
	uint16_t getStrPackSize(const char* data);
	uint16_t getPackSize(uint16_t size);
	
	
	
	void setAddress(uint8_t *_ip , uint16_t _port);
	
	void setIpAddress( uint8_t *_ip );		
	void setIpAddress( uint8_t _ip1, uint8_t _ip2,	uint8_t _ip3, uint8_t _ip4);
	
	uint8_t *getIpAddress();
	void setPortNumber(uint16_t _port);
	uint16_t getPortNumber();
	
	int16_t setOSCMessage( const char *_address ,char *types , ... );
	int16_t getArgsNum();
	
	int16_t setOSCAddress(const char *_address);
	char   *getOSCAddress();
	
	int16_t setTypeTags(const char *_tags);
	char   *getTypeTags();
	char	getTypeTag(uint16_t _index);	
	
			
	
	int32_t	getInteger32(uint16_t _index);
	
#ifdef _USE_FLOAT_
	float	getFloat(uint16_t _index);
#endif

#ifdef _USE_STRING_
	char   *getString(uint16_t _index);
#endif
	
	
	
	friend class OSCServer;
	friend class OSCClient;
	friend class OSCDecoder;
	friend class OSCEncoder;
	
};


#endif