2020-04-06 05:00:42 +00:00
|
|
|
#ifndef __NCPP_PLOT_HH
|
|
|
|
#define __NCPP_PLOT_HH
|
|
|
|
|
2020-05-02 21:01:21 +00:00
|
|
|
#include <type_traits>
|
|
|
|
|
2020-04-06 05:00:42 +00:00
|
|
|
#include <notcurses/notcurses.h>
|
|
|
|
|
|
|
|
#include "NCAlign.hh"
|
2020-05-24 12:41:18 +00:00
|
|
|
#include "Plane.hh"
|
2020-05-22 20:11:59 +00:00
|
|
|
#include "Utilities.hh"
|
2020-04-06 05:00:42 +00:00
|
|
|
|
|
|
|
namespace ncpp
|
|
|
|
{
|
2020-05-02 21:01:21 +00:00
|
|
|
template<typename TPlot, typename TCoord>
|
|
|
|
class NCPP_API_EXPORT PlotBase : public Root
|
2020-04-06 05:00:42 +00:00
|
|
|
{
|
2020-05-02 21:01:21 +00:00
|
|
|
static constexpr bool is_double = std::is_same_v<TCoord,double>;
|
|
|
|
static constexpr bool is_uint64 = std::is_same_v<TCoord,uint64_t>;
|
2020-04-06 05:00:42 +00:00
|
|
|
|
|
|
|
public:
|
2020-05-02 21:01:21 +00:00
|
|
|
bool add_sample(TCoord x, TCoord y) const NOEXCEPT_MAYBE
|
|
|
|
{
|
|
|
|
int ret;
|
2020-04-06 05:00:42 +00:00
|
|
|
|
2020-05-02 21:01:21 +00:00
|
|
|
if constexpr (is_double) {
|
|
|
|
ret = ncdplot_add_sample (plot, x, y);
|
|
|
|
} else {
|
|
|
|
ret = nduplot_add_sample (plot, x, y);
|
|
|
|
}
|
2020-04-06 05:00:42 +00:00
|
|
|
|
2020-05-02 21:01:21 +00:00
|
|
|
return error_guard (ret, -1);
|
|
|
|
}
|
2020-04-06 05:00:42 +00:00
|
|
|
|
2020-05-02 21:01:21 +00:00
|
|
|
bool set_sample(TCoord x, TCoord y) const NOEXCEPT_MAYBE
|
|
|
|
{
|
|
|
|
int ret;
|
2020-04-06 05:00:42 +00:00
|
|
|
|
2020-05-02 21:01:21 +00:00
|
|
|
if constexpr (is_double) {
|
|
|
|
ret = ncdplot_set_sample (plot, x, y);
|
|
|
|
} else {
|
|
|
|
ret = nduplot_set_sample (plot, x, y);
|
|
|
|
}
|
|
|
|
return error_guard (ret, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2020-05-24 12:41:18 +00:00
|
|
|
explicit PlotBase (Plane *plane, const ncplot_options *opts, TCoord miny = 0, TCoord maxy = 0)
|
|
|
|
: Root (Utilities::get_notcurses_cpp (plane))
|
2020-04-06 05:00:42 +00:00
|
|
|
{
|
2020-05-02 21:01:21 +00:00
|
|
|
static_assert (is_double || is_uint64, "PlotBase must be parameterized with either 'double' or 'uint64_t' types");
|
|
|
|
if constexpr (is_double) {
|
|
|
|
static_assert (std::is_same_v<TPlot, ncdplot>, "ncdplot must be used for a plot using double coordinates");
|
|
|
|
} else {
|
|
|
|
static_assert (std::is_same_v<TPlot, ncuplot>, "ncuplot must be used for a plot using uint64_t coordinates");
|
|
|
|
}
|
|
|
|
|
2020-04-06 05:00:42 +00:00
|
|
|
if (plane == nullptr)
|
|
|
|
throw invalid_argument ("'plane' must be a valid pointer");
|
|
|
|
|
2020-05-02 21:01:21 +00:00
|
|
|
if (opts == nullptr)
|
|
|
|
throw invalid_argument ("'opts' must be a valid pointer");
|
|
|
|
|
|
|
|
if constexpr (is_uint64) {
|
2020-05-24 12:41:18 +00:00
|
|
|
plot = ncuplot_create (Utilities::to_ncplane (plane), opts, miny, maxy);
|
2020-05-02 21:01:21 +00:00
|
|
|
} else {
|
2020-05-24 12:41:18 +00:00
|
|
|
plot = ncdplot_create (Utilities::to_ncplane (plane), opts, miny, maxy);
|
2020-05-02 21:01:21 +00:00
|
|
|
}
|
|
|
|
|
2020-04-06 05:00:42 +00:00
|
|
|
if (plot == nullptr)
|
2020-05-20 04:15:38 +00:00
|
|
|
throw init_error ("Notcurses failed to create a new plot");
|
2020-04-06 05:00:42 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 21:01:21 +00:00
|
|
|
~PlotBase ()
|
2020-04-06 05:00:42 +00:00
|
|
|
{
|
2020-05-02 21:01:21 +00:00
|
|
|
if (!is_notcurses_stopped ()) {
|
|
|
|
if constexpr (is_double) {
|
|
|
|
ncdplot_destroy (plot);
|
|
|
|
} else {
|
|
|
|
ncuplot_destroy (plot);
|
|
|
|
}
|
|
|
|
}
|
2020-04-06 05:00:42 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 21:01:21 +00:00
|
|
|
TPlot *get_plot () const noexcept
|
2020-04-11 22:20:11 +00:00
|
|
|
{
|
2020-05-02 21:01:21 +00:00
|
|
|
return plot;
|
2020-04-11 22:20:11 +00:00
|
|
|
}
|
2020-04-06 05:00:42 +00:00
|
|
|
|
2020-05-02 21:01:21 +00:00
|
|
|
private:
|
|
|
|
TPlot *plot;
|
|
|
|
};
|
|
|
|
|
|
|
|
class NCPP_API_EXPORT PlotU : public PlotBase<ncuplot, uint64_t>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static ncplot_options default_options;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit PlotU (Plane *plane, const ncplot_options *opts = nullptr)
|
2020-05-24 12:41:18 +00:00
|
|
|
: PlotU (static_cast<const Plane*>(plane), opts)
|
2020-05-02 21:01:21 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
explicit PlotU (Plane const* plane, const ncplot_options *opts = nullptr)
|
2020-05-24 12:41:18 +00:00
|
|
|
: PlotBase (const_cast<Plane*>(plane), opts == nullptr ? &default_options : opts)
|
2020-05-02 21:01:21 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
explicit PlotU (Plane &plane, const ncplot_options *opts = nullptr)
|
2020-05-24 12:41:18 +00:00
|
|
|
: PlotU (static_cast<Plane const&>(plane), opts)
|
2020-05-02 21:01:21 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
explicit PlotU (Plane const& plane, const ncplot_options *opts = nullptr)
|
2020-05-24 12:41:18 +00:00
|
|
|
: PlotBase (const_cast<Plane*>(&plane), opts == nullptr ? &default_options : opts)
|
2020-05-02 21:01:21 +00:00
|
|
|
{}
|
2020-04-06 05:00:42 +00:00
|
|
|
|
|
|
|
Plane* get_plane () const noexcept;
|
2020-05-02 21:01:21 +00:00
|
|
|
};
|
2020-04-06 05:00:42 +00:00
|
|
|
|
2020-05-02 21:01:21 +00:00
|
|
|
class NCPP_API_EXPORT PlotD : public PlotBase<ncdplot, double>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static ncplot_options default_options;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit PlotD (Plane *plane, const ncplot_options *opts = nullptr)
|
2020-05-24 12:41:18 +00:00
|
|
|
: PlotD (static_cast<const Plane*>(plane), opts)
|
2020-05-02 21:01:21 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
explicit PlotD (Plane const* plane, const ncplot_options *opts = nullptr)
|
2020-05-24 12:41:18 +00:00
|
|
|
: PlotBase (const_cast<Plane*>(plane), opts == nullptr ? &default_options : opts)
|
2020-05-02 21:01:21 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
explicit PlotD (Plane &plane, const ncplot_options *opts = nullptr)
|
2020-05-24 12:41:18 +00:00
|
|
|
: PlotD (static_cast<Plane const&>(plane), opts)
|
2020-05-02 21:01:21 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
explicit PlotD (Plane const& plane, const ncplot_options *opts = nullptr)
|
2020-05-24 12:41:18 +00:00
|
|
|
: PlotBase (const_cast<Plane*>(&plane), opts == nullptr ? &default_options : opts)
|
2020-05-02 21:01:21 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
Plane* get_plane () const noexcept;
|
2020-04-06 05:00:42 +00:00
|
|
|
};
|
2020-05-02 21:01:21 +00:00
|
|
|
|
|
|
|
using Plot = PlotU;
|
2020-04-06 05:00:42 +00:00
|
|
|
}
|
|
|
|
#endif
|