]> git.vomp.tv Git - vompclient.git/blob - inputlirc.h
Bitmap and VPictureBanner CWFs
[vompclient.git] / inputlirc.h
1 /*
2     Copyright 2020 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP.  If not, see <https://www.gnu.org/licenses/>.
18 */
19
20 #ifndef INPUTLIRC_H
21 #define INPUTLIRC_H
22
23 #include <thread>
24 #include <mutex>
25 #include <map>
26 #include <string>
27
28 #include "defines.h"
29 #include "tcp.h"
30 #include "input.h"
31
32 class Log;
33
34 class InputLIRC : public Input
35 {
36   public:
37     bool init();
38     void shutdown();
39
40     bool start(const std::string& ip, USHORT port);
41     void stop();
42
43     void InitHWCListwithDefaults() {};
44     std::string getHardwareKeyName(HWC_TYPE hardwareKey);
45
46   private:
47     Log* log{};
48
49     static const char* myModName;
50     const char* modName() { return myModName; }
51
52     std::thread listenThread;
53     std::mutex threadStartProtect;
54     void listenLoop();
55     bool threadReqStop{};
56
57     bool parse(const std::string& input, std::string& remoteName, std::string& remoteButton, int& repeatCount);
58     UCHAR TranslateHWCFixed(HWC_TYPE code) { return static_cast<UCHAR>(code); };
59
60     bool initted{};
61     TCP tcp;
62     std::map<std::string, std::map<std::string, UCHAR>> remotes;
63 };
64
65 #endif