File: ScanlimeFadecandy.cpp

package info (click to toggle)
ola 0.10.9.nojsmin-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 17,440 kB
  • sloc: cpp: 132,294; python: 14,445; javascript: 7,109; sh: 4,713; ansic: 2,189; java: 518; xml: 253; makefile: 175
file content (346 lines) | stat: -rw-r--r-- 10,940 bytes parent folder | download | duplicates (6)
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
/*
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Library General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * ScanlimeFadecandy.cpp
 * The synchronous and asynchronous Fadecandy widgets.
 * Copyright (C) 2014 Simon Newton
 */

#include "plugins/usbdmx/ScanlimeFadecandy.h"

#include <string.h>
#include <unistd.h>
#include <algorithm>
#include <limits>
#include <string>

#include "libs/usb/LibUsbAdaptor.h"
#include "ola/base/Array.h"
#include "ola/Constants.h"
#include "ola/Logging.h"
#include "ola/StringUtils.h"
#include "ola/strings/Format.h"
#include "ola/util/Utils.h"
#include "plugins/usbdmx/AsyncUsbSender.h"
#include "plugins/usbdmx/ThreadedUsbSender.h"

namespace ola {
namespace plugin {
namespace usbdmx {

using ola::usb::LibUsbAdaptor;
using std::string;

namespace {

static const unsigned char ENDPOINT = 0x01;
// 2s is a really long time. Can we reduce this?
static const unsigned int URB_TIMEOUT_MS = 2000;
static const int INTERFACE = 0;

// A data frame.
static const uint8_t TYPE_FRAMEBUFFER = 0x00;
// The color lookup table
static const uint8_t TYPE_LUT = 0x40;
// The initial setup message.
static const uint8_t TYPE_CONFIG = 0x80;
// The final packet in a set.
static const uint8_t FINAL = 0x20;

// Options used in the first data byte of the config message.
static const uint8_t OPTION_NO_DITHERING = 0x01;
static const uint8_t OPTION_NO_INTERPOLATION = 0x02;
// static const uint8_t OPTION_NO_ACTIVITY_LED  = 0x03;
// static const uint8_t OPTION_LED_CONTROL = 0x04;

static const unsigned int NUM_CHANNELS = 3;  // RGB
static const unsigned int LUT_ROWS_PER_CHANNEL = 257;

// Each 'packet' is 63 bytes, or 21 RGB pixels.
enum { SLOTS_PER_PACKET = 63 };
static const uint8_t PACKETS_PER_UPDATE = 25;
// Each LUT 'packet' is 31 LUT rows, 62 bytes, plus a padding byte
static const uint8_t LUT_ROWS_PER_PACKET = 31;
// The padding byte offset
static const uint8_t LUT_DATA_OFFSET = 1;

PACK(
struct fadecandy_packet {
  uint8_t control;
  uint8_t data[SLOTS_PER_PACKET];

  void Reset() {
    control = 0;
    memset(data, 0, sizeof(data));
  }

  fadecandy_packet() {
    Reset();
  }
});

bool InitializeWidget(LibUsbAdaptor *adaptor,
                      libusb_device_handle *usb_handle) {
  // Set the fadecandy configuration.
  fadecandy_packet packet;
  packet.control = TYPE_CONFIG;
  packet.data[0] |= OPTION_NO_DITHERING;  // Default to no processing
  packet.data[0] |= OPTION_NO_INTERPOLATION;

  // packet.data[0] = OPTION_NO_ACTIVITY_LED;  // Manual control of LED
  // packet.data[0] |= OPTION_LED_CONTROL;  // Manual LED state

  int bytes_sent = 0;
  int r = adaptor->BulkTransfer(usb_handle, ENDPOINT,
                                reinterpret_cast<unsigned char*>(&packet),
                                sizeof(packet), &bytes_sent, URB_TIMEOUT_MS);
  if (r == 0) {
    OLA_INFO << "Config transferred " << bytes_sent << " bytes";
  } else {
    OLA_WARN << "Config transfer failed with error "
             << adaptor->ErrorCodeToString(r);
    return false;
  }

  // Build the Look Up Table
  uint16_t lut[NUM_CHANNELS * LUT_ROWS_PER_CHANNEL];
  memset(&lut, 0, sizeof(lut));
  for (unsigned int channel = 0; channel < NUM_CHANNELS; channel++) {
    for (unsigned int value = 0; value < LUT_ROWS_PER_CHANNEL; value++) {
      // Fadecandy Python Example as C++
      // lut[channel][value] = std::min(
      //     static_cast<int>(std::numeric_limits<uint16_t>::max()),
      //     int(pow(value / 256.0, 2.2) *
      //         (std::numeric_limits<uint16_t>::max() + 1)));

      // 1:1 for now
      // TODO(Peter): Add support for more built in or custom LUTs
      unsigned int overall_lut_row = (channel * LUT_ROWS_PER_CHANNEL) + value;
      lut[overall_lut_row] = std::min(
          static_cast<unsigned int>(std::numeric_limits<uint16_t>::max()),
          (value << 8));
      OLA_DEBUG << "Generated LUT for channel " << channel << " value "
                << value << " with val " << lut[overall_lut_row];
    }
  }

  OLA_DEBUG << "LUT size " << arraysize(lut);

  fadecandy_packet lut_packets[PACKETS_PER_UPDATE];

  for (unsigned int packet_index = 0; packet_index < PACKETS_PER_UPDATE;
       packet_index++) {
    lut_packets[packet_index].Reset();

    lut_packets[packet_index].control = TYPE_LUT | packet_index;
    if (packet_index == (PACKETS_PER_UPDATE - 1)) {
      lut_packets[packet_index].control |= FINAL;
    }

    unsigned int lut_offset = packet_index * LUT_ROWS_PER_PACKET;

    for (unsigned int row = 0; row < LUT_ROWS_PER_PACKET; row++) {
      unsigned int row_data_offset = (row * 2) + LUT_DATA_OFFSET;
      ola::utils::SplitUInt16(
          lut[lut_offset + row],
          &lut_packets[packet_index].data[(row_data_offset + 1)],
          &lut_packets[packet_index].data[row_data_offset]);
    }
  }

  bytes_sent = 0;

  // We do a single bulk transfer of the entire data, rather than one transfer
  // for each 64 bytes.
  r = adaptor->BulkTransfer(
      usb_handle, ENDPOINT,
      reinterpret_cast<unsigned char*>(&lut_packets),
      sizeof(lut_packets), &bytes_sent,
      URB_TIMEOUT_MS);
  if (r == 0) {
    OLA_INFO << "Successfully transfer LUT of " << bytes_sent << " bytes";
  } else {
    OLA_WARN << "Data transfer failed with error "
             << adaptor->ErrorCodeToString(r);
    return false;
  }

  return true;
}

void UpdatePacketsWithDMX(fadecandy_packet packets[PACKETS_PER_UPDATE],
                          const DmxBuffer &buffer) {
  for (unsigned int packet_index = 0; packet_index < PACKETS_PER_UPDATE;
       packet_index++) {
    packets[packet_index].Reset();

    unsigned int dmx_offset = packet_index * SLOTS_PER_PACKET;
    unsigned int slots_in_packet = SLOTS_PER_PACKET;
    buffer.GetRange(dmx_offset, packets[packet_index].data,
                    &slots_in_packet);

    packets[packet_index].control = TYPE_FRAMEBUFFER | packet_index;
    if (packet_index == (PACKETS_PER_UPDATE - 1)) {
      packets[packet_index].control |= FINAL;
    }
  }
}

}  // namespace

// FadecandyThreadedSender
// -----------------------------------------------------------------------------

/*
 * Sends messages to a Fadecandy device in a separate thread.
 */
class FadecandyThreadedSender: public ThreadedUsbSender {
 public:
  FadecandyThreadedSender(LibUsbAdaptor *adaptor,
                          libusb_device *usb_device,
                          libusb_device_handle *handle)
      : ThreadedUsbSender(usb_device, handle),
        m_adaptor(adaptor) {
  }

