mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
510bb903ae
* Disable AVAHI * Replace SysInfo backport with Qt SysInfo * Update vscode config * Update LedDevices * Update Logger * Update hyperiond * Update hyperion-remote * Exclude avahi * Empty definition for Process * PythonInit path broken * Exclude PiBlaster and link ws2_32 * more avahi * resolve ui bug * Update Compile howto * JsonAPI QtGrabber missing * fix error * ssize_t replacement * Nope, doesn't work * Adjust compile description and verify winSDK * Update ci script * Update ci script * Update ci * Update ci script * update Logger * Update PythonInit * added Azure & GitHub Actions, Logger, PythonInit * resolve merge conflicts * revert ssize_t in FadeCandy * look at registry for QT5 & use find_package(Python) if cmake >= 3.12 * second try * another try * and yet another test * qt5 registry search undone * Package creation test * finished package creation. only fine tuning is required :-) Signed-off-by: Paulchen-Panther <Paulchen-Panter@protonmail.com> * Dependencies for Windows finished Signed-off-by: Paulchen-Panther <Paulchen-Panter@protonmail.com> * use 'add_definitions()' until CMake 3.12 Signed-off-by: Paulchen-Panther <Paulchen-Panter@protonmail.com> * Update .github/workflows/pull-request.yml Co-Authored-By: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com> * Update cmake/Dependencies.cmake Co-Authored-By: brindosch <edeltraud70@gmx.de> * fix typo/ add VCINSTALLDIR var * fix again * Undo change again (Not working) * fix QT grabber Signed-off-by: Paulchen-Panther <Paulchen-Panter@protonmail.com> * first NSIS test Signed-off-by: Paulchen-Panther <Paulchen-Panter@protonmail.com> * Update NSIS package * surprise :-) Signed-off-by: Paulchen-Panther <Paulchen-Panter@protonmail.com> * Update NSIS package * fix: NSIS .bmps * Add nsis templates * Force windows gui app * fix: QSysInfo required Qt5.6, now it's 5.4 again * Update: Remove platform component and adjust package name * Add macOS as system name * Update docs * fix: Allow gh actions ci also for forks with branches * Add ReadMe docs, mention windows, add vscode linux debug config * fix: readme visual * reduce/hide banner/copyright/log message Infos here: https://docs.microsoft.com/de-de/visualstudio/msbuild/msbuild-command-line-reference?view=vs-2019#switches * Fix PythonInit * vscode: Add runner task * fix(vscode): compiler path gcc ver independent * fix azure * vscode: add windows run tasks * move process detection * main: add windows process detection * Azure file shredder * Update docs Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com> Co-authored-by: Paulchen-Panther <Paulchen-Panter@protonmail.com>
291 lines
5.8 KiB
C++
291 lines
5.8 KiB
C++
#pragma once
|
|
|
|
// STL includes
|
|
#include <vector>
|
|
#include <cstdint>
|
|
#include <cstring>
|
|
#include <algorithm>
|
|
#include <cassert>
|
|
#include <utils/ColorRgb.h>
|
|
|
|
// https://docs.microsoft.com/en-us/windows/win32/winprog/windows-data-types#ssize-t
|
|
#if defined(_MSC_VER)
|
|
#include <BaseTsd.h>
|
|
typedef SSIZE_T ssize_t;
|
|
#endif
|
|
|
|
template <typename Pixel_T>
|
|
class Image
|
|
{
|
|
public:
|
|
|
|
typedef Pixel_T pixel_type;
|
|
|
|
///
|
|
/// Default constructor for an image
|
|
///
|
|
Image() :
|
|
_width(1),
|
|
_height(1),
|
|
_pixels(new Pixel_T[2]),
|
|
_endOfPixels(_pixels + 1)
|
|
{
|
|
memset(_pixels, 0, 2*sizeof(Pixel_T));
|
|
}
|
|
|
|
///
|
|
/// Constructor for an image with specified width and height
|
|
///
|
|
/// @param width The width of the image
|
|
/// @param height The height of the image
|
|
///
|
|
Image(const unsigned width, const unsigned height) :
|
|
_width(width),
|
|
_height(height),
|
|
_pixels(new Pixel_T[width * height + 1]),
|
|
_endOfPixels(_pixels + width * height)
|
|
{
|
|
memset(_pixels, 0, (_width*_height+1)*sizeof(Pixel_T));
|
|
}
|
|
|
|
///
|
|
/// Constructor for an image with specified width and height
|
|
///
|
|
/// @param width The width of the image
|
|
/// @param height The height of the image
|
|
/// @param background The color of the image
|
|
///
|
|
Image(const unsigned width, const unsigned height, const Pixel_T background) :
|
|
_width(width),
|
|
_height(height),
|
|
_pixels(new Pixel_T[width * height + 1]),
|
|
_endOfPixels(_pixels + width * height)
|
|
{
|
|
std::fill(_pixels, _endOfPixels, background);
|
|
}
|
|
|
|
///
|
|
/// Copy constructor for an image
|
|
///
|
|
Image(const Image & other) :
|
|
_width(other._width),
|
|
_height(other._height),
|
|
_pixels(new Pixel_T[other._width * other._height + 1]),
|
|
_endOfPixels(_pixels + other._width * other._height)
|
|
{
|
|
memcpy(_pixels, other._pixels, (long) other._width * other._height * sizeof(Pixel_T));
|
|
}
|
|
|
|
// Define assignment operator in terms of the copy constructor
|
|
// More to read: https://stackoverflow.com/questions/255612/dynamically-allocating-an-array-of-objects?answertab=active#tab-top
|
|
Image& operator=(Image rhs)
|
|
{
|
|
rhs.swap(*this);
|
|
return *this;
|
|
}
|
|
|
|
void swap(Image& s) noexcept
|
|
{
|
|
using std::swap;
|
|
swap(this->_width, s._width);
|
|
swap(this->_height, s._height);
|
|
swap(this->_pixels, s._pixels);
|
|
swap(this->_endOfPixels, s._endOfPixels);
|
|
}
|
|
|
|
// C++11
|
|
Image(Image&& src) noexcept
|
|
: _width(0)
|
|
, _height(0)
|
|
, _pixels(NULL)
|
|
, _endOfPixels(NULL)
|
|
{
|
|
src.swap(*this);
|
|
}
|
|
Image& operator=(Image&& src) noexcept
|
|
{
|
|
src.swap(*this);
|
|
return *this;
|
|
}
|
|
|
|
///
|
|
/// Destructor
|
|
///
|
|
~Image()
|
|
{
|
|
delete[] _pixels;
|
|
}
|
|
|
|
///
|
|
/// Returns the width of the image
|
|
///
|
|
/// @return The width of the image
|
|
///
|
|
inline unsigned width() const
|
|
{
|
|
return _width;
|
|
}
|
|
|
|
///
|
|
/// Returns the height of the image
|
|
///
|
|
/// @return The height of the image
|
|
///
|
|
inline unsigned height() const
|
|
{
|
|
return _height;
|
|
}
|
|
|
|
uint8_t red(const unsigned pixel) const
|
|
{
|
|
return (_pixels + pixel)->red;
|
|
}
|
|
|
|
uint8_t green(const unsigned pixel) const
|
|
{
|
|
return (_pixels + pixel)->green;
|
|
}
|
|
|
|
uint8_t blue(const unsigned pixel) const
|
|
{
|
|
return (_pixels + pixel)->blue;
|
|
}
|
|
|
|
///
|
|
/// Returns a const reference to a specified pixel in the image
|
|
///
|
|
/// @param x The x index
|
|
/// @param y The y index
|
|
///
|
|
/// @return const reference to specified pixel
|
|
///
|
|
const Pixel_T& operator()(const unsigned x, const unsigned y) const
|
|
{
|
|
return _pixels[toIndex(x,y)];
|
|
}
|
|
|
|
///
|
|
/// Returns a reference to a specified pixel in the image
|
|
///
|
|
/// @param x The x index
|
|
/// @param y The y index
|
|
///
|
|
/// @return reference to specified pixel
|
|
///
|
|
Pixel_T& operator()(const unsigned x, const unsigned y)
|
|
{
|
|
return _pixels[toIndex(x,y)];
|
|
}
|
|
|
|
/// Resize the image
|
|
/// @param width The width of the image
|
|
/// @param height The height of the image
|
|
void resize(const unsigned width, const unsigned height)
|
|
{
|
|
if ((width*height) > unsigned((_endOfPixels-_pixels)))
|
|
{
|
|
delete[] _pixels;
|
|
_pixels = new Pixel_T[width*height + 1];
|
|
_endOfPixels = _pixels + width*height;
|
|
}
|
|
|
|
_width = width;
|
|
_height = height;
|
|
}
|
|
|
|
///
|
|
/// Copies another image into this image. The images should have exactly the same size.
|
|
///
|
|
/// @param other The image to copy into this
|
|
///
|
|
void copy(const Image<Pixel_T>& other)
|
|
{
|
|
assert(other._width == _width);
|
|
assert(other._height == _height);
|
|
|
|
memcpy(_pixels, other._pixels, _width*_height*sizeof(Pixel_T));
|
|
}
|
|
|
|
///
|
|
/// Returns a memory pointer to the first pixel in the image
|
|
/// @return The memory pointer to the first pixel
|
|
///
|
|
Pixel_T* memptr()
|
|
{
|
|
return _pixels;
|
|
}
|
|
|
|
///
|
|
/// Returns a const memory pointer to the first pixel in the image
|
|
/// @return The const memory pointer to the first pixel
|
|
///
|
|
const Pixel_T* memptr() const
|
|
{
|
|
return _pixels;
|
|
}
|
|
|
|
|
|
///
|
|
/// Convert image of any color order to a RGB image.
|
|
///
|
|
/// @param[out] image The image that buffers the output
|
|
///
|
|
void toRgb(Image<ColorRgb>& image)
|
|
{
|
|
image.resize(_width, _height);
|
|
const unsigned imageSize = _width * _height;
|
|
|
|
for (unsigned idx=0; idx<imageSize; idx++)
|
|
{
|
|
const Pixel_T color = memptr()[idx];
|
|
image.memptr()[idx] = ColorRgb{color.red, color.green, color.blue};
|
|
}
|
|
}
|
|
|
|
///
|
|
/// get size of buffer
|
|
//
|
|
ssize_t size() const
|
|
{
|
|
return (ssize_t) _width * _height * sizeof(Pixel_T);
|
|
}
|
|
|
|
/// Clear the image
|
|
//
|
|
void clear()
|
|
{
|
|
_width = 1;
|
|
_height = 1;
|
|
_pixels = new Pixel_T[2];
|
|
_endOfPixels = _pixels + 1;
|
|
memset(_pixels, 0, _width * _height * sizeof(Pixel_T));
|
|
}
|
|
|
|
private:
|
|
|
|
///
|
|
/// Translate x and y coordinate to index of the underlying vector
|
|
///
|
|
/// @param x The x index
|
|
/// @param y The y index
|
|
///
|
|
/// @return The index into the underlying data-vector
|
|
///
|
|
inline unsigned toIndex(const unsigned x, const unsigned y) const
|
|
{
|
|
return y*_width + x;
|
|
}
|
|
|
|
private:
|
|
/// The width of the image
|
|
unsigned _width;
|
|
/// The height of the image
|
|
unsigned _height;
|
|
|
|
/// The pixels of the image
|
|
Pixel_T* _pixels;
|
|
|
|
/// Pointer to the last(extra) pixel
|
|
Pixel_T* _endOfPixels;
|
|
};
|