From dee7d241f8b20262aebe6344b752bb0905ede628 Mon Sep 17 00:00:00 2001 From: Florian Jung Date: Tue, 4 Dec 2012 00:03:40 +0100 Subject: joystick und xorggrabber ausgelagert --- Makefile | 6 +- joystick.cpp | 219 ++++++++++++++++++++++++++++ joystick.h | 64 ++++++++ mariokart.cpp | 438 +------------------------------------------------------ os.h | 2 + xorg_grabber.cpp | 163 +++++++++++++++++++++ xorg_grabber.h | 25 ++++ 7 files changed, 482 insertions(+), 435 deletions(-) create mode 100644 joystick.cpp create mode 100644 joystick.h create mode 100644 os.h create mode 100644 xorg_grabber.cpp create mode 100644 xorg_grabber.h diff --git a/Makefile b/Makefile index e7a632c..f8ad6c4 100644 --- a/Makefile +++ b/Makefile @@ -9,14 +9,16 @@ clean: .cpp.o: g++ `pkg-config --cflags opencv` -g -c $< +joystick.o: joystick.cpp os.h + g++ `pkg-config --cflags opencv` -g -c $< detect_road_borders: detect_road_borders.cpp - g++ `pkg-config --libs --cflags opencv` -g $^ -o $@ + g++ `pkg-config --libs --cflags opencv` -g $> -o $@ test_detect: detect_road_borders ./detect_road_borders test.mpg -mariokart: mariokart.o road_thresholder.o horizon_steerer.o naive_steerer.o steer_accumulator.o util.o +mariokart: mariokart.o os.h joystick.o xorg_grabber.o road_thresholder.o horizon_steerer.o naive_steerer.o steer_accumulator.o util.o g++ `pkg-config --libs --cflags opencv` -lxcb -lpthread -g $> -o $@ diff --git a/joystick.cpp b/joystick.cpp new file mode 100644 index 0000000..92c2d5e --- /dev/null +++ b/joystick.cpp @@ -0,0 +1,219 @@ +#include "joystick.h" +#include "os.h" +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef LINUX +#include +#include +#endif + +#include +#include +#include +#include + +using namespace std; + +#define THROTTLE_CNT_MAX 10 + +#ifdef FREEBSD +static char* pack(const BUTTONS* buttons, char* buf) +{ + buf[0]= (buttons->A_BUTTON ? 1 : 0) + + (buttons->B_BUTTON ? 2 : 0) + + (buttons->L_TRIG ? 4 : 0) + + (buttons->R_TRIG ? 8 : 0) + + (buttons->Z_TRIG ? 16 : 0) + + (buttons->START_BUTTON ? 32 : 0) + + 128; + + buf[1]= (buttons->R_DPAD ? 1 : 0) + + (buttons->L_DPAD ? 2 : 0) + + (buttons->U_DPAD ? 4 : 0) + + (buttons->D_DPAD ? 8 : 0) + + ((buttons->X_AXIS & 128) ? 16 : 0) + + ((buttons->Y_AXIS & 128) ? 32 : 0); + + buf[2]= (buttons->R_CBUTTON ? 1 : 0) + + (buttons->L_CBUTTON ? 2 : 0) + + (buttons->U_CBUTTON ? 4 : 0) + + (buttons->D_CBUTTON ? 8 : 0); + + buf[3]= (buttons->X_AXIS & 127); + + buf[4]= (buttons->Y_AXIS & 127); + + return buf; +} +#endif + + + +#ifdef FREEBSD +Joystick::Joystick() +{ + if ((fifo_fd=open("/var/tmp/mupen64plus_ctl", O_WRONLY )) == -1) {throw string(strerror(errno));} + cout << "opened" << endl; + if (fcntl(fifo_fd, F_SETFL, O_NONBLOCK) == -1) throw string("failed to set nonblocking io"); + + reset(); +} + +void Joystick::press_a(bool state) +{ + buttons.A_BUTTON=state; + send_data(); +} + +void Joystick::send_data() +{ + char buf[5]; + pack(&buttons, buf); + write(fifo_fd, buf, 5); +} + + + +void Joystick::steer(float dir, float dead_zone) +{ + if (dir<-1.0) dir=-1.0; + if (dir>1.0) dir=1.0; + + if (fabs(dir)1.0) dir=1.0; + + if (fabs(dir)1.0) t=1.0; + + throt=t; +} + +void Joystick::process() +{ + throttle_cnt++; + if (throttle_cnt>=THROTTLE_CNT_MAX) throttle_cnt=0; + + press_a((throttle_cnt < throt*THROTTLE_CNT_MAX)); +} + diff --git a/joystick.h b/joystick.h new file mode 100644 index 0000000..2c55a2e --- /dev/null +++ b/joystick.h @@ -0,0 +1,64 @@ +#ifndef __JOYSTICK_H__ +#define __JOYSTICK_H__ + +#include "os.h" + +#ifdef FREEBSD +typedef union { + unsigned int Value; + struct { + unsigned R_DPAD : 1; + unsigned L_DPAD : 1; + unsigned D_DPAD : 1; + unsigned U_DPAD : 1; + unsigned START_BUTTON : 1; + unsigned Z_TRIG : 1; + unsigned B_BUTTON : 1; + unsigned A_BUTTON : 1; + + unsigned R_CBUTTON : 1; + unsigned L_CBUTTON : 1; + unsigned D_CBUTTON : 1; + unsigned U_CBUTTON : 1; + unsigned R_TRIG : 1; + unsigned L_TRIG : 1; + unsigned Reserved1 : 1; + unsigned Reserved2 : 1; + + signed X_AXIS : 8; + signed Y_AXIS : 8; + }; +} BUTTONS; + +#endif // FREEBSD + + +class Joystick +{ + public: + Joystick(); + ~Joystick(); + void steer(float dir, float dead_zone=0.0); + void throttle(float t); + void press_a(bool); + + + void process(); + void reset(); + + private: +#ifdef FREEBSD + BUTTONS buttons; + void send_data(); + int fifo_fd; +#endif +#ifdef LINUX + int fd; +#endif + + float throt; + int throttle_cnt; + +}; + +#endif // __JOYSTICK_H__ diff --git a/mariokart.cpp b/mariokart.cpp index dc6eaa9..ff5fbaa 100644 --- a/mariokart.cpp +++ b/mariokart.cpp @@ -20,8 +20,8 @@ */ -#define FREEBSD -//#define LINUX +#include "os.h" + #include #include @@ -32,15 +32,6 @@ #include #include -#ifdef LINUX -#include -#include -#endif - -#include -#include -#include -#include #include "util.h" #include "steer_interface.h" @@ -48,9 +39,11 @@ #include "road_thresholder_iface.h" #include "road_thresholder.h" +#include "xorg_grabber.h" +#include "joystick.h" + #include #include -#include #include #include @@ -58,433 +51,12 @@ using namespace std; using namespace cv; -class XorgGrabber -{ - public: - XorgGrabber(const char* win_title); - ~XorgGrabber(); - void read(Mat& mat); - - private: - xcb_connection_t* conn; - xcb_window_t grabbed_win; - int grab_width, grab_height; - xcb_screen_t* grab_screen; - xcb_get_image_reply_t* img; - -}; - -XorgGrabber::XorgGrabber(const char* win_title) -{ - conn=xcb_connect(NULL,NULL); - - bool found_win=false; - grab_screen=NULL; - img=NULL; - - /* Find configured screen */ - const xcb_setup_t* setup = xcb_get_setup(conn); - for (xcb_screen_iterator_t i = xcb_setup_roots_iterator(setup); - i.rem > 0; xcb_screen_next (&i)) - { - xcb_screen_t* scr = i.data; - xcb_query_tree_reply_t* reply = xcb_query_tree_reply( conn, xcb_query_tree(conn, scr->root), NULL); - if (reply) - { - int len = xcb_query_tree_children_length(reply); - xcb_window_t* children = xcb_query_tree_children(reply); - xcb_get_window_attributes_cookie_t* cookies = new xcb_get_window_attributes_cookie_t[len]; - for (int i=0; ioverride_redirect && attr->map_state == XCB_MAP_STATE_VIEWABLE) - { - char* title=(char*)(title_reply+1); - cout << title << endl; - if (strstr(title, win_title)) - { - xcb_get_geometry_reply_t* geo; - geo = xcb_get_geometry_reply (conn, xcb_get_geometry (conn, children[i]), NULL); - if (geo) - { - grab_width=geo->width; - grab_height=geo->height; - - free(geo); - - grabbed_win=children[i]; - found_win=true; - - grab_screen=scr; - } - else - { - cerr << "geo==NULL!" << endl; - } - } - } - - free(title_reply); - free(attr); - } - - free(reply); - delete[] cookies; - } - else - { - cout << "xcb_get_setup failed" << endl; - } - } - - if (found_win) - { - xcb_get_image_reply_t* img = xcb_get_image_reply (conn, - xcb_get_image (conn, XCB_IMAGE_FORMAT_Z_PIXMAP, grabbed_win, - 0, 0, grab_width, grab_height, ~0), NULL); - - - - xcb_depth_iterator_t depth_iterator = xcb_screen_allowed_depths_iterator(grab_screen); - - int ndepths=xcb_screen_allowed_depths_length(grab_screen); - - for (int i=0; idepth == img->depth) - { - xcb_visualtype_t* visuals = xcb_depth_visuals(depth_iterator.data); - int nvisuals = xcb_depth_visuals_length(depth_iterator.data); - - for (int j=0;jvisual) - { - assert(visuals[j]._class==XCB_VISUAL_CLASS_TRUE_COLOR || visuals[j]._class==XCB_VISUAL_CLASS_DIRECT_COLOR); - cout << (int)visuals[j]._class << "," << XCB_VISUAL_CLASS_TRUE_COLOR << endl; - cout << visuals[j].red_mask << endl; - cout << visuals[j].green_mask << endl; - cout << visuals[j].blue_mask << endl; - break; - } - } - - break; - } - - xcb_depth_next(&depth_iterator); - } - - - - int nformats = xcb_setup_pixmap_formats_length(setup); - xcb_format_t* formats = xcb_setup_pixmap_formats(setup); - for (int i=0;idepth) - { - cout << (int)formats[i].bits_per_pixel << endl; - cout << (int)formats[i].scanline_pad << endl; - break; - } - } - - cout << grab_width << "x" << grab_height << endl; - - free(img); - - } - else - { - throw string("FATAL: did not find window, exiting."); - } - - -} - -XorgGrabber::~XorgGrabber() -{ - if (img) free(img); - xcb_disconnect(conn); -} - -void XorgGrabber::read(Mat& mat) -{ - if (img) free(img); - - - // mat gets invalid when the next read() is called! - img = xcb_get_image_reply (conn, - xcb_get_image (conn, XCB_IMAGE_FORMAT_Z_PIXMAP, grabbed_win, - 0, 0, grab_width, grab_height, ~0), NULL); - - mat = Mat(grab_height, grab_width, CV_8UC4, xcb_get_image_data(img)); - mat.addref(); -} - - - - -#define THROTTLE_CNT_MAX 10 - - -#ifdef FREEBSD -typedef union { - unsigned int Value; - struct { - unsigned R_DPAD : 1; - unsigned L_DPAD : 1; - unsigned D_DPAD : 1; - unsigned U_DPAD : 1; - unsigned START_BUTTON : 1; - unsigned Z_TRIG : 1; - unsigned B_BUTTON : 1; - unsigned A_BUTTON : 1; - - unsigned R_CBUTTON : 1; - unsigned L_CBUTTON : 1; - unsigned D_CBUTTON : 1; - unsigned U_CBUTTON : 1; - unsigned R_TRIG : 1; - unsigned L_TRIG : 1; - unsigned Reserved1 : 1; - unsigned Reserved2 : 1; - - signed X_AXIS : 8; - signed Y_AXIS : 8; - }; -} BUTTONS; - - -char* pack(const BUTTONS* buttons, char* buf) -{ - buf[0]= (buttons->A_BUTTON ? 1 : 0) + - (buttons->B_BUTTON ? 2 : 0) + - (buttons->L_TRIG ? 4 : 0) + - (buttons->R_TRIG ? 8 : 0) + - (buttons->Z_TRIG ? 16 : 0) + - (buttons->START_BUTTON ? 32 : 0) + - 128; - - buf[1]= (buttons->R_DPAD ? 1 : 0) + - (buttons->L_DPAD ? 2 : 0) + - (buttons->U_DPAD ? 4 : 0) + - (buttons->D_DPAD ? 8 : 0) + - ((buttons->X_AXIS & 128) ? 16 : 0) + - ((buttons->Y_AXIS & 128) ? 32 : 0); - - buf[2]= (buttons->R_CBUTTON ? 1 : 0) + - (buttons->L_CBUTTON ? 2 : 0) + - (buttons->U_CBUTTON ? 4 : 0) + - (buttons->D_CBUTTON ? 8 : 0); - - buf[3]= (buttons->X_AXIS & 127); - - buf[4]= (buttons->Y_AXIS & 127); - - return buf; -} -#endif - -class Joystick -{ - public: - Joystick(); - ~Joystick(); - void steer(float dir, float dead_zone=0.0); - void throttle(float t); - void press_a(bool); - - - void process(); - void reset(); - - private: -#ifdef FREEBSD - BUTTONS buttons; - void send_data(); - int fifo_fd; -#endif -#ifdef LINUX - int fd; -#endif - - float throt; - int throttle_cnt; - -}; - -#ifdef FREEBSD -Joystick::Joystick() -{ - if ((fifo_fd=open("/var/tmp/mupen64plus_ctl", O_WRONLY )) == -1) {throw string(strerror(errno));} - cout << "opened" << endl; - if (fcntl(fifo_fd, F_SETFL, O_NONBLOCK) == -1) throw string("failed to set nonblocking io"); - - reset(); -} - -void Joystick::press_a(bool state) -{ - buttons.A_BUTTON=state; - send_data(); -} - -void Joystick::send_data() -{ - char buf[5]; - pack(&buttons, buf); - write(fifo_fd, buf, 5); -} - - - -void Joystick::steer(float dir, float dead_zone) -{ - if (dir<-1.0) dir=-1.0; - if (dir>1.0) dir=1.0; - - if (fabs(dir)1.0) dir=1.0; - - if (fabs(dir)1.0) t=1.0; - - throt=t; -} - -void Joystick::process() -{ - throttle_cnt++; - if (throttle_cnt>=THROTTLE_CNT_MAX) throttle_cnt=0; - - press_a((throttle_cnt < throt*THROTTLE_CNT_MAX)); -} - #define HIST_SMOOTH 7 diff --git a/os.h b/os.h new file mode 100644 index 0000000..c7433e2 --- /dev/null +++ b/os.h @@ -0,0 +1,2 @@ +#define FREEBSD +//#define LINUX diff --git a/xorg_grabber.cpp b/xorg_grabber.cpp new file mode 100644 index 0000000..386cab6 --- /dev/null +++ b/xorg_grabber.cpp @@ -0,0 +1,163 @@ +#include "xorg_grabber.h" + +#include +using namespace std; + +XorgGrabber::XorgGrabber(const char* win_title) +{ + conn=xcb_connect(NULL,NULL); + + bool found_win=false; + grab_screen=NULL; + img=NULL; + + /* Find configured screen */ + const xcb_setup_t* setup = xcb_get_setup(conn); + for (xcb_screen_iterator_t i = xcb_setup_roots_iterator(setup); + i.rem > 0; xcb_screen_next (&i)) + { + xcb_screen_t* scr = i.data; + xcb_query_tree_reply_t* reply = xcb_query_tree_reply( conn, xcb_query_tree(conn, scr->root), NULL); + if (reply) + { + int len = xcb_query_tree_children_length(reply); + xcb_window_t* children = xcb_query_tree_children(reply); + xcb_get_window_attributes_cookie_t* cookies = new xcb_get_window_attributes_cookie_t[len]; + for (int i=0; ioverride_redirect && attr->map_state == XCB_MAP_STATE_VIEWABLE) + { + char* title=(char*)(title_reply+1); + cout << title << endl; + if (strstr(title, win_title)) + { + xcb_get_geometry_reply_t* geo; + geo = xcb_get_geometry_reply (conn, xcb_get_geometry (conn, children[i]), NULL); + if (geo) + { + grab_width=geo->width; + grab_height=geo->height; + + free(geo); + + grabbed_win=children[i]; + found_win=true; + + grab_screen=scr; + } + else + { + cerr << "geo==NULL!" << endl; + } + } + } + + free(title_reply); + free(attr); + } + + free(reply); + delete[] cookies; + } + else + { + cout << "xcb_get_setup failed" << endl; + } + } + + if (found_win) + { + xcb_get_image_reply_t* img = xcb_get_image_reply (conn, + xcb_get_image (conn, XCB_IMAGE_FORMAT_Z_PIXMAP, grabbed_win, + 0, 0, grab_width, grab_height, ~0), NULL); + + + + xcb_depth_iterator_t depth_iterator = xcb_screen_allowed_depths_iterator(grab_screen); + + int ndepths=xcb_screen_allowed_depths_length(grab_screen); + + for (int i=0; idepth == img->depth) + { + xcb_visualtype_t* visuals = xcb_depth_visuals(depth_iterator.data); + int nvisuals = xcb_depth_visuals_length(depth_iterator.data); + + for (int j=0;jvisual) + { + assert(visuals[j]._class==XCB_VISUAL_CLASS_TRUE_COLOR || visuals[j]._class==XCB_VISUAL_CLASS_DIRECT_COLOR); + cout << (int)visuals[j]._class << "," << XCB_VISUAL_CLASS_TRUE_COLOR << endl; + cout << visuals[j].red_mask << endl; + cout << visuals[j].green_mask << endl; + cout << visuals[j].blue_mask << endl; + break; + } + } + + break; + } + + xcb_depth_next(&depth_iterator); + } + + + + int nformats = xcb_setup_pixmap_formats_length(setup); + xcb_format_t* formats = xcb_setup_pixmap_formats(setup); + for (int i=0;idepth) + { + cout << (int)formats[i].bits_per_pixel << endl; + cout << (int)formats[i].scanline_pad << endl; + break; + } + } + + cout << grab_width << "x" << grab_height << endl; + + free(img); + + } + else + { + throw string("FATAL: did not find window, exiting."); + } + + +} + +XorgGrabber::~XorgGrabber() +{ + if (img) free(img); + xcb_disconnect(conn); +} + +void XorgGrabber::read(Mat& mat) +{ + if (img) free(img); + + + // mat gets invalid when the next read() is called! + img = xcb_get_image_reply (conn, + xcb_get_image (conn, XCB_IMAGE_FORMAT_Z_PIXMAP, grabbed_win, + 0, 0, grab_width, grab_height, ~0), NULL); + + mat = Mat(grab_height, grab_width, CV_8UC4, xcb_get_image_data(img)); + mat.addref(); +} + diff --git a/xorg_grabber.h b/xorg_grabber.h new file mode 100644 index 0000000..54bbb8f --- /dev/null +++ b/xorg_grabber.h @@ -0,0 +1,25 @@ +#ifndef __XORG_GRABBER_H__ +#define __XORG_GRABBER_H__ + +#include +#include + +using namespace cv; + +class XorgGrabber +{ + public: + XorgGrabber(const char* win_title); + ~XorgGrabber(); + void read(Mat& mat); + + private: + xcb_connection_t* conn; + xcb_window_t grabbed_win; + int grab_width, grab_height; + xcb_screen_t* grab_screen; + xcb_get_image_reply_t* img; + +}; + +#endif -- cgit v1.2.1