 private:
  LibUsbAdaptor* const m_adaptor;
  fadecandy_packet m_data_packets[PACKETS_PER_UPDATE];

  bool TransmitBuffer(libusb_device_handle *handle,
                      const DmxBuffer &buffer);
};

bool FadecandyThreadedSender::TransmitBuffer(libusb_device_handle *handle,
                                             const DmxBuffer &buffer) {
  UpdatePacketsWithDMX(m_data_packets, buffer);

  int bytes_sent = 0;
  // We do a single bulk transfer of the entire data, rather than one transfer
  // for each 64 bytes.
  int r = m_adaptor->BulkTransfer(
      handle, ENDPOINT,
      reinterpret_cast<unsigned char*>(&m_data_packets),
      sizeof(m_data_packets), &bytes_sent,
      URB_TIMEOUT_MS);
  if (r != 0) {
    OLA_WARN << "Data transfer failed with error "
             << m_adaptor->ErrorCodeToString(r);
  }
  return r == 0;
}

// SynchronousScanlimeFadecandy
// -----------------------------------------------------------------------------

SynchronousScanlimeFadecandy::SynchronousScanlimeFadecandy(
    LibUsbAdaptor *adaptor,
    libusb_device *usb_device,
    const std::string &serial)
    : ScanlimeFadecandy(adaptor, usb_device, serial) {
}

bool SynchronousScanlimeFadecandy::Init() {
  libusb_device_handle *usb_handle;

  bool ok = m_adaptor->OpenDeviceAndClaimInterface(
      m_usb_device, INTERFACE, &usb_handle);
  if (!ok) {
    return false;
  }

  if (!InitializeWidget(m_adaptor, usb_handle)) {
    m_adaptor->Close(usb_handle);
    return false;
  }

  std::auto_ptr<FadecandyThreadedSender> sender(
      new FadecandyThreadedSender(m_adaptor, m_usb_device, usb_handle));
  if (!sender->Start()) {
    return false;
  }
  m_sender.reset(sender.release());
  return true;
}

bool SynchronousScanlimeFadecandy::SendDMX(const DmxBuffer &buffer) {
  return m_sender.get() ? m_sender->SendDMX(buffer) : false;
}

// FadecandyAsyncUsbSender
// -----------------------------------------------------------------------------
class FadecandyAsyncUsbSender : public AsyncUsbSender {
 public:
  FadecandyAsyncUsbSender(LibUsbAdaptor *adaptor,
                          libusb_device *usb_device)
      : AsyncUsbSender(adaptor, usb_device) {
  }

