mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-06 03:20:26 +00:00
b5d8549bb3
This is to make it possible, in the future, to create multiple instances of `NotCurses` for multiple terminals. The first instance of `NotCurses` becomes the default one, so that any instances of other classes that aren't explicitly created with a pointer to another `NotCurses` instance still work as expected. Note that currently trying to call `notcurses_init` twice results in the following error for me: 0x55555559bfc0 is already registered for signals Couldn't drop signals: 0x55555559bfc0 != 0x5555555b6720 terminate called after throwing an instance of 'ncpp::init_error*' Program received signal SIGABRT, Aborted. The error is signalled by `setup_signals` and the pointer shown in the message points to the first `struct notcurses` instance created.
146 lines
3.7 KiB
C++
146 lines
3.7 KiB
C++
#ifndef __NCPP_PLOT_HH
|
|
#define __NCPP_PLOT_HH
|
|
|
|
#include <type_traits>
|
|
|
|
#include <notcurses/notcurses.h>
|
|
|
|
#include "NCAlign.hh"
|
|
#include "Plane.hh"
|
|
#include "Utilities.hh"
|
|
|
|
namespace ncpp
|
|
{
|
|
template<typename TPlot, typename TCoord>
|
|
class NCPP_API_EXPORT PlotBase : public Root
|
|
{
|
|
static constexpr bool is_double = std::is_same_v<TCoord,double>;
|
|
static constexpr bool is_uint64 = std::is_same_v<TCoord,uint64_t>;
|
|
|
|
public:
|
|
bool add_sample(TCoord x, TCoord y) const NOEXCEPT_MAYBE
|
|
{
|
|
int ret;
|
|
|
|
if constexpr (is_double) {
|
|
ret = ncdplot_add_sample (plot, x, y);
|
|
} else {
|
|
ret = nduplot_add_sample (plot, x, y);
|
|
}
|
|
|
|
return error_guard (ret, -1);
|
|
}
|
|
|
|
bool set_sample(TCoord x, TCoord y) const NOEXCEPT_MAYBE
|
|
{
|
|
int ret;
|
|
|
|
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:
|
|
explicit PlotBase (Plane *plane, const ncplot_options *opts, TCoord miny = 0, TCoord maxy = 0)
|
|
: Root (Utilities::get_notcurses_cpp (plane))
|
|
{
|
|
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");
|
|
}
|
|
|
|
if (plane == nullptr)
|
|
throw invalid_argument ("'plane' must be a valid pointer");
|
|
|
|
if (opts == nullptr)
|
|
throw invalid_argument ("'opts' must be a valid pointer");
|
|
|
|
if constexpr (is_uint64) {
|
|
plot = ncuplot_create (Utilities::to_ncplane (plane), opts, miny, maxy);
|
|
} else {
|
|
plot = ncdplot_create (Utilities::to_ncplane (plane), opts, miny, maxy);
|
|
}
|
|
|
|
if (plot == nullptr)
|
|
throw init_error ("Notcurses failed to create a new plot");
|
|
}
|
|
|
|
~PlotBase ()
|
|
{
|
|
if (!is_notcurses_stopped ()) {
|
|
if constexpr (is_double) {
|
|
ncdplot_destroy (plot);
|
|
} else {
|
|
ncuplot_destroy (plot);
|
|
}
|
|
}
|
|
}
|
|
|
|
TPlot *get_plot () const noexcept
|
|
{
|
|
return plot;
|
|
}
|
|
|
|
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)
|
|
: PlotU (static_cast<const Plane*>(plane), opts)
|
|
{}
|
|
|
|
explicit PlotU (Plane const* plane, const ncplot_options *opts = nullptr)
|
|
: PlotBase (const_cast<Plane*>(plane), opts == nullptr ? &default_options : opts)
|
|
{}
|
|
|
|
explicit PlotU (Plane &plane, const ncplot_options *opts = nullptr)
|
|
: PlotU (static_cast<Plane const&>(plane), opts)
|
|
{}
|
|
|
|
explicit PlotU (Plane const& plane, const ncplot_options *opts = nullptr)
|
|
: PlotBase (const_cast<Plane*>(&plane), opts == nullptr ? &default_options : opts)
|
|
{}
|
|
|
|
Plane* get_plane () const noexcept;
|
|
};
|
|
|
|
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)
|
|
: PlotD (static_cast<const Plane*>(plane), opts)
|
|
{}
|
|
|
|
explicit PlotD (Plane const* plane, const ncplot_options *opts = nullptr)
|
|
: PlotBase (const_cast<Plane*>(plane), opts == nullptr ? &default_options : opts)
|
|
{}
|
|
|
|
explicit PlotD (Plane &plane, const ncplot_options *opts = nullptr)
|
|
: PlotD (static_cast<Plane const&>(plane), opts)
|
|
{}
|
|
|
|
explicit PlotD (Plane const& plane, const ncplot_options *opts = nullptr)
|
|
: PlotBase (const_cast<Plane*>(&plane), opts == nullptr ? &default_options : opts)
|
|
{}
|
|
|
|
Plane* get_plane () const noexcept;
|
|
};
|
|
|
|
using Plot = PlotU;
|
|
}
|
|
#endif
|