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 <cassert>
|
|
|
|
#include <cstring>
|
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"
|
|
|
|
|
|
|
|
namespace latinime {
|
2011-06-18 04:09:55 +00:00
|
|
|
|
2012-08-24 05:51:15 +00:00
|
|
|
/* static */ const float ProximityInfo::NOT_A_DISTANCE_FLOAT = -1.0f;
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-09 06:58:15 +00:00
|
|
|
ProximityInfo::ProximityInfo(JNIEnv *env, const jstring localeJStr, const int maxProximityCharsSize,
|
2012-03-13 07:33:47 +00:00
|
|
|
const int keyboardWidth, const int keyboardHeight, const int gridWidth,
|
2012-08-08 11:43:47 +00:00
|
|
|
const int gridHeight, const int mostCommonKeyWidth, 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)
|
2012-08-24 05:51:15 +00:00
|
|
|
: MAX_PROXIMITY_CHARS_SIZE(maxProximityCharsSize), 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),
|
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),
|
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
|
2012-09-03 19:50:21 +00:00
|
|
|
/* proximityGridLength */]),
|
|
|
|
mCodeToKeyMap() {
|
2012-06-13 23:07:54 +00:00
|
|
|
const int proximityGridLength = GRID_WIDTH * GRID_HEIGHT * MAX_PROXIMITY_CHARS_SIZE;
|
2011-03-04 14:06:45 +00:00
|
|
|
if (DEBUG_PROXIMITY_INFO) {
|
2012-01-13 09:01:22 +00:00
|
|
|
AKLOGI("Create proximity info array %d", proximityGridLength);
|
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);
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
memset(mLocaleStr, 0, sizeof(mLocaleStr));
|
|
|
|
env->GetStringUTFRegion(localeJStr, 0, env->GetStringLength(localeJStr), mLocaleStr);
|
2012-08-08 11:43:47 +00:00
|
|
|
safeGetOrFillZeroIntArrayRegion(env, proximityChars, proximityGridLength, mProximityCharsArray);
|
|
|
|
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
|
|
|
|
|
|
|
inline int ProximityInfo::getStartIndexFromCoordinates(const int x, const int y) const {
|
2011-03-05 06:50:19 +00:00
|
|
|
return ((y / CELL_HEIGHT) * GRID_WIDTH + (x / CELL_WIDTH))
|
2011-03-04 14:06:45 +00:00
|
|
|
* MAX_PROXIMITY_CHARS_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
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.
|
|
|
|
//assert(false);
|
2011-12-15 13:29:05 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-03-04 14:06:45 +00:00
|
|
|
const int startIndex = getStartIndexFromCoordinates(x, y);
|
|
|
|
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(
|
2012-08-13 11:20:04 +00:00
|
|
|
const int keyId, const int x, const int y) const {
|
2012-09-24 09:29:31 +00:00
|
|
|
const static float verticalSweetSpotScaleForGeometric = 1.1f;
|
|
|
|
const bool correctTouchPosition = hasTouchPositionCorrectionData();
|
|
|
|
const float centerX = static_cast<float>(correctTouchPosition
|
|
|
|
? getSweetSpotCenterXAt(keyId)
|
|
|
|
: 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;
|
|
|
|
centerY = visualKeyCenterY + gapY * verticalSweetSpotScaleForGeometric;
|
|
|
|
} 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());
|
|
|
|
return getNormalizedSquaredDistanceFloat(centerX, centerY, touchX, touchY, keyWidth);
|
|
|
|
}
|
|
|
|
|
2012-03-23 07:05:18 +00:00
|
|
|
int ProximityInfo::squaredDistanceToEdge(const int keyId, const int x, const int y) const {
|
2012-03-22 08:39:27 +00:00
|
|
|
if (keyId < 0) return true; // NOT_A_ID is -1, but return whenever < 0 just in case
|
2012-03-07 06:12:22 +00:00
|
|
|
const int left = mKeyXCoordinates[keyId];
|
|
|
|
const int top = mKeyYCoordinates[keyId];
|
2012-03-14 14:17:12 +00:00
|
|
|
const int right = left + mKeyWidths[keyId];
|
2012-03-07 06:12:22 +00:00
|
|
|
const int bottom = top + mKeyHeights[keyId];
|
|
|
|
const int edgeX = x < left ? left : (x > right ? right : x);
|
|
|
|
const int edgeY = y < top ? top : (y > bottom ? bottom : y);
|
|
|
|
const int dx = x - edgeX;
|
|
|
|
const int dy = y - edgeY;
|
|
|
|
return dx * dx + dy * dy;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProximityInfo::calculateNearbyKeyCodes(
|
2012-12-03 10:43:15 +00:00
|
|
|
const int x, const int y, const int primaryKey, int *inputCodes) const {
|
|
|
|
int *proximityCharsArray = mProximityCharsArray;
|
2012-03-07 06:12:22 +00:00
|
|
|
int insertPos = 0;
|
|
|
|
inputCodes[insertPos++] = primaryKey;
|
|
|
|
const int startIndex = getStartIndexFromCoordinates(x, y);
|
2012-03-23 10:38:23 +00:00
|
|
|
if (startIndex >= 0) {
|
2012-03-23 10:25:10 +00:00
|
|
|
for (int i = 0; i < MAX_PROXIMITY_CHARS_SIZE; ++i) {
|
2012-12-03 10:43:15 +00:00
|
|
|
const int c = proximityCharsArray[startIndex + i];
|
2012-03-23 10:25:10 +00:00
|
|
|
if (c < KEYCODE_SPACE || c == primaryKey) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-09-04 03:49:46 +00:00
|
|
|
const int keyIndex = getKeyIndexOf(c);
|
2012-03-23 10:25:10 +00:00
|
|
|
const bool onKey = isOnKey(keyIndex, x, y);
|
|
|
|
const int distance = squaredDistanceToEdge(keyIndex, x, y);
|
|
|
|
if (onKey || distance < MOST_COMMON_KEY_WIDTH_SQUARE) {
|
|
|
|
inputCodes[insertPos++] = c;
|
|
|
|
if (insertPos >= MAX_PROXIMITY_CHARS_SIZE) {
|
|
|
|
if (DEBUG_DICT) {
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
return;
|
2012-03-13 13:07:56 +00:00
|
|
|
}
|
2012-03-07 06:12:22 +00:00
|
|
|
}
|
|
|
|
}
|
2012-03-23 10:25:10 +00:00
|
|
|
const int additionalProximitySize =
|
2012-08-09 06:58:15 +00:00
|
|
|
AdditionalProximityChars::getAdditionalCharsSize(mLocaleStr, primaryKey);
|
2012-03-23 10:25:10 +00:00
|
|
|
if (additionalProximitySize > 0) {
|
|
|
|
inputCodes[insertPos++] = ADDITIONAL_PROXIMITY_CHAR_DELIMITER_CODE;
|
|
|
|
if (insertPos >= MAX_PROXIMITY_CHARS_SIZE) {
|
2012-03-23 10:36:07 +00:00
|
|
|
if (DEBUG_DICT) {
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
return;
|
2012-03-14 14:17:12 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 10:43:15 +00:00
|
|
|
const int *additionalProximityChars =
|
2012-08-09 06:58:15 +00:00
|
|
|
AdditionalProximityChars::getAdditionalChars(mLocaleStr, primaryKey);
|
2012-03-23 10:25:10 +00:00
|
|
|
for (int j = 0; j < additionalProximitySize; ++j) {
|
2012-12-03 10:43:15 +00:00
|
|
|
const int ac = additionalProximityChars[j];
|
2012-03-23 10:25:10 +00:00
|
|
|
int k = 0;
|
|
|
|
for (; k < insertPos; ++k) {
|
2012-12-03 10:43:15 +00:00
|
|
|
if (ac == inputCodes[k]) {
|
2012-03-23 10:25:10 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-03-13 09:26:23 +00:00
|
|
|
}
|
2012-03-23 10:25:10 +00:00
|
|
|
if (k < insertPos) {
|
|
|
|
continue;
|
2012-03-13 13:07:56 +00:00
|
|
|
}
|
2012-03-23 10:25:10 +00:00
|
|
|
inputCodes[insertPos++] = ac;
|
|
|
|
if (insertPos >= MAX_PROXIMITY_CHARS_SIZE) {
|
|
|
|
if (DEBUG_DICT) {
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
return;
|
2012-03-23 10:36:07 +00:00
|
|
|
}
|
2012-03-13 13:07:56 +00:00
|
|
|
}
|
2012-03-13 09:26:23 +00:00
|
|
|
}
|
2012-03-23 10:38:23 +00:00
|
|
|
}
|
2012-03-13 13:07:56 +00:00
|
|
|
// Add a delimiter for the proximity characters
|
2012-03-14 14:17:12 +00:00
|
|
|
for (int i = insertPos; i < MAX_PROXIMITY_CHARS_SIZE; ++i) {
|
2012-09-04 03:49:46 +00:00
|
|
|
inputCodes[i] = NOT_A_CODE_POINT;
|
2012-03-14 14:17:12 +00:00
|
|
|
}
|
2012-03-07 06:12:22 +00:00
|
|
|
}
|
|
|
|
|
2012-09-04 03:49:46 +00:00
|
|
|
int ProximityInfo::getKeyIndexOf(const int c) const {
|
2012-03-14 14:17:12 +00:00
|
|
|
if (KEY_COUNT == 0) {
|
2011-10-06 10:12:20 +00:00
|
|
|
// We do not have the coordinate data
|
2012-03-23 08:05:03 +00:00
|
|
|
return NOT_AN_INDEX;
|
2011-10-04 08:04:07 +00:00
|
|
|
}
|
2012-10-11 04:08:06 +00:00
|
|
|
if (c == NOT_A_CODE_POINT) {
|
|
|
|
return NOT_AN_INDEX;
|
|
|
|
}
|
2012-12-03 10:43:15 +00:00
|
|
|
const int lowerCode = toLowerCase(c);
|
2012-09-25 07:06:31 +00:00
|
|
|
hash_map_compat<int, int>::const_iterator mapPos = mCodeToKeyMap.find(lowerCode);
|
2012-09-03 19:50:21 +00:00
|
|
|
if (mapPos != mCodeToKeyMap.end()) {
|
|
|
|
return mapPos->second;
|
2011-10-04 08:04:07 +00:00
|
|
|
}
|
2012-09-03 19:50:21 +00:00
|
|
|
return NOT_AN_INDEX;
|
2011-10-04 08:04:07 +00:00
|
|
|
}
|
2012-06-27 05:52:40 +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++) {
|
2012-08-12 02:10:48 +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 {
|
2012-09-04 03:49:46 +00:00
|
|
|
return getKeyCenterXOfKeyIdG(getKeyIndexOf(charCode));
|
2012-08-10 06:42:56 +00:00
|
|
|
}
|
|
|
|
|
2012-09-10 07:49:36 +00:00
|
|
|
int ProximityInfo::getKeyCenterYOfCodePointG(int charCode) const {
|
2012-09-04 03:49:46 +00:00
|
|
|
return getKeyCenterYOfKeyIdG(getKeyIndexOf(charCode));
|
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];
|
|
|
|
}
|
2012-08-29 11:09:27 +00:00
|
|
|
return MAX_POINT_TO_KEY_LENGTH;
|
2012-08-10 06:42:56 +00:00
|
|
|
}
|
2011-06-18 04:09:55 +00:00
|
|
|
} // namespace latinime
|