blob: 78b41683a32b16abc1457393bb260fc2f8712c24 [file] [log] [blame]
Blazej Magnowski4498d9c2015-09-28 14:00:11 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
17package com.android.systemui.classifier;
18
19public class DirectionEvaluator {
20 public static float evaluate(float xDiff, float yDiff, int type) {
21 float falsingEvaluation = 5.5f;
22 boolean vertical = Math.abs(yDiff) >= Math.abs(xDiff);
23 switch (type) {
24 case Classifier.QUICK_SETTINGS:
Selim Cinek3d6ae232019-01-04 14:14:33 -080025 case Classifier.PULSE_EXPAND:
Blazej Magnowski4498d9c2015-09-28 14:00:11 -070026 case Classifier.NOTIFICATION_DRAG_DOWN:
27 if (!vertical || yDiff <= 0.0) {
28 return falsingEvaluation;
29 }
30 break;
31 case Classifier.NOTIFICATION_DISMISS:
32 if (vertical) {
33 return falsingEvaluation;
34 }
35 break;
36 case Classifier.UNLOCK:
Lucas Dupinbc9aac12018-03-04 20:18:15 -080037 case Classifier.BOUNCER_UNLOCK:
Blazej Magnowski4498d9c2015-09-28 14:00:11 -070038 if (!vertical || yDiff >= 0.0) {
39 return falsingEvaluation;
40 }
41 break;
42 case Classifier.LEFT_AFFORDANCE:
43 if (xDiff < 0.0 && yDiff > 0.0) {
44 return falsingEvaluation;
45 }
46 break;
47 case Classifier.RIGHT_AFFORDANCE:
48 if (xDiff > 0.0 && yDiff > 0.0) {
49 return falsingEvaluation;
50 }
51 default:
52 break;
53 }
54 return 0.0f;
55 }
56}