2012-05-10 00:30:19 +02:00
|
|
|
/****************************************************************************
|
2018-09-17 01:23:45 +02:00
|
|
|
* apps/include/graphics/nxwm/ccalibration.hxx
|
2012-05-10 00:30:19 +02:00
|
|
|
*
|
2021-06-11 08:28:21 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you 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
|
2012-05-10 00:30:19 +02:00
|
|
|
*
|
2021-06-11 08:28:21 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-05-10 00:30:19 +02:00
|
|
|
*
|
2021-06-11 08:28:21 +02:00
|
|
|
* 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-05-10 00:30:19 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
2013-10-14 22:52:17 +02:00
|
|
|
|
2018-09-17 01:23:45 +02:00
|
|
|
#ifndef __APPS_INCLUDE_GRAPHICS_NXWM_CCALIBRATION_HXX
|
|
|
|
#define __APPS_INCLUDE_GRAPHICS_NXWM_CCALIBRATION_HXX
|
2012-05-10 00:30:19 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/nx/nxglib.h>
|
|
|
|
|
2012-05-14 22:46:47 +02:00
|
|
|
#include <pthread.h>
|
2012-05-10 00:30:19 +02:00
|
|
|
#include <fixedmath.h>
|
|
|
|
|
2018-09-17 01:23:45 +02:00
|
|
|
#include "graphics/nxwidgets/cnxstring.hxx"
|
|
|
|
#include "graphics/nxwidgets/cwidgeteventhandler.hxx"
|
|
|
|
#include "graphics/nxwidgets/cwidgetcontrol.hxx"
|
|
|
|
#include "graphics/nxwidgets/clabel.hxx"
|
|
|
|
#include "graphics/nxwidgets/cnxfont.hxx"
|
2012-05-10 00:30:19 +02:00
|
|
|
|
2018-09-17 01:23:45 +02:00
|
|
|
#include "graphics/nxwm/ctaskbar.hxx"
|
|
|
|
#include "graphics/nxwm/iapplication.hxx"
|
|
|
|
#include "graphics/nxwm/cfullscreenwindow.hxx"
|
2012-05-10 00:30:19 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
/**
|
|
|
|
* Calibration indices
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define CALIB_UPPER_LEFT_INDEX 0
|
|
|
|
#define CALIB_UPPER_RIGHT_INDEX 1
|
|
|
|
#define CALIB_LOWER_RIGHT_INDEX 2
|
|
|
|
#define CALIB_LOWER_LEFT_INDEX 3
|
|
|
|
|
|
|
|
#define CALIB_DATA_POINTS 4
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Implementation Classes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
namespace NxWM
|
|
|
|
{
|
2012-05-11 02:05:25 +02:00
|
|
|
/**
|
|
|
|
* Forward references
|
|
|
|
*/
|
|
|
|
|
2022-11-04 14:47:34 +01:00
|
|
|
class CTouchscreen;
|
2012-05-11 02:05:25 +02:00
|
|
|
|
2012-05-10 00:30:19 +02:00
|
|
|
/**
|
|
|
|
* Touchscreen calibration data
|
|
|
|
*/
|
|
|
|
|
2013-10-17 20:07:14 +02:00
|
|
|
#ifdef CONFIG_NXWM_CALIBRATION_ANISOTROPIC
|
|
|
|
struct SCalibrationLine
|
|
|
|
{
|
|
|
|
float slope; /**< The slope of a line */
|
|
|
|
float offset; /**< The offset of a line */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SCalibrationData
|
|
|
|
{
|
|
|
|
struct SCalibrationLine left; /**< Describes Y values along left edge */
|
|
|
|
struct SCalibrationLine right; /**< Describes Y values along right edge */
|
|
|
|
struct SCalibrationLine top; /**< Describes X values along top */
|
|
|
|
struct SCalibrationLine bottom; /**< Describes X values along bottom edge */
|
|
|
|
nxgl_coord_t leftX; /**< Left X value used in calibration */
|
|
|
|
nxgl_coord_t rightX; /**< Right X value used in calibration */
|
|
|
|
nxgl_coord_t topY; /**< Top Y value used in calibration */
|
|
|
|
nxgl_coord_t bottomY; /**< Bottom Y value used in calibration */
|
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
2012-05-10 00:30:19 +02:00
|
|
|
struct SCalibrationData
|
|
|
|
{
|
2013-10-17 20:07:14 +02:00
|
|
|
b16_t xSlope; /**< X conversion: xSlope*(x) + xOffset */
|
2012-05-10 00:30:19 +02:00
|
|
|
b16_t xOffset;
|
2013-10-17 20:07:14 +02:00
|
|
|
b16_t ySlope; /**< Y conversion: ySlope*(y) + yOffset */
|
2012-05-10 00:30:19 +02:00
|
|
|
b16_t yOffset;
|
|
|
|
};
|
|
|
|
|
2013-10-17 20:07:14 +02:00
|
|
|
#endif
|
|
|
|
|
2012-05-10 00:30:19 +02:00
|
|
|
/**
|
|
|
|
* The CCalibration class provides the the calibration window and obtains
|
2020-02-23 05:51:44 +01:00
|
|
|
* calibration data.
|
2012-05-10 00:30:19 +02:00
|
|
|
*/
|
|
|
|
|
2012-05-10 03:35:23 +02:00
|
|
|
class CCalibration : public IApplication
|
2012-05-10 00:30:19 +02:00
|
|
|
{
|
|
|
|
private:
|
2012-05-14 22:46:47 +02:00
|
|
|
/**
|
|
|
|
* The state of the calibration thread.
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum ECalThreadState
|
|
|
|
{
|
|
|
|
CALTHREAD_NOTRUNNING = 0, /**< The calibration thread has not yet been started */
|
|
|
|
CALTHREAD_STARTED, /**< The calibration thread has been started, but is not yet running */
|
|
|
|
CALTHREAD_RUNNING, /**< The calibration thread is running normally */
|
|
|
|
CALTHREAD_STOPREQUESTED, /**< The calibration thread has been requested to stop */
|
|
|
|
CALTHREAD_HIDE, /**< The hide() called by calibration thread running */
|
|
|
|
CALTHREAD_SHOW, /**< The redraw() called by calibration thread running */
|
|
|
|
CALTHREAD_TERMINATED /**< The calibration thread terminated normally */
|
|
|
|
};
|
|
|
|
|
2012-05-10 00:30:19 +02:00
|
|
|
/**
|
|
|
|
* Identifies the current display state
|
|
|
|
*/
|
|
|
|
|
2012-05-14 22:46:47 +02:00
|
|
|
enum ECalibrationPhase
|
2012-05-10 00:30:19 +02:00
|
|
|
{
|
2012-05-14 22:46:47 +02:00
|
|
|
CALPHASE_NOT_STARTED = 0, /**< Constructed, but not yet started */
|
|
|
|
CALPHASE_UPPER_LEFT, /**< Touch point is in the upper left corner */
|
|
|
|
CALPHASE_UPPER_RIGHT, /**< Touch point is in the upper right corner */
|
|
|
|
CALPHASE_LOWER_RIGHT, /**< Touch point is in the lower left corner */
|
|
|
|
CALPHASE_LOWER_LEFT, /**< Touch point is in the lower right corner */
|
|
|
|
CALPHASE_COMPLETE /**< Calibration is complete */
|
2012-05-10 00:30:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Characterizes one calibration screen
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct SCalibScreenInfo
|
|
|
|
{
|
|
|
|
struct nxgl_point_s pos; /**< The position of the touch point */
|
|
|
|
nxgl_mxpixel_t lineColor; /**< The color of the cross-hair lines */
|
|
|
|
nxgl_mxpixel_t circleFillColor; /**< The color of the circle */
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CCalibration state data
|
|
|
|
*/
|
|
|
|
|
2012-05-14 22:46:47 +02:00
|
|
|
CTaskbar *m_taskbar; /**< The taskbar (used to terminate calibration) */
|
2012-05-10 00:30:19 +02:00
|
|
|
CFullScreenWindow *m_window; /**< The window for the calibration display */
|
|
|
|
CTouchscreen *m_touchscreen; /**< The touchscreen device */
|
2013-10-14 22:52:17 +02:00
|
|
|
#ifdef CONFIG_NXWM_CALIBRATION_MESSAGES
|
|
|
|
NXWidgets::CLabel *m_text; /**< Calibration message */
|
|
|
|
NXWidgets::CNxFont *m_font; /**< The font used in the message */
|
|
|
|
#endif
|
2012-05-14 22:46:47 +02:00
|
|
|
pthread_t m_thread; /**< The calibration thread ID */
|
2012-05-10 00:30:19 +02:00
|
|
|
struct SCalibScreenInfo m_screenInfo; /**< Describes the current calibration display */
|
|
|
|
struct nxgl_point_s m_touchPos; /**< This is the last touch position */
|
2012-05-14 22:46:47 +02:00
|
|
|
volatile uint8_t m_calthread; /**< Current calibration display state (See ECalibThreadState)*/
|
|
|
|
uint8_t m_calphase; /**< Current calibration display state (See ECalibrationPhase)*/
|
2012-05-10 00:30:19 +02:00
|
|
|
bool m_touched; /**< True: The screen is touched */
|
2012-05-12 00:07:06 +02:00
|
|
|
uint8_t m_touchId; /**< The ID of the touch */
|
2016-06-05 19:57:52 +02:00
|
|
|
#ifdef CONFIG_NXWM_CALIBRATION_AVERAGE
|
2013-10-15 02:35:23 +02:00
|
|
|
uint8_t m_nsamples; /**< Number of samples collected so far at this position */
|
|
|
|
struct nxgl_point_s m_sampleData[CONFIG_NXWM_CALIBRATION_NSAMPLES];
|
|
|
|
#endif
|
2012-05-10 00:30:19 +02:00
|
|
|
struct nxgl_point_s m_calibData[CALIB_DATA_POINTS];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Accept raw touchscreen input.
|
|
|
|
*
|
|
|
|
* @param sample Touchscreen input sample
|
|
|
|
*/
|
|
|
|
|
|
|
|
void touchscreenInput(struct touch_sample_s &sample);
|
|
|
|
|
2013-10-15 02:35:23 +02:00
|
|
|
#ifdef CONFIG_NXWM_CALIBRATION_MESSAGES
|
|
|
|
/**
|
|
|
|
* Create widgets need by the calibration thread.
|
|
|
|
*
|
|
|
|
* @return True if the widgets were successfully created.
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool createWidgets(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroy widgets created for the calibration thread.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void destroyWidgets(void);
|
|
|
|
#endif
|
|
|
|
|
2012-05-14 22:46:47 +02:00
|
|
|
/**
|
|
|
|
* Start the calibration thread.
|
|
|
|
*
|
|
|
|
* @param initialState. The initial state of the calibration thread
|
|
|
|
* @return True if the thread was successfully started.
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool startCalibration(enum ECalThreadState initialState);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if the calibration thread is running normally. There are
|
2013-05-12 19:47:09 +02:00
|
|
|
* lots of potential race conditions. There are also two ambiguous
|
|
|
|
* states:
|
|
|
|
*
|
|
|
|
* 1) The thread may have been started but not yet running
|
|
|
|
* (CALTHREAD_STARTED), or the
|
|
|
|
* 2) The thread may been requested to terminate, but has not yet
|
|
|
|
* terminated (CALTHREAD_STOPREQUESTED)
|
|
|
|
*
|
|
|
|
* Both of those states will cause isRunning() to return false.
|
2012-05-14 22:46:47 +02:00
|
|
|
*
|
2020-02-22 19:52:12 +01:00
|
|
|
* @return True if the calibration thread is running normally.
|
2012-05-14 22:46:47 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
inline bool isRunning(void) const
|
|
|
|
{
|
|
|
|
return (m_calthread == CALTHREAD_RUNNING ||
|
|
|
|
m_calthread == CALTHREAD_HIDE ||
|
|
|
|
m_calthread == CALTHREAD_SHOW);
|
|
|
|
}
|
|
|
|
|
2013-05-12 19:47:09 +02:00
|
|
|
/**
|
|
|
|
* Return true if the calibration thread is has been started and has not
|
|
|
|
* yet terminated. There is a potential race condition here when the
|
|
|
|
* thread has been requested to terminate, but has not yet terminated
|
|
|
|
* (CALTHREAD_STOPREQUESTED). isStarted() will return false in that case.
|
|
|
|
*
|
|
|
|
* @return True if the calibration thread has been started and/or is
|
|
|
|
* running normally.
|
|
|
|
*/
|
|
|
|
|
|
|
|
inline bool isStarted(void) const
|
|
|
|
{
|
|
|
|
return (m_calthread == CALTHREAD_STARTED ||
|
|
|
|
m_calthread == CALTHREAD_RUNNING ||
|
|
|
|
m_calthread == CALTHREAD_HIDE ||
|
|
|
|
m_calthread == CALTHREAD_SHOW);
|
|
|
|
}
|
|
|
|
|
2012-05-14 22:46:47 +02:00
|
|
|
/**
|
|
|
|
* The calibration thread. This is the entry point of a thread that provides the
|
|
|
|
* calibration displays, waits for input, and collects calibration data.
|
|
|
|
*
|
|
|
|
* @param arg. The CCalibration 'this' pointer cast to a void*.
|
|
|
|
* @return This function always returns NULL when the thread exits
|
|
|
|
*/
|
|
|
|
|
|
|
|
static FAR void *calibration(FAR void *arg);
|
|
|
|
|
2019-05-05 18:23:46 +02:00
|
|
|
#ifdef CONFIG_NXWM_CALIBRATION_AVERAGE
|
2013-10-15 02:35:23 +02:00
|
|
|
/**
|
|
|
|
* Accumulate and average touch sample data
|
|
|
|
*
|
|
|
|
* @param average. When the averaged data is available, return it here
|
|
|
|
* @return True: Average data is available; False: Need to collect more samples
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool averageSamples(struct nxgl_point_s &average);
|
|
|
|
#endif
|
|
|
|
|
2012-05-10 00:30:19 +02:00
|
|
|
/**
|
|
|
|
* This is the calibration state machine. It is called initially and then
|
|
|
|
* as new touchscreen data is received.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void stateMachine(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Presents the next calibration screen
|
|
|
|
*/
|
|
|
|
|
|
|
|
void showCalibration(void);
|
|
|
|
|
2012-05-14 22:46:47 +02:00
|
|
|
/**
|
|
|
|
* Finish calibration steps and provide the calibration data to the
|
|
|
|
* touchscreen driver.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void finishCalibration(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given the raw touch data collected by the calibration thread, create the
|
|
|
|
* massaged calibration data needed by CTouchscreen.
|
|
|
|
*
|
|
|
|
* @param data. A reference to the location to save the calibration data
|
|
|
|
* @return True if the calibration data was successfully created.
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool createCalibrationData(struct SCalibrationData &data);
|
|
|
|
|
2012-05-10 00:30:19 +02:00
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CCalibration Constructor
|
|
|
|
*
|
2012-05-14 22:46:47 +02:00
|
|
|
* @param taskbar. The taskbar instance used to terminate calibration
|
2012-05-10 00:30:19 +02:00
|
|
|
* @param window. The window to use for the calibration display
|
2012-05-14 22:46:47 +02:00
|
|
|
* @param touchscreen. An instance of the class that wraps the
|
|
|
|
* touchscreen device.
|
2012-05-10 00:30:19 +02:00
|
|
|
*/
|
|
|
|
|
2012-05-14 22:46:47 +02:00
|
|
|
CCalibration(CTaskbar *taskbar, CFullScreenWindow *window,
|
|
|
|
CTouchscreen *touchscreen);
|
2012-05-10 00:30:19 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* CCalibration Destructor
|
|
|
|
*/
|
|
|
|
|
|
|
|
~CCalibration(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Each implementation of IApplication must provide a method to recover
|
|
|
|
* the contained IApplicationWindow instance.
|
|
|
|
*/
|
|
|
|
|
|
|
|
IApplicationWindow *getWindow(void) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the icon associated with the application
|
|
|
|
*
|
|
|
|
* @return An instance if IBitmap that may be used to rend the
|
|
|
|
* application's icon. This is an new IBitmap instance that must
|
|
|
|
* be deleted by the caller when it is no long needed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
NXWidgets::IBitmap *getIcon(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the name string associated with the application
|
|
|
|
*
|
|
|
|
* @return A copy if CNxString that contains the name of the application.
|
|
|
|
*/
|
|
|
|
|
|
|
|
NXWidgets::CNxString getName(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start the application (perhaps in the minimized state).
|
|
|
|
*
|
|
|
|
* @return True if the application was successfully started.
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool run(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stop the application.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void stop(void);
|
|
|
|
|
2012-05-19 01:08:34 +02:00
|
|
|
/**
|
|
|
|
* Destroy the application and free all of its resources. This method
|
|
|
|
* will initiate blocking of messages from the NX server. The server
|
|
|
|
* will flush the window message queue and reply with the blocked
|
|
|
|
* message. When the block message is received by CWindowMessenger,
|
|
|
|
* it will send the destroy message to the start window task which
|
|
|
|
* will, finally, safely delete the application.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void destroy(void);
|
|
|
|
|
2012-05-10 00:30:19 +02:00
|
|
|
/**
|
|
|
|
* The application window is hidden (either it is minimized or it is
|
|
|
|
* maximized, but not at the top of the hierarchy
|
|
|
|
*/
|
|
|
|
|
|
|
|
void hide(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Redraw the entire window. The application has been maximized or
|
|
|
|
* otherwise moved to the top of the hierarchy. This method is called from
|
|
|
|
* CTaskbar when the application window must be displayed
|
|
|
|
*/
|
|
|
|
|
|
|
|
void redraw(void);
|
|
|
|
|
|
|
|
/**
|
2012-05-14 22:46:47 +02:00
|
|
|
* Report of this is a "normal" window or a full screen window. The
|
|
|
|
* primary purpose of this method is so that window manager will know
|
|
|
|
* whether or not it show draw the task bar.
|
2012-05-10 00:30:19 +02:00
|
|
|
*
|
2012-05-14 22:46:47 +02:00
|
|
|
* @return True if this is a full screen window.
|
2012-05-10 00:30:19 +02:00
|
|
|
*/
|
|
|
|
|
2012-05-14 22:46:47 +02:00
|
|
|
bool isFullScreen(void) const;
|
2012-05-10 00:30:19 +02:00
|
|
|
};
|
2012-05-17 00:43:40 +02:00
|
|
|
|
|
|
|
class CCalibrationFactory : public IApplicationFactory
|
|
|
|
{
|
|
|
|
private:
|
2022-10-08 10:31:21 +02:00
|
|
|
CTaskbar *m_taskbar; /**< The taskbar */
|
|
|
|
CTouchscreen *m_touchscreen; /**< The touchscreen device */
|
2012-05-17 00:43:40 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* CCalibrationFactory Constructor
|
|
|
|
*
|
|
|
|
* @param taskbar. The taskbar instance used to terminate calibration
|
|
|
|
* @param touchscreen. An instance of the class that wraps the
|
|
|
|
* touchscreen device.
|
|
|
|
*/
|
|
|
|
|
|
|
|
CCalibrationFactory(CTaskbar *taskbar, CTouchscreen *touchscreen);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CCalibrationFactory Destructor
|
|
|
|
*/
|
|
|
|
|
|
|
|
inline ~CCalibrationFactory(void) { }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new instance of an CCalibration (as IApplication).
|
|
|
|
*/
|
|
|
|
|
|
|
|
IApplication *create(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the icon associated with the application
|
|
|
|
*
|
|
|
|
* @return An instance if IBitmap that may be used to rend the
|
|
|
|
* application's icon. This is an new IBitmap instance that must
|
|
|
|
* be deleted by the caller when it is no long needed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
NXWidgets::IBitmap *getIcon(void);
|
|
|
|
};
|
2012-05-10 00:30:19 +02:00
|
|
|
}
|
|
|
|
|
2018-09-17 01:23:45 +02:00
|
|
|
#endif // __APPS_INCLUDE_GRAPHICS_NXWM_CCALIBRATION_HXX
|