2019-12-02 08:26:37 +00:00
|
|
|
#include "main.h"
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <iostream>
|
2020-01-13 22:55:54 +00:00
|
|
|
#include "internal.h"
|
|
|
|
|
2020-01-17 14:30:53 +00:00
|
|
|
int pulser(struct notcurses* nc, struct ncplane* ncp __attribute__ ((unused)), void* curry){
|
|
|
|
struct timespec* pulsestart = static_cast<struct timespec*>(curry);
|
2020-01-13 22:55:54 +00:00
|
|
|
if(notcurses_render(nc)){
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
struct timespec now;
|
|
|
|
clock_gettime(CLOCK_MONOTONIC_RAW, &now);
|
2020-01-17 14:30:53 +00:00
|
|
|
auto delta = timespec_to_ns(&now) - timespec_to_ns(pulsestart);
|
2020-01-13 22:55:54 +00:00
|
|
|
if(delta > 1000000000){
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2019-12-02 08:26:37 +00:00
|
|
|
|
2019-12-27 22:20:20 +00:00
|
|
|
TEST_CASE("Fade") {
|
|
|
|
if(getenv("TERM") == nullptr){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
FILE* outfp_ = fopen("/dev/tty", "wb");
|
|
|
|
REQUIRE(outfp_);
|
|
|
|
notcurses_options nopts{};
|
2020-01-05 10:13:05 +00:00
|
|
|
nopts.suppress_banner = true;
|
2019-12-27 22:20:20 +00:00
|
|
|
nopts.inhibit_alternate_screen = true;
|
|
|
|
struct notcurses* nc_ = notcurses_init(&nopts, outfp_);
|
|
|
|
REQUIRE(nc_);
|
|
|
|
struct ncplane* n_ = notcurses_stdplane(nc_);
|
|
|
|
REQUIRE(n_);
|
|
|
|
if(!notcurses_canfade(nc_)){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
REQUIRE(0 == ncplane_cursor_move_yx(n_, 0, 0));
|
|
|
|
int dimy, dimx;
|
|
|
|
ncplane_dim_yx(n_, &dimy, &dimx);
|
|
|
|
cell c = CELL_TRIVIAL_INITIALIZER;
|
|
|
|
c.gcluster = '*';
|
|
|
|
cell_set_fg_rgb(&c, 0xff, 0xff, 0xff);
|
|
|
|
unsigned rgb = 0xffffffu;
|
|
|
|
for(int y = 0 ; y < dimy ; ++y){
|
|
|
|
for(int x = 0 ; x < dimx ; ++x){
|
|
|
|
rgb -= 32;
|
|
|
|
if(rgb < 32){
|
|
|
|
rgb = 0xffffffu;
|
2019-12-02 08:26:37 +00:00
|
|
|
}
|
2020-01-13 22:55:54 +00:00
|
|
|
cell_set_fg(&c, rgb);
|
2019-12-27 22:20:20 +00:00
|
|
|
cell_set_bg_rgb(&c, rgb & 0xff, (rgb >> 16u) & 0xff, (rgb >> 8u) & 0xff);
|
|
|
|
CHECK(0 < ncplane_putc(n_, &c));
|
2019-12-02 08:26:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-17 14:30:53 +00:00
|
|
|
|
2019-12-27 22:20:20 +00:00
|
|
|
SUBCASE("FadeOut") {
|
|
|
|
CHECK(0 == notcurses_render(nc_));
|
|
|
|
struct timespec ts;
|
|
|
|
ts.tv_sec = 1;
|
|
|
|
ts.tv_nsec = 0;
|
2020-01-17 14:30:53 +00:00
|
|
|
CHECK(0 == ncplane_fadeout(n_, &ts, nullptr, nullptr));
|
2019-12-02 08:26:37 +00:00
|
|
|
}
|
|
|
|
|
2019-12-27 22:20:20 +00:00
|
|
|
SUBCASE("FadeIn") {
|
|
|
|
struct timespec ts;
|
|
|
|
ts.tv_sec = 1;
|
|
|
|
ts.tv_nsec = 0;
|
2020-01-17 14:30:53 +00:00
|
|
|
CHECK(0 == ncplane_fadein(n_, &ts, nullptr, nullptr));
|
2020-01-13 22:55:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SUBCASE("Pulse") {
|
|
|
|
struct timespec ts;
|
|
|
|
ts.tv_sec = 0;
|
|
|
|
ts.tv_nsec = 250000000;
|
|
|
|
ncplane_erase(n_);
|
|
|
|
ncplane_set_fg(n_, 0xffd700);
|
|
|
|
CHECK(0 < ncplane_printf_aligned(n_, dimy - 1, NCALIGN_CENTER, "pulllllllse"));
|
2020-01-17 14:30:53 +00:00
|
|
|
struct timespec pulsestart;
|
2020-01-13 22:55:54 +00:00
|
|
|
clock_gettime(CLOCK_MONOTONIC_RAW, &pulsestart);
|
2020-01-17 14:30:53 +00:00
|
|
|
CHECK(0 < ncplane_pulse(n_, &ts, pulser, &pulsestart));
|
2019-12-27 22:20:20 +00:00
|
|
|
}
|
2019-12-02 08:26:37 +00:00
|
|
|
|
2019-12-27 22:20:20 +00:00
|
|
|
CHECK(0 == notcurses_stop(nc_));
|
|
|
|
CHECK(0 == fclose(outfp_));
|
2019-12-02 08:26:37 +00:00
|
|
|
|
|
|
|
}
|