2020-01-07 22:51:34 +00:00
|
|
|
#ifndef __NCPP_PALETTE256_HH
|
|
|
|
#define __NCPP_PALETTE256_HH
|
|
|
|
|
|
|
|
#include "Root.hh"
|
|
|
|
#include "_helpers.hh"
|
|
|
|
|
|
|
|
namespace ncpp
|
|
|
|
{
|
|
|
|
class NCPP_API_EXPORT Palette256 : public Root
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Palette256 ()
|
|
|
|
{
|
|
|
|
palette = palette256_new (get_notcurses ());
|
|
|
|
if (palette == nullptr)
|
2020-02-16 19:25:26 +00:00
|
|
|
throw init_error ("notcurses failed to create a new palette");
|
2020-01-07 22:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~Palette256 ()
|
|
|
|
{
|
|
|
|
palette256_free (palette);
|
|
|
|
}
|
|
|
|
|
|
|
|
operator palette256* () noexcept
|
|
|
|
{
|
|
|
|
return palette;
|
|
|
|
}
|
|
|
|
|
|
|
|
operator palette256 const* () const noexcept
|
|
|
|
{
|
|
|
|
return palette;
|
|
|
|
}
|
|
|
|
|
2020-04-12 21:09:03 +00:00
|
|
|
bool set (int idx, int r, int g, int b) const NOEXCEPT_MAYBE
|
2020-01-07 22:51:34 +00:00
|
|
|
{
|
2020-04-12 21:09:03 +00:00
|
|
|
return error_guard (palette256_set_rgb (palette, idx, r, g, b), -1);
|
2020-01-07 22:51:34 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 21:09:03 +00:00
|
|
|
bool set (int idx, unsigned rgb) const NOEXCEPT_MAYBE
|
2020-01-07 22:51:34 +00:00
|
|
|
{
|
2020-04-12 21:09:03 +00:00
|
|
|
return error_guard (palette256_set (palette, idx, rgb), -1);
|
2020-01-07 22:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool get (int idx, unsigned *r, unsigned *g, unsigned *b) const
|
|
|
|
{
|
|
|
|
if (r == nullptr)
|
2020-02-16 19:25:26 +00:00
|
|
|
throw invalid_argument ("'r' must be a valid pointer");
|
2020-01-07 22:51:34 +00:00
|
|
|
if (g == nullptr)
|
2020-02-16 19:25:26 +00:00
|
|
|
throw invalid_argument ("'g' must be a valid pointer");
|
2020-01-07 22:51:34 +00:00
|
|
|
if (b == nullptr)
|
2020-02-16 19:25:26 +00:00
|
|
|
throw invalid_argument ("'b' must be a valid pointer");
|
2020-01-07 22:51:34 +00:00
|
|
|
|
|
|
|
return get (idx, *r, *g, *b);
|
|
|
|
}
|
|
|
|
|
2020-04-12 21:09:03 +00:00
|
|
|
bool get (int idx, unsigned &r, unsigned &g, unsigned &b) const NOEXCEPT_MAYBE
|
2020-01-07 22:51:34 +00:00
|
|
|
{
|
2020-04-12 21:09:03 +00:00
|
|
|
return error_guard (palette256_get_rgb (palette, idx, &r, &g, &b), -1);
|
2020-01-07 22:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
palette256 *palette;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|