-
Notifications
You must be signed in to change notification settings - Fork 4
/
streamdeckpp.cc
434 lines (311 loc) · 12.3 KB
/
streamdeckpp.cc
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
#include "streamdeckpp.hh"
using namespace std::string_literals;
namespace streamdeck {
namespace {
struct blob_container {
blob_container(Magick::Blob& blob) : front(static_cast<const char*>(blob.data())), back(front + blob.length()) {}
auto begin() const { return front; }
auto end() const { return back; }
const char* front;
const char* back;
};
} // anonymous namespace
device_type::device_type(const char* path, unsigned width, unsigned height, unsigned cols, unsigned rows, image_format_type imgfmt, unsigned imgreplen, bool hflip, bool vflip)
: pixel_width(width), pixel_height(height), key_cols(cols), key_rows(rows), key_count(rows * cols),
key_image_format(imgfmt), key_hflip(hflip), key_vflip(vflip), image_report_length(imgreplen),
m_path(path), m_d(hid_open_path(m_path))
{
}
device_type::~device_type()
{
close();
}
void device_type::close()
{
if (connected())
hid_close(m_d);
}
Magick::Blob device_type::reformat(Magick::Image&& image)
{
if (key_hflip)
image.transpose();
if (key_vflip)
image.transverse();
auto size = image.size();
if (size.width() != pixel_width || size.height() != pixel_height) {
auto factor = std::min(double(pixel_width) / size.width(), double(pixel_height) / size.height());
Magick::Geometry new_geo(size_t(size.width() * factor), size_t(size.height() * factor));
image.scale(new_geo);
if (new_geo.width() != pixel_width || new_geo.height() != pixel_height) {
Magick::Geometry defgeo(pixel_width, pixel_height);
Magick::Image newimage(defgeo, Magick::Color("black"));
newimage.composite(image, ssize_t(pixel_width - new_geo.width()) / 2, ssize_t(pixel_height - new_geo.height()) / 2);
image.scale(defgeo);
image = newimage;
}
}
if (key_image_format == image_format_type::jpeg)
image.magick("JPEG");
else if (key_image_format == image_format_type::bmp)
image.magick("BMP");
Magick::Blob res;
image.write(&res);
return res;
}
int device_type::register_image(Magick::Image&& image)
{
registered.emplace_back(reformat(std::move(image)));
return registered.size() - 1;
}
int device_type::register_image(const char* fname)
{
return register_image(Magick::Image(fname));
}
template<typename C>
int device_type::set_key_image(unsigned key, const C& data)
{
if (key > key_count)
return -1;
payload_type buffer(image_report_length);
unsigned page = 0;
for (auto srcit = data.begin(); srcit != data.end(); ++page) {
auto destit = add_header(buffer, key, data.end() - srcit, page);
while (srcit != data.end() && destit != buffer.end())
*destit++ = std::byte(*srcit++);
std::fill(destit, buffer.end(), std::byte(0));
if (auto r = write(buffer); r < 0)
return r;
}
return 0;
}
int device_type::set_key_image(unsigned key, Magick::Image&& image)
{
auto blob(reformat(std::move(image)));
return set_key_image(key, blob_container(blob));
}
int device_type::set_key_image(unsigned key, const char* fname)
{
return set_key_image(key, Magick::Image(fname));
}
int device_type::set_key_image(unsigned key, int handle)
{
return set_key_image(key, blob_container(registered[handle]));
}
namespace {
// First generation.
struct gen1_device_type : public device_type {
using base_type = device_type;
const unsigned image_report_length;
static constexpr unsigned header_length = 16;
const unsigned payload_length;
gen1_device_type(const char* path, unsigned width, unsigned height, unsigned cols, unsigned rows, unsigned imgreplen, bool hflip, bool vflip)
: device_type(path, width, height, cols, rows, image_format_type::bmp, imgreplen, hflip, vflip), image_report_length(imgreplen), payload_length(imgreplen - header_length)
{}
payload_type::iterator add_header(payload_type& buffer, unsigned key, unsigned remaining, unsigned page) override final;
std::vector<bool> read() override final;
std::optional<std::vector<bool>> read(int timeout = -1) override final;
void reset() override final;
std::string get_serial_number() override final;
std::string get_firmware_version() override final;
private:
void _set_brightness(std::byte p) override final;
std::string _get_string(std::byte c);
};
// Second generation.
struct gen2_device_type : public device_type {
using base_type = device_type;
static constexpr unsigned image_report_length = 1024;
static constexpr unsigned header_length = 8;
static constexpr unsigned payload_length = image_report_length - header_length;
gen2_device_type(const char* path, unsigned width, unsigned height, unsigned cols, unsigned rows)
: device_type(path, width, height, cols, rows, image_format_type::jpeg, image_report_length, true, true)
{}
payload_type::iterator add_header(payload_type& buffer, unsigned key, unsigned remaining, unsigned page) override final;
std::vector<bool> read() override final;
std::optional<std::vector<bool>> read(int timeout = -1) override final;
void reset() override final;
std::string get_serial_number() override final;
std::string get_firmware_version() override final;
private:
void _set_brightness(std::byte p) override final;
std::string _get_string(std::byte c, size_t off);
};
gen1_device_type::payload_type::iterator gen1_device_type::add_header(payload_type& buffer, unsigned key, unsigned remaining, unsigned page)
{
auto it = buffer.begin();
*it++ = std::byte(0x02);
*it++ = std::byte(0x01);
*it++ = std::byte(page + 1);
*it++ = std::byte(0x00);
*it++ = std::byte(remaining > payload_length ? 0 : 1);
*it++ = std::byte(key + 1);
std::fill_n(it, 10, std::byte(0x00));
return it;
}
std::vector<bool> gen1_device_type::read()
{
std::vector<bool> res(key_count);
std::vector<std::byte> state(1 + key_count);
auto n = base_type::read(state);
std::transform(state.begin() + 1, state.begin() + n, res.begin(), [](auto v){ return v != std::byte(0); });
return res;
}
std::optional<std::vector<bool>> gen1_device_type::read(int timeout)
{
std::vector<bool> res(key_count);
std::vector<std::byte> state(1 + key_count);
auto n = base_type::read(state, timeout);
if (n == 0)
return std::nullopt;
std::transform(state.begin() + 1, state.begin() + n, res.begin(), [](auto v){ return v != std::byte(0); });
return res;
}
void gen1_device_type::reset()
{
const std::array<std::byte,17> req { std::byte(0x0b), std::byte(0x63) };
send_report(req);
}
void gen1_device_type::_set_brightness(std::byte p)
{
const std::array<std::byte,17> req { std::byte(0x05), std::byte(0x55), std::byte(0xaa), std::byte(0xd1), std::byte(0x01), p };
send_report(req);
}
std::string gen1_device_type::_get_string(std::byte cmd)
{
std::array<std::byte,17> buf { cmd };
auto len = get_report(buf);
return len > 5 ? std::string(reinterpret_cast<const char*>(buf.data()) + 5) : "";
}
std::string gen1_device_type::get_serial_number()
{
return _get_string(std::byte(0x03));
}
std::string gen1_device_type::get_firmware_version()
{
return _get_string(std::byte(0x04));
}
gen2_device_type::payload_type::iterator gen2_device_type::add_header(payload_type& buffer, unsigned key, unsigned remaining, unsigned page)
{
auto it = buffer.begin();
*it++ = std::byte(0x02);
*it++ = std::byte(0x07);
*it++ = std::byte(key);
if (remaining > payload_length) {
*it++ = std::byte(0x00);
*it++ = std::byte(payload_length & 0xff);
*it++ = std::byte(payload_length >> 8);
} else {
*it++ = std::byte(0x01);
*it++ = std::byte(remaining & 0xff);
*it++ = std::byte(remaining >> 8);
}
*it++ = std::byte(page & 0xff);
*it++ = std::byte(page >> 8);
return it;
}
std::vector<bool> gen2_device_type::read()
{
std::vector<bool> res(key_count);
std::vector<std::byte> state(4 + key_count);
int n;
while ((n = base_type::read(state)) < 4)
continue;
std::transform(state.begin() + 4, state.begin() + n, res.begin(), [](auto v){ return v != std::byte(0); });
return res;
}
std::optional<std::vector<bool>> gen2_device_type::read(int timeout)
{
std::vector<bool> res(key_count);
std::vector<std::byte> state(4 + key_count);
auto n = base_type::read(state, timeout);
if (n == 0)
return std::nullopt;
std::transform(state.begin() + 4, state.begin() + n, res.begin(), [](auto v){ return v != std::byte(0); });
return res;
}
void gen2_device_type::reset()
{
const std::array<std::byte,32> req { std::byte(0x03), std::byte(0x02) };
send_report(req);
}
void gen2_device_type::_set_brightness(std::byte p)
{
const std::array<std::byte,32> req { std::byte(0x03), std::byte(0x08), p };
send_report(req);
}
std::string gen2_device_type::_get_string(std::byte cmd, size_t off)
{
std::array<std::byte,32> buf { cmd };
auto len = get_report(buf);
return len >= 0 && size_t(len) > off ? std::string(reinterpret_cast<const char*>(buf.data()) + off) : "";
}
std::string gen2_device_type::get_serial_number()
{
return _get_string(std::byte(0x06), 2);
}
std::string gen2_device_type::get_firmware_version()
{
return _get_string(std::byte(0x05), 6);
}
template<unsigned short D>
struct specific_device_type;
// StreamDeck Original
template<>
struct specific_device_type<product_streamdeck_original> final : public gen1_device_type {
using base_type = gen1_device_type;
static constexpr unsigned image_report_length = 8191;
specific_device_type(const char* path) : base_type(path, 72, 72, 5, 3, image_report_length, true, true) {}
};
// StreamDeck Original V2
template<>
struct specific_device_type<product_streamdeck_original_v2> final : public gen2_device_type {
using base_type = gen2_device_type;
specific_device_type(const char* path) : base_type(path, 72, 72, 5, 3) {}
};
// StreamDeck Mini
template<>
struct specific_device_type<product_streamdeck_mini> final : public gen1_device_type {
using base_type = gen1_device_type;
static constexpr unsigned image_report_length = 1024;
specific_device_type(const char* path) : base_type(path, 80, 80, 3, 2, image_report_length, false, true) {}
};
// StreamDeck XL
template<>
struct specific_device_type<product_streamdeck_xl> final : public gen2_device_type {
using base_type = gen2_device_type;
specific_device_type(const char* path) : base_type(path, 96, 96, 8, 4) {}
};
constexpr auto products = std::experimental::make_array(product_streamdeck_original,
product_streamdeck_original_v2,
product_streamdeck_mini,
product_streamdeck_xl);
template<size_t N = 0>
std::unique_ptr<device_type> get_device(unsigned short product_id, const char* path)
{
if constexpr (N == products.size())
return nullptr;
else {
if (product_id == products[N])
return std::make_unique<specific_device_type<products[N]>>(path);
return get_device<N + 1>(product_id, path);
}
}
} // anonymous namespace
context::context()
{
if (auto r = hid_init(); r < 0)
throw std::runtime_error("hid_init failed with "s + std::to_string(r));
devs = hid_enumerate(vendor_elgato, 0);
for (auto p = devs; p != nullptr; p = p->next)
if (auto ap = get_device(p->product_id, p->path); ap)
devinfo.emplace_back(std::move(ap));
Magick::InitializeMagick(nullptr);
}
context::~context()
{
devinfo.clear();
if (devs)
hid_free_enumeration(devs);
hid_exit();
}
} // namespace streamdeck