GM6000 Digital Heater Controller Branch: main
SDX-1330
LogicalButtons.h
Go to the documentation of this file.
1#ifndef Ajax_Ui_LogicalButtons_h_
2#define Ajax_Ui_LogicalButtons_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include "colony_config.h"
17#include "Ajax/Ui/Events.h"
18#include "Cpl/Itc/CloseSync.h"
19#include "Cpl/System/Timer.h"
22
23
24/// Polling rate, in milliseconds
25#ifndef OPTION_AJAX_UI_LOGICAL_BUTTON_POLLING_RATE_MS
26#define OPTION_AJAX_UI_LOGICAL_BUTTON_POLLING_RATE_MS 10 // 100Hz
27#endif
28
29/** Specifies the initial hold time, in interval counts, before
30 a pressed button generates a repeat event
31 */
32#ifndef OPTION_AJAX_UI_LOGICAL_BUTTON_HOLD_COUNT
33#define OPTION_AJAX_UI_LOGICAL_BUTTON_HOLD_COUNT 50 // 00.5 sec @100Hz
34#endif
35
36 /** Specifies the repeat hold time, in interval counts, between
37 a pressed button repeat events
38 */
39#ifndef OPTION_AJAX_UI_LOGICAL_BUTTON_REPEAT_COUNT
40#define OPTION_AJAX_UI_LOGICAL_BUTTON_REPEAT_COUNT 10 // 0.1 sec @100Hz
41#endif
42
43 ///
44namespace Ajax {
45///
46namespace Ui {
47
48
49
50/** This concrete class translates physical button actions into logical
51 UI Button events.
52
53 The class used the Driver::PicoDisplay interface for debouncing
54 the physical buttons
55 */
57{
58public:
59 /// Constructor
62
63public:
64 /// See Cpl::Itc::OpenSync
65 void request( OpenMsg& msg );
66
67 /// See Cpl::Itc::CloseSync
68 void request( CloseMsg& msg );
69
70
71protected:
72 /// Timer expired callback
73 void expired( void ) noexcept;
74
75protected:
76 /// Helper method
77 AjaxUiEvent_T getLogicalKey( int edgeA, int edgeB, int edgeX, int edgeY ) noexcept;
78
79 /// Helper method
80 AjaxUiEvent_T lookUpLogicalKey( bool pressedA, bool pressedB, bool pressedX, bool pressedY ) noexcept;
81
82 /// Helper method
83 void generateKeyEvent( AjaxUiEvent_T event ) noexcept;
84
85 /// Helper method
86 int detectEdges( bool currentPressedState, bool& prevPressedSate ) noexcept;
87
88
89protected:
90 /// The event queue
92
93 /// Internal button state
95
96 /// Track time by tick counts
98
99 /// The current detected key event
101
102 /// Divider to 10Hz
104
105 /// Track when the button has been pressed
107
108 /// Track when the button has been pressed
110
111 /// Track when the button has been pressed
113
114 /// Track when the button has been pressed
116
117 /// Track the release action
119
120 /// Track the pressed action
122
123 /// Track single vs multi key events
125
126 /// Track my open/close state
128};
129
130} // end namespaces
131}
132#endif // end header latch
133
NOTE: This file can only contain valid C code since it will be included via the colony_map....
AjaxUiEvent_T
Enum for the set of UI events (okay, there are only button events)
Definition Events.h:23
This concrete class translates physical button actions into logical UI Button events.
Definition LogicalButtons.h:57
LogicalButtons(Cpl::Dm::MailboxServer &myMbox, Cpl::Container::RingBufferMP< AjaxUiEvent_T > &eventRingBuffer)
Constructor.
bool m_buttonXPressed
Track when the button has been pressed.
Definition LogicalButtons.h:112
void request(CloseMsg &msg)
See Cpl::Itc::CloseSync.
bool m_buttonYPressed
Track when the button has been pressed.
Definition LogicalButtons.h:115
int detectEdges(bool currentPressedState, bool &prevPressedSate) noexcept
Helper method.
unsigned m_10HzDividerCounter
Divider to 10Hz.
Definition LogicalButtons.h:103
bool m_buttonBPressed
Track when the button has been pressed.
Definition LogicalButtons.h:109
bool m_opened
Track my open/close state.
Definition LogicalButtons.h:127
void expired(void) noexcept
Timer expired callback.
void generateKeyEvent(AjaxUiEvent_T event) noexcept
Helper method.
Cpl::Container::RingBufferMP< AjaxUiEvent_T > & m_eventQueue
The event queue.
Definition LogicalButtons.h:91
AjaxUiEvent_T getLogicalKey(int edgeA, int edgeB, int edgeX, int edgeY) noexcept
Helper method.
AjaxUiEvent_T lookUpLogicalKey(bool pressedA, bool pressedB, bool pressedX, bool pressedY) noexcept
Helper method.
AjaxUiEvent_T m_latchedKey
The current detected key event.
Definition LogicalButtons.h:100
int m_state
Internal button state.
Definition LogicalButtons.h:94
unsigned m_delayCounter
Track time by tick counts.
Definition LogicalButtons.h:97
bool m_releaseEvent
Track the release action.
Definition LogicalButtons.h:118
bool m_buttonAPressed
Track when the button has been pressed.
Definition LogicalButtons.h:106
bool m_isSingleKeyEvent
Track single vs multi key events.
Definition LogicalButtons.h:124
void request(OpenMsg &msg)
See Cpl::Itc::OpenSync.
bool m_pressedEvent
Track the pressed action.
Definition LogicalButtons.h:121
This template class implements a THREAD SAFE Ring Buffer AND it maintains/reports the number of eleme...
Definition RingBufferMP.h:35
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This partially concrete class implements the synchronous ITC close call for the CloseApi.
Definition CloseSync.h:34
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
This mostly concrete interface defines the operations that can be performed on a software timer.
Definition Timer.h:47
The 'Ajax' namespace is the root name space all GM6000 application specific source code.