From 888b870c576313c4c4c13958acb7d0e833b375c1 Mon Sep 17 00:00:00 2001 From: epoch Date: Tue, 5 Feb 2019 22:09:13 -0600 Subject: added the separated out mouse and keyboard files --- src/mouse_die.c | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/mouse_die.c (limited to 'src/mouse_die.c') diff --git a/src/mouse_die.c b/src/mouse_die.c new file mode 100644 index 0000000..6729a94 --- /dev/null +++ b/src/mouse_die.c @@ -0,0 +1,38 @@ +#include +#include +#include +#include +#include + + +//#define MOUSEDEV "/dev/input/mouse0" //just one of the many possibly connected mice. (just in case you want to use one mouse for one thing and another mouse for something else) +#define MOUSEDEV "/dev/input/mice" //all the mice connected act as one. + +int mfd = -1; + +//#define "mouse.h" //I guess + +struct wtf { + unsigned char type; + char dx; + char dy; +}; + +int mouse_event_handler() { + struct wtf ie; + int l; + memset(&ie,0,sizeof(ie)); + if(mfd == -1) { + mfd=open(MOUSEDEV,O_RDWR); + fcntl(mfd,F_SETFL,O_NONBLOCK); + } + if(mfd == -1) { + fprintf(stderr,"# mouse shit fucked up.\n"); + return 1; + } + if((l=read(mfd,&ie,sizeof(ie))) > 0) { + //type == 8 and a or of some bits to say which direction. + fprintf(stderr,"# mouse debug: type:\t%d\tdx:%d\tdy:%d\n",ie.type,ie.dx,ie.dy); + } + return 0; +} -- cgit v1.2.3