summaryrefslogtreecommitdiff
path: root/src/filter-touchpad-flat.c
blob: 846d096bfe0a6336ca7ec813c9a8248a380261eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
 * Copyright © 2006-2009 Simon Thum
 * Copyright © 2012 Jonas Ådahl
 * Copyright © 2014-2015 Red Hat, Inc.
 *
 * 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 (including the next
 * paragraph) 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.
 */

#include "config.h"

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>

#include "filter.h"
#include "libinput-util.h"
#include "filter-private.h"

#define TP_MAGIC_SLOWDOWN_FLAT 0.2968

struct touchpad_accelerator_flat {
	struct motion_filter base;

	double factor;
	int dpi;
};

static struct normalized_coords
accelerator_filter_touchpad_flat(struct motion_filter *filter,
				 const struct device_float_coords *unaccelerated,
				 void *data, uint64_t time)
{
	struct touchpad_accelerator_flat *accel =
		(struct touchpad_accelerator_flat *)filter;
	double factor; /* unitless factor */
	struct normalized_coords normalized;

	/* You want flat acceleration, you get flat acceleration for the
	 * device */
	factor = accel->factor;
	normalized = normalize_for_dpi(unaccelerated, accel->dpi);
	normalized.x = TP_MAGIC_SLOWDOWN_FLAT * factor * normalized.x;
	normalized.y = TP_MAGIC_SLOWDOWN_FLAT * factor * normalized.y;

	return normalized;
}

static struct normalized_coords
accelerator_filter_noop_touchpad_flat(struct motion_filter *filter,
				      const struct device_float_coords *unaccelerated,
				      void *data, uint64_t time)
{
	/* We map the unaccelerated flat filter to have the same behavior as
	 * the "accelerated" flat filter.
	 * The filter by definition is flat, i.e. it does not actually
	 * apply any acceleration (merely a constant factor) and we can assume
	 * that a user wants all mouse movement to have the same speed, mapped
	 * 1:1 to the input speed.
	 *
	 * Thus we apply the same factor to our non-accelerated motion - this way
	 * things like gestures end up having the same movement as
	 * pointer motion.
	 */
	return accelerator_filter_touchpad_flat(filter, unaccelerated, data, time);
}

static bool
accelerator_set_speed_touchpad_flat(struct motion_filter *filter,
				    double speed_adjustment)
{
	struct touchpad_accelerator_flat *accel_filter =
		(struct touchpad_accelerator_flat *)filter;

	assert(speed_adjustment >= -1.0 && speed_adjustment <= 1.0);

	accel_filter->factor = max(0.005, 1 + speed_adjustment);
	filter->speed_adjustment = speed_adjustment;

	return true;
}

static void
accelerator_destroy_touchpad_flat(struct motion_filter *filter)
{
	struct touchpad_accelerator_flat *accel =
		(struct touchpad_accelerator_flat *) filter;

	free(accel);
}

static const struct motion_filter_interface accelerator_interface_touchpad_flat = {
	.type = LIBINPUT_CONFIG_ACCEL_PROFILE_FLAT,
	.filter = accelerator_filter_touchpad_flat,
	.filter_constant = accelerator_filter_noop_touchpad_flat,
	.filter_scroll = accelerator_filter_noop_touchpad_flat,
	.restart = NULL,
	.destroy = accelerator_destroy_touchpad_flat,
	.set_speed = accelerator_set_speed_touchpad_flat,
};

struct motion_filter *
create_pointer_accelerator_filter_touchpad_flat(int dpi)
{
	struct touchpad_accelerator_flat *filter;

	filter = zalloc(sizeof *filter);
	filter->base.interface = &accelerator_interface_touchpad_flat;
	filter->dpi = dpi;

	return &filter->base;
}