2021-10-13 20:08:35 +00:00
|
|
|
#include "touchhandler/TouchHandler.h"
|
2022-01-16 22:37:15 +00:00
|
|
|
#ifdef PINETIME_IS_RECOVERY
|
|
|
|
#include "displayapp/DummyLittleVgl.h"
|
|
|
|
#else
|
|
|
|
#include "displayapp/LittleVgl.h"
|
|
|
|
#endif
|
2021-07-15 11:11:27 +00:00
|
|
|
|
|
|
|
using namespace Pinetime::Controllers;
|
2022-01-16 22:37:15 +00:00
|
|
|
using namespace Pinetime::Applications;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
TouchEvents ConvertGesture(Pinetime::Drivers::Cst816S::Gestures gesture) {
|
|
|
|
switch (gesture) {
|
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::SingleTap:
|
|
|
|
return TouchEvents::Tap;
|
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::LongPress:
|
|
|
|
return TouchEvents::LongTap;
|
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::DoubleTap:
|
|
|
|
return TouchEvents::DoubleTap;
|
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::SlideRight:
|
|
|
|
return TouchEvents::SwipeRight;
|
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::SlideLeft:
|
|
|
|
return TouchEvents::SwipeLeft;
|
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::SlideDown:
|
|
|
|
return TouchEvents::SwipeDown;
|
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::SlideUp:
|
|
|
|
return TouchEvents::SwipeUp;
|
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::None:
|
|
|
|
default:
|
|
|
|
return TouchEvents::None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-15 11:11:27 +00:00
|
|
|
|
2021-07-15 22:49:20 +00:00
|
|
|
TouchHandler::TouchHandler(Drivers::Cst816S& touchPanel, Components::LittleVgl& lvgl) : touchPanel {touchPanel}, lvgl {lvgl} {
|
2021-07-15 11:11:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TouchHandler::CancelTap() {
|
2021-07-16 08:55:29 +00:00
|
|
|
if (info.touching) {
|
|
|
|
isCancelled = true;
|
|
|
|
lvgl.SetNewTouchPoint(-1, -1, true);
|
|
|
|
}
|
2021-07-15 11:11:27 +00:00
|
|
|
}
|
|
|
|
|
2022-01-16 22:37:15 +00:00
|
|
|
Pinetime::Applications::TouchEvents TouchHandler::GestureGet() {
|
2021-07-15 11:11:27 +00:00
|
|
|
auto returnGesture = gesture;
|
2022-01-16 22:37:15 +00:00
|
|
|
gesture = Pinetime::Applications::TouchEvents::None;
|
2021-07-15 11:11:27 +00:00
|
|
|
return returnGesture;
|
|
|
|
}
|
|
|
|
|
2021-08-10 19:03:34 +00:00
|
|
|
bool TouchHandler::GetNewTouchInfo() {
|
|
|
|
info = touchPanel.GetTouchInfo();
|
2021-07-15 23:17:17 +00:00
|
|
|
|
2021-08-10 19:03:34 +00:00
|
|
|
if (!info.isValid) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-07-15 23:17:17 +00:00
|
|
|
|
2021-08-10 19:03:34 +00:00
|
|
|
if (info.gesture != Pinetime::Drivers::Cst816S::Gestures::None) {
|
2021-08-11 15:31:40 +00:00
|
|
|
if (gestureReleased) {
|
2021-08-10 19:03:34 +00:00
|
|
|
if (info.gesture == Pinetime::Drivers::Cst816S::Gestures::SlideDown ||
|
|
|
|
info.gesture == Pinetime::Drivers::Cst816S::Gestures::SlideLeft ||
|
|
|
|
info.gesture == Pinetime::Drivers::Cst816S::Gestures::SlideUp ||
|
2021-08-11 15:31:40 +00:00
|
|
|
info.gesture == Pinetime::Drivers::Cst816S::Gestures::SlideRight ||
|
|
|
|
info.gesture == Pinetime::Drivers::Cst816S::Gestures::LongPress) {
|
2021-07-18 09:32:46 +00:00
|
|
|
if (info.touching) {
|
2022-01-16 22:37:15 +00:00
|
|
|
gesture = ConvertGesture(info.gesture);
|
2021-08-11 15:31:40 +00:00
|
|
|
gestureReleased = false;
|
2021-07-15 21:07:55 +00:00
|
|
|
}
|
2021-08-10 19:03:34 +00:00
|
|
|
} else {
|
2022-01-16 22:37:15 +00:00
|
|
|
gesture = ConvertGesture(info.gesture);
|
2021-07-15 11:11:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-10 19:03:34 +00:00
|
|
|
if (!info.touching) {
|
2021-08-11 15:31:40 +00:00
|
|
|
gestureReleased = true;
|
2021-08-10 19:03:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2021-07-15 11:11:27 +00:00
|
|
|
}
|
|
|
|
|
2021-08-10 19:03:34 +00:00
|
|
|
void TouchHandler::UpdateLvglTouchPoint() {
|
|
|
|
if (info.touching) {
|
|
|
|
if (!isCancelled) {
|
|
|
|
lvgl.SetNewTouchPoint(info.x, info.y, true);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (isCancelled) {
|
|
|
|
lvgl.SetNewTouchPoint(-1, -1, false);
|
|
|
|
isCancelled = false;
|
|
|
|
} else {
|
|
|
|
lvgl.SetNewTouchPoint(info.x, info.y, false);
|
|
|
|
}
|
|
|
|
}
|
2021-07-15 11:11:27 +00:00
|
|
|
}
|