mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +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.
105 lines
2.5 KiB
C++
105 lines
2.5 KiB
C++
#ifndef __NCPP_VISUAL_HH
|
|
#define __NCPP_VISUAL_HH
|
|
|
|
#include <notcurses/notcurses.h>
|
|
|
|
#include "Root.hh"
|
|
#include "NCScale.hh"
|
|
#include "Utilities.hh"
|
|
|
|
namespace ncpp
|
|
{
|
|
class NotCurses;
|
|
class Plane;
|
|
|
|
class NCPP_API_EXPORT Visual : public Root
|
|
{
|
|
public:
|
|
explicit Visual (Plane *plane, const char *file, nc_err_e* ncerr)
|
|
: Visual (static_cast<const Plane*>(plane), file, ncerr)
|
|
{}
|
|
|
|
explicit Visual (Plane const* plane, const char *file, nc_err_e* ncerr)
|
|
: Root (Utilities::get_notcurses_cpp (plane))
|
|
{
|
|
common_init (Utilities::to_ncplane (plane), file, ncerr);
|
|
}
|
|
|
|
explicit Visual (Plane &plane, const char *file, nc_err_e* ncerr)
|
|
: Visual (static_cast<Plane const&> (plane), file, ncerr)
|
|
{}
|
|
|
|
explicit Visual (Plane const& plane, const char *file, nc_err_e* ncerr)
|
|
: Root (Utilities::get_notcurses_cpp (plane))
|
|
{
|
|
common_init (Utilities::to_ncplane (plane), file, ncerr);
|
|
}
|
|
|
|
explicit Visual (const char *file, nc_err_e* ncerr, int y, int x, NCScale scale, NotCurses *ncinst = nullptr)
|
|
: Root (ncinst)
|
|
{
|
|
visual = ncvisual_from_file (get_notcurses (), file, ncerr, y, x, static_cast<ncscale_e>(scale));
|
|
if (visual == nullptr)
|
|
throw init_error ("Notcurses failed to create a new visual");
|
|
}
|
|
|
|
~Visual () noexcept
|
|
{
|
|
if (!is_notcurses_stopped ())
|
|
ncvisual_destroy (visual);
|
|
}
|
|
|
|
operator ncvisual* () const noexcept
|
|
{
|
|
return visual;
|
|
}
|
|
|
|
operator ncvisual const* () const noexcept
|
|
{
|
|
return visual;
|
|
}
|
|
|
|
nc_err_e decode () const noexcept
|
|
{
|
|
return ncvisual_decode (visual);
|
|
}
|
|
|
|
bool render (int begy, int begx, int leny, int lenx) const NOEXCEPT_MAYBE
|
|
{
|
|
return error_guard (ncvisual_render (visual, begy, begx, leny, lenx), -1);
|
|
}
|
|
|
|
int stream (nc_err_e* ncerr, float timescale, streamcb streamer, void *curry = nullptr) const NOEXCEPT_MAYBE
|
|
{
|
|
return error_guard<int> (ncvisual_stream (get_notcurses (), visual, ncerr, timescale, streamer, curry), -1);
|
|
}
|
|
|
|
char* subtitle () const noexcept
|
|
{
|
|
return ncvisual_subtitle (visual);
|
|
}
|
|
|
|
Plane* get_plane () const noexcept;
|
|
|
|
bool rotate (double rads) const NOEXCEPT_MAYBE
|
|
{
|
|
return error_guard (ncvisual_rotate (visual, rads), -1);
|
|
}
|
|
|
|
private:
|
|
void common_init (ncplane *plane, const char *file, nc_err_e* ncerr)
|
|
{
|
|
if (plane == nullptr)
|
|
throw invalid_argument ("'plane' must be a valid pointer");
|
|
|
|
visual = ncplane_visual_open (plane, file, ncerr);
|
|
if (visual == nullptr)
|
|
throw init_error ("Notcurses failed to create a new visual");
|
|
}
|
|
|
|
private:
|
|
ncvisual *visual = nullptr;
|
|
};
|
|
}
|
|
#endif
|