UDPWii: Broadcasting it's presence on IPv4 to 255.255.255.255 once every 1.5 seconds. 3-arg Set()-s only worked on strings and doubles :P . Added int and bool variants.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5916 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
dapetcu21
2010-07-19 10:36:30 +00:00
parent a2b1f829cb
commit 9074df896a
5 changed files with 155 additions and 35 deletions

View File

@ -22,7 +22,7 @@
class UDPWiimote
{
public:
UDPWiimote(const char * port);
UDPWiimote(const char * port, const char * name, int index);
virtual ~UDPWiimote();
void getAccel(float &x, float &y, float &z);
u32 getButtons();
@ -31,8 +31,9 @@ public:
void getNunchuckAccel(float &x, float &y, float &z);
int getErrNo() {return err;};
const char * getPort();
void changeName(const char * name);
private:
std::string port;
std::string port,displayName;
int pharsePacket(u8 * data, size_t size);
void mainThread();
struct _d; //using pimpl because Winsock2.h doesen't have include guards -_-
@ -43,10 +44,16 @@ private:
double pointerX,pointerY;
u8 nunMask;
u32 mask;
u16 bcastMagic;
int err;
int index;
int int_port;
static int noinst;
friend void _UDPWiiThread(void* arg);
void broadcastPresence();
u8 time;
void broadcastIPv4(const void * data, size_t size);
void broadcastIPv6(const void * data, size_t size);
void initBroadcastIPv4();
void initBroadcastIPv6();
};
#endif