2011-02-22 08:28:55 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 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.
|
|
|
|
*/
|
|
|
|
|
2012-07-31 08:56:40 +00:00
|
|
|
#include <cstring>
|
2013-02-08 19:35:19 +00:00
|
|
|
#include <cmath>
|
2011-02-22 08:28:55 +00:00
|
|
|
|
2011-03-04 14:06:45 +00:00
|
|
|
#define LOG_TAG "LatinIME: proximity_info.cpp"
|
|
|
|
|
2012-03-13 07:33:47 +00:00
|
|
|
#include "additional_proximity_chars.h"
|
2012-08-02 10:48:08 +00:00
|
|
|
#include "char_utils.h"
|
2012-05-16 14:05:32 +00:00
|
|
|
#include "defines.h"
|
2012-08-10 06:42:56 +00:00
|
|
|
#include "geometry_utils.h"
|
2012-08-08 11:43:47 +00:00
|
|
|
#include "jni.h"
|
2011-02-22 08:28:55 +00:00
|
|
|
#include "proximity_info.h"
|
2013-02-01 10:59:40 +00:00
|
|
|
#include "proximity_info_params.h"
|
2011-02-22 08:28:55 +00:00
|
|
|
|
|
|
|
namespace latinime {
|
2011-06-18 04:09:55 +00:00
|
|
|
|
2012-11-02 17:50:47 +00:00
|
|
|
static AK_FORCE_INLINE void safeGetOrFillZeroIntArrayRegion(JNIEnv *env, jintArray jArray,
|
|
|
|
jsize len, jint *buffer) {
|
2012-08-08 11:43:47 +00:00
|
|
|
if (jArray && buffer) {
|
|
|
|
env->GetIntArrayRegion(jArray, 0, len, buffer);
|
|
|
|
} else if (buffer) {
|
2012-11-01 08:05:08 +00:00
|
|
|
memset(buffer, 0, len * sizeof(buffer[0]));
|
2011-09-27 02:15:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-02 17:50:47 +00:00
|
|
|
static AK_FORCE_INLINE void safeGetOrFillZeroFloatArrayRegion(JNIEnv *env, jfloatArray jArray,
|
|
|
|
jsize len, jfloat *buffer) {
|
2012-08-08 11:43:47 +00:00
|
|
|
if (jArray && buffer) {
|
|
|
|
env->GetFloatArrayRegion(jArray, 0, len, buffer);
|
|
|
|
} else if (buffer) {
|
2012-11-01 08:05:08 +00:00
|
|
|
memset(buffer, 0, len * sizeof(buffer[0]));
|
2012-08-08 11:43:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-22 04:14:53 +00:00
|
|
|
ProximityInfo::ProximityInfo(JNIEnv *env, const jstring localeJStr,
|
2012-03-13 07:33:47 +00:00
|
|
|
const int keyboardWidth, const int keyboardHeight, const int gridWidth,
|
2013-04-10 02:40:53 +00:00
|
|
|
const int gridHeight, const int mostCommonKeyWidth, const int mostCommonKeyHeight,
|
|
|
|
const jintArray proximityChars, const int keyCount, const jintArray keyXCoordinates,
|
|
|
|
const jintArray keyYCoordinates, const jintArray keyWidths, const jintArray keyHeights,
|
|
|
|
const jintArray keyCharCodes, const jfloatArray sweetSpotCenterXs,
|
|
|
|
const jfloatArray sweetSpotCenterYs, const jfloatArray sweetSpotRadii)
|
2013-01-22 04:14:53 +00:00
|
|
|
: GRID_WIDTH(gridWidth), GRID_HEIGHT(gridHeight), MOST_COMMON_KEY_WIDTH(mostCommonKeyWidth),
|
2012-03-07 06:12:22 +00:00
|
|
|
MOST_COMMON_KEY_WIDTH_SQUARE(mostCommonKeyWidth * mostCommonKeyWidth),
|
2013-04-10 02:40:53 +00:00
|
|
|
MOST_COMMON_KEY_HEIGHT(mostCommonKeyHeight),
|
|
|
|
NORMALIZED_SQUARED_MOST_COMMON_KEY_HYPOTENUSE(1.0f +
|
|
|
|
SQUARE_FLOAT(static_cast<float>(mostCommonKeyHeight) /
|
|
|
|
static_cast<float>(mostCommonKeyWidth))),
|
2011-03-04 14:06:45 +00:00
|
|
|
CELL_WIDTH((keyboardWidth + gridWidth - 1) / gridWidth),
|
2011-09-21 03:02:47 +00:00
|
|
|
CELL_HEIGHT((keyboardHeight + gridHeight - 1) / gridHeight),
|
2011-09-28 03:59:43 +00:00
|
|
|
KEY_COUNT(min(keyCount, MAX_KEY_COUNT_IN_A_KEYBOARD)),
|
2012-09-04 08:00:24 +00:00
|
|
|
KEYBOARD_WIDTH(keyboardWidth), KEYBOARD_HEIGHT(keyboardHeight),
|
2013-02-08 19:35:19 +00:00
|
|
|
KEYBOARD_HYPOTENUSE(hypotf(KEYBOARD_WIDTH, KEYBOARD_HEIGHT)),
|
2011-10-06 10:12:20 +00:00
|
|
|
HAS_TOUCH_POSITION_CORRECTION_DATA(keyCount > 0 && keyXCoordinates && keyYCoordinates
|
|
|
|
&& keyWidths && keyHeights && keyCharCodes && sweetSpotCenterXs
|
2012-08-24 05:51:15 +00:00
|
|
|
&& sweetSpotCenterYs && sweetSpotRadii),
|
2012-12-03 10:43:15 +00:00
|
|
|
mProximityCharsArray(new int[GRID_WIDTH * GRID_HEIGHT * MAX_PROXIMITY_CHARS_SIZE
|
2013-01-22 04:14:53 +00:00
|
|
|
/* proximityCharsLength */]),
|
2012-09-03 19:50:21 +00:00
|
|
|
mCodeToKeyMap() {
|
2013-01-22 04:14:53 +00:00
|
|
|
/* Let's check the input array length here to make sure */
|
|
|
|
const jsize proximityCharsLength = env->GetArrayLength(proximityChars);
|
|
|
|
if (proximityCharsLength != GRID_WIDTH * GRID_HEIGHT * MAX_PROXIMITY_CHARS_SIZE) {
|
|
|
|
AKLOGE("Invalid proximityCharsLength: %d", proximityCharsLength);
|
|
|
|
ASSERT(false);
|
|
|
|
return;
|
|
|
|
}
|
2011-03-04 14:06:45 +00:00
|
|
|
if (DEBUG_PROXIMITY_INFO) {
|
2013-01-22 04:14:53 +00:00
|
|
|
AKLOGI("Create proximity info array %d", proximityCharsLength);
|
2011-03-04 14:06:45 +00:00
|
|
|
}
|
2012-08-09 06:58:15 +00:00
|
|
|
const jsize localeCStrUtf8Length = env->GetStringUTFLength(localeJStr);
|
2012-08-09 13:26:58 +00:00
|
|
|
if (localeCStrUtf8Length >= MAX_LOCALE_STRING_LENGTH) {
|
|
|
|
AKLOGI("Locale string length too long: length=%d", localeCStrUtf8Length);
|
2013-01-09 06:21:44 +00:00
|
|
|
ASSERT(false);
|
2012-08-09 13:26:58 +00:00
|
|
|
}
|
|
|
|
memset(mLocaleStr, 0, sizeof(mLocaleStr));
|
|
|
|
env->GetStringUTFRegion(localeJStr, 0, env->GetStringLength(localeJStr), mLocaleStr);
|
2013-01-22 04:14:53 +00:00
|
|
|
safeGetOrFillZeroIntArrayRegion(env, proximityChars, proximityCharsLength,
|
|
|
|
mProximityCharsArray);
|
2012-08-08 11:43:47 +00:00
|
|
|
safeGetOrFillZeroIntArrayRegion(env, keyXCoordinates, KEY_COUNT, mKeyXCoordinates);
|
|
|
|
safeGetOrFillZeroIntArrayRegion(env, keyYCoordinates, KEY_COUNT, mKeyYCoordinates);
|
|
|
|
safeGetOrFillZeroIntArrayRegion(env, keyWidths, KEY_COUNT, mKeyWidths);
|
|
|
|
safeGetOrFillZeroIntArrayRegion(env, keyHeights, KEY_COUNT, mKeyHeights);
|
2012-09-04 03:49:46 +00:00
|
|
|
safeGetOrFillZeroIntArrayRegion(env, keyCharCodes, KEY_COUNT, mKeyCodePoints);
|
2012-08-08 11:43:47 +00:00
|
|
|
safeGetOrFillZeroFloatArrayRegion(env, sweetSpotCenterXs, KEY_COUNT, mSweetSpotCenterXs);
|
|
|
|
safeGetOrFillZeroFloatArrayRegion(env, sweetSpotCenterYs, KEY_COUNT, mSweetSpotCenterYs);
|
|
|
|
safeGetOrFillZeroFloatArrayRegion(env, sweetSpotRadii, KEY_COUNT, mSweetSpotRadii);
|
2012-08-10 06:42:56 +00:00
|
|
|
initializeG();
|
2011-09-21 03:02:47 +00:00
|
|
|
}
|
|
|
|
|
2011-02-22 08:28:55 +00:00
|
|
|
ProximityInfo::~ProximityInfo() {
|
|
|
|
delete[] mProximityCharsArray;
|
|
|
|
}
|
2011-03-04 14:06:45 +00:00
|
|
|
|
|
|
|
bool ProximityInfo::hasSpaceProximity(const int x, const int y) const {
|
2011-12-15 13:29:05 +00:00
|
|
|
if (x < 0 || y < 0) {
|
|
|
|
if (DEBUG_DICT) {
|
2012-01-13 09:01:22 +00:00
|
|
|
AKLOGI("HasSpaceProximity: Illegal coordinates (%d, %d)", x, y);
|
2012-09-04 03:49:46 +00:00
|
|
|
// TODO: Enable this assertion.
|
2013-01-09 06:21:44 +00:00
|
|
|
//ASSERT(false);
|
2011-12-15 13:29:05 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-30 10:24:03 +00:00
|
|
|
const int startIndex = ProximityInfoUtils::getStartIndexFromCoordinates(x, y,
|
|
|
|
CELL_HEIGHT, CELL_WIDTH, GRID_WIDTH);
|
2011-03-04 14:06:45 +00:00
|
|
|
if (DEBUG_PROXIMITY_INFO) {
|
2012-01-13 09:01:22 +00:00
|
|
|
AKLOGI("hasSpaceProximity: index %d, %d, %d", startIndex, x, y);
|
2011-03-04 14:06:45 +00:00
|
|
|
}
|
2012-12-03 10:43:15 +00:00
|
|
|
int *proximityCharsArray = mProximityCharsArray;
|
2011-03-04 14:06:45 +00:00
|
|
|
for (int i = 0; i < MAX_PROXIMITY_CHARS_SIZE; ++i) {
|
|
|
|
if (DEBUG_PROXIMITY_INFO) {
|
2012-01-13 09:01:22 +00:00
|
|
|
AKLOGI("Index: %d", mProximityCharsArray[startIndex + i]);
|
2011-03-04 14:06:45 +00:00
|
|
|
}
|
2012-06-05 08:55:52 +00:00
|
|
|
if (proximityCharsArray[startIndex + i] == KEYCODE_SPACE) {
|
2011-03-04 14:06:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2011-02-22 08:28:55 +00:00
|
|
|
}
|
2011-06-18 04:09:55 +00:00
|
|
|
|
2012-09-24 09:29:31 +00:00
|
|
|
float ProximityInfo::getNormalizedSquaredDistanceFromCenterFloatG(
|
2013-04-09 05:15:47 +00:00
|
|
|
const int keyId, const int x, const int y, const float verticalScale) const {
|
2012-09-24 09:29:31 +00:00
|
|
|
const bool correctTouchPosition = hasTouchPositionCorrectionData();
|
2013-02-01 10:59:40 +00:00
|
|
|
const float centerX = static_cast<float>(correctTouchPosition ? getSweetSpotCenterXAt(keyId)
|
2012-09-24 09:29:31 +00:00
|
|
|
: getKeyCenterXOfKeyIdG(keyId));
|
|
|
|
const float visualKeyCenterY = static_cast<float>(getKeyCenterYOfKeyIdG(keyId));
|
|
|
|
float centerY;
|
|
|
|
if (correctTouchPosition) {
|
|
|
|
const float sweetSpotCenterY = static_cast<float>(getSweetSpotCenterYAt(keyId));
|
|
|
|
const float gapY = sweetSpotCenterY - visualKeyCenterY;
|
2013-04-09 05:15:47 +00:00
|
|
|
centerY = visualKeyCenterY + gapY * verticalScale;
|
2012-09-24 09:29:31 +00:00
|
|
|
} else {
|
|
|
|
centerY = visualKeyCenterY;
|
|
|
|
}
|
2012-08-13 11:20:04 +00:00
|
|
|
const float touchX = static_cast<float>(x);
|
|
|
|
const float touchY = static_cast<float>(y);
|
|
|
|
const float keyWidth = static_cast<float>(getMostCommonKeyWidth());
|
2013-01-21 02:37:54 +00:00
|
|
|
return ProximityInfoUtils::getSquaredDistanceFloat(centerX, centerY, touchX, touchY)
|
|
|
|
/ SQUARE_FLOAT(keyWidth);
|
2012-08-13 11:20:04 +00:00
|
|
|
}
|
|
|
|
|
2012-09-04 03:49:46 +00:00
|
|
|
int ProximityInfo::getCodePointOf(const int keyIndex) const {
|
2012-08-10 06:42:56 +00:00
|
|
|
if (keyIndex < 0 || keyIndex >= KEY_COUNT) {
|
2012-09-04 03:49:46 +00:00
|
|
|
return NOT_A_CODE_POINT;
|
2012-08-10 06:42:56 +00:00
|
|
|
}
|
2012-09-04 03:49:46 +00:00
|
|
|
return mKeyIndexToCodePointG[keyIndex];
|
2012-08-10 06:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ProximityInfo::initializeG() {
|
2012-08-13 11:20:04 +00:00
|
|
|
// TODO: Optimize
|
2012-08-10 06:42:56 +00:00
|
|
|
for (int i = 0; i < KEY_COUNT; ++i) {
|
2012-09-04 03:49:46 +00:00
|
|
|
const int code = mKeyCodePoints[i];
|
2012-12-03 10:43:15 +00:00
|
|
|
const int lowerCode = toLowerCase(code);
|
2012-08-10 06:42:56 +00:00
|
|
|
mCenterXsG[i] = mKeyXCoordinates[i] + mKeyWidths[i] / 2;
|
|
|
|
mCenterYsG[i] = mKeyYCoordinates[i] + mKeyHeights[i] / 2;
|
2012-09-03 19:50:21 +00:00
|
|
|
mCodeToKeyMap[lowerCode] = i;
|
|
|
|
mKeyIndexToCodePointG[i] = lowerCode;
|
2012-08-10 06:42:56 +00:00
|
|
|
}
|
|
|
|
for (int i = 0; i < KEY_COUNT; i++) {
|
|
|
|
mKeyKeyDistancesG[i][i] = 0;
|
|
|
|
for (int j = i + 1; j < KEY_COUNT; j++) {
|
2013-01-21 07:33:24 +00:00
|
|
|
mKeyKeyDistancesG[i][j] = getDistanceInt(
|
2012-08-10 06:42:56 +00:00
|
|
|
mCenterXsG[i], mCenterYsG[i], mCenterXsG[j], mCenterYsG[j]);
|
|
|
|
mKeyKeyDistancesG[j][i] = mKeyKeyDistancesG[i][j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-10 07:49:36 +00:00
|
|
|
int ProximityInfo::getKeyCenterXOfCodePointG(int charCode) const {
|
2013-01-17 10:46:12 +00:00
|
|
|
return getKeyCenterXOfKeyIdG(
|
|
|
|
ProximityInfoUtils::getKeyIndexOf(KEY_COUNT, charCode, &mCodeToKeyMap));
|
2012-08-10 06:42:56 +00:00
|
|
|
}
|
|
|
|
|
2012-09-10 07:49:36 +00:00
|
|
|
int ProximityInfo::getKeyCenterYOfCodePointG(int charCode) const {
|
2013-01-17 10:46:12 +00:00
|
|
|
return getKeyCenterYOfKeyIdG(
|
|
|
|
ProximityInfoUtils::getKeyIndexOf(KEY_COUNT, charCode, &mCodeToKeyMap));
|
2012-08-10 06:42:56 +00:00
|
|
|
}
|
|
|
|
|
2012-09-10 07:49:36 +00:00
|
|
|
int ProximityInfo::getKeyCenterXOfKeyIdG(int keyId) const {
|
2012-08-10 06:42:56 +00:00
|
|
|
if (keyId >= 0) {
|
|
|
|
return mCenterXsG[keyId];
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-10 07:49:36 +00:00
|
|
|
int ProximityInfo::getKeyCenterYOfKeyIdG(int keyId) const {
|
2012-08-10 06:42:56 +00:00
|
|
|
if (keyId >= 0) {
|
|
|
|
return mCenterYsG[keyId];
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-11 04:08:06 +00:00
|
|
|
int ProximityInfo::getKeyKeyDistanceG(const int keyId0, const int keyId1) const {
|
2012-08-10 06:42:56 +00:00
|
|
|
if (keyId0 >= 0 && keyId1 >= 0) {
|
|
|
|
return mKeyKeyDistancesG[keyId0][keyId1];
|
|
|
|
}
|
2013-03-05 05:12:06 +00:00
|
|
|
return MAX_VALUE_FOR_WEIGHTING;
|
2012-08-10 06:42:56 +00:00
|
|
|
}
|
2011-06-18 04:09:55 +00:00
|
|
|
} // namespace latinime
|