2014-06-05 23:20:36 -04:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2014 Red Hat, Inc.
|
|
|
|
|
* Copyright © 2014 Stephen Chandler "Lyude" Paul
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and
|
|
|
|
|
* its documentation for any purpose is hereby granted without fee, provided
|
|
|
|
|
* that the above copyright notice appear in all copies and that both that
|
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
|
|
|
|
* documentation, and that the name of the copyright holders not be used in
|
|
|
|
|
* advertising or publicity pertaining to distribution of the software
|
|
|
|
|
* without specific, written prior permission. The copyright holders make
|
|
|
|
|
* no representations about the suitability of this software for any
|
|
|
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
|
|
|
*
|
|
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
|
|
|
|
|
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
|
* FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
|
* SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
|
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
|
|
|
|
|
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
#include "config.h"
|
2015-12-01 11:07:57 +10:00
|
|
|
#include "libinput-version.h"
|
2014-06-05 23:20:36 -04:00
|
|
|
#include "evdev-tablet.h"
|
|
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2015-02-19 12:56:43 +10:00
|
|
|
#if HAVE_LIBWACOM
|
|
|
|
|
#include <libwacom/libwacom.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2014-06-17 18:03:26 -04:00
|
|
|
#define tablet_set_status(tablet_,s_) (tablet_)->status |= (s_)
|
|
|
|
|
#define tablet_unset_status(tablet_,s_) (tablet_)->status &= ~(s_)
|
2014-06-05 23:20:36 -04:00
|
|
|
#define tablet_has_status(tablet_,s_) (!!((tablet_)->status & (s_)))
|
|
|
|
|
|
2015-02-19 15:46:29 +10:00
|
|
|
static inline void
|
|
|
|
|
tablet_get_pressed_buttons(struct tablet_dispatch *tablet,
|
|
|
|
|
unsigned char *buttons,
|
|
|
|
|
unsigned int buttons_len)
|
|
|
|
|
{
|
|
|
|
|
size_t i;
|
|
|
|
|
const struct button_state *state = &tablet->button_state,
|
|
|
|
|
*prev_state = &tablet->prev_button_state;
|
|
|
|
|
|
|
|
|
|
assert(buttons_len <= ARRAY_LENGTH(state->stylus_buttons));
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < buttons_len; i++)
|
|
|
|
|
buttons[i] = state->stylus_buttons[i] &
|
|
|
|
|
~(prev_state->stylus_buttons[i]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
tablet_get_released_buttons(struct tablet_dispatch *tablet,
|
|
|
|
|
unsigned char *buttons,
|
|
|
|
|
unsigned int buttons_len)
|
|
|
|
|
{
|
|
|
|
|
size_t i;
|
|
|
|
|
const struct button_state *state = &tablet->button_state,
|
|
|
|
|
*prev_state = &tablet->prev_button_state;
|
|
|
|
|
|
|
|
|
|
assert(buttons_len <= ARRAY_LENGTH(state->stylus_buttons));
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < buttons_len; i++)
|
|
|
|
|
buttons[i] = prev_state->stylus_buttons[i] &
|
|
|
|
|
~(state->stylus_buttons[i]);
|
|
|
|
|
}
|
2014-06-10 23:14:41 -04:00
|
|
|
|
2015-02-16 16:25:39 +10:00
|
|
|
static int
|
|
|
|
|
tablet_device_has_axis(struct tablet_dispatch *tablet,
|
2015-11-16 15:35:40 +10:00
|
|
|
enum libinput_tablet_tool_axis axis)
|
2015-02-16 16:25:39 +10:00
|
|
|
{
|
2015-02-16 15:19:44 +10:00
|
|
|
struct libevdev *evdev = tablet->device->evdev;
|
|
|
|
|
bool has_axis = false;
|
2015-02-16 16:25:39 +10:00
|
|
|
unsigned int code;
|
|
|
|
|
|
2015-11-16 15:36:30 +10:00
|
|
|
if (axis == LIBINPUT_TABLET_TOOL_AXIS_ROTATION_Z) {
|
2015-02-16 15:19:44 +10:00
|
|
|
has_axis = (libevdev_has_event_code(evdev,
|
2015-06-29 14:20:20 +10:00
|
|
|
EV_KEY,
|
|
|
|
|
BTN_TOOL_MOUSE) &&
|
|
|
|
|
libevdev_has_event_code(evdev,
|
2015-02-16 15:19:44 +10:00
|
|
|
EV_ABS,
|
|
|
|
|
ABS_TILT_X) &&
|
|
|
|
|
libevdev_has_event_code(evdev,
|
|
|
|
|
EV_ABS,
|
|
|
|
|
ABS_TILT_Y));
|
2015-06-29 14:20:20 +10:00
|
|
|
code = axis_to_evcode(axis);
|
|
|
|
|
has_axis |= libevdev_has_event_code(evdev,
|
|
|
|
|
EV_ABS,
|
|
|
|
|
code);
|
2015-11-16 15:36:30 +10:00
|
|
|
} else if (axis == LIBINPUT_TABLET_TOOL_AXIS_REL_WHEEL) {
|
2015-02-20 11:41:06 +10:00
|
|
|
has_axis = libevdev_has_event_code(evdev,
|
|
|
|
|
EV_REL,
|
|
|
|
|
REL_WHEEL);
|
2015-02-16 15:19:44 +10:00
|
|
|
} else {
|
|
|
|
|
code = axis_to_evcode(axis);
|
|
|
|
|
has_axis = libevdev_has_event_code(evdev,
|
|
|
|
|
EV_ABS,
|
|
|
|
|
code);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return has_axis;
|
2015-02-16 16:25:39 +10:00
|
|
|
}
|
|
|
|
|
|
2014-06-05 23:20:36 -04:00
|
|
|
static void
|
|
|
|
|
tablet_process_absolute(struct tablet_dispatch *tablet,
|
|
|
|
|
struct evdev_device *device,
|
|
|
|
|
struct input_event *e,
|
2015-08-04 12:37:40 +10:00
|
|
|
uint64_t time)
|
2014-06-05 23:20:36 -04:00
|
|
|
{
|
2015-11-16 15:35:40 +10:00
|
|
|
enum libinput_tablet_tool_axis axis;
|
2014-06-05 23:20:36 -04:00
|
|
|
|
|
|
|
|
switch (e->code) {
|
|
|
|
|
case ABS_X:
|
|
|
|
|
case ABS_Y:
|
2015-02-18 11:40:55 +10:00
|
|
|
case ABS_Z:
|
2014-06-06 20:31:38 -04:00
|
|
|
case ABS_PRESSURE:
|
|
|
|
|
case ABS_TILT_X:
|
|
|
|
|
case ABS_TILT_Y:
|
|
|
|
|
case ABS_DISTANCE:
|
2015-02-17 13:04:06 +10:00
|
|
|
case ABS_WHEEL:
|
2014-06-05 23:20:36 -04:00
|
|
|
axis = evcode_to_axis(e->code);
|
2015-11-16 15:36:30 +10:00
|
|
|
if (axis == LIBINPUT_TABLET_TOOL_AXIS_NONE) {
|
2014-06-25 14:43:45 +10:00
|
|
|
log_bug_libinput(device->base.seat->libinput,
|
|
|
|
|
"Invalid ABS event code %#x\n",
|
2014-06-05 23:20:36 -04:00
|
|
|
e->code);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set_bit(tablet->changed_axes, axis);
|
|
|
|
|
tablet_set_status(tablet, TABLET_AXES_UPDATED);
|
|
|
|
|
break;
|
2015-02-19 14:56:34 +10:00
|
|
|
/* tool_id is the identifier for the tool we can use in libwacom
|
|
|
|
|
* to identify it (if we have one anyway) */
|
|
|
|
|
case ABS_MISC:
|
|
|
|
|
tablet->current_tool_id = e->value;
|
|
|
|
|
break;
|
2015-02-16 15:05:00 +10:00
|
|
|
/* Intuos 3 strip data. Should only happen on the Pad device, not on
|
|
|
|
|
the Pen device. */
|
|
|
|
|
case ABS_RX:
|
|
|
|
|
case ABS_RY:
|
|
|
|
|
/* Only on the 4D mouse (Intuos2), obsolete */
|
|
|
|
|
case ABS_RZ:
|
|
|
|
|
/* Only on the 4D mouse (Intuos2), obsolete.
|
|
|
|
|
The 24HD sends ABS_THROTTLE on the Pad device for the second
|
|
|
|
|
wheel but we shouldn't get here on kernel >= 3.17.
|
|
|
|
|
*/
|
|
|
|
|
case ABS_THROTTLE:
|
2014-06-05 23:20:36 -04:00
|
|
|
default:
|
2014-06-25 14:43:45 +10:00
|
|
|
log_info(device->base.seat->libinput,
|
|
|
|
|
"Unhandled ABS event code %#x\n", e->code);
|
2014-06-05 23:20:36 -04:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-19 01:18:07 -04:00
|
|
|
static void
|
|
|
|
|
tablet_mark_all_axes_changed(struct tablet_dispatch *tablet,
|
|
|
|
|
struct evdev_device *device)
|
|
|
|
|
{
|
2015-11-16 15:35:40 +10:00
|
|
|
enum libinput_tablet_tool_axis a;
|
2014-06-19 01:18:07 -04:00
|
|
|
|
2015-11-16 15:36:30 +10:00
|
|
|
for (a = LIBINPUT_TABLET_TOOL_AXIS_X; a <= LIBINPUT_TABLET_TOOL_AXIS_MAX; a++) {
|
2015-02-16 16:25:39 +10:00
|
|
|
if (tablet_device_has_axis(tablet, a))
|
2014-06-19 01:18:07 -04:00
|
|
|
set_bit(tablet->changed_axes, a);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tablet_set_status(tablet, TABLET_AXES_UPDATED);
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-16 22:48:40 -05:00
|
|
|
static void
|
|
|
|
|
tablet_change_to_left_handed(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct tablet_dispatch *tablet =
|
|
|
|
|
(struct tablet_dispatch*)device->dispatch;
|
|
|
|
|
|
|
|
|
|
if (device->left_handed.enabled == device->left_handed.want_enabled)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!tablet_has_status(tablet, TABLET_TOOL_OUT_OF_PROXIMITY))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
device->left_handed.enabled = device->left_handed.want_enabled;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-10 16:48:19 -04:00
|
|
|
static void
|
|
|
|
|
tablet_update_tool(struct tablet_dispatch *tablet,
|
2014-06-19 01:18:08 -04:00
|
|
|
struct evdev_device *device,
|
2015-11-16 15:39:07 +10:00
|
|
|
enum libinput_tablet_tool_type tool,
|
2014-06-10 16:48:19 -04:00
|
|
|
bool enabled)
|
|
|
|
|
{
|
|
|
|
|
assert(tool != LIBINPUT_TOOL_NONE);
|
|
|
|
|
|
2014-06-19 01:18:06 -04:00
|
|
|
if (enabled) {
|
2014-06-26 21:31:52 -04:00
|
|
|
tablet->current_tool_type = tool;
|
2014-06-19 01:18:08 -04:00
|
|
|
tablet_mark_all_axes_changed(tablet, device);
|
2014-06-26 21:31:51 -04:00
|
|
|
tablet_set_status(tablet, TABLET_TOOL_ENTERING_PROXIMITY);
|
2014-06-19 01:18:06 -04:00
|
|
|
tablet_unset_status(tablet, TABLET_TOOL_OUT_OF_PROXIMITY);
|
2014-06-10 16:48:19 -04:00
|
|
|
}
|
2015-02-26 13:55:08 +10:00
|
|
|
else if (!tablet_has_status(tablet, TABLET_TOOL_OUT_OF_PROXIMITY))
|
2014-06-26 18:02:48 -04:00
|
|
|
tablet_set_status(tablet, TABLET_TOOL_LEAVING_PROXIMITY);
|
2014-06-10 16:48:19 -04:00
|
|
|
}
|
|
|
|
|
|
2014-06-06 20:31:38 -04:00
|
|
|
static inline double
|
2015-12-01 11:07:57 +10:00
|
|
|
normalize_dist_slider(const struct input_absinfo *absinfo)
|
2015-02-17 12:24:04 +10:00
|
|
|
{
|
2014-12-05 15:13:34 -08:00
|
|
|
double range = absinfo->maximum - absinfo->minimum;
|
2014-10-08 14:53:21 -07:00
|
|
|
double value = (absinfo->value - absinfo->minimum) / range;
|
2014-06-06 20:31:38 -04:00
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-01 11:07:57 +10:00
|
|
|
static inline double
|
|
|
|
|
normalize_pressure(const struct input_absinfo *absinfo,
|
|
|
|
|
struct libinput_tablet_tool *tool)
|
|
|
|
|
{
|
|
|
|
|
double range = absinfo->maximum - absinfo->minimum;
|
|
|
|
|
int offset = tool->has_pressure_offset ?
|
|
|
|
|
tool->pressure_offset : 0;
|
|
|
|
|
double value = (absinfo->value - offset - absinfo->minimum) / range;
|
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-06 20:31:38 -04:00
|
|
|
static inline double
|
2015-02-17 12:24:04 +10:00
|
|
|
normalize_tilt(const struct input_absinfo *absinfo)
|
|
|
|
|
{
|
2014-12-05 15:13:34 -08:00
|
|
|
double range = absinfo->maximum - absinfo->minimum;
|
2014-10-08 14:53:21 -07:00
|
|
|
double value = (absinfo->value - absinfo->minimum) / range;
|
2014-06-06 20:31:38 -04:00
|
|
|
|
|
|
|
|
/* Map to the (-1, 1) range */
|
|
|
|
|
return (value * 2) - 1;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-16 22:48:40 -05:00
|
|
|
static inline int32_t
|
|
|
|
|
invert_axis(const struct input_absinfo *absinfo)
|
|
|
|
|
{
|
|
|
|
|
return absinfo->maximum - (absinfo->value - absinfo->minimum);
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-16 15:19:44 +10:00
|
|
|
static void
|
|
|
|
|
convert_tilt_to_rotation(struct tablet_dispatch *tablet)
|
|
|
|
|
{
|
|
|
|
|
const int offset = 5;
|
|
|
|
|
double x, y;
|
|
|
|
|
double angle = 0.0;
|
|
|
|
|
|
|
|
|
|
/* Wacom Intuos 4, 5, Pro mouse calculates rotation from the x/y tilt
|
|
|
|
|
values. The device has a 175 degree CCW hardware offset but since we use
|
|
|
|
|
atan2 the effective offset is just 5 degrees.
|
|
|
|
|
*/
|
2015-11-16 15:36:30 +10:00
|
|
|
x = tablet->axes[LIBINPUT_TABLET_TOOL_AXIS_TILT_X];
|
|
|
|
|
y = tablet->axes[LIBINPUT_TABLET_TOOL_AXIS_TILT_Y];
|
|
|
|
|
clear_bit(tablet->changed_axes, LIBINPUT_TABLET_TOOL_AXIS_TILT_X);
|
|
|
|
|
clear_bit(tablet->changed_axes, LIBINPUT_TABLET_TOOL_AXIS_TILT_Y);
|
2015-02-16 15:19:44 +10:00
|
|
|
|
|
|
|
|
/* atan2 is CCW, we want CW -> negate x */
|
|
|
|
|
if (x || y)
|
|
|
|
|
angle = ((180.0 * atan2(-x, y)) / M_PI);
|
|
|
|
|
|
|
|
|
|
angle = fmod(360 + angle - offset, 360);
|
|
|
|
|
|
2015-11-16 15:36:30 +10:00
|
|
|
tablet->axes[LIBINPUT_TABLET_TOOL_AXIS_ROTATION_Z] = angle;
|
|
|
|
|
set_bit(tablet->changed_axes, LIBINPUT_TABLET_TOOL_AXIS_ROTATION_Z);
|
2015-02-16 15:19:44 +10:00
|
|
|
}
|
|
|
|
|
|
2015-02-18 11:40:55 +10:00
|
|
|
static double
|
|
|
|
|
convert_to_degrees(const struct input_absinfo *absinfo, double offset)
|
|
|
|
|
{
|
|
|
|
|
/* range is [0, 360[, i.e. range + 1 */
|
|
|
|
|
double range = absinfo->maximum - absinfo->minimum + 1;
|
|
|
|
|
double value = (absinfo->value - absinfo->minimum) / range;
|
|
|
|
|
|
|
|
|
|
return fmod(value * 360.0 + offset, 360.0);
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-20 11:41:06 +10:00
|
|
|
static inline double
|
|
|
|
|
normalize_wheel(struct tablet_dispatch *tablet,
|
|
|
|
|
int value)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *device = tablet->device;
|
|
|
|
|
|
|
|
|
|
return value * device->scroll.wheel_click_angle;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-20 12:03:52 +10:00
|
|
|
static inline double
|
|
|
|
|
guess_wheel_delta(double current, double old)
|
|
|
|
|
{
|
|
|
|
|
double d1, d2, d3;
|
|
|
|
|
|
|
|
|
|
d1 = current - old;
|
|
|
|
|
d2 = (current + 360.0) - old;
|
|
|
|
|
d3 = current - (old + 360.0);
|
|
|
|
|
|
|
|
|
|
if (fabs(d2) < fabs(d1))
|
|
|
|
|
d1 = d2;
|
|
|
|
|
|
|
|
|
|
if (fabs(d3) < fabs(d1))
|
|
|
|
|
d1 = d3;
|
|
|
|
|
|
|
|
|
|
return d1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline double
|
2015-11-16 15:35:40 +10:00
|
|
|
get_delta(enum libinput_tablet_tool_axis axis, double current, double old)
|
2015-02-20 12:03:52 +10:00
|
|
|
{
|
|
|
|
|
double delta = 0;
|
|
|
|
|
|
|
|
|
|
switch (axis) {
|
2015-11-16 15:36:30 +10:00
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_X:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_Y:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_DISTANCE:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_PRESSURE:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_SLIDER:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_TILT_X:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_TILT_Y:
|
2015-02-20 12:03:52 +10:00
|
|
|
delta = current - old;
|
|
|
|
|
break;
|
2015-11-16 15:36:30 +10:00
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_ROTATION_Z:
|
2015-02-20 12:03:52 +10:00
|
|
|
delta = guess_wheel_delta(current, old);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort();
|
|
|
|
|
}
|
|
|
|
|
return delta;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-05 23:20:36 -04:00
|
|
|
static void
|
|
|
|
|
tablet_check_notify_axes(struct tablet_dispatch *tablet,
|
|
|
|
|
struct evdev_device *device,
|
2015-08-04 12:37:40 +10:00
|
|
|
uint64_t time,
|
2015-11-16 15:34:19 +10:00
|
|
|
struct libinput_tablet_tool *tool)
|
2014-06-05 23:20:36 -04:00
|
|
|
{
|
|
|
|
|
struct libinput_device *base = &device->base;
|
|
|
|
|
bool axis_update_needed = false;
|
|
|
|
|
int a;
|
2015-11-16 15:36:30 +10:00
|
|
|
double axes[LIBINPUT_TABLET_TOOL_AXIS_MAX + 1] = {0};
|
|
|
|
|
double deltas[LIBINPUT_TABLET_TOOL_AXIS_MAX + 1] = {0};
|
|
|
|
|
double deltas_discrete[LIBINPUT_TABLET_TOOL_AXIS_MAX + 1] = {0};
|
2015-02-20 12:03:52 +10:00
|
|
|
double oldval;
|
2015-12-01 14:05:16 +10:00
|
|
|
struct device_coords point, old_point;
|
|
|
|
|
const struct input_absinfo *absinfo;
|
2014-06-05 23:20:36 -04:00
|
|
|
|
2015-12-01 14:05:16 +10:00
|
|
|
/* x/y are special for left-handed and calibration */
|
|
|
|
|
a = LIBINPUT_TABLET_TOOL_AXIS_X;
|
|
|
|
|
old_point.x = tablet->axes[a];
|
|
|
|
|
if (bit_is_set(tablet->changed_axes, a)) {
|
|
|
|
|
absinfo = libevdev_get_abs_info(device->evdev,
|
|
|
|
|
axis_to_evcode(a));
|
|
|
|
|
|
|
|
|
|
axis_update_needed = true;
|
|
|
|
|
if (device->left_handed.enabled)
|
|
|
|
|
tablet->axes[a] = invert_axis(absinfo);
|
|
|
|
|
else
|
|
|
|
|
tablet->axes[a] = absinfo->value;
|
|
|
|
|
}
|
|
|
|
|
point.x = tablet->axes[a];
|
|
|
|
|
|
|
|
|
|
a = LIBINPUT_TABLET_TOOL_AXIS_Y;
|
|
|
|
|
old_point.y = tablet->axes[a];
|
|
|
|
|
if (bit_is_set(tablet->changed_axes, a)) {
|
|
|
|
|
absinfo = libevdev_get_abs_info(device->evdev,
|
|
|
|
|
axis_to_evcode(a));
|
|
|
|
|
axis_update_needed = true;
|
2014-06-05 23:20:36 -04:00
|
|
|
|
2015-12-01 14:05:16 +10:00
|
|
|
if (device->left_handed.enabled)
|
|
|
|
|
tablet->axes[a] = invert_axis(absinfo);
|
|
|
|
|
else
|
|
|
|
|
tablet->axes[a] = absinfo->value;
|
|
|
|
|
}
|
|
|
|
|
point.y = tablet->axes[a];
|
|
|
|
|
|
|
|
|
|
evdev_transform_absolute(device, &point);
|
|
|
|
|
evdev_transform_absolute(device, &old_point);
|
|
|
|
|
|
|
|
|
|
axes[LIBINPUT_TABLET_TOOL_AXIS_X] = point.x;
|
|
|
|
|
axes[LIBINPUT_TABLET_TOOL_AXIS_Y] = point.y;
|
|
|
|
|
deltas[LIBINPUT_TABLET_TOOL_AXIS_X] = point.x - old_point.x;
|
|
|
|
|
deltas[LIBINPUT_TABLET_TOOL_AXIS_Y] = point.y - old_point.y;
|
|
|
|
|
|
|
|
|
|
for (a = LIBINPUT_TABLET_TOOL_AXIS_DISTANCE; a <= LIBINPUT_TABLET_TOOL_AXIS_MAX; a++) {
|
2015-02-16 15:19:44 +10:00
|
|
|
if (!bit_is_set(tablet->changed_axes, a)) {
|
|
|
|
|
axes[a] = tablet->axes[a];
|
2014-06-05 23:20:36 -04:00
|
|
|
continue;
|
2015-02-16 15:19:44 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
axis_update_needed = true;
|
2015-02-20 12:03:52 +10:00
|
|
|
oldval = tablet->axes[a];
|
2015-02-16 15:19:44 +10:00
|
|
|
|
|
|
|
|
/* ROTATION_Z is higher than TILT_X/Y so we know that the
|
|
|
|
|
tilt axes are already normalized and set */
|
2015-11-16 15:36:30 +10:00
|
|
|
if (a == LIBINPUT_TABLET_TOOL_AXIS_ROTATION_Z &&
|
2015-11-16 15:40:43 +10:00
|
|
|
(tablet->current_tool_type == LIBINPUT_TABLET_TOOL_TYPE_MOUSE ||
|
|
|
|
|
tablet->current_tool_type == LIBINPUT_TABLET_TOOL_TYPE_LENS)) {
|
2015-02-18 11:40:55 +10:00
|
|
|
convert_tilt_to_rotation(tablet);
|
2015-11-16 15:36:30 +10:00
|
|
|
axes[LIBINPUT_TABLET_TOOL_AXIS_TILT_X] = 0;
|
|
|
|
|
axes[LIBINPUT_TABLET_TOOL_AXIS_TILT_Y] = 0;
|
2015-02-18 11:40:55 +10:00
|
|
|
axes[a] = tablet->axes[a];
|
2015-02-20 12:03:52 +10:00
|
|
|
deltas[a] = get_delta(a, tablet->axes[a], oldval);
|
2015-02-16 15:19:44 +10:00
|
|
|
continue;
|
2015-11-16 15:36:30 +10:00
|
|
|
} else if (a == LIBINPUT_TABLET_TOOL_AXIS_REL_WHEEL) {
|
2015-02-20 14:34:31 +10:00
|
|
|
deltas_discrete[a] = tablet->deltas[a];
|
2015-02-20 12:03:52 +10:00
|
|
|
deltas[a] = normalize_wheel(tablet,
|
|
|
|
|
tablet->deltas[a]);
|
|
|
|
|
axes[a] = 0;
|
2015-02-20 11:41:06 +10:00
|
|
|
continue;
|
2015-02-16 15:19:44 +10:00
|
|
|
}
|
2014-06-05 23:20:36 -04:00
|
|
|
|
|
|
|
|
absinfo = libevdev_get_abs_info(device->evdev,
|
|
|
|
|
axis_to_evcode(a));
|
|
|
|
|
|
|
|
|
|
switch (a) {
|
2015-11-16 15:36:30 +10:00
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_PRESSURE:
|
2015-12-01 11:07:57 +10:00
|
|
|
tablet->axes[a] = normalize_pressure(absinfo, tool);
|
|
|
|
|
break;
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_DISTANCE:
|
2015-11-16 15:36:30 +10:00
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_SLIDER:
|
2015-12-01 11:07:57 +10:00
|
|
|
tablet->axes[a] = normalize_dist_slider(absinfo);
|
2014-06-06 20:31:38 -04:00
|
|
|
break;
|
2015-11-16 15:36:30 +10:00
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_TILT_X:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_TILT_Y:
|
2014-06-06 20:31:38 -04:00
|
|
|
tablet->axes[a] = normalize_tilt(absinfo);
|
|
|
|
|
break;
|
2015-11-16 15:36:30 +10:00
|
|
|
case LIBINPUT_TABLET_TOOL_AXIS_ROTATION_Z:
|
2015-02-18 11:40:55 +10:00
|
|
|
/* artpen has 0 with buttons pointing east */
|
|
|
|
|
tablet->axes[a] = convert_to_degrees(absinfo, 90);
|
|
|
|
|
break;
|
2014-06-05 23:20:36 -04:00
|
|
|
default:
|
2014-06-25 14:43:45 +10:00
|
|
|
log_bug_libinput(device->base.seat->libinput,
|
|
|
|
|
"Invalid axis update: %d\n", a);
|
2014-06-05 23:20:36 -04:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-16 15:19:44 +10:00
|
|
|
axes[a] = tablet->axes[a];
|
2015-02-20 12:03:52 +10:00
|
|
|
deltas[a] = get_delta(a, tablet->axes[a], oldval);
|
2014-06-05 23:20:36 -04:00
|
|
|
}
|
|
|
|
|
|
2015-02-16 22:48:41 -05:00
|
|
|
/* We need to make sure that we check that the tool is not out of
|
|
|
|
|
* proximity before we send any axis updates. This is because many
|
|
|
|
|
* tablets will send axis events with incorrect values if the tablet
|
|
|
|
|
* tool is close enough so that the tablet can partially detect that
|
|
|
|
|
* it's there, but can't properly receive any data from the tool. */
|
2014-06-19 01:18:06 -04:00
|
|
|
if (axis_update_needed &&
|
2014-06-26 18:02:48 -04:00
|
|
|
!tablet_has_status(tablet, TABLET_TOOL_OUT_OF_PROXIMITY) &&
|
2015-02-16 22:48:44 -05:00
|
|
|
!tablet_has_status(tablet, TABLET_TOOL_LEAVING_PROXIMITY)) {
|
2015-11-30 12:55:06 +10:00
|
|
|
if (tablet_has_status(tablet,
|
|
|
|
|
TABLET_TOOL_ENTERING_PROXIMITY)) {
|
2015-02-16 22:48:44 -05:00
|
|
|
tablet_notify_proximity(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
tool,
|
2015-11-16 15:42:31 +10:00
|
|
|
LIBINPUT_TABLET_TOOL_PROXIMITY_IN,
|
2015-02-16 22:48:44 -05:00
|
|
|
tablet->changed_axes,
|
2015-02-16 15:19:44 +10:00
|
|
|
axes);
|
2015-11-30 12:55:06 +10:00
|
|
|
} else {
|
2015-11-16 15:43:41 +10:00
|
|
|
enum libinput_tablet_tool_tip_state tip_state;
|
2015-11-12 08:01:43 +10:00
|
|
|
|
2015-11-30 13:47:08 +10:00
|
|
|
if (tablet_has_status(tablet,
|
|
|
|
|
TABLET_TOOL_IN_CONTACT))
|
|
|
|
|
tip_state = LIBINPUT_TABLET_TOOL_TIP_DOWN;
|
|
|
|
|
else
|
|
|
|
|
tip_state = LIBINPUT_TABLET_TOOL_TIP_UP;
|
|
|
|
|
|
2015-02-16 22:48:44 -05:00
|
|
|
tablet_notify_axis(base,
|
|
|
|
|
time,
|
|
|
|
|
tool,
|
2015-11-12 08:01:43 +10:00
|
|
|
tip_state,
|
2015-02-16 22:48:44 -05:00
|
|
|
tablet->changed_axes,
|
2015-02-20 12:03:52 +10:00
|
|
|
axes,
|
2015-02-20 14:34:31 +10:00
|
|
|
deltas,
|
|
|
|
|
deltas_discrete);
|
2015-11-12 08:01:43 +10:00
|
|
|
}
|
2015-02-16 22:48:44 -05:00
|
|
|
}
|
2014-06-19 01:18:06 -04:00
|
|
|
|
|
|
|
|
memset(tablet->changed_axes, 0, sizeof(tablet->changed_axes));
|
2014-06-05 23:20:36 -04:00
|
|
|
}
|
|
|
|
|
|
2014-06-10 23:14:41 -04:00
|
|
|
static void
|
|
|
|
|
tablet_update_button(struct tablet_dispatch *tablet,
|
|
|
|
|
uint32_t evcode,
|
|
|
|
|
uint32_t enable)
|
|
|
|
|
{
|
2015-02-19 17:18:58 +10:00
|
|
|
switch (evcode) {
|
2015-11-11 14:03:05 +10:00
|
|
|
case BTN_TOUCH:
|
|
|
|
|
return;
|
2015-02-19 17:18:58 +10:00
|
|
|
case BTN_LEFT:
|
|
|
|
|
case BTN_RIGHT:
|
|
|
|
|
case BTN_MIDDLE:
|
|
|
|
|
case BTN_SIDE:
|
|
|
|
|
case BTN_EXTRA:
|
|
|
|
|
case BTN_FORWARD:
|
|
|
|
|
case BTN_BACK:
|
|
|
|
|
case BTN_TASK:
|
|
|
|
|
case BTN_STYLUS:
|
|
|
|
|
case BTN_STYLUS2:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2014-06-25 14:43:45 +10:00
|
|
|
log_info(tablet->device->base.seat->libinput,
|
|
|
|
|
"Unhandled button %s (%#x)\n",
|
2014-06-10 23:14:41 -04:00
|
|
|
libevdev_event_code_get_name(EV_KEY, evcode), evcode);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (enable) {
|
2015-02-19 15:46:29 +10:00
|
|
|
set_bit(tablet->button_state.stylus_buttons, evcode);
|
2014-06-10 23:14:41 -04:00
|
|
|
tablet_set_status(tablet, TABLET_BUTTONS_PRESSED);
|
|
|
|
|
} else {
|
2015-02-19 15:46:29 +10:00
|
|
|
clear_bit(tablet->button_state.stylus_buttons, evcode);
|
2014-06-10 23:14:41 -04:00
|
|
|
tablet_set_status(tablet, TABLET_BUTTONS_RELEASED);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-16 15:39:07 +10:00
|
|
|
static inline enum libinput_tablet_tool_type
|
2015-02-19 11:00:27 +10:00
|
|
|
tablet_evcode_to_tool(int code)
|
|
|
|
|
{
|
2015-11-16 15:39:07 +10:00
|
|
|
enum libinput_tablet_tool_type type;
|
2015-02-19 11:00:27 +10:00
|
|
|
|
|
|
|
|
switch (code) {
|
2015-11-16 15:40:43 +10:00
|
|
|
case BTN_TOOL_PEN: type = LIBINPUT_TABLET_TOOL_TYPE_PEN; break;
|
|
|
|
|
case BTN_TOOL_RUBBER: type = LIBINPUT_TABLET_TOOL_TYPE_ERASER; break;
|
|
|
|
|
case BTN_TOOL_BRUSH: type = LIBINPUT_TABLET_TOOL_TYPE_BRUSH; break;
|
|
|
|
|
case BTN_TOOL_PENCIL: type = LIBINPUT_TABLET_TOOL_TYPE_PENCIL; break;
|
|
|
|
|
case BTN_TOOL_AIRBRUSH: type = LIBINPUT_TABLET_TOOL_TYPE_AIRBRUSH; break;
|
|
|
|
|
case BTN_TOOL_MOUSE: type = LIBINPUT_TABLET_TOOL_TYPE_MOUSE; break;
|
|
|
|
|
case BTN_TOOL_LENS: type = LIBINPUT_TABLET_TOOL_TYPE_LENS; break;
|
2015-02-19 11:00:27 +10:00
|
|
|
default:
|
|
|
|
|
abort();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return type;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-10 16:48:19 -04:00
|
|
|
static void
|
|
|
|
|
tablet_process_key(struct tablet_dispatch *tablet,
|
|
|
|
|
struct evdev_device *device,
|
|
|
|
|
struct input_event *e,
|
2015-08-04 12:37:40 +10:00
|
|
|
uint64_t time)
|
2014-06-10 16:48:19 -04:00
|
|
|
{
|
|
|
|
|
switch (e->code) {
|
2015-11-26 06:33:17 +10:00
|
|
|
case BTN_TOOL_FINGER:
|
|
|
|
|
log_bug_libinput(device->base.seat->libinput,
|
|
|
|
|
"Invalid tool 'finger' on tablet interface\n");
|
|
|
|
|
break;
|
2014-06-10 16:48:19 -04:00
|
|
|
case BTN_TOOL_PEN:
|
|
|
|
|
case BTN_TOOL_RUBBER:
|
|
|
|
|
case BTN_TOOL_BRUSH:
|
|
|
|
|
case BTN_TOOL_PENCIL:
|
|
|
|
|
case BTN_TOOL_AIRBRUSH:
|
|
|
|
|
case BTN_TOOL_MOUSE:
|
|
|
|
|
case BTN_TOOL_LENS:
|
2015-02-19 11:00:27 +10:00
|
|
|
tablet_update_tool(tablet,
|
|
|
|
|
device,
|
|
|
|
|
tablet_evcode_to_tool(e->code),
|
|
|
|
|
e->value);
|
2014-06-10 16:48:19 -04:00
|
|
|
break;
|
2014-06-10 23:14:41 -04:00
|
|
|
case BTN_TOUCH:
|
2014-06-06 20:31:38 -04:00
|
|
|
if (e->value)
|
2015-11-11 14:03:05 +10:00
|
|
|
tablet_set_status(tablet, TABLET_TOOL_ENTERING_CONTACT);
|
2014-06-06 20:31:38 -04:00
|
|
|
else
|
2015-11-11 14:03:05 +10:00
|
|
|
tablet_set_status(tablet, TABLET_TOOL_LEAVING_CONTACT);
|
|
|
|
|
break;
|
2015-02-19 17:18:58 +10:00
|
|
|
case BTN_LEFT:
|
|
|
|
|
case BTN_RIGHT:
|
|
|
|
|
case BTN_MIDDLE:
|
|
|
|
|
case BTN_SIDE:
|
|
|
|
|
case BTN_EXTRA:
|
|
|
|
|
case BTN_FORWARD:
|
|
|
|
|
case BTN_BACK:
|
|
|
|
|
case BTN_TASK:
|
2014-06-10 23:14:41 -04:00
|
|
|
case BTN_STYLUS:
|
|
|
|
|
case BTN_STYLUS2:
|
2014-06-10 16:48:19 -04:00
|
|
|
default:
|
2014-06-10 23:14:41 -04:00
|
|
|
tablet_update_button(tablet, e->code, e->value);
|
2014-06-10 16:48:19 -04:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-20 11:41:06 +10:00
|
|
|
static void
|
|
|
|
|
tablet_process_relative(struct tablet_dispatch *tablet,
|
|
|
|
|
struct evdev_device *device,
|
|
|
|
|
struct input_event *e,
|
2015-08-04 12:37:40 +10:00
|
|
|
uint64_t time)
|
2015-02-20 11:41:06 +10:00
|
|
|
{
|
2015-11-16 15:35:40 +10:00
|
|
|
enum libinput_tablet_tool_axis axis;
|
2015-03-02 16:43:32 +10:00
|
|
|
|
2015-02-20 11:41:06 +10:00
|
|
|
switch (e->code) {
|
|
|
|
|
case REL_WHEEL:
|
|
|
|
|
axis = rel_evcode_to_axis(e->code);
|
2015-11-16 15:36:30 +10:00
|
|
|
if (axis == LIBINPUT_TABLET_TOOL_AXIS_NONE) {
|
2015-02-20 11:41:06 +10:00
|
|
|
log_bug_libinput(device->base.seat->libinput,
|
|
|
|
|
"Invalid ABS event code %#x\n",
|
|
|
|
|
e->code);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
set_bit(tablet->changed_axes, axis);
|
|
|
|
|
tablet->deltas[axis] = -1 * e->value;
|
|
|
|
|
tablet_set_status(tablet, TABLET_AXES_UPDATED);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
log_info(tablet->device->base.seat->libinput,
|
|
|
|
|
"Unhandled relative axis %s (%#x)\n",
|
|
|
|
|
libevdev_event_code_get_name(EV_REL, e->code),
|
|
|
|
|
e->code);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-10 16:48:19 -04:00
|
|
|
static void
|
|
|
|
|
tablet_process_misc(struct tablet_dispatch *tablet,
|
|
|
|
|
struct evdev_device *device,
|
|
|
|
|
struct input_event *e,
|
2015-08-04 12:37:40 +10:00
|
|
|
uint64_t time)
|
2014-06-10 16:48:19 -04:00
|
|
|
{
|
|
|
|
|
switch (e->code) {
|
|
|
|
|
case MSC_SERIAL:
|
2014-06-26 21:31:52 -04:00
|
|
|
if (e->value != -1)
|
2014-06-10 16:48:19 -04:00
|
|
|
tablet->current_tool_serial = e->value;
|
2014-06-26 21:31:52 -04:00
|
|
|
|
2014-06-10 16:48:19 -04:00
|
|
|
break;
|
|
|
|
|
default:
|
2014-06-25 14:43:45 +10:00
|
|
|
log_info(device->base.seat->libinput,
|
|
|
|
|
"Unhandled MSC event code %s (%#x)\n",
|
2014-06-17 16:29:17 +10:00
|
|
|
libevdev_event_code_get_name(EV_MSC, e->code),
|
|
|
|
|
e->code);
|
2014-06-10 16:48:19 -04:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-18 12:03:34 +10:00
|
|
|
static inline void
|
|
|
|
|
copy_axis_cap(const struct tablet_dispatch *tablet,
|
2015-11-16 15:34:19 +10:00
|
|
|
struct libinput_tablet_tool *tool,
|
2015-11-16 15:35:40 +10:00
|
|
|
enum libinput_tablet_tool_axis axis)
|
2015-02-18 12:03:34 +10:00
|
|
|
{
|
|
|
|
|
if (bit_is_set(tablet->axis_caps, axis))
|
|
|
|
|
set_bit(tool->axis_caps, axis);
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-18 13:53:31 +10:00
|
|
|
static inline void
|
|
|
|
|
copy_button_cap(const struct tablet_dispatch *tablet,
|
2015-11-16 15:34:19 +10:00
|
|
|
struct libinput_tablet_tool *tool,
|
2015-02-18 13:53:31 +10:00
|
|
|
uint32_t button)
|
|
|
|
|
{
|
|
|
|
|
struct libevdev *evdev = tablet->device->evdev;
|
|
|
|
|
if (libevdev_has_event_code(evdev, EV_KEY, button))
|
|
|
|
|
set_bit(tool->buttons, button);
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-19 18:04:27 +10:00
|
|
|
static inline int
|
2015-02-18 13:53:31 +10:00
|
|
|
tool_set_bits_from_libwacom(const struct tablet_dispatch *tablet,
|
2015-11-16 15:34:19 +10:00
|
|
|
struct libinput_tablet_tool *tool)
|
2015-02-18 13:53:31 +10:00
|
|
|
{
|
2015-02-19 18:04:27 +10:00
|
|
|
int rc = 1;
|
|
|
|
|
|
2015-02-18 13:53:31 +10:00
|
|
|
#if HAVE_LIBWACOM
|
2015-03-02 16:46:19 +10:00
|
|
|
struct libinput *libinput = tablet->device->base.seat->libinput;
|
2015-02-18 13:53:31 +10:00
|
|
|
WacomDeviceDatabase *db;
|
|
|
|
|
const WacomStylus *s = NULL;
|
|
|
|
|
int code;
|
2015-02-19 18:04:27 +10:00
|
|
|
WacomStylusType type;
|
2015-03-10 12:40:14 +10:00
|
|
|
WacomAxisTypeFlags axes;
|
2015-02-18 13:53:31 +10:00
|
|
|
|
|
|
|
|
db = libwacom_database_new();
|
2015-03-02 16:46:19 +10:00
|
|
|
if (!db) {
|
|
|
|
|
log_info(libinput,
|
|
|
|
|
"Failed to initialize libwacom context.\n");
|
2015-02-18 13:53:31 +10:00
|
|
|
goto out;
|
2015-03-02 16:46:19 +10:00
|
|
|
}
|
2015-02-18 13:53:31 +10:00
|
|
|
s = libwacom_stylus_get_for_id(db, tool->tool_id);
|
|
|
|
|
if (!s)
|
|
|
|
|
goto out;
|
|
|
|
|
|
2015-02-19 18:04:27 +10:00
|
|
|
type = libwacom_stylus_get_type(s);
|
|
|
|
|
if (type == WSTYLUS_PUCK) {
|
2015-02-18 13:53:31 +10:00
|
|
|
for (code = BTN_LEFT;
|
|
|
|
|
code < BTN_LEFT + libwacom_stylus_get_num_buttons(s);
|
|
|
|
|
code++)
|
|
|
|
|
copy_button_cap(tablet, tool, code);
|
|
|
|
|
} else {
|
|
|
|
|
if (libwacom_stylus_get_num_buttons(s) >= 2)
|
|
|
|
|
copy_button_cap(tablet, tool, BTN_STYLUS2);
|
|
|
|
|
if (libwacom_stylus_get_num_buttons(s) >= 1)
|
|
|
|
|
copy_button_cap(tablet, tool, BTN_STYLUS);
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-10 12:40:14 +10:00
|
|
|
if (libwacom_stylus_has_wheel(s))
|
2015-11-16 15:36:30 +10:00
|
|
|
copy_axis_cap(tablet, tool, LIBINPUT_TABLET_TOOL_AXIS_REL_WHEEL);
|
2015-03-10 12:40:14 +10:00
|
|
|
|
|
|
|
|
axes = libwacom_stylus_get_axes(s);
|
|
|
|
|
|
|
|
|
|
if (axes & WACOM_AXIS_TYPE_TILT) {
|
|
|
|
|
/* tilt on the puck is converted to rotation */
|
|
|
|
|
if (type == WSTYLUS_PUCK) {
|
|
|
|
|
set_bit(tool->axis_caps,
|
2015-11-16 15:36:30 +10:00
|
|
|
LIBINPUT_TABLET_TOOL_AXIS_ROTATION_Z);
|
2015-03-10 12:40:14 +10:00
|
|
|
} else {
|
2015-02-20 11:41:06 +10:00
|
|
|
copy_axis_cap(tablet,
|
|
|
|
|
tool,
|
2015-11-16 15:36:30 +10:00
|
|
|
LIBINPUT_TABLET_TOOL_AXIS_TILT_X);
|
2015-03-10 12:40:14 +10:00
|
|
|
copy_axis_cap(tablet,
|
|
|
|
|
tool,
|
2015-11-16 15:36:30 +10:00
|
|
|
LIBINPUT_TABLET_TOOL_AXIS_TILT_Y);
|
2015-03-10 12:40:14 +10:00
|
|
|
}
|
2015-02-19 18:04:27 +10:00
|
|
|
}
|
2015-03-10 12:40:14 +10:00
|
|
|
if (axes & WACOM_AXIS_TYPE_ROTATION_Z)
|
2015-11-16 15:36:30 +10:00
|
|
|
copy_axis_cap(tablet, tool, LIBINPUT_TABLET_TOOL_AXIS_ROTATION_Z);
|
2015-03-10 12:40:14 +10:00
|
|
|
if (axes & WACOM_AXIS_TYPE_DISTANCE)
|
2015-11-16 15:36:30 +10:00
|
|
|
copy_axis_cap(tablet, tool, LIBINPUT_TABLET_TOOL_AXIS_DISTANCE);
|
2015-03-10 12:40:14 +10:00
|
|
|
if (axes & WACOM_AXIS_TYPE_SLIDER)
|
2015-11-16 15:36:30 +10:00
|
|
|
copy_axis_cap(tablet, tool, LIBINPUT_TABLET_TOOL_AXIS_SLIDER);
|
2015-03-10 12:40:14 +10:00
|
|
|
if (axes & WACOM_AXIS_TYPE_PRESSURE)
|
2015-11-16 15:36:30 +10:00
|
|
|
copy_axis_cap(tablet, tool, LIBINPUT_TABLET_TOOL_AXIS_PRESSURE);
|
2015-02-19 18:04:27 +10:00
|
|
|
|
|
|
|
|
rc = 0;
|
2015-02-18 13:53:31 +10:00
|
|
|
out:
|
|
|
|
|
if (db)
|
|
|
|
|
libwacom_database_destroy(db);
|
|
|
|
|
#endif
|
2015-02-19 18:04:27 +10:00
|
|
|
return rc;
|
2015-02-18 13:53:31 +10:00
|
|
|
}
|
|
|
|
|
|
2015-02-18 12:03:34 +10:00
|
|
|
static void
|
|
|
|
|
tool_set_bits(const struct tablet_dispatch *tablet,
|
2015-11-16 15:34:19 +10:00
|
|
|
struct libinput_tablet_tool *tool)
|
2015-02-18 12:03:34 +10:00
|
|
|
{
|
2015-11-16 15:39:07 +10:00
|
|
|
enum libinput_tablet_tool_type type = tool->type;
|
2015-02-18 12:03:34 +10:00
|
|
|
|
2015-02-19 18:04:27 +10:00
|
|
|
#if HAVE_LIBWACOM
|
|
|
|
|
if (tool_set_bits_from_libwacom(tablet, tool) == 0)
|
|
|
|
|
return;
|
|
|
|
|
#endif
|
|
|
|
|
/* If we don't have libwacom, we simply copy any axis we have on the
|
|
|
|
|
tablet onto the tool. Except we know that mice only have rotation
|
|
|
|
|
anyway.
|
2015-02-18 12:03:34 +10:00
|
|
|
*/
|
|
|
|
|
switch (type) {
|
2015-11-16 15:40:43 +10:00
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_PEN:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_ERASER:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_PENCIL:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_BRUSH:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_AIRBRUSH:
|
2015-11-16 15:36:30 +10:00
|
|
|
copy_axis_cap(tablet, tool, LIBINPUT_TABLET_TOOL_AXIS_PRESSURE);
|
|
|
|
|
copy_axis_cap(tablet, tool, LIBINPUT_TABLET_TOOL_AXIS_DISTANCE);
|
|
|
|
|
copy_axis_cap(tablet, tool, LIBINPUT_TABLET_TOOL_AXIS_TILT_X);
|
|
|
|
|
copy_axis_cap(tablet, tool, LIBINPUT_TABLET_TOOL_AXIS_TILT_Y);
|
|
|
|
|
copy_axis_cap(tablet, tool, LIBINPUT_TABLET_TOOL_AXIS_SLIDER);
|
|
|
|
|
copy_axis_cap(tablet, tool, LIBINPUT_TABLET_TOOL_AXIS_ROTATION_Z);
|
2015-02-18 12:03:34 +10:00
|
|
|
break;
|
2015-11-16 15:40:43 +10:00
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_MOUSE:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_LENS:
|
2015-11-16 15:36:30 +10:00
|
|
|
copy_axis_cap(tablet, tool, LIBINPUT_TABLET_TOOL_AXIS_ROTATION_Z);
|
|
|
|
|
copy_axis_cap(tablet, tool, LIBINPUT_TABLET_TOOL_AXIS_REL_WHEEL);
|
2015-02-16 15:19:44 +10:00
|
|
|
break;
|
2015-02-18 12:03:34 +10:00
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2015-02-18 13:53:31 +10:00
|
|
|
|
|
|
|
|
/* If we don't have libwacom, copy all pen-related ones from the
|
|
|
|
|
tablet vs all mouse-related ones */
|
|
|
|
|
switch (type) {
|
2015-11-16 15:40:43 +10:00
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_PEN:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_BRUSH:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_AIRBRUSH:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_PENCIL:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_ERASER:
|
2015-02-18 13:53:31 +10:00
|
|
|
copy_button_cap(tablet, tool, BTN_STYLUS);
|
|
|
|
|
copy_button_cap(tablet, tool, BTN_STYLUS2);
|
|
|
|
|
break;
|
2015-11-16 15:40:43 +10:00
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_MOUSE:
|
|
|
|
|
case LIBINPUT_TABLET_TOOL_TYPE_LENS:
|
2015-02-18 13:53:31 +10:00
|
|
|
copy_button_cap(tablet, tool, BTN_LEFT);
|
|
|
|
|
copy_button_cap(tablet, tool, BTN_MIDDLE);
|
|
|
|
|
copy_button_cap(tablet, tool, BTN_RIGHT);
|
|
|
|
|
copy_button_cap(tablet, tool, BTN_SIDE);
|
|
|
|
|
copy_button_cap(tablet, tool, BTN_EXTRA);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2015-02-18 12:03:34 +10:00
|
|
|
}
|
|
|
|
|
|
2015-11-16 15:34:19 +10:00
|
|
|
static struct libinput_tablet_tool *
|
2014-08-07 19:00:52 -04:00
|
|
|
tablet_get_tool(struct tablet_dispatch *tablet,
|
2015-11-16 15:39:07 +10:00
|
|
|
enum libinput_tablet_tool_type type,
|
2015-02-19 14:56:34 +10:00
|
|
|
uint32_t tool_id,
|
2014-06-26 21:31:50 -04:00
|
|
|
uint32_t serial)
|
2014-06-10 16:48:19 -04:00
|
|
|
{
|
2015-11-16 15:34:19 +10:00
|
|
|
struct libinput_tablet_tool *tool = NULL, *t;
|
2014-08-07 19:00:52 -04:00
|
|
|
struct list *tool_list;
|
2014-06-10 16:48:19 -04:00
|
|
|
|
2014-08-07 19:00:52 -04:00
|
|
|
if (serial) {
|
|
|
|
|
tool_list = &tablet->device->base.seat->libinput->tool_list;
|
|
|
|
|
|
|
|
|
|
/* Check if we already have the tool in our list of tools */
|
|
|
|
|
list_for_each(t, tool_list, link) {
|
|
|
|
|
if (type == t->type && serial == t->serial) {
|
|
|
|
|
tool = t;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
/* We can't guarantee that tools without serial numbers are
|
|
|
|
|
* unique, so we keep them local to the tablet that they come
|
|
|
|
|
* into proximity of instead of storing them in the global tool
|
|
|
|
|
* list */
|
|
|
|
|
tool_list = &tablet->tool_list;
|
|
|
|
|
|
|
|
|
|
/* Same as above, but don't bother checking the serial number */
|
|
|
|
|
list_for_each(t, tool_list, link) {
|
|
|
|
|
if (type == t->type) {
|
|
|
|
|
tool = t;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2014-06-10 16:48:19 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-26 21:31:50 -04:00
|
|
|
/* If we didn't already have the new_tool in our list of tools,
|
|
|
|
|
* add it */
|
|
|
|
|
if (!tool) {
|
|
|
|
|
tool = zalloc(sizeof *tool);
|
2015-11-16 15:34:19 +10:00
|
|
|
*tool = (struct libinput_tablet_tool) {
|
2014-06-26 21:31:50 -04:00
|
|
|
.type = type,
|
|
|
|
|
.serial = serial,
|
2015-02-19 14:56:34 +10:00
|
|
|
.tool_id = tool_id,
|
2014-06-10 16:48:19 -04:00
|
|
|
.refcount = 1,
|
|
|
|
|
};
|
|
|
|
|
|
2015-12-01 11:07:57 +10:00
|
|
|
tool->pressure_offset = 0;
|
|
|
|
|
tool->has_pressure_offset = false;
|
2015-02-18 12:03:34 +10:00
|
|
|
tool_set_bits(tablet, tool);
|
2014-08-07 22:02:22 -04:00
|
|
|
|
2014-08-07 19:00:52 -04:00
|
|
|
list_insert(tool_list, &tool->link);
|
2014-06-10 16:48:19 -04:00
|
|
|
}
|
|
|
|
|
|
2014-06-26 21:31:50 -04:00
|
|
|
return tool;
|
2014-06-10 16:48:19 -04:00
|
|
|
}
|
|
|
|
|
|
2014-06-10 23:14:41 -04:00
|
|
|
static void
|
|
|
|
|
tablet_notify_button_mask(struct tablet_dispatch *tablet,
|
|
|
|
|
struct evdev_device *device,
|
2015-08-04 12:37:40 +10:00
|
|
|
uint64_t time,
|
2015-11-16 15:34:19 +10:00
|
|
|
struct libinput_tablet_tool *tool,
|
2015-02-19 15:46:29 +10:00
|
|
|
const unsigned char *buttons,
|
|
|
|
|
unsigned int buttons_len,
|
2014-06-10 23:14:41 -04:00
|
|
|
enum libinput_button_state state)
|
|
|
|
|
{
|
|
|
|
|
struct libinput_device *base = &device->base;
|
2015-02-19 15:46:29 +10:00
|
|
|
size_t i;
|
|
|
|
|
size_t nbits = 8 * sizeof(buttons[0]) * buttons_len;
|
2015-11-16 15:43:41 +10:00
|
|
|
enum libinput_tablet_tool_tip_state tip_state;
|
2015-11-12 08:01:43 +10:00
|
|
|
|
|
|
|
|
tip_state = tablet_has_status(tablet, TABLET_TOOL_IN_CONTACT) ?
|
2015-11-16 15:47:15 +10:00
|
|
|
LIBINPUT_TABLET_TOOL_TIP_DOWN : LIBINPUT_TABLET_TOOL_TIP_UP;
|
2014-06-10 23:14:41 -04:00
|
|
|
|
2015-02-19 15:46:29 +10:00
|
|
|
for (i = 0; i < nbits; i++) {
|
|
|
|
|
if (!bit_is_set(buttons, i))
|
2014-06-10 23:14:41 -04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
tablet_notify_button(base,
|
|
|
|
|
time,
|
2014-06-26 21:31:52 -04:00
|
|
|
tool,
|
2015-11-12 08:01:43 +10:00
|
|
|
tip_state,
|
2014-06-26 21:31:54 -04:00
|
|
|
tablet->axes,
|
2015-02-19 15:46:29 +10:00
|
|
|
i,
|
2014-06-10 23:14:41 -04:00
|
|
|
state);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
tablet_notify_buttons(struct tablet_dispatch *tablet,
|
|
|
|
|
struct evdev_device *device,
|
2015-08-04 12:37:40 +10:00
|
|
|
uint64_t time,
|
2015-11-16 15:34:19 +10:00
|
|
|
struct libinput_tablet_tool *tool,
|
2014-06-10 23:14:41 -04:00
|
|
|
enum libinput_button_state state)
|
|
|
|
|
{
|
2015-02-19 15:46:29 +10:00
|
|
|
unsigned char buttons[ARRAY_LENGTH(tablet->button_state.stylus_buttons)];
|
2014-06-10 23:14:41 -04:00
|
|
|
|
2014-06-20 14:51:28 +10:00
|
|
|
if (state == LIBINPUT_BUTTON_STATE_PRESSED)
|
2015-02-19 15:46:29 +10:00
|
|
|
tablet_get_pressed_buttons(tablet, buttons, sizeof(buttons));
|
2014-06-20 14:51:28 +10:00
|
|
|
else
|
2015-02-19 15:46:29 +10:00
|
|
|
tablet_get_released_buttons(tablet,
|
|
|
|
|
buttons,
|
|
|
|
|
sizeof(buttons));
|
2014-06-10 23:14:41 -04:00
|
|
|
|
2014-06-26 21:31:52 -04:00
|
|
|
tablet_notify_button_mask(tablet,
|
|
|
|
|
device,
|
|
|
|
|
time,
|
|
|
|
|
tool,
|
2015-02-19 15:46:29 +10:00
|
|
|
buttons,
|
|
|
|
|
sizeof(buttons),
|
2014-06-26 21:31:52 -04:00
|
|
|
state);
|
2014-06-10 23:14:41 -04:00
|
|
|
}
|
|
|
|
|
|
2014-06-12 18:46:26 -04:00
|
|
|
static void
|
|
|
|
|
sanitize_tablet_axes(struct tablet_dispatch *tablet)
|
|
|
|
|
{
|
2015-11-30 15:04:49 +10:00
|
|
|
bool tool_in_contact;
|
2014-06-12 18:46:26 -04:00
|
|
|
const struct input_absinfo *distance,
|
|
|
|
|
*pressure;
|
|
|
|
|
|
|
|
|
|
distance = libevdev_get_abs_info(tablet->device->evdev, ABS_DISTANCE);
|
|
|
|
|
pressure = libevdev_get_abs_info(tablet->device->evdev, ABS_PRESSURE);
|
|
|
|
|
|
2015-11-30 15:04:49 +10:00
|
|
|
tool_in_contact = (tablet_has_status(tablet, TABLET_TOOL_IN_CONTACT) ||
|
|
|
|
|
tablet_has_status(tablet,
|
|
|
|
|
TABLET_TOOL_ENTERING_CONTACT));
|
|
|
|
|
|
2015-02-15 19:06:34 -05:00
|
|
|
/* Keep distance and pressure mutually exclusive */
|
2015-11-30 15:00:43 +10:00
|
|
|
if (distance &&
|
|
|
|
|
(bit_is_set(tablet->changed_axes, LIBINPUT_TABLET_TOOL_AXIS_DISTANCE) ||
|
|
|
|
|
bit_is_set(tablet->changed_axes, LIBINPUT_TABLET_TOOL_AXIS_PRESSURE)) &&
|
2014-06-19 01:18:06 -04:00
|
|
|
distance->value > distance->minimum &&
|
|
|
|
|
pressure->value > pressure->minimum) {
|
2015-11-30 15:04:49 +10:00
|
|
|
if (tool_in_contact) {
|
|
|
|
|
clear_bit(tablet->changed_axes,
|
|
|
|
|
LIBINPUT_TABLET_TOOL_AXIS_DISTANCE);
|
|
|
|
|
tablet->axes[LIBINPUT_TABLET_TOOL_AXIS_DISTANCE] =
|
|
|
|
|
0;
|
|
|
|
|
} else {
|
|
|
|
|
clear_bit(tablet->changed_axes,
|
|
|
|
|
LIBINPUT_TABLET_TOOL_AXIS_PRESSURE);
|
|
|
|
|
tablet->axes[LIBINPUT_TABLET_TOOL_AXIS_PRESSURE] = 0;
|
|
|
|
|
}
|
2015-11-16 15:36:30 +10:00
|
|
|
} else if (bit_is_set(tablet->changed_axes, LIBINPUT_TABLET_TOOL_AXIS_PRESSURE) &&
|
2015-11-30 15:04:49 +10:00
|
|
|
!tool_in_contact) {
|
2014-06-17 21:17:58 -04:00
|
|
|
/* Make sure that the last axis value sent to the caller is a 0 */
|
2015-11-16 15:36:30 +10:00
|
|
|
if (tablet->axes[LIBINPUT_TABLET_TOOL_AXIS_PRESSURE] == 0)
|
2014-06-17 21:17:58 -04:00
|
|
|
clear_bit(tablet->changed_axes,
|
2015-11-16 15:36:30 +10:00
|
|
|
LIBINPUT_TABLET_TOOL_AXIS_PRESSURE);
|
2014-06-17 21:17:58 -04:00
|
|
|
else
|
2015-11-16 15:36:30 +10:00
|
|
|
tablet->axes[LIBINPUT_TABLET_TOOL_AXIS_PRESSURE] = 0;
|
2014-06-12 18:46:26 -04:00
|
|
|
}
|
2015-02-16 15:19:44 +10:00
|
|
|
|
|
|
|
|
/* If we have a mouse/lens cursor and the tilt changed, the rotation
|
|
|
|
|
changed. Mark this, calculate the angle later */
|
2015-11-16 15:40:43 +10:00
|
|
|
if ((tablet->current_tool_type == LIBINPUT_TABLET_TOOL_TYPE_MOUSE ||
|
|
|
|
|
tablet->current_tool_type == LIBINPUT_TABLET_TOOL_TYPE_LENS) &&
|
2015-11-16 15:36:30 +10:00
|
|
|
(bit_is_set(tablet->changed_axes, LIBINPUT_TABLET_TOOL_AXIS_TILT_X) ||
|
|
|
|
|
bit_is_set(tablet->changed_axes, LIBINPUT_TABLET_TOOL_AXIS_TILT_Y)))
|
|
|
|
|
set_bit(tablet->changed_axes, LIBINPUT_TABLET_TOOL_AXIS_ROTATION_Z);
|
2014-06-12 18:46:26 -04:00
|
|
|
}
|
|
|
|
|
|
2015-12-01 11:07:57 +10:00
|
|
|
static inline int
|
|
|
|
|
axis_range_percentage(const struct input_absinfo *a, int percent)
|
|
|
|
|
{
|
|
|
|
|
return (a->maximum - a->minimum) * percent/100 + a->minimum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
detect_pressure_offset(struct tablet_dispatch *tablet,
|
|
|
|
|
struct evdev_device *device,
|
|
|
|
|
struct libinput_tablet_tool *tool)
|
|
|
|
|
{
|
|
|
|
|
const struct input_absinfo *pressure, *distance;
|
|
|
|
|
int offset;
|
|
|
|
|
|
|
|
|
|
if (!bit_is_set(tablet->changed_axes,
|
|
|
|
|
LIBINPUT_TABLET_TOOL_AXIS_PRESSURE))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
pressure = libevdev_get_abs_info(device->evdev, ABS_PRESSURE);
|
|
|
|
|
distance = libevdev_get_abs_info(device->evdev, ABS_DISTANCE);
|
|
|
|
|
|
|
|
|
|
if (!pressure || !distance)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
offset = pressure->value - pressure->minimum;
|
|
|
|
|
|
|
|
|
|
if (tool->has_pressure_offset) {
|
|
|
|
|
if (offset < tool->pressure_offset)
|
|
|
|
|
tool->pressure_offset = offset;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* we only set a pressure offset on proximity in */
|
|
|
|
|
if (!tablet_has_status(tablet, TABLET_TOOL_ENTERING_PROXIMITY))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* If we're closer than 50% of the distance axis, skip pressure
|
|
|
|
|
* offset detection, too likely to be wrong */
|
|
|
|
|
if (distance->value < axis_range_percentage(distance, 50))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (offset > axis_range_percentage(pressure, 20)) {
|
|
|
|
|
log_error(device->base.seat->libinput,
|
|
|
|
|
"Ignoring pressure offset greater than 20%% detected on tool %s (serial %#x). "
|
|
|
|
|
"See http://wayland.freedesktop.org/libinput/doc/%s/tablet-support.html\n",
|
|
|
|
|
tablet_tool_type_to_string(tool->type),
|
|
|
|
|
tool->serial,
|
|
|
|
|
LIBINPUT_VERSION);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log_info(device->base.seat->libinput,
|
|
|
|
|
"Pressure offset detected on tool %s (serial %#x). "
|
|
|
|
|
"See http://wayland.freedesktop.org/libinput/doc/%s/tablet-support.html\n",
|
|
|
|
|
tablet_tool_type_to_string(tool->type),
|
|
|
|
|
tool->serial,
|
|
|
|
|
LIBINPUT_VERSION);
|
|
|
|
|
tool->pressure_offset = offset;
|
|
|
|
|
tool->has_pressure_offset = true;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-05 23:20:36 -04:00
|
|
|
static void
|
|
|
|
|
tablet_flush(struct tablet_dispatch *tablet,
|
|
|
|
|
struct evdev_device *device,
|
2015-08-04 12:37:40 +10:00
|
|
|
uint64_t time)
|
2014-06-05 23:20:36 -04:00
|
|
|
{
|
2015-11-16 15:34:19 +10:00
|
|
|
struct libinput_tablet_tool *tool =
|
2014-08-07 19:00:52 -04:00
|
|
|
tablet_get_tool(tablet,
|
2014-06-26 21:31:50 -04:00
|
|
|
tablet->current_tool_type,
|
2015-02-19 14:56:34 +10:00
|
|
|
tablet->current_tool_id,
|
2014-06-26 21:31:50 -04:00
|
|
|
tablet->current_tool_serial);
|
|
|
|
|
|
2015-02-26 13:55:08 +10:00
|
|
|
if (tablet_has_status(tablet, TABLET_TOOL_OUT_OF_PROXIMITY))
|
|
|
|
|
return;
|
|
|
|
|
|
2014-06-26 18:02:48 -04:00
|
|
|
if (tablet_has_status(tablet, TABLET_TOOL_LEAVING_PROXIMITY)) {
|
2014-06-10 23:14:41 -04:00
|
|
|
/* Release all stylus buttons */
|
2015-02-19 15:46:29 +10:00
|
|
|
memset(tablet->button_state.stylus_buttons,
|
|
|
|
|
0,
|
|
|
|
|
sizeof(tablet->button_state.stylus_buttons));
|
2014-06-10 23:14:41 -04:00
|
|
|
tablet_set_status(tablet, TABLET_BUTTONS_RELEASED);
|
2015-11-11 14:03:05 +10:00
|
|
|
if (tablet_has_status(tablet, TABLET_TOOL_IN_CONTACT))
|
|
|
|
|
tablet_set_status(tablet, TABLET_TOOL_LEAVING_CONTACT);
|
2015-02-16 22:48:44 -05:00
|
|
|
} else if (tablet_has_status(tablet, TABLET_AXES_UPDATED) ||
|
|
|
|
|
tablet_has_status(tablet, TABLET_TOOL_ENTERING_PROXIMITY)) {
|
2015-12-01 11:07:57 +10:00
|
|
|
detect_pressure_offset(tablet, device, tool);
|
2014-06-19 01:18:06 -04:00
|
|
|
sanitize_tablet_axes(tablet);
|
2014-06-26 21:31:52 -04:00
|
|
|
tablet_check_notify_axes(tablet, device, time, tool);
|
2015-02-16 22:48:44 -05:00
|
|
|
|
|
|
|
|
tablet_unset_status(tablet, TABLET_TOOL_ENTERING_PROXIMITY);
|
2014-06-05 23:20:36 -04:00
|
|
|
tablet_unset_status(tablet, TABLET_AXES_UPDATED);
|
2014-06-06 16:35:33 -04:00
|
|
|
}
|
|
|
|
|
|
2015-11-11 14:03:05 +10:00
|
|
|
if (tablet_has_status(tablet, TABLET_TOOL_ENTERING_CONTACT)) {
|
|
|
|
|
tablet_notify_tip(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
tool,
|
2015-11-16 15:47:15 +10:00
|
|
|
LIBINPUT_TABLET_TOOL_TIP_DOWN,
|
2015-11-11 14:03:05 +10:00
|
|
|
tablet->axes);
|
|
|
|
|
tablet_unset_status(tablet, TABLET_TOOL_ENTERING_CONTACT);
|
|
|
|
|
tablet_set_status(tablet, TABLET_TOOL_IN_CONTACT);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-10 23:14:41 -04:00
|
|
|
if (tablet_has_status(tablet, TABLET_BUTTONS_RELEASED)) {
|
2014-06-26 21:31:52 -04:00
|
|
|
tablet_notify_buttons(tablet,
|
|
|
|
|
device,
|
|
|
|
|
time,
|
|
|
|
|
tool,
|
2014-06-10 23:14:41 -04:00
|
|
|
LIBINPUT_BUTTON_STATE_RELEASED);
|
|
|
|
|
tablet_unset_status(tablet, TABLET_BUTTONS_RELEASED);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tablet_has_status(tablet, TABLET_BUTTONS_PRESSED)) {
|
2014-06-26 21:31:52 -04:00
|
|
|
tablet_notify_buttons(tablet,
|
|
|
|
|
device,
|
|
|
|
|
time,
|
|
|
|
|
tool,
|
2014-06-10 23:14:41 -04:00
|
|
|
LIBINPUT_BUTTON_STATE_PRESSED);
|
|
|
|
|
tablet_unset_status(tablet, TABLET_BUTTONS_PRESSED);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-11 14:03:05 +10:00
|
|
|
if (tablet_has_status(tablet, TABLET_TOOL_LEAVING_CONTACT)) {
|
|
|
|
|
tablet_notify_tip(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
tool,
|
2015-11-16 15:47:15 +10:00
|
|
|
LIBINPUT_TABLET_TOOL_TIP_UP,
|
2015-11-11 14:03:05 +10:00
|
|
|
tablet->axes);
|
|
|
|
|
tablet_unset_status(tablet, TABLET_TOOL_LEAVING_CONTACT);
|
|
|
|
|
tablet_unset_status(tablet, TABLET_TOOL_IN_CONTACT);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-26 18:02:48 -04:00
|
|
|
if (tablet_has_status(tablet, TABLET_TOOL_LEAVING_PROXIMITY)) {
|
2015-02-19 11:51:54 +10:00
|
|
|
memset(tablet->changed_axes, 0, sizeof(tablet->changed_axes));
|
2015-02-16 22:48:42 -05:00
|
|
|
tablet_notify_proximity(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
tool,
|
2015-11-16 15:42:31 +10:00
|
|
|
LIBINPUT_TABLET_TOOL_PROXIMITY_OUT,
|
2015-02-16 22:48:44 -05:00
|
|
|
tablet->changed_axes,
|
2015-02-16 22:48:42 -05:00
|
|
|
tablet->axes);
|
2015-02-16 22:48:44 -05:00
|
|
|
|
2014-06-26 18:02:48 -04:00
|
|
|
tablet_set_status(tablet, TABLET_TOOL_OUT_OF_PROXIMITY);
|
|
|
|
|
tablet_unset_status(tablet, TABLET_TOOL_LEAVING_PROXIMITY);
|
2015-02-16 22:48:40 -05:00
|
|
|
|
|
|
|
|
tablet_change_to_left_handed(device);
|
2014-06-26 18:02:48 -04:00
|
|
|
}
|
2015-02-26 13:55:08 +10:00
|
|
|
}
|
2014-06-10 23:14:41 -04:00
|
|
|
|
2015-02-26 13:55:08 +10:00
|
|
|
static inline void
|
|
|
|
|
tablet_reset_state(struct tablet_dispatch *tablet)
|
|
|
|
|
{
|
2014-06-10 23:14:41 -04:00
|
|
|
/* Update state */
|
|
|
|
|
memcpy(&tablet->prev_button_state,
|
|
|
|
|
&tablet->button_state,
|
|
|
|
|
sizeof(tablet->button_state));
|
2014-06-05 23:20:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
tablet_process(struct evdev_dispatch *dispatch,
|
|
|
|
|
struct evdev_device *device,
|
|
|
|
|
struct input_event *e,
|
|
|
|
|
uint64_t time)
|
|
|
|
|
{
|
|
|
|
|
struct tablet_dispatch *tablet =
|
|
|
|
|
(struct tablet_dispatch *)dispatch;
|
|
|
|
|
|
|
|
|
|
switch (e->type) {
|
|
|
|
|
case EV_ABS:
|
|
|
|
|
tablet_process_absolute(tablet, device, e, time);
|
|
|
|
|
break;
|
2015-02-20 11:41:06 +10:00
|
|
|
case EV_REL:
|
|
|
|
|
tablet_process_relative(tablet, device, e, time);
|
|
|
|
|
break;
|
2014-06-10 16:48:19 -04:00
|
|
|
case EV_KEY:
|
|
|
|
|
tablet_process_key(tablet, device, e, time);
|
|
|
|
|
break;
|
|
|
|
|
case EV_MSC:
|
|
|
|
|
tablet_process_misc(tablet, device, e, time);
|
|
|
|
|
break;
|
2014-06-05 23:20:36 -04:00
|
|
|
case EV_SYN:
|
|
|
|
|
tablet_flush(tablet, device, time);
|
2015-02-26 13:55:08 +10:00
|
|
|
tablet_reset_state(tablet);
|
2014-06-05 23:20:36 -04:00
|
|
|
break;
|
|
|
|
|
default:
|
2014-06-25 14:43:45 +10:00
|
|
|
log_error(device->base.seat->libinput,
|
|
|
|
|
"Unexpected event type %s (%#x)\n",
|
2014-06-17 16:29:17 +10:00
|
|
|
libevdev_event_type_get_name(e->type),
|
|
|
|
|
e->type);
|
2014-06-05 23:20:36 -04:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
tablet_destroy(struct evdev_dispatch *dispatch)
|
|
|
|
|
{
|
|
|
|
|
struct tablet_dispatch *tablet =
|
|
|
|
|
(struct tablet_dispatch*)dispatch;
|
2015-11-16 15:34:19 +10:00
|
|
|
struct libinput_tablet_tool *tool, *tmp;
|
2014-08-07 19:00:52 -04:00
|
|
|
|
|
|
|
|
list_for_each_safe(tool, tmp, &tablet->tool_list, link) {
|
2015-11-16 16:35:03 +10:00
|
|
|
libinput_tablet_tool_unref(tool);
|
2014-08-07 19:00:52 -04:00
|
|
|
}
|
2014-06-05 23:20:36 -04:00
|
|
|
|
|
|
|
|
free(tablet);
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-26 13:55:08 +10:00
|
|
|
static void
|
|
|
|
|
tablet_check_initial_proximity(struct evdev_device *device,
|
|
|
|
|
struct evdev_dispatch *dispatch)
|
|
|
|
|
{
|
|
|
|
|
bool tool_in_prox = false;
|
|
|
|
|
int code, state;
|
2015-11-16 15:39:07 +10:00
|
|
|
enum libinput_tablet_tool_type tool;
|
2015-02-26 13:55:08 +10:00
|
|
|
struct tablet_dispatch *tablet = (struct tablet_dispatch*)dispatch;
|
|
|
|
|
|
2015-11-16 15:40:43 +10:00
|
|
|
for (tool = LIBINPUT_TABLET_TOOL_TYPE_PEN; tool <= LIBINPUT_TABLET_TOOL_TYPE_MAX; tool++) {
|
2015-02-26 13:55:08 +10:00
|
|
|
code = tablet_tool_to_evcode(tool);
|
|
|
|
|
|
|
|
|
|
/* we only expect one tool to be in proximity at a time */
|
|
|
|
|
if (libevdev_fetch_event_value(device->evdev,
|
|
|
|
|
EV_KEY,
|
|
|
|
|
code,
|
|
|
|
|
&state) && state) {
|
|
|
|
|
tool_in_prox = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!tool_in_prox)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
tablet_update_tool(tablet, device, tool, state);
|
|
|
|
|
|
|
|
|
|
tablet->current_tool_id =
|
|
|
|
|
libevdev_get_event_value(device->evdev,
|
|
|
|
|
EV_ABS,
|
|
|
|
|
ABS_MISC);
|
|
|
|
|
tablet->current_tool_serial =
|
|
|
|
|
libevdev_get_event_value(device->evdev,
|
|
|
|
|
EV_MSC,
|
|
|
|
|
MSC_SERIAL);
|
|
|
|
|
|
|
|
|
|
tablet_flush(tablet,
|
|
|
|
|
device,
|
|
|
|
|
libinput_now(device->base.seat->libinput));
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-05 23:20:36 -04:00
|
|
|
static struct evdev_dispatch_interface tablet_interface = {
|
|
|
|
|
tablet_process,
|
2015-05-22 14:21:21 +10:00
|
|
|
NULL, /* suspend */
|
2014-12-18 09:39:46 +10:00
|
|
|
NULL, /* remove */
|
2014-12-08 12:36:51 +10:00
|
|
|
tablet_destroy,
|
|
|
|
|
NULL, /* device_added */
|
|
|
|
|
NULL, /* device_removed */
|
|
|
|
|
NULL, /* device_suspended */
|
|
|
|
|
NULL, /* device_resumed */
|
2015-02-26 13:55:08 +10:00
|
|
|
tablet_check_initial_proximity,
|
2014-06-05 23:20:36 -04:00
|
|
|
};
|
|
|
|
|
|
2015-12-01 14:05:16 +10:00
|
|
|
static void
|
|
|
|
|
tablet_init_calibration(struct tablet_dispatch *tablet,
|
|
|
|
|
struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
if (libevdev_has_property(device->evdev, INPUT_PROP_DIRECT))
|
|
|
|
|
evdev_init_calibration(device, &tablet->base);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-05 23:20:36 -04:00
|
|
|
static int
|
|
|
|
|
tablet_init(struct tablet_dispatch *tablet,
|
|
|
|
|
struct evdev_device *device)
|
|
|
|
|
{
|
2015-11-16 15:35:40 +10:00
|
|
|
enum libinput_tablet_tool_axis axis;
|
2014-08-07 22:02:22 -04:00
|
|
|
|
2014-06-05 23:20:36 -04:00
|
|
|
tablet->base.interface = &tablet_interface;
|
|
|
|
|
tablet->device = device;
|
|
|
|
|
tablet->status = TABLET_NONE;
|
2014-06-10 16:48:19 -04:00
|
|
|
tablet->current_tool_type = LIBINPUT_TOOL_NONE;
|
2014-08-07 19:00:52 -04:00
|
|
|
list_init(&tablet->tool_list);
|
2014-06-05 23:20:36 -04:00
|
|
|
|
2015-12-01 14:05:16 +10:00
|
|
|
tablet_init_calibration(tablet, device);
|
|
|
|
|
|
2015-11-16 15:36:30 +10:00
|
|
|
for (axis = LIBINPUT_TABLET_TOOL_AXIS_X;
|
|
|
|
|
axis <= LIBINPUT_TABLET_TOOL_AXIS_MAX;
|
2015-02-10 11:29:34 +10:00
|
|
|
axis++) {
|
2015-02-16 16:25:39 +10:00
|
|
|
if (tablet_device_has_axis(tablet, axis))
|
2014-08-07 22:02:22 -04:00
|
|
|
set_bit(tablet->axis_caps, axis);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-19 01:18:07 -04:00
|
|
|
tablet_mark_all_axes_changed(tablet, device);
|
2014-06-05 23:20:36 -04:00
|
|
|
|
2015-02-16 22:48:39 -05:00
|
|
|
tablet_set_status(tablet, TABLET_TOOL_OUT_OF_PROXIMITY);
|
|
|
|
|
|
2014-06-05 23:20:36 -04:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-19 12:56:43 +10:00
|
|
|
static void
|
|
|
|
|
tablet_init_left_handed(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
#if HAVE_LIBWACOM
|
|
|
|
|
struct libinput *libinput = device->base.seat->libinput;
|
|
|
|
|
WacomDeviceDatabase *db;
|
|
|
|
|
WacomDevice *d = NULL;
|
|
|
|
|
WacomError *error;
|
2015-03-10 14:14:20 +10:00
|
|
|
const char *devnode;
|
2015-02-19 12:56:43 +10:00
|
|
|
|
|
|
|
|
db = libwacom_database_new();
|
2015-03-02 16:46:19 +10:00
|
|
|
if (!db) {
|
|
|
|
|
log_info(libinput,
|
|
|
|
|
"Failed to initialize libwacom context.\n");
|
2015-02-19 12:56:43 +10:00
|
|
|
return;
|
2015-03-02 16:46:19 +10:00
|
|
|
}
|
2015-02-19 12:56:43 +10:00
|
|
|
error = libwacom_error_new();
|
2015-03-10 14:14:20 +10:00
|
|
|
devnode = udev_device_get_devnode(device->udev_device);
|
|
|
|
|
|
|
|
|
|
d = libwacom_new_from_path(db,
|
|
|
|
|
devnode,
|
|
|
|
|
WFALLBACK_NONE,
|
|
|
|
|
error);
|
2015-02-19 12:56:43 +10:00
|
|
|
|
|
|
|
|
if (d) {
|
|
|
|
|
if (libwacom_is_reversible(d))
|
|
|
|
|
evdev_init_left_handed(device,
|
|
|
|
|
tablet_change_to_left_handed);
|
|
|
|
|
} else if (libwacom_error_get_code(error) == WERROR_UNKNOWN_MODEL) {
|
|
|
|
|
log_info(libinput, "Tablet unknown to libwacom\n");
|
|
|
|
|
} else {
|
|
|
|
|
log_error(libinput,
|
|
|
|
|
"libwacom error: %s\n",
|
|
|
|
|
libwacom_error_get_message(error));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
|
libwacom_error_free(&error);
|
|
|
|
|
if (d)
|
|
|
|
|
libwacom_destroy(d);
|
|
|
|
|
libwacom_database_destroy(db);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-05 23:20:36 -04:00
|
|
|
struct evdev_dispatch *
|
|
|
|
|
evdev_tablet_create(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct tablet_dispatch *tablet;
|
|
|
|
|
|
|
|
|
|
tablet = zalloc(sizeof *tablet);
|
|
|
|
|
if (!tablet)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
if (tablet_init(tablet, device) != 0) {
|
|
|
|
|
tablet_destroy(&tablet->base);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-19 12:56:43 +10:00
|
|
|
tablet_init_left_handed(device);
|
2015-02-16 22:48:40 -05:00
|
|
|
|
2014-06-05 23:20:36 -04:00
|
|
|
return &tablet->base;
|
|
|
|
|
}
|