Initial commit
[profile/ivi/xinput_calibrator.git] / src / calibrator / Tester.cpp
1 /*
2  * Copyright (c) 2009 Tias Guns
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20  * THE SOFTWARE.
21  */
22
23 #include "calibrator/Tester.hpp"
24
25 #include <cstdio>
26
27 CalibratorTester::CalibratorTester(const char* const device_name0, const XYinfo& axys0, const int thr_misclick, const int thr_doubleclick, const OutputType output_type, const char* geometry)
28   : Calibrator(device_name0, axys0, thr_misclick, thr_doubleclick, output_type, geometry)
29 {
30     //printf("Starting test driver\n");
31 }
32
33 bool CalibratorTester::finish_data(const XYinfo axis)
34 {
35     new_axis = axis;
36
37     return true;
38 }
39
40 XYinfo CalibratorTester::emulate_driver(const XYinfo& raw, bool useNewAxis, const XYinfo& screen, const XYinfo& device) {
41     XYinfo calibAxis;
42     if (useNewAxis)
43         calibAxis = new_axis;
44     else
45         calibAxis = old_axys;
46
47     /**
48      * The most simple and intuitive calibration implementation
49      * if only all drivers sticked to this...
50      * Note that axis inversion is automatically supported
51      * by the ScaleAxis implementation (swapping max/min on
52      * one axis will result in the inversion being calculated)
53      */
54
55     // placeholder for the new coordinates
56     XYinfo result(raw);
57
58     // swap coordinates if asked
59     if (calibAxis.swap_xy) {
60         result.x.min = raw.y.min;
61         result.x.max = raw.y.max;
62         result.y.min = raw.x.min;
63         result.y.max = raw.x.max;
64     }
65
66     result.do_xf86ScaleAxis(device, calibAxis);
67
68     // the last step is usually done by the X server,
69     // or transparently somewhere on the way
70     result.do_xf86ScaleAxis(screen, device);
71     return result;
72 }