  libusb_device_handle* SetupHandle();

  bool PerformTransfer(const DmxBuffer &buffer);

 private:
  fadecandy_packet m_data_packets[PACKETS_PER_UPDATE];

  DISALLOW_COPY_AND_ASSIGN(FadecandyAsyncUsbSender);
};

libusb_device_handle* FadecandyAsyncUsbSender::SetupHandle() {
  libusb_device_handle *usb_handle;
  if (!m_adaptor->OpenDeviceAndClaimInterface(
          m_usb_device, INTERFACE, &usb_handle)) {
    return NULL;
  }

  if (!InitializeWidget(m_adaptor, usb_handle)) {
    m_adaptor->Close(usb_handle);
    return NULL;
  }
  return usb_handle;
}

bool FadecandyAsyncUsbSender::PerformTransfer(const DmxBuffer &buffer) {
  UpdatePacketsWithDMX(m_data_packets, buffer);
  // We do a single bulk transfer of the entire data, rather than one transfer
  // for each 64 bytes.
  FillBulkTransfer(ENDPOINT,
                   reinterpret_cast<unsigned char*>(&m_data_packets),
                   sizeof(m_data_packets),
                   URB_TIMEOUT_MS);
  return (SubmitTransfer() == 0);
}

// AsynchronousScanlimeFadecandy
// -----------------------------------------------------------------------------

AsynchronousScanlimeFadecandy::AsynchronousScanlimeFadecandy(
    LibUsbAdaptor *adaptor,
    libusb_device *usb_device,
    const std::string &serial)
    : ScanlimeFadecandy(adaptor, usb_device, serial) {
  m_sender.reset(new FadecandyAsyncUsbSender(m_adaptor, usb_device));
}

bool AsynchronousScanlimeFadecandy::Init() {
  return m_sender->Init();
}

bool AsynchronousScanlimeFadecandy::SendDMX(const DmxBuffer &buffer) {
  return m_sender->SendDMX(buffer);
}
}  // namespace usbdmx
}  // namespace plugin
}  // namespace ola