Improved Keyset Selection Window
[pierogi] / pirprotocol.h
1 #ifndef PIRPROTOCOL_H
2 #define PIRPROTOCOL_H
3
4 // The generic remote controller.
5
6 #include <QObject>
7 //#include <QMutex>
8 #include "pirkeynames.h"
9 //#include "pirdevice.h"
10
11 #include <map>
12 #include <deque>
13
14 // We'll define a maximum number of repetitions, regardless of how long the
15 // user presses the button.  (This is just in case we miss the point at which
16 // he stops pressing it...)  500 should be plenty.
17 #define MAX_REPEAT_COUNT 500
18
19 typedef std::deque<bool> CommandSequence;
20
21 // I'll go ahead and use associative arrays to build up lists of keycodes.
22 typedef std::map<int, CommandSequence> KeycodeCollection;
23
24
25 // Right now, the only reason for this object to inherit from QObject is
26 // so it can participate in Qt-style threading.  Note that it has no
27 // event loop, and no access to the GUI, so don't go trying to communicate
28 // with the user here...
29 class PIRProtocol: public QObject
30 {
31   Q_OBJECT
32
33 public:
34   PIRProtocol(
35     QObject *guiObject,
36     unsigned int index,
37     unsigned int gSpace,
38     bool iclflag);
39
40   void addKey(
41     PIRKeyName key,
42     unsigned long data,
43     unsigned int bits);
44
45 //  void setIndex(
46 //    unsigned int index);
47
48   void setCarrierFrequency(
49     unsigned int freq);
50
51   void setDutyCycle(
52     unsigned int dc);
53
54   void setMinimumRepetitions(
55     unsigned int minrep);
56
57 public slots:
58   virtual void startSendingCommand(
59     unsigned int threadableID,
60     PIRKeyName command) = 0;
61
62 signals:
63   void commandFailed(
64     const char *errString);
65
66 protected:
67   bool isCommandSupported(
68     PIRKeyName command);
69
70   void clearRepeatFlag();
71   bool checkRepeatFlag();
72
73   unsigned int carrierFrequency;
74   unsigned int dutyCycle;
75
76   // "appendToBitSeq" really doesn't belong in this class...
77   void appendToBitSeq(
78     CommandSequence &sequence,
79     unsigned int bits,
80     int significantBits);
81
82   KeycodeCollection keycodes;
83
84   // A sleep function for all protocols:
85   void sleepUntilRepeat(
86     int commandDuration);
87
88   // The "gap" parameter from LIRC.  If the commands are "variable-length",
89   // this indicates the amount of time between the last pulse of one
90   // command and the first pulse of the next.  If "constant-length", it is
91   // the time between the _first_ pulse of one command and the first pulse
92   // of the next.
93
94   bool isConstantLength;
95   int gap;
96
97   // Some remotes require a minimum number of repetitions:
98   int minimumRepetitions;
99
100   unsigned int id;
101 };
102
103 #endif // PIRPROTOCOL_H