29 lines
499 B
C++
29 lines
499 B
C++
#include "TestNotCurses.h"
|
|
|
|
TestNotCurses::TestNotCurses(Archimedes::App* a, void* h) : Archimedes::Module(a, h) {
|
|
name = "TestNotCurses";
|
|
}
|
|
|
|
TestNotCurses::~TestNotCurses() {
|
|
notcurses_stop(ncInstance);
|
|
}
|
|
|
|
void TestNotCurses::onLoad() {
|
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
notcurses_options opts;
|
|
|
|
ncInstance = notcurses_init(&opts, NULL);
|
|
|
|
if(!ncInstance) {
|
|
app->stopModule(getName());
|
|
return;
|
|
}
|
|
}
|
|
|
|
void TestNotCurses::run() {
|
|
|
|
notcurses_render(ncInstance);
|
|
}
|