void InputHandler::processHoldAndRepeat() { HardwareKeyboard *kb = PageManager::GetHardwareKeyboard(); // touch and key repeat section struct timespec curTime; clock_gettime(CLOCK_MONOTONIC, &curTime); long seconds = curTime.tv_sec - touchStart.tv_sec; long nseconds = curTime.tv_nsec - touchStart.tv_nsec; long mtime = ((seconds) * 1000 + nseconds / 1000000.0) + 0.5; if (touch_status == TS_TOUCH_AND_HOLD && mtime > touch_hold_ms) { touch_status = TS_TOUCH_REPEAT; clock_gettime(CLOCK_MONOTONIC, &touchStart); LOGEVENT("TOUCH_HOLD: %d,%d", x, y); PageManager::NotifyTouch(TOUCH_HOLD, x, y); } else if (touch_status == TS_TOUCH_REPEAT && mtime > touch_repeat_ms) { LOGEVENT("TOUCH_REPEAT: %d,%d", x, y); clock_gettime(CLOCK_MONOTONIC, &touchStart); PageManager::NotifyTouch(TOUCH_REPEAT, x, y); } else if (key_status == KS_KEY_PRESSED && mtime > key_hold_ms) { LOGEVENT("KEY_HOLD: %d,%d", x, y); clock_gettime(CLOCK_MONOTONIC, &touchStart); key_status = KS_KEY_REPEAT; kb->KeyRepeat(); } else if (key_status == KS_KEY_REPEAT && mtime > key_repeat_ms) { LOGEVENT("KEY_REPEAT: %d,%d", x, y); clock_gettime(CLOCK_MONOTONIC, &touchStart); kb->KeyRepeat(); } }
int GUIAction::NotifyKey(int key, bool down) { auto itr = mKeys.find(key); if (itr == mKeys.end()) { return 1; } bool prevState = itr->second; itr->second = down; // If there is only one key for this action, wait for key up so it // doesn't trigger with multi-key actions. // Else, check if all buttons are pressed, then consume their release events // so they don't trigger one-button actions and reset mKeys pressed status if (mKeys.size() == 1) { if (!down && prevState) { doActions(); return 0; } } else if (down) { for (itr = mKeys.begin(); itr != mKeys.end(); ++itr) { if (!itr->second) { return 1; } } // Passed, all req buttons are pressed, reset them and consume release events HardwareKeyboard *kb = PageManager::GetHardwareKeyboard(); for (itr = mKeys.begin(); itr != mKeys.end(); ++itr) { kb->ConsumeKeyRelease(itr->first); itr->second = false; } doActions(); return 0; } return 1; }
void InputHandler::processHoldAndRepeat() { HardwareKeyboard *kb = PageManager::GetHardwareKeyboard(); // touch and key repeat section struct timeval curTime; gettimeofday(&curTime, NULL); long seconds = curTime.tv_sec - touchStart.tv_sec; long useconds = curTime.tv_usec - touchStart.tv_usec; long mtime = ((seconds) * 1000 + useconds / 1000.0) + 0.5; if (touch_status == TS_TOUCH_AND_HOLD && mtime > touch_hold_ms) { touch_status = TS_TOUCH_REPEAT; gettimeofday(&touchStart, NULL); LOGEVENT("TOUCH_HOLD: %d,%d\n", x, y); PageManager::NotifyTouch(TOUCH_HOLD, x, y); } else if (touch_status == TS_TOUCH_REPEAT && mtime > touch_repeat_ms) { LOGEVENT("TOUCH_REPEAT: %d,%d\n", x, y); gettimeofday(&touchStart, NULL); PageManager::NotifyTouch(TOUCH_REPEAT, x, y); } else if (key_status == KS_KEY_PRESSED && mtime > key_hold_ms) { LOGEVENT("KEY_HOLD: %d,%d\n", x, y); gettimeofday(&touchStart, NULL); key_status = KS_KEY_REPEAT; kb->KeyRepeat(); } else if (key_status == KS_KEY_REPEAT && mtime > key_repeat_ms) { LOGEVENT("KEY_REPEAT: %d,%d\n", x, y); gettimeofday(&touchStart, NULL); kb->KeyRepeat(); } }
static void * input_thread(void *cookie) { int drag = 0; static int touch_and_hold = 0, dontwait = 0; static int touch_repeat = 0, key_repeat = 0; static int x = 0, y = 0; static int lshift = 0, rshift = 0; static struct timeval touchStart; string seconds; HardwareKeyboard *kb = PageManager::GetHardwareKeyboard(); MouseCursor *cursor = PageManager::GetMouseCursor(); #ifndef TW_NO_SCREEN_TIMEOUT //start screen timeout threads blankTimer.setTimerThread(); DataManager::GetValue("tw_screen_timeout_secs", seconds); blankTimer.setTime(atoi(seconds.c_str())); #else LOGINFO("Skipping screen timeout threads: TW_NO_SCREEN_TIMEOUT is set\n"); #endif for (;;) { // wait for the next event struct input_event ev; int state = 0, ret = 0; ret = ev_get(&ev, dontwait); if (ret < 0) { struct timeval curTime; gettimeofday(&curTime, NULL); long mtime, seconds, useconds; seconds = curTime.tv_sec - touchStart.tv_sec; useconds = curTime.tv_usec - touchStart.tv_usec; mtime = ((seconds) * 1000 + useconds / 1000.0) + 0.5; if (touch_and_hold && mtime > 500) { touch_and_hold = 0; touch_repeat = 1; gettimeofday(&touchStart, NULL); #ifdef _EVENT_LOGGING LOGERR("TOUCH_HOLD: %d,%d\n", x, y); #endif PageManager::NotifyTouch(TOUCH_HOLD, x, y); #ifndef TW_NO_SCREEN_TIMEOUT blankTimer.resetTimerAndUnblank(); #endif } else if (touch_repeat && mtime > 100) { #ifdef _EVENT_LOGGING LOGERR("TOUCH_REPEAT: %d,%d\n", x, y); #endif gettimeofday(&touchStart, NULL); PageManager::NotifyTouch(TOUCH_REPEAT, x, y); #ifndef TW_NO_SCREEN_TIMEOUT blankTimer.resetTimerAndUnblank(); #endif } else if (key_repeat == 1 && mtime > 500) { #ifdef _EVENT_LOGGING LOGERR("KEY_HOLD: %d,%d\n", x, y); #endif gettimeofday(&touchStart, NULL); key_repeat = 2; kb->KeyRepeat(); #ifndef TW_NO_SCREEN_TIMEOUT blankTimer.resetTimerAndUnblank(); #endif } else if (key_repeat == 2 && mtime > 100) { #ifdef _EVENT_LOGGING LOGERR("KEY_REPEAT: %d,%d\n", x, y); #endif gettimeofday(&touchStart, NULL); kb->KeyRepeat(); #ifndef TW_NO_SCREEN_TIMEOUT blankTimer.resetTimerAndUnblank(); #endif } } else if (ev.type == EV_ABS) { x = ev.value >> 16; y = ev.value & 0xFFFF; if (ev.code == 0) { if (state == 0) { #ifdef _EVENT_LOGGING LOGERR("TOUCH_RELEASE: %d,%d\n", x, y); #endif PageManager::NotifyTouch(TOUCH_RELEASE, x, y); #ifndef TW_NO_SCREEN_TIMEOUT blankTimer.resetTimerAndUnblank(); #endif touch_and_hold = 0; touch_repeat = 0; if (!key_repeat) dontwait = 0; } state = 0; drag = 0; } else { if (!drag) { if (x != 0 && y != 0) { #ifdef _EVENT_LOGGING LOGERR("TOUCH_START: %d,%d\n", x, y); #endif if (PageManager::NotifyTouch(TOUCH_START, x, y) > 0) state = 1; drag = 1; touch_and_hold = 1; dontwait = 1; key_repeat = 0; gettimeofday(&touchStart, NULL); } #ifndef TW_NO_SCREEN_TIMEOUT blankTimer.resetTimerAndUnblank(); #endif } else { if (state == 0) { #ifdef _EVENT_LOGGING LOGERR("TOUCH_DRAG: %d,%d\n", x, y); #endif if (PageManager::NotifyTouch(TOUCH_DRAG, x, y) > 0) state = 1; key_repeat = 0; #ifndef TW_NO_SCREEN_TIMEOUT blankTimer.resetTimerAndUnblank(); #endif } } } } else if (ev.type == EV_KEY)
static void *input_thread(void *cookie) { int drag = 0; static int touch_and_hold = 0, dontwait = 0, touch_repeat = 0, x = 0, y = 0, lshift = 0, rshift = 0, key_repeat = 0; static struct timeval touchStart; HardwareKeyboard kb; for (;;) { // wait for the next event struct input_event ev; int state = 0, ret = 0; ret = ev_get(&ev, dontwait); if (ret < 0) { struct timeval curTime; gettimeofday(&curTime, NULL); long mtime, seconds, useconds; seconds = curTime.tv_sec - touchStart.tv_sec; useconds = curTime.tv_usec - touchStart.tv_usec; mtime = ((seconds) * 1000 + useconds/1000.0) + 0.5; if (touch_and_hold && mtime > 500) { touch_and_hold = 0; touch_repeat = 1; gettimeofday(&touchStart, NULL); #ifdef _EVENT_LOGGING LOGE("TOUCH_HOLD: %d,%d\n", x, y); #endif PageManager::NotifyTouch(TOUCH_HOLD, x, y); } else if (touch_repeat && mtime > 100) { #ifdef _EVENT_LOGGING LOGE("TOUCH_REPEAT: %d,%d\n", x, y); #endif gettimeofday(&touchStart, NULL); PageManager::NotifyTouch(TOUCH_REPEAT, x, y); } else if (key_repeat == 1 && mtime > 500) { #ifdef _EVENT_LOGGING LOGE("KEY_HOLD: %d,%d\n", x, y); #endif gettimeofday(&touchStart, NULL); key_repeat = 2; kb.KeyRepeat(); } else if (key_repeat == 2 && mtime > 100) { #ifdef _EVENT_LOGGING LOGE("KEY_REPEAT: %d,%d\n", x, y); #endif gettimeofday(&touchStart, NULL); kb.KeyRepeat(); } } else if (ev.type == EV_ABS) { x = ev.value >> 16; y = ev.value & 0xFFFF; if (ev.code == 0) { if (state == 0) { #ifdef _EVENT_LOGGING LOGE("TOUCH_RELEASE: %d,%d\n", x, y); #endif PageManager::NotifyTouch(TOUCH_RELEASE, x, y); touch_and_hold = 0; touch_repeat = 0; if (!key_repeat) dontwait = 0; } state = 0; drag = 0; } else { if (!drag) { #ifdef _EVENT_LOGGING LOGE("TOUCH_START: %d,%d\n", x, y); #endif if (PageManager::NotifyTouch(TOUCH_START, x, y) > 0) state = 1; drag = 1; touch_and_hold = 1; dontwait = 1; key_repeat = 0; gettimeofday(&touchStart, NULL); } else { if (state == 0) { #ifdef _EVENT_LOGGING LOGE("TOUCH_DRAG: %d,%d\n", x, y); #endif if (PageManager::NotifyTouch(TOUCH_DRAG, x, y) > 0) state = 1; key_repeat = 0; } } } } else if (ev.type == EV_KEY)