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 com.android.inputmethod.latin.InputPointers;
|
2012-07-20 07:24:54 +00:00
|
|
|
import com.android.inputmethod.latin.ResizableIntArray;
|
2012-07-18 05:27:51 +00:00
|
|
|
|
|
|
|
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-20 07:24:54 +00:00
|
|
|
private final ResizableIntArray mEventTimes = new ResizableIntArray(DEFAULT_CAPACITY);
|
|
|
|
private final ResizableIntArray mXCoordinates = new ResizableIntArray(DEFAULT_CAPACITY);
|
|
|
|
private final ResizableIntArray mYCoordinates = new ResizableIntArray(DEFAULT_CAPACITY);
|
2012-07-18 05:27:51 +00:00
|
|
|
private float mLength;
|
2012-07-19 05:47:55 +00:00
|
|
|
private int mIncrementalRecognitionSize;
|
2012-07-19 12:53:42 +00:00
|
|
|
private int mLastIncrementalBatchSize;
|
2012-07-18 05:27:51 +00:00
|
|
|
private long mLastPointTime;
|
|
|
|
private int mLastPointX;
|
|
|
|
private int mLastPointY;
|
|
|
|
|
|
|
|
private int mMinGestureLength;
|
|
|
|
private int mMinGestureSampleLength;
|
|
|
|
|
2012-07-19 05:47:55 +00:00
|
|
|
// TODO: Move some of these to resource.
|
2012-08-13 02:54:31 +00:00
|
|
|
private static final float MIN_GESTURE_LENGTH_RATIO_TO_KEY_WIDTH = 0.75f;
|
|
|
|
private static final int MIN_GESTURE_DURATION = 100; // msec
|
2012-08-13 04:45:32 +00:00
|
|
|
private static final float MIN_GESTURE_SAMPLING_RATIO_TO_KEY_WIDTH = 1.0f / 6.0f;
|
2012-07-18 05:27:51 +00:00
|
|
|
private static final float GESTURE_RECOG_SPEED_THRESHOLD = 0.4f; // dip/msec
|
|
|
|
|
2012-08-20 03:57:34 +00:00
|
|
|
public GestureStroke(final int pointerId) {
|
2012-07-18 05:27:51 +00:00
|
|
|
mPointerId = pointerId;
|
|
|
|
}
|
|
|
|
|
2012-08-13 04:45:32 +00:00
|
|
|
public void setGestureSampleLength(final int keyWidth) {
|
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);
|
2012-08-13 04:45:32 +00:00
|
|
|
mMinGestureSampleLength = (int)(keyWidth * MIN_GESTURE_SAMPLING_RATIO_TO_KEY_WIDTH);
|
2012-07-18 05:27:51 +00:00
|
|
|
}
|
|
|
|
|
2012-08-13 04:45:32 +00:00
|
|
|
public boolean isStartOfAGesture() {
|
|
|
|
final int size = mEventTimes.getLength();
|
|
|
|
final int downDuration = (size > 0) ? mEventTimes.get(size - 1) : 0;
|
2012-07-18 05:27:51 +00:00
|
|
|
return downDuration > MIN_GESTURE_DURATION && mLength > mMinGestureLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void reset() {
|
|
|
|
mLength = 0;
|
2012-07-19 05:47:55 +00:00
|
|
|
mIncrementalRecognitionSize = 0;
|
2012-07-19 12:53:42 +00:00
|
|
|
mLastIncrementalBatchSize = 0;
|
2012-07-18 05:27:51 +00:00
|
|
|
mLastPointTime = 0;
|
2012-07-20 07:24:54 +00:00
|
|
|
mEventTimes.setLength(0);
|
|
|
|
mXCoordinates.setLength(0);
|
|
|
|
mYCoordinates.setLength(0);
|
2012-07-18 05:27:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2012-07-20 07:24:54 +00:00
|
|
|
final int size = mEventTimes.getLength();
|
2012-07-18 05:27:51 +00:00
|
|
|
if (size == 0) {
|
2012-07-20 07:24:54 +00:00
|
|
|
mEventTimes.add(time);
|
|
|
|
mXCoordinates.add(x);
|
|
|
|
mYCoordinates.add(y);
|
2012-07-18 05:27:51 +00:00
|
|
|
if (!isHistorical) {
|
|
|
|
updateLastPoint(x, y, time);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2012-07-20 07:24:54 +00:00
|
|
|
|
|
|
|
final int lastX = mXCoordinates.get(size - 1);
|
|
|
|
final int lastY = mYCoordinates.get(size - 1);
|
2012-07-18 05:27:51 +00:00
|
|
|
final float dist = getDistance(lastX, lastY, x, y);
|
|
|
|
if (dist > mMinGestureSampleLength) {
|
2012-07-20 07:24:54 +00:00
|
|
|
mEventTimes.add(time);
|
|
|
|
mXCoordinates.add(x);
|
|
|
|
mYCoordinates.add(y);
|
2012-07-18 05:27:51 +00:00
|
|
|
mLength += dist;
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2012-07-20 07:24:54 +00:00
|
|
|
appendBatchPoints(out, mEventTimes.getLength());
|
2012-07-18 05:27:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void appendIncrementalBatchPoints(final InputPointers out) {
|
2012-07-20 07:24:54 +00:00
|
|
|
appendBatchPoints(out, mIncrementalRecognitionSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void appendBatchPoints(final InputPointers out, final int size) {
|
2012-08-23 06:01:46 +00:00
|
|
|
final int length = size - mLastIncrementalBatchSize;
|
|
|
|
if (length <= 0) {
|
|
|
|
return;
|
|
|
|
}
|
2012-07-20 07:24:54 +00:00
|
|
|
out.append(mPointerId, mEventTimes, mXCoordinates, mYCoordinates,
|
2012-08-23 06:01:46 +00:00
|
|
|
mLastIncrementalBatchSize, length);
|
2012-07-20 07:24:54 +00:00
|
|
|
mLastIncrementalBatchSize = size;
|
2012-07-18 05:27:51 +00:00
|
|
|
}
|
|
|
|
|
2012-08-13 08:31:46 +00:00
|
|
|
private static float getDistance(final int x1, final int y1, final int x2, final int y2) {
|
|
|
|
final float dx = x1 - x2;
|
|
|
|
final float dy = y1 - y2;
|
2012-08-12 02:10:48 +00:00
|
|
|
// Note that, in recent versions of Android, FloatMath is actually slower than
|
|
|
|
// java.lang.Math due to the way the JIT optimizes java.lang.Math.
|
|
|
|
return (float)Math.sqrt(dx * dx + dy * dy);
|
2012-07-18 05:27:51 +00:00
|
|
|
}
|
|
|
|
}
|