2013-07-26 22:38:34 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <ctime>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
// Local includes
|
2013-11-11 10:00:37 +01:00
|
|
|
#include <utils/ColorRgb.h>
|
2013-07-26 22:38:34 +02:00
|
|
|
|
2016-09-25 21:59:31 +02:00
|
|
|
// QT includes
|
|
|
|
#include <QString>
|
|
|
|
|
2013-07-26 22:38:34 +02:00
|
|
|
// Forward class declarations
|
|
|
|
namespace Json { class Value; }
|
|
|
|
|
2015-01-01 19:31:04 +01:00
|
|
|
/// Enumeration containing the possible orders of device color byte data
|
|
|
|
enum ColorOrder
|
|
|
|
{
|
2015-02-23 16:11:33 +01:00
|
|
|
ORDER_RGB, ORDER_RBG, ORDER_GRB, ORDER_BRG, ORDER_GBR, ORDER_BGR
|
2015-01-01 19:31:04 +01:00
|
|
|
};
|
|
|
|
|
2016-09-25 21:59:31 +02:00
|
|
|
inline QString colorOrderToString(const ColorOrder colorOrder)
|
2015-02-23 16:11:33 +01:00
|
|
|
{
|
|
|
|
switch (colorOrder)
|
|
|
|
{
|
|
|
|
case ORDER_RGB:
|
|
|
|
return "rgb";
|
|
|
|
case ORDER_RBG:
|
|
|
|
return "rbg";
|
|
|
|
case ORDER_GRB:
|
|
|
|
return "grb";
|
|
|
|
case ORDER_BRG:
|
|
|
|
return "brg";
|
|
|
|
case ORDER_GBR:
|
|
|
|
return "gbr";
|
|
|
|
case ORDER_BGR:
|
|
|
|
return "bgr";
|
|
|
|
default:
|
|
|
|
return "not-a-colororder";
|
|
|
|
}
|
|
|
|
}
|
2016-09-25 21:59:31 +02:00
|
|
|
inline ColorOrder stringToColorOrder(const QString & order)
|
2015-02-23 16:11:33 +01:00
|
|
|
{
|
|
|
|
if (order == "rgb")
|
|
|
|
{
|
|
|
|
return ORDER_RGB;
|
|
|
|
}
|
|
|
|
else if (order == "bgr")
|
|
|
|
{
|
|
|
|
return ORDER_BGR;
|
|
|
|
}
|
|
|
|
else if (order == "rbg")
|
|
|
|
{
|
|
|
|
return ORDER_RBG;
|
|
|
|
}
|
|
|
|
else if (order == "brg")
|
|
|
|
{
|
|
|
|
return ORDER_BRG;
|
|
|
|
}
|
|
|
|
else if (order == "gbr")
|
|
|
|
{
|
|
|
|
return ORDER_GBR;
|
|
|
|
}
|
|
|
|
else if (order == "grb")
|
|
|
|
{
|
|
|
|
return ORDER_GRB;
|
|
|
|
}
|
|
|
|
|
2016-09-25 21:59:31 +02:00
|
|
|
std::cout << "Unknown color order defined (" << order.toStdString() << "). Using RGB." << std::endl;
|
2015-02-23 16:11:33 +01:00
|
|
|
return ORDER_RGB;
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// The Led structure contains the definition of the image portion used to determine a single led's
|
|
|
|
/// color.
|
2013-09-09 22:35:28 +02:00
|
|
|
/// @verbatim
|
2013-09-06 21:26:58 +02:00
|
|
|
/// |--------------------image--|
|
|
|
|
/// | minX maxX |
|
|
|
|
/// | |-----|minY |
|
|
|
|
/// | | | |
|
|
|
|
/// | |-----|maxY |
|
|
|
|
/// | |
|
|
|
|
/// | |
|
|
|
|
/// | |
|
|
|
|
/// |---------------------------|
|
2013-09-09 22:35:28 +02:00
|
|
|
/// @endverbatim
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
2013-07-26 22:38:34 +02:00
|
|
|
struct Led
|
|
|
|
{
|
2013-09-06 21:26:58 +02:00
|
|
|
/// The index of the led
|
2013-07-26 22:38:34 +02:00
|
|
|
unsigned index;
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
/// The minimum vertical scan line included for this leds color
|
2013-07-26 22:38:34 +02:00
|
|
|
double minX_frac;
|
2013-09-06 21:26:58 +02:00
|
|
|
/// The maximum vertical scan line included for this leds color
|
2013-07-26 22:38:34 +02:00
|
|
|
double maxX_frac;
|
2013-09-06 21:26:58 +02:00
|
|
|
/// The minimum horizontal scan line included for this leds color
|
2013-07-26 22:38:34 +02:00
|
|
|
double minY_frac;
|
2013-09-06 21:26:58 +02:00
|
|
|
/// The maximum horizontal scan line included for this leds color
|
2013-07-26 22:38:34 +02:00
|
|
|
double maxY_frac;
|
2016-08-08 00:17:00 +02:00
|
|
|
/// id to clone
|
|
|
|
int clone;
|
2015-01-01 19:31:04 +01:00
|
|
|
/// the color order
|
|
|
|
ColorOrder colorOrder;
|
2013-07-26 22:38:34 +02:00
|
|
|
};
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// The LedString contains the image integration information of the leds
|
|
|
|
///
|
2013-07-26 22:38:34 +02:00
|
|
|
class LedString
|
|
|
|
{
|
|
|
|
public:
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Constructs the LedString with no leds
|
|
|
|
///
|
2013-07-26 22:38:34 +02:00
|
|
|
LedString();
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Destructor of this LedString
|
|
|
|
///
|
2013-07-26 22:38:34 +02:00
|
|
|
~LedString();
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Returns the led specifications
|
|
|
|
///
|
|
|
|
/// @return The list with led specifications
|
|
|
|
///
|
2013-08-13 11:10:45 +02:00
|
|
|
std::vector<Led>& leds();
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Returns the led specifications
|
|
|
|
///
|
|
|
|
/// @return The list with led specifications
|
|
|
|
///
|
2013-07-26 22:38:34 +02:00
|
|
|
const std::vector<Led>& leds() const;
|
|
|
|
|
|
|
|
private:
|
2013-09-06 21:26:58 +02:00
|
|
|
/// The list with led specifications
|
2013-07-26 22:38:34 +02:00
|
|
|
std::vector<Led> mLeds;
|
|
|
|
};
|