InfiniTime/src/touchhandler/TouchHandler.cpp

79 lines
2.1 KiB
C++
Raw Normal View History

2021-07-15 07:11:27 -04:00
#include "TouchHandler.h"
using namespace Pinetime::Controllers;
2021-07-15 18:49:20 -04:00
TouchHandler::TouchHandler(Drivers::Cst816S& touchPanel, Components::LittleVgl& lvgl) : touchPanel {touchPanel}, lvgl {lvgl} {
2021-07-15 07:11:27 -04:00
}
void TouchHandler::CancelTap() {
2021-07-16 04:55:29 -04:00
if (info.touching) {
isCancelled = true;
lvgl.SetNewTouchPoint(-1, -1, true);
}
2021-07-15 07:11:27 -04:00
}
Pinetime::Drivers::Cst816S::Gestures TouchHandler::GestureGet() {
auto returnGesture = gesture;
gesture = Drivers::Cst816S::Gestures::None;
return returnGesture;
}
void TouchHandler::Start() {
2021-07-15 17:07:55 -04:00
if (pdPASS != xTaskCreate(TouchHandler::Process, "Touch", 100, this, 0, &taskHandle)) {
2021-07-15 07:11:27 -04:00
APP_ERROR_HANDLER(NRF_ERROR_NO_MEM);
}
}
void TouchHandler::Process(void* instance) {
auto* app = static_cast<TouchHandler*>(instance);
app->Work();
}
void TouchHandler::Work() {
2021-07-18 05:32:46 -04:00
bool slideReleased = true;
2021-07-15 07:11:27 -04:00
while (true) {
vTaskSuspend(taskHandle);
2021-07-15 19:17:17 -04:00
2021-07-15 07:11:27 -04:00
info = touchPanel.GetTouchInfo();
2021-07-15 19:17:17 -04:00
2021-07-18 05:32:46 -04:00
if (info.isValid) {
if (info.gesture != Pinetime::Drivers::Cst816S::Gestures::None) {
if (slideReleased) {
if (info.gesture == Pinetime::Drivers::Cst816S::Gestures::SlideDown ||
info.gesture == Pinetime::Drivers::Cst816S::Gestures::SlideLeft ||
info.gesture == Pinetime::Drivers::Cst816S::Gestures::SlideUp ||
info.gesture == Pinetime::Drivers::Cst816S::Gestures::SlideRight) {
slideReleased = false;
}
gesture = info.gesture;
2021-07-15 19:17:17 -04:00
}
}
2021-07-18 05:32:46 -04:00
if (!systemTask->IsSleeping()) {
if (info.touching) {
if (!isCancelled) {
lvgl.SetNewTouchPoint(info.x, info.y, true);
}
2021-07-15 17:07:55 -04:00
} else {
2021-07-18 05:32:46 -04:00
if (isCancelled) {
lvgl.SetNewTouchPoint(-1, -1, false);
isCancelled = false;
} else {
lvgl.SetNewTouchPoint(info.x, info.y, false);
}
slideReleased = true;
2021-07-15 17:07:55 -04:00
}
2021-07-15 07:11:27 -04:00
}
systemTask->OnTouchEvent();
}
}
}
void TouchHandler::Register(Pinetime::System::SystemTask* systemTask) {
this->systemTask = systemTask;
}
void TouchHandler::WakeUp() {
vTaskResume(taskHandle);
}