2012-07-18 05:27:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
|
|
* in compliance with the License. You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
|
|
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
|
|
* or implied. See the License for the specific language governing permissions and limitations under
|
|
|
|
* the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package com.android.inputmethod.keyboard.internal;
|
|
|
|
|
|
|
|
import android.util.FloatMath;
|
|
|
|
|
|
|
|
import com.android.inputmethod.latin.InputPointers;
|
|
|
|
|
|
|
|
public class GestureStroke {
|
2012-07-18 11:31:09 +00:00
|
|
|
public static final int DEFAULT_CAPACITY = 128;
|
|
|
|
|
2012-07-18 05:27:51 +00:00
|
|
|
private final int mPointerId;
|
2012-07-18 11:31:09 +00:00
|
|
|
// TODO: Replace this {@link InputPointers} with a set of {@link ScalableIntArray}s.
|
|
|
|
private final InputPointers mInputPointers = new InputPointers(DEFAULT_CAPACITY);
|
2012-07-18 05:27:51 +00:00
|
|
|
private float mLength;
|
|
|
|
private float mAngle;
|
2012-07-19 05:47:55 +00:00
|
|
|
private int mIncrementalRecognitionSize;
|
2012-07-18 05:27:51 +00:00
|
|
|
private long mLastPointTime;
|
|
|
|
private int mLastPointX;
|
|
|
|
private int mLastPointY;
|
|
|
|
|
|
|
|
private int mMinGestureLength;
|
2012-07-19 05:47:55 +00:00
|
|
|
private int mMinGestureLengthWhileInGesture;
|
2012-07-18 05:27:51 +00:00
|
|
|
private int mMinGestureSampleLength;
|
|
|
|
|
2012-07-19 05:47:55 +00:00
|
|
|
// TODO: Move some of these to resource.
|
|
|
|
private static final float MIN_GESTURE_LENGTH_RATIO_TO_KEY_WIDTH = 1.0f;
|
|
|
|
private static final float MIN_GESTURE_LENGTH_RATIO_TO_KEY_WIDTH_WHILE_IN_GESTURE = 0.5f;
|
|
|
|
private static final int MIN_GESTURE_DURATION = 150; // msec
|
|
|
|
private static final int MIN_GESTURE_DURATION_WHILE_IN_GESTURE = 75; // msec
|
2012-07-18 05:27:51 +00:00
|
|
|
private static final float MIN_GESTURE_SAMPLING_RATIO_TO_KEY_HEIGHT = 1.0f / 6.0f;
|
|
|
|
private static final float GESTURE_RECOG_SPEED_THRESHOLD = 0.4f; // dip/msec
|
|
|
|
private static final float GESTURE_RECOG_CURVATURE_THRESHOLD = (float)(Math.PI / 4.0f);
|
|
|
|
|
|
|
|
private static final float DOUBLE_PI = (float)(2 * Math.PI);
|
|
|
|
|
|
|
|
public GestureStroke(int pointerId) {
|
|
|
|
mPointerId = pointerId;
|
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setGestureSampleLength(final int keyWidth, final int keyHeight) {
|
2012-07-19 05:47:55 +00:00
|
|
|
// TODO: Find an appropriate base metric for these length. Maybe diagonal length of the key?
|
|
|
|
mMinGestureLength = (int)(keyWidth * MIN_GESTURE_LENGTH_RATIO_TO_KEY_WIDTH);
|
|
|
|
mMinGestureLengthWhileInGesture = (int)(
|
|
|
|
keyWidth * MIN_GESTURE_LENGTH_RATIO_TO_KEY_WIDTH_WHILE_IN_GESTURE);
|
2012-07-18 05:27:51 +00:00
|
|
|
mMinGestureSampleLength = (int)(keyHeight * MIN_GESTURE_SAMPLING_RATIO_TO_KEY_HEIGHT);
|
|
|
|
}
|
|
|
|
|
2012-07-19 05:47:55 +00:00
|
|
|
public boolean isStartOfAGesture(final int downDuration, final boolean wasInGesture) {
|
|
|
|
// The tolerance of the time duration and the stroke length to detect the start of a
|
|
|
|
// gesture stroke should be eased when the previous input was a gesture input.
|
|
|
|
if (wasInGesture) {
|
|
|
|
return downDuration > MIN_GESTURE_DURATION_WHILE_IN_GESTURE
|
|
|
|
&& mLength > mMinGestureLengthWhileInGesture;
|
|
|
|
}
|
2012-07-18 05:27:51 +00:00
|
|
|
return downDuration > MIN_GESTURE_DURATION && mLength > mMinGestureLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void reset() {
|
|
|
|
mLength = 0;
|
|
|
|
mAngle = 0;
|
2012-07-19 05:47:55 +00:00
|
|
|
mIncrementalRecognitionSize = 0;
|
2012-07-18 05:27:51 +00:00
|
|
|
mLastPointTime = 0;
|
|
|
|
mInputPointers.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateLastPoint(final int x, final int y, final int time) {
|
|
|
|
mLastPointTime = time;
|
|
|
|
mLastPointX = x;
|
|
|
|
mLastPointY = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addPoint(final int x, final int y, final int time, final boolean isHistorical) {
|
|
|
|
final int size = mInputPointers.getPointerSize();
|
|
|
|
if (size == 0) {
|
|
|
|
mInputPointers.addPointer(x, y, mPointerId, time);
|
|
|
|
if (!isHistorical) {
|
|
|
|
updateLastPoint(x, y, time);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
final int[] xCoords = mInputPointers.getXCoordinates();
|
|
|
|
final int[] yCoords = mInputPointers.getYCoordinates();
|
|
|
|
final int lastX = xCoords[size - 1];
|
|
|
|
final int lastY = yCoords[size - 1];
|
|
|
|
final float dist = getDistance(lastX, lastY, x, y);
|
|
|
|
if (dist > mMinGestureSampleLength) {
|
|
|
|
mInputPointers.addPointer(x, y, mPointerId, time);
|
|
|
|
mLength += dist;
|
|
|
|
final float angle = getAngle(lastX, lastY, x, y);
|
|
|
|
if (size > 1) {
|
2012-07-19 05:47:55 +00:00
|
|
|
final float curvature = getAngleDiff(angle, mAngle);
|
2012-07-18 05:27:51 +00:00
|
|
|
if (curvature > GESTURE_RECOG_CURVATURE_THRESHOLD) {
|
2012-07-19 05:47:55 +00:00
|
|
|
if (size > mIncrementalRecognitionSize) {
|
|
|
|
mIncrementalRecognitionSize = size;
|
2012-07-18 05:27:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mAngle = angle;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isHistorical) {
|
|
|
|
final int duration = (int)(time - mLastPointTime);
|
|
|
|
if (mLastPointTime != 0 && duration > 0) {
|
|
|
|
final float speed = getDistance(mLastPointX, mLastPointY, x, y) / duration;
|
|
|
|
if (speed < GESTURE_RECOG_SPEED_THRESHOLD) {
|
2012-07-19 05:47:55 +00:00
|
|
|
mIncrementalRecognitionSize = size;
|
2012-07-18 05:27:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
updateLastPoint(x, y, time);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void appendAllBatchPoints(final InputPointers out) {
|
|
|
|
out.append(mInputPointers, 0, mInputPointers.getPointerSize());
|
|
|
|
}
|
|
|
|
|
|
|
|
public void appendIncrementalBatchPoints(final InputPointers out) {
|
2012-07-19 05:47:55 +00:00
|
|
|
out.append(mInputPointers, 0, mIncrementalRecognitionSize);
|
2012-07-18 05:27:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static float getDistance(final int p1x, final int p1y,
|
|
|
|
final int p2x, final int p2y) {
|
|
|
|
final float dx = p1x - p2x;
|
|
|
|
final float dy = p1y - p2y;
|
|
|
|
// TODO: Optimize out this {@link FloatMath#sqrt(float)} call.
|
|
|
|
return FloatMath.sqrt(dx * dx + dy * dy);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static float getAngle(final int p1x, final int p1y, final int p2x, final int p2y) {
|
|
|
|
final int dx = p1x - p2x;
|
|
|
|
final int dy = p1y - p2y;
|
|
|
|
if (dx == 0 && dy == 0) return 0;
|
|
|
|
return (float)Math.atan2(dy, dx);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static float getAngleDiff(final float a1, final float a2) {
|
|
|
|
final float diff = Math.abs(a1 - a2);
|
|
|
|
if (diff > Math.PI) {
|
|
|
|
return DOUBLE_PI - diff;
|
|
|
|
}
|
|
|
|
return diff;
|
|
|
|
}
|
|
|
|
}
|