| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  joystick_linux.cpp                                                   */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                    http://www.godotengine.org                         */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2016-01-01 11:50:53 -02:00
										 |  |  | /* Copyright (c) 2007-2016 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //author: Andreas Haas <hondres,  liugam3@gmail.com>
 | 
					
						
							| 
									
										
										
										
											2015-12-21 22:39:03 +01:00
										 |  |  | #ifdef JOYDEV_ENABLED
 | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "joystick_linux.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | #include <linux/input.h>
 | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | #include <unistd.h>
 | 
					
						
							|  |  |  | #include <fcntl.h>
 | 
					
						
							|  |  |  | #include <errno.h>
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-15 15:09:48 +01:00
										 |  |  | #ifdef UDEV_ENABLED
 | 
					
						
							|  |  |  | #include <libudev.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-02 23:23:20 +01:00
										 |  |  | #define LONG_BITS  (sizeof(long) * 8)
 | 
					
						
							|  |  |  | #define test_bit(nr, addr)  (((1UL << ((nr) % LONG_BITS)) & ((addr)[(nr) / LONG_BITS])) != 0)
 | 
					
						
							|  |  |  | #define NBITS(x) ((((x)-1)/LONG_BITS)+1)
 | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static const char* ignore_str = "/dev/input/js"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | joystick_linux::Joystick::Joystick() { | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	fd = -1; | 
					
						
							|  |  |  | 	dpad = 0; | 
					
						
							| 
									
										
										
										
											2016-01-02 03:52:44 +01:00
										 |  |  | 	devpath = ""; | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 	for (int i = 0; i < MAX_ABS; i++) { | 
					
						
							|  |  |  | 		abs_info[i] = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | joystick_linux::Joystick::~Joystick() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < MAX_ABS; i++) { | 
					
						
							|  |  |  | 		if (abs_info[i]) { | 
					
						
							|  |  |  | 			memdelete(abs_info[i]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void joystick_linux::Joystick::reset() { | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	dpad        = 0; | 
					
						
							|  |  |  | 	fd          = -1; | 
					
						
							| 
									
										
										
										
											2016-01-03 02:24:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	InputDefault::JoyAxis jx; | 
					
						
							|  |  |  | 	jx.min = -1; | 
					
						
							|  |  |  | 	jx.value = 0.0f; | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	for (int i=0; i < MAX_ABS; i++) { | 
					
						
							|  |  |  | 		abs_map[i] = -1; | 
					
						
							| 
									
										
										
										
											2016-01-03 02:24:43 +01:00
										 |  |  | 		curr_axis[i] = jx; | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | joystick_linux::joystick_linux(InputDefault *in) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	exit_udev = false; | 
					
						
							|  |  |  | 	input = in; | 
					
						
							|  |  |  | 	joy_mutex = Mutex::create(); | 
					
						
							|  |  |  | 	joy_thread = Thread::create(joy_thread_func, this); | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | joystick_linux::~joystick_linux() { | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	exit_udev = true; | 
					
						
							|  |  |  | 	Thread::wait_to_finish(joy_thread); | 
					
						
							| 
									
										
										
										
											2016-04-03 19:24:39 +02:00
										 |  |  | 	memdelete(joy_thread); | 
					
						
							|  |  |  | 	memdelete(joy_mutex); | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	close_joystick(); | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void joystick_linux::joy_thread_func(void *p_user) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	if (p_user) { | 
					
						
							|  |  |  | 		joystick_linux* joy = (joystick_linux*) p_user; | 
					
						
							|  |  |  | 		joy->run_joystick_thread(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return; | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void joystick_linux::run_joystick_thread() { | 
					
						
							| 
									
										
										
										
											2016-02-14 15:13:11 +01:00
										 |  |  | #ifdef UDEV_ENABLED
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	udev *_udev = udev_new(); | 
					
						
							|  |  |  | 	ERR_FAIL_COND(!_udev); | 
					
						
							|  |  |  | 	enumerate_joysticks(_udev); | 
					
						
							|  |  |  | 	monitor_joysticks(_udev); | 
					
						
							|  |  |  | 	udev_unref(_udev); | 
					
						
							| 
									
										
										
										
											2016-02-14 15:13:11 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 	monitor_joysticks(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-14 15:13:11 +01:00
										 |  |  | #ifdef UDEV_ENABLED
 | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | void joystick_linux::enumerate_joysticks(udev *p_udev) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	udev_enumerate *enumerate; | 
					
						
							|  |  |  | 	udev_list_entry *devices, *dev_list_entry; | 
					
						
							|  |  |  | 	udev_device *dev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	enumerate = udev_enumerate_new(p_udev); | 
					
						
							|  |  |  | 	udev_enumerate_add_match_subsystem(enumerate,"input"); | 
					
						
							|  |  |  | 	udev_enumerate_add_match_property(enumerate, "ID_INPUT_JOYSTICK", "1"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	udev_enumerate_scan_devices(enumerate); | 
					
						
							|  |  |  | 	devices = udev_enumerate_get_list_entry(enumerate); | 
					
						
							|  |  |  | 	udev_list_entry_foreach(dev_list_entry, devices) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		const char* path = udev_list_entry_get_name(dev_list_entry); | 
					
						
							|  |  |  | 		dev = udev_device_new_from_syspath(p_udev, path); | 
					
						
							|  |  |  | 		const char* devnode = udev_device_get_devnode(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 		if (devnode) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			String devnode_str = devnode; | 
					
						
							|  |  |  | 			if (devnode_str.find(ignore_str) == -1) { | 
					
						
							|  |  |  | 				joy_mutex->lock(); | 
					
						
							|  |  |  | 				open_joystick(devnode); | 
					
						
							|  |  |  | 				joy_mutex->unlock(); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		udev_device_unref(dev); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	udev_enumerate_unref(enumerate); | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void joystick_linux::monitor_joysticks(udev *p_udev) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	udev_device *dev = NULL; | 
					
						
							|  |  |  | 	udev_monitor *mon = udev_monitor_new_from_netlink(p_udev, "udev"); | 
					
						
							|  |  |  | 	udev_monitor_filter_add_match_subsystem_devtype(mon, "input", NULL); | 
					
						
							|  |  |  | 	udev_monitor_enable_receiving(mon); | 
					
						
							|  |  |  | 	int fd = udev_monitor_get_fd(mon); | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	while (!exit_udev) { | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		fd_set fds; | 
					
						
							|  |  |  | 		struct timeval tv; | 
					
						
							|  |  |  | 		int ret; | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		FD_ZERO(&fds); | 
					
						
							|  |  |  | 		FD_SET(fd, &fds); | 
					
						
							|  |  |  | 		tv.tv_sec = 0; | 
					
						
							|  |  |  | 		tv.tv_usec = 0; | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		ret = select(fd+1, &fds, NULL, NULL, &tv); | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		/* Check if our file descriptor has received data. */ | 
					
						
							|  |  |  | 		if (ret > 0 && FD_ISSET(fd, &fds)) { | 
					
						
							|  |  |  | 			/* Make the call to receive the device.
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 			   select() ensured that this will not block. */ | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 			dev = udev_monitor_receive_device(mon); | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 			if (dev && udev_device_get_devnode(dev) != 0) { | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 				joy_mutex->lock(); | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 				String action = udev_device_get_action(dev); | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 				const char* devnode = udev_device_get_devnode(dev); | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 				if (devnode) { | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 					String devnode_str = devnode; | 
					
						
							|  |  |  | 					if (devnode_str.find(ignore_str) == -1) { | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 						if (action == "add") | 
					
						
							|  |  |  | 							open_joystick(devnode); | 
					
						
							|  |  |  | 						else if (String(action) == "remove") | 
					
						
							|  |  |  | 							close_joystick(get_joy_from_path(devnode)); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 				udev_device_unref(dev); | 
					
						
							|  |  |  | 				joy_mutex->unlock(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		usleep(50000); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	//printf("exit udev\n");
 | 
					
						
							|  |  |  | 	udev_monitor_unref(mon); | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-02-14 15:13:11 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void joystick_linux::monitor_joysticks() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (!exit_udev) { | 
					
						
							|  |  |  | 		joy_mutex->lock(); | 
					
						
							|  |  |  | 		for (int i = 0; i < 32; i++) { | 
					
						
							|  |  |  | 			char fname[64]; | 
					
						
							|  |  |  | 			sprintf(fname, "/dev/input/event%d", i); | 
					
						
							|  |  |  | 			if (attached_devices.find(fname) == -1) { | 
					
						
							|  |  |  | 				open_joystick(fname); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		joy_mutex->unlock(); | 
					
						
							|  |  |  | 		usleep(1000000); // 1s
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | int joystick_linux::get_free_joy_slot() const { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	for (int i = 0; i < JOYSTICKS_MAX; i++) { | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		if (joysticks[i].fd == -1) return i; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return -1; | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int joystick_linux::get_joy_from_path(String p_path) const { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	for (int i = 0; i < JOYSTICKS_MAX; i++) { | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		if (joysticks[i].devpath == p_path) { | 
					
						
							|  |  |  | 			return i; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return -2; | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void joystick_linux::close_joystick(int p_id) { | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	if (p_id == -1) { | 
					
						
							|  |  |  | 		for (int i=0; i<JOYSTICKS_MAX; i++) { | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 			close_joystick(i); | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (p_id < 0) return; | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	Joystick &joy = joysticks[p_id]; | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	if (joy.fd != -1) { | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		close(joy.fd); | 
					
						
							|  |  |  | 		joy.fd = -1; | 
					
						
							| 
									
										
										
										
											2016-02-14 15:13:11 +01:00
										 |  |  | 		attached_devices.remove(attached_devices.find(joy.devpath)); | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		input->joy_connection_changed(p_id, false, ""); | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static String _hex_str(uint8_t p_byte) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	static const char* dict = "0123456789abcdef"; | 
					
						
							|  |  |  | 	char ret[3]; | 
					
						
							|  |  |  | 	ret[2] = 0; | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	ret[0] = dict[p_byte>>4]; | 
					
						
							|  |  |  | 	ret[1] = dict[p_byte & 0xF]; | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void joystick_linux::setup_joystick_properties(int p_id) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	Joystick* joy = &joysticks[p_id]; | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	unsigned long keybit[NBITS(KEY_MAX)] = { 0 }; | 
					
						
							|  |  |  | 	unsigned long absbit[NBITS(ABS_MAX)] = { 0 }; | 
					
						
							| 
									
										
										
										
											2016-01-02 03:52:44 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int num_buttons = 0; | 
					
						
							|  |  |  | 	int num_axes = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 	if ((ioctl(joy->fd, EVIOCGBIT(EV_KEY, sizeof(keybit)), keybit) < 0) || | 
					
						
							|  |  |  | 	    (ioctl(joy->fd, EVIOCGBIT(EV_ABS, sizeof(absbit)), absbit) < 0)) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	for (int i = BTN_JOYSTICK; i < KEY_MAX; ++i) { | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 		if (test_bit(i, keybit)) { | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-02 03:52:44 +01:00
										 |  |  | 			joy->key_map[i] = num_buttons++; | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for (int i = BTN_MISC; i < BTN_JOYSTICK; ++i) { | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 		if (test_bit(i, keybit)) { | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-02 03:52:44 +01:00
										 |  |  | 			joy->key_map[i] = num_buttons++; | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for (int i = 0; i < ABS_MISC; ++i) { | 
					
						
							|  |  |  | 		/* Skip hats */ | 
					
						
							|  |  |  | 		if (i == ABS_HAT0X) { | 
					
						
							|  |  |  | 			i = ABS_HAT3Y; | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 		if (test_bit(i, absbit)) { | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-02 03:52:44 +01:00
										 |  |  | 			joy->abs_map[i] = num_axes++; | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 			joy->abs_info[i] = memnew(input_absinfo); | 
					
						
							|  |  |  | 			if (ioctl(joy->fd, EVIOCGABS(i), joy->abs_info[i]) < 0) { | 
					
						
							|  |  |  | 				memdelete(joy->abs_info[i]); | 
					
						
							|  |  |  | 				joy->abs_info[i] = NULL; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-15 07:25:35 +02:00
										 |  |  | 	joy->force_feedback = false; | 
					
						
							|  |  |  | 	joy->ff_effect_timestamp = 0; | 
					
						
							|  |  |  | 	unsigned long ffbit[NBITS(FF_CNT)]; | 
					
						
							|  |  |  | 	if (ioctl(joy->fd, EVIOCGBIT(EV_FF, sizeof(ffbit)), ffbit) != -1) { | 
					
						
							|  |  |  | 		if (test_bit(FF_RUMBLE, ffbit)) { | 
					
						
							|  |  |  | 			joy->force_feedback = true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | void joystick_linux::open_joystick(const char *p_path) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	int joy_num = get_free_joy_slot(); | 
					
						
							| 
									
										
										
										
											2016-06-15 07:25:35 +02:00
										 |  |  | 	int fd = open(p_path, O_RDWR | O_NONBLOCK); | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	if (fd != -1 && joy_num != -1) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 		unsigned long evbit[NBITS(EV_MAX)] = { 0 }; | 
					
						
							|  |  |  | 		unsigned long keybit[NBITS(KEY_MAX)] = { 0 }; | 
					
						
							|  |  |  | 		unsigned long absbit[NBITS(ABS_MAX)] = { 0 }; | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-14 15:13:11 +01:00
										 |  |  | 		// add to attached devices so we don't try to open it again
 | 
					
						
							|  |  |  | 		attached_devices.push_back(String(p_path)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 		if ((ioctl(fd, EVIOCGBIT(0, sizeof(evbit)), evbit) < 0) || | 
					
						
							|  |  |  | 		    (ioctl(fd, EVIOCGBIT(EV_KEY, sizeof(keybit)), keybit) < 0) || | 
					
						
							|  |  |  | 		    (ioctl(fd, EVIOCGBIT(EV_ABS, sizeof(absbit)), absbit) < 0)) { | 
					
						
							| 
									
										
										
										
											2016-02-01 13:39:50 +01:00
										 |  |  | 			close(fd); | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		//check if the device supports basic gamepad events, prevents certain keyboards from
 | 
					
						
							|  |  |  | 		//being detected as joysticks
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 		if (!(test_bit(EV_KEY, evbit) && test_bit(EV_ABS, evbit) && | 
					
						
							| 
									
										
										
										
											2016-02-07 00:17:16 +01:00
										 |  |  | 		     (test_bit(ABS_X, absbit) || test_bit(ABS_Y, absbit) || test_bit(ABS_HAT0X, absbit) || | 
					
						
							|  |  |  | 		      test_bit(ABS_GAS, absbit) || test_bit(ABS_RUDDER, absbit)) && | 
					
						
							|  |  |  | 		     (test_bit(BTN_A, keybit) || test_bit(BTN_THUMBL, keybit) || | 
					
						
							|  |  |  | 		      test_bit(BTN_TRIGGER, keybit) || test_bit(BTN_1, keybit)))) { | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 			close(fd); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 		char uid[128]; | 
					
						
							|  |  |  | 		char namebuf[128]; | 
					
						
							|  |  |  | 		String name = ""; | 
					
						
							|  |  |  | 		input_id inpid; | 
					
						
							|  |  |  | 		if (ioctl(fd, EVIOCGNAME(sizeof(namebuf)), namebuf) >= 0) { | 
					
						
							|  |  |  | 			name = namebuf; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 		if (ioctl(fd, EVIOCGID, &inpid) < 0) { | 
					
						
							|  |  |  | 			close(fd); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		joysticks[joy_num].reset(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Joystick &joy = joysticks[joy_num]; | 
					
						
							|  |  |  | 		joy.fd = fd; | 
					
						
							|  |  |  | 		joy.devpath = String(p_path); | 
					
						
							|  |  |  | 		setup_joystick_properties(joy_num); | 
					
						
							|  |  |  | 		sprintf(uid, "%04x%04x", __bswap_16(inpid.bustype), 0); | 
					
						
							|  |  |  | 		if (inpid.vendor && inpid.product && inpid.version) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			uint16_t vendor = __bswap_16(inpid.vendor); | 
					
						
							|  |  |  | 			uint16_t product = __bswap_16(inpid.product); | 
					
						
							|  |  |  | 			uint16_t version = __bswap_16(inpid.version); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			sprintf(uid + String(uid).length(), "%04x%04x%04x%04x%04x%04x", vendor,0,product,0,version,0); | 
					
						
							|  |  |  | 			input->joy_connection_changed(joy_num, true, name, uid); | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 			String uidname = uid; | 
					
						
							|  |  |  | 			int uidlen = MIN(name.length(), 11); | 
					
						
							|  |  |  | 			for (int i=0; i<uidlen; i++) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				uidname = uidname + _hex_str(name[i]); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			uidname += "00"; | 
					
						
							|  |  |  | 			input->joy_connection_changed(joy_num, true, name, uidname); | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-15 07:25:35 +02:00
										 |  |  | void joystick_linux::joystick_vibration_start(int p_id, float p_weak_magnitude, float p_strong_magnitude, float p_duration, uint64_t p_timestamp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Joystick& joy = joysticks[p_id]; | 
					
						
							|  |  |  | 	if (!joy.force_feedback || joy.fd == -1 || p_weak_magnitude < 0.f || p_weak_magnitude > 1.f || p_strong_magnitude < 0.f || p_strong_magnitude > 1.f) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (joy.ff_effect_id != -1) { | 
					
						
							|  |  |  | 		joystick_vibration_stop(p_id, p_timestamp); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct ff_effect effect; | 
					
						
							|  |  |  | 	effect.type = FF_RUMBLE; | 
					
						
							|  |  |  | 	effect.id = -1; | 
					
						
							|  |  |  | 	effect.u.rumble.weak_magnitude = floor(p_weak_magnitude * (float)0xffff); | 
					
						
							|  |  |  | 	effect.u.rumble.strong_magnitude = floor(p_strong_magnitude * (float)0xffff); | 
					
						
							|  |  |  | 	effect.replay.length = floor(p_duration * 1000); | 
					
						
							|  |  |  | 	effect.replay.delay = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ioctl(joy.fd, EVIOCSFF, &effect) < 0) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct input_event play; | 
					
						
							|  |  |  | 	play.type = EV_FF; | 
					
						
							|  |  |  | 	play.code = effect.id; | 
					
						
							|  |  |  | 	play.value = 1; | 
					
						
							|  |  |  | 	write(joy.fd, (const void*)&play, sizeof(play)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	joy.ff_effect_id = effect.id; | 
					
						
							|  |  |  | 	joy.ff_effect_timestamp = p_timestamp; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void joystick_linux::joystick_vibration_stop(int p_id, uint64_t p_timestamp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Joystick& joy = joysticks[p_id]; | 
					
						
							|  |  |  | 	if (!joy.force_feedback || joy.fd == -1 || joy.ff_effect_id == -1) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-20 11:01:07 +02:00
										 |  |  | 	if (ioctl(joy.fd, EVIOCRMFF, joy.ff_effect_id) < 0) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-15 07:25:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	joy.ff_effect_id = -1; | 
					
						
							|  |  |  | 	joy.ff_effect_timestamp = p_timestamp; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | InputDefault::JoyAxis joystick_linux::axis_correct(const input_absinfo *p_abs, int p_value) const { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	int min = p_abs->minimum; | 
					
						
							|  |  |  | 	int max = p_abs->maximum; | 
					
						
							|  |  |  | 	InputDefault::JoyAxis jx; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (min < 0) { | 
					
						
							|  |  |  | 		jx.min = -1; | 
					
						
							|  |  |  | 		if (p_value < 0) { | 
					
						
							|  |  |  | 			jx.value = (float) -p_value / min; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		jx.value = (float) p_value / max; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (min == 0) { | 
					
						
							|  |  |  | 		jx.min = 0; | 
					
						
							|  |  |  | 		jx.value = 0.0f + (float) p_value / max; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return jx; | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uint32_t joystick_linux::process_joysticks(uint32_t p_event_id) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	if (joy_mutex->try_lock() != OK) { | 
					
						
							|  |  |  | 		return p_event_id; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for (int i=0; i<JOYSTICKS_MAX; i++) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (joysticks[i].fd == -1) continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 		input_event events[32]; | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 		Joystick* joy = &joysticks[i]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 		int len; | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 		while ((len = read(joy->fd, events, (sizeof events))) > 0) { | 
					
						
							|  |  |  | 			len /= sizeof(events[0]); | 
					
						
							|  |  |  | 			for (int j = 0; j < len; j++) { | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 				input_event &ev = events[j]; | 
					
						
							| 
									
										
										
										
											2016-02-28 20:20:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				// ev may be tainted and out of MAX_KEY range, which will cause
 | 
					
						
							|  |  |  | 				// joy->key_map[ev.code] to crash
 | 
					
						
							|  |  |  | 				if( ev.code < 0 || ev.code >= MAX_KEY ) | 
					
						
							|  |  |  | 					return p_event_id; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 				switch (ev.type) { | 
					
						
							|  |  |  | 				case EV_KEY: | 
					
						
							|  |  |  | 					p_event_id = input->joy_button(p_event_id, i, joy->key_map[ev.code], ev.value); | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 					break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 23:04:57 +01:00
										 |  |  | 				case EV_ABS: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					switch (ev.code) { | 
					
						
							|  |  |  | 					case ABS_HAT0X: | 
					
						
							|  |  |  | 						if (ev.value != 0) { | 
					
						
							|  |  |  | 							if (ev.value < 0) joy->dpad |= InputDefault::HAT_MASK_LEFT; | 
					
						
							|  |  |  | 							else              joy->dpad |= InputDefault::HAT_MASK_RIGHT; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						else joy->dpad &= ~(InputDefault::HAT_MASK_LEFT | InputDefault::HAT_MASK_RIGHT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						p_event_id = input->joy_hat(p_event_id, i, joy->dpad); | 
					
						
							|  |  |  | 						break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					case ABS_HAT0Y: | 
					
						
							|  |  |  | 						if (ev.value != 0) { | 
					
						
							|  |  |  | 							if (ev.value < 0) joy->dpad |= InputDefault::HAT_MASK_UP; | 
					
						
							|  |  |  | 							else              joy->dpad |= InputDefault::HAT_MASK_DOWN; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						else joy->dpad &= ~(InputDefault::HAT_MASK_UP | InputDefault::HAT_MASK_DOWN); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						p_event_id = input->joy_hat(p_event_id, i, joy->dpad); | 
					
						
							|  |  |  | 						break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					default: | 
					
						
							|  |  |  | 						if (joy->abs_map[ev.code] != -1 && joy->abs_info[ev.code]) { | 
					
						
							|  |  |  | 							InputDefault::JoyAxis value = axis_correct(joy->abs_info[ev.code], ev.value); | 
					
						
							|  |  |  | 							joy->curr_axis[joy->abs_map[ev.code]] = value; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						break; | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 					} | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-01-03 02:24:43 +01:00
										 |  |  | 		for (int j = 0; j < MAX_ABS; j++) { | 
					
						
							|  |  |  | 			int index = joy->abs_map[j]; | 
					
						
							|  |  |  | 			if (index != -1) { | 
					
						
							|  |  |  | 				p_event_id = input->joy_axis(p_event_id, i, index, joy->curr_axis[index]); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-02-14 15:13:11 +01:00
										 |  |  | 		if (len == 0 || (len < 0 && errno != EAGAIN)) { | 
					
						
							|  |  |  | 			close_joystick(i); | 
					
						
							|  |  |  | 		}; | 
					
						
							| 
									
										
										
										
											2016-06-15 07:25:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (joy->force_feedback) { | 
					
						
							|  |  |  | 			uint64_t timestamp = input->get_joy_vibration_timestamp(i); | 
					
						
							|  |  |  | 			if (timestamp > joy->ff_effect_timestamp) { | 
					
						
							|  |  |  | 				Vector2 strength = input->get_joy_vibration_strength(i); | 
					
						
							|  |  |  | 				float duration = input->get_joy_vibration_duration(i); | 
					
						
							|  |  |  | 				if (strength.x == 0 && strength.y == 0) { | 
					
						
							|  |  |  | 					joystick_vibration_stop(i, timestamp); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					joystick_vibration_start(i, strength.x, strength.y, duration, timestamp); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-12-18 19:15:32 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	joy_mutex->unlock(); | 
					
						
							|  |  |  | 	return p_event_id; | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 |