-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathMumbleCommunicator.hpp
70 lines (48 loc) · 1.71 KB
/
MumbleCommunicator.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#pragma once
#include <mumlib.hpp>
#include <log4cpp/Category.hh>
#include <boost/noncopyable.hpp>
#include <string>
#include <stdexcept>
namespace mumble {
class Exception : public std::runtime_error {
public:
Exception(const char *message) : std::runtime_error(message) { }
};
class MumlibCallback;
struct MumbleCommunicatorConfig {
std::string user;
std::string password;
std::string host;
int opusEncoderBitrate;
int port = 0;
};
class MumbleCommunicator : boost::noncopyable {
public:
MumbleCommunicator(
boost::asio::io_service &ioService);
void connect(MumbleCommunicatorConfig &config);
virtual ~MumbleCommunicator();
void sendPcmSamples(int16_t *samples, unsigned int length);
/**
* This callback is called when communicator has received samples.
* Arguments: session ID, sequence number, PCM samples, length of samples
*/
std::function<void(int, int, int16_t *, int)> onIncomingPcmSamples;
/**
* This callback is called when a channel state message (e.g. Channel
* information) is received. Arguments: channel_id, name
*/
std::function<void(std::string, int)> onIncomingChannelState;
std::function<void()> onServerSync;
void sendTextMessage(std::string message);
void joinChannel(int channel_id);
private:
boost::asio::io_service &ioService;
log4cpp::Category &logger;
mumlib::MumlibConfiguration mumConfig;
std::shared_ptr<mumlib::Mumlib> mum;
std::unique_ptr<MumlibCallback> callback;
friend class MumlibCallback;
};
}