xwiimote  1
xwiimote.h
Go to the documentation of this file.
1 /*
2  * XWiimote - lib
3  * Written 2010-2013 by David Herrmann <dh.herrmann@gmail.com>
4  * Dedicated to the Public Domain
5  */
6 
7 #ifndef XWII_XWIIMOTE_H
8 #define XWII_XWIIMOTE_H
9 
10 #include <stdbool.h>
11 #include <stdint.h>
12 #include <stdlib.h>
13 #include <sys/time.h>
14 #include <time.h>
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
30 #if (__GNUC__ > 3)
31 #define XWII__DEPRECATED __attribute__((__deprecated__))
32 #else
33 #define XWII__DEPRECATED
34 #endif /* __GNUC__ */
35 
310 #define XWII__NAME "Nintendo Wii Remote"
311 
313 #define XWII_NAME_CORE XWII__NAME
314 
315 #define XWII_NAME_ACCEL XWII__NAME " Accelerometer"
316 
317 #define XWII_NAME_IR XWII__NAME " IR"
318 
320 #define XWII_NAME_MOTION_PLUS XWII__NAME " Motion Plus"
321 
322 #define XWII_NAME_NUNCHUK XWII__NAME " Nunchuk"
323 
324 #define XWII_NAME_CLASSIC_CONTROLLER XWII__NAME " Classic Controller"
325 
326 #define XWII_NAME_BALANCE_BOARD XWII__NAME " Balance Board"
327 
328 #define XWII_NAME_PRO_CONTROLLER XWII__NAME " Pro Controller"
329 
361 
372 
386 
397 
408 
419 
429 
445 
453 };
454 
470  XWII_KEY_LEFT,
471  XWII_KEY_RIGHT,
472  XWII_KEY_UP,
473  XWII_KEY_DOWN,
474  XWII_KEY_A,
475  XWII_KEY_B,
476  XWII_KEY_PLUS,
477  XWII_KEY_MINUS,
478  XWII_KEY_HOME,
479  XWII_KEY_ONE,
480  XWII_KEY_TWO,
481  XWII_KEY_X,
482  XWII_KEY_Y,
483  XWII_KEY_TL,
484  XWII_KEY_TR,
485  XWII_KEY_ZL,
486  XWII_KEY_ZR,
487 
496 
505 
514 };
515 
523  unsigned int code;
525  unsigned int state;
526 };
527 
535  int32_t x;
536  int32_t y;
537  int32_t z;
538 };
539 
549  struct xwii_event_abs abs[4];
551  uint8_t reserved[128];
552 };
553 
563 struct xwii_event {
565  struct timeval time;
567  unsigned int type;
568 
571 };
572 
581 static inline bool xwii_event_ir_is_valid(const struct xwii_event_abs *abs)
582 {
583  return abs->x != 1023 || abs->y != 1023;
584 }
585 
631 struct xwii_iface;
632 
642  XWII_IFACE_CORE = 0x000001,
644  XWII_IFACE_ACCEL = 0x000002,
646  XWII_IFACE_IR = 0x000004,
647 
651  XWII_IFACE_NUNCHUK = 0x000200,
658 
662  XWII_IFACE_IR |
670 };
671 
677 enum xwii_led {
678  XWII_LED1 = 1,
679  XWII_LED2 = 2,
680  XWII_LED3 = 3,
681  XWII_LED4 = 4,
682 };
683 
690 #define XWII_LED(num) (XWII_LED1 + (num) - 1)
691 
708 int xwii_iface_new(struct xwii_iface **dev, const char *syspath);
709 
715 void xwii_iface_ref(struct xwii_iface *dev);
716 
726 void xwii_iface_unref(struct xwii_iface *dev);
727 
741 int xwii_iface_get_fd(struct xwii_iface *dev);
742 
758 int xwii_iface_watch(struct xwii_iface *dev, bool watch);
759 
781 int xwii_iface_open(struct xwii_iface *dev, unsigned int ifaces);
782 
791 void xwii_iface_close(struct xwii_iface *dev, unsigned int ifaces);
792 
806 unsigned int xwii_iface_opened(struct xwii_iface *dev);
807 
819 unsigned int xwii_iface_available(struct xwii_iface *dev);
820 
845 XWII__DEPRECATED
846 int xwii_iface_poll(struct xwii_iface *dev, struct xwii_event *ev);
847 
876 int xwii_iface_dispatch(struct xwii_iface *dev, struct xwii_event *ev,
877  size_t size);
878 
890 int xwii_iface_rumble(struct xwii_iface *dev, bool on);
891 
906 int xwii_iface_get_led(struct xwii_iface *dev, unsigned int led, bool *state);
907 
921 int xwii_iface_set_led(struct xwii_iface *dev, unsigned int led, bool state);
922 
936 int xwii_iface_get_battery(struct xwii_iface *dev, uint8_t *capacity);
937 
951 int xwii_iface_get_devtype(struct xwii_iface *dev, char **devtype);
952 
967 int xwii_iface_get_extension(struct xwii_iface *dev, char **extension);
968 
990 void xwii_iface_set_mp_normalization(struct xwii_iface *dev, int32_t x,
991  int32_t y, int32_t z, int32_t factor);
992 
1012 void xwii_iface_get_mp_normalization(struct xwii_iface *dev, int32_t *x,
1013  int32_t *y, int32_t *z, int32_t *factor);
1014 
1038 struct xwii_monitor;
1039 
1055 struct xwii_monitor *xwii_monitor_new(bool poll, bool direct);
1056 
1062 void xwii_monitor_ref(struct xwii_monitor *mon);
1063 
1071 void xwii_monitor_unref(struct xwii_monitor *mon);
1072 
1089 int xwii_monitor_get_fd(struct xwii_monitor *monitor, bool blocking);
1090 
1112 char *xwii_monitor_poll(struct xwii_monitor *monitor);
1113 
1116 #ifdef __cplusplus
1117 }
1118 #endif
1119 
1120 #endif /* XWII_XWIIMOTE_H */