2020-03-07 23:36:49 +00:00
|
|
|
#include "main.h"
|
2020-05-06 09:49:22 +00:00
|
|
|
#include <cmath>
|
2020-05-04 15:05:52 +00:00
|
|
|
#include <vector>
|
2020-03-07 23:36:49 +00:00
|
|
|
|
2020-05-04 15:05:52 +00:00
|
|
|
void RotateCW(struct notcurses* nc, struct ncplane* n) {
|
2020-03-07 23:36:49 +00:00
|
|
|
CHECK(0 == notcurses_render(nc));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == ncplane_rotate_cw(n));
|
2020-03-07 23:36:49 +00:00
|
|
|
CHECK(0 == notcurses_render(nc));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == ncplane_rotate_cw(n));
|
2020-03-07 23:36:49 +00:00
|
|
|
CHECK(0 == notcurses_render(nc));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == ncplane_rotate_cw(n));
|
2020-03-07 23:36:49 +00:00
|
|
|
CHECK(0 == notcurses_render(nc));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == ncplane_rotate_cw(n));
|
2020-03-07 23:36:49 +00:00
|
|
|
CHECK(0 == notcurses_render(nc));
|
|
|
|
}
|
|
|
|
|
2020-05-04 15:05:52 +00:00
|
|
|
void RotateCCW(struct notcurses* nc, struct ncplane* n) {
|
2020-03-07 23:36:49 +00:00
|
|
|
CHECK(0 == notcurses_render(nc));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == ncplane_rotate_ccw(n));
|
2020-03-07 23:36:49 +00:00
|
|
|
CHECK(0 == notcurses_render(nc));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == ncplane_rotate_ccw(n));
|
2020-03-07 23:36:49 +00:00
|
|
|
CHECK(0 == notcurses_render(nc));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == ncplane_rotate_ccw(n));
|
2020-03-07 23:36:49 +00:00
|
|
|
CHECK(0 == notcurses_render(nc));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == ncplane_rotate_ccw(n));
|
2020-03-07 23:36:49 +00:00
|
|
|
CHECK(0 == notcurses_render(nc));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("Rotate") {
|
|
|
|
if(getenv("TERM") == nullptr){
|
|
|
|
return;
|
|
|
|
}
|
2020-05-11 08:57:20 +00:00
|
|
|
if(!enforce_utf8()){
|
|
|
|
return;
|
|
|
|
}
|
2020-03-07 23:36:49 +00:00
|
|
|
notcurses_options nopts{};
|
|
|
|
nopts.inhibit_alternate_screen = true;
|
|
|
|
nopts.suppress_banner = true;
|
|
|
|
FILE* outfp_ = fopen("/dev/tty", "wb");
|
|
|
|
REQUIRE(outfp_);
|
|
|
|
struct notcurses* nc_ = notcurses_init(&nopts, outfp_);
|
|
|
|
REQUIRE(nc_);
|
|
|
|
int dimy, dimx;
|
|
|
|
struct ncplane* n_ = notcurses_stddim_yx(nc_, &dimy, &dimx);
|
|
|
|
REQUIRE(n_);
|
|
|
|
|
|
|
|
uint64_t ul, ur, ll, lr;
|
|
|
|
ul = ur = ll = lr = 0;
|
|
|
|
channels_set_fg(&ul, 0x40f040);
|
|
|
|
channels_set_bg(&ul, 0x40f040);
|
|
|
|
channels_set_fg(&ll, 0xf040f0);
|
|
|
|
channels_set_bg(&ll, 0xf040f0);
|
|
|
|
channels_set_fg(&ur, 0x40f040);
|
|
|
|
channels_set_bg(&ur, 0x40f040);
|
|
|
|
channels_set_fg(&lr, 0xf040f0);
|
|
|
|
channels_set_bg(&lr, 0xf040f0);
|
|
|
|
|
|
|
|
SUBCASE("RotateTransparentCW") {
|
|
|
|
struct ncplane* testn = ncplane_new(nc_, 8, 16, dimy / 2, dimx / 2, nullptr);
|
|
|
|
uint64_t channels = 0;
|
|
|
|
CHECK(0 == channels_set_fg_alpha(&channels, CELL_ALPHA_TRANSPARENT));
|
|
|
|
CHECK(0 == channels_set_bg_alpha(&channels, CELL_ALPHA_TRANSPARENT));
|
2020-04-18 04:09:14 +00:00
|
|
|
REQUIRE(0 >= ncplane_set_base(testn, "", 0, channels));
|
2020-03-07 23:36:49 +00:00
|
|
|
cell tl = CELL_TRIVIAL_INITIALIZER; cell tr = CELL_TRIVIAL_INITIALIZER;
|
|
|
|
cell bl = CELL_TRIVIAL_INITIALIZER; cell br = CELL_TRIVIAL_INITIALIZER;
|
|
|
|
cell hl = CELL_TRIVIAL_INITIALIZER; cell vl = CELL_TRIVIAL_INITIALIZER;
|
|
|
|
CHECK(-1 < cell_prime(testn, &tl, "█", 0, ul));
|
|
|
|
CHECK(-1 < cell_prime(testn, &tr, "█", 0, ur));
|
|
|
|
CHECK(-1 < cell_prime(testn, &bl, "█", 0, ll));
|
|
|
|
CHECK(-1 < cell_prime(testn, &br, "█", 0, lr));
|
|
|
|
CHECK(-1 < cell_prime(testn, &hl, "█", 0, ll));
|
|
|
|
CHECK(-1 < cell_prime(testn, &vl, "█", 0, lr));
|
|
|
|
CHECK(0 == ncplane_perimeter(testn, &tl, &tr, &bl, &br, &hl, &vl, 0));
|
|
|
|
RotateCW(nc_, testn);
|
|
|
|
cell_release(testn, &tl); cell_release(testn, &tr);
|
|
|
|
cell_release(testn, &bl); cell_release(testn, &br);
|
|
|
|
cell_release(testn, &hl); cell_release(testn, &vl);
|
|
|
|
CHECK(0 == ncplane_destroy(testn));
|
|
|
|
}
|
|
|
|
|
|
|
|
SUBCASE("RotateGradientCW") {
|
|
|
|
// should be a square, and should remain a square through rotations
|
|
|
|
struct ncplane* testn = ncplane_new(nc_, 8, 16, dimy / 2, dimx / 2, nullptr);
|
2020-03-29 09:26:56 +00:00
|
|
|
REQUIRE(0 < ncplane_gradient_sized(testn, " ", 0, ul, ur, ll, lr, 8, 16));
|
2020-03-07 23:36:49 +00:00
|
|
|
RotateCW(nc_, testn);
|
|
|
|
CHECK(0 == ncplane_destroy(testn));
|
|
|
|
}
|
|
|
|
|
|
|
|
SUBCASE("RotateRectangleCW") {
|
|
|
|
// should be a square, and should remain a square through rotations
|
|
|
|
struct ncplane* testn = ncplane_new(nc_, 8, 32, dimy / 2, dimx / 2, nullptr);
|
2020-03-29 09:26:56 +00:00
|
|
|
REQUIRE(0 < ncplane_gradient_sized(testn, " ", 0, ul, ur, ll, lr, 8, 32));
|
2020-03-07 23:36:49 +00:00
|
|
|
RotateCW(nc_, testn);
|
|
|
|
CHECK(0 == ncplane_destroy(testn));
|
|
|
|
}
|
|
|
|
|
|
|
|
SUBCASE("RotateGradientCCW") {
|
|
|
|
// should be a square, and should remain a square through rotations
|
|
|
|
struct ncplane* testn = ncplane_new(nc_, 8, 16, dimy / 2, dimx / 2, nullptr);
|
2020-03-29 09:26:56 +00:00
|
|
|
REQUIRE(0 < ncplane_gradient_sized(testn, " ", 0, ul, ur, ll, lr, 8, 16));
|
2020-03-07 23:36:49 +00:00
|
|
|
RotateCCW(nc_, testn);
|
|
|
|
CHECK(0 == ncplane_destroy(testn));
|
|
|
|
}
|
|
|
|
|
|
|
|
SUBCASE("RotateRectangleCCW") {
|
|
|
|
// should be a square, and should remain a square through rotations
|
|
|
|
struct ncplane* testn = ncplane_new(nc_, 8, 32, 0, 0, nullptr);
|
2020-03-29 09:26:56 +00:00
|
|
|
REQUIRE(0 < ncplane_gradient_sized(testn, " ", 0, ul, ur, ll, lr, 8, 32));
|
2020-03-07 23:36:49 +00:00
|
|
|
RotateCCW(nc_, testn);
|
|
|
|
CHECK(0 == ncplane_destroy(testn));
|
|
|
|
}
|
|
|
|
|
2020-05-04 15:05:52 +00:00
|
|
|
// use half of each dimension
|
|
|
|
SUBCASE("RotateRGBACW") {
|
2020-05-07 03:16:00 +00:00
|
|
|
int height = dimy / 2;
|
|
|
|
int width = dimx / 2;
|
|
|
|
std::vector<uint32_t> rgba(width * height, 0xffbbccff);
|
|
|
|
auto ncv = ncvisual_from_rgba(nc_, rgba.data(), height, width * 4, width);
|
2020-05-04 15:05:52 +00:00
|
|
|
REQUIRE(ncv);
|
2020-05-07 03:16:00 +00:00
|
|
|
int rendered = ncvisual_render(ncv, 0, 0, -1, -1);
|
2020-05-11 02:19:34 +00:00
|
|
|
CHECK(0 < rendered);
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == notcurses_render(nc_));
|
2020-05-07 03:16:00 +00:00
|
|
|
uint32_t* rgbaret = ncplane_rgba(ncvisual_plane(ncv), 0, 0, -1, -1);
|
|
|
|
REQUIRE(rgbaret);
|
|
|
|
for(int i = 0 ; i < rendered ; ++i){
|
|
|
|
CHECK(rgbaret[i] == rgba[i]);
|
|
|
|
}
|
|
|
|
free(rgbaret);
|
2020-05-07 03:50:24 +00:00
|
|
|
for(int x = 0 ; x < width ; ++x){
|
|
|
|
uint32_t attrword;
|
|
|
|
uint64_t channels;
|
|
|
|
char* c = notcurses_at_yx(nc_, 0, x, &attrword, &channels);
|
|
|
|
REQUIRE(c);
|
|
|
|
CHECK(0 == strcmp(c, " "));
|
|
|
|
CHECK(0xffccbb == (channels_fg(channels) & CELL_BG_MASK));
|
|
|
|
CHECK(0xffccbb == (channels_bg(channels) & CELL_BG_MASK));
|
|
|
|
free(c);
|
|
|
|
}
|
2020-05-06 09:49:22 +00:00
|
|
|
CHECK(0 == ncvisual_rotate(ncv, M_PI/2));
|
2020-05-07 16:57:34 +00:00
|
|
|
CHECK(0 <= ncvisual_render(ncv, 0, 0, -1, -1));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == notcurses_render(nc_));
|
2020-05-06 09:49:22 +00:00
|
|
|
CHECK(0 == ncvisual_rotate(ncv, M_PI/2));
|
2020-05-07 16:57:34 +00:00
|
|
|
CHECK(0 <= ncvisual_render(ncv, 0, 0, -1, -1));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == notcurses_render(nc_));
|
2020-05-06 09:49:22 +00:00
|
|
|
CHECK(0 == ncvisual_rotate(ncv, M_PI/2));
|
2020-05-07 16:57:34 +00:00
|
|
|
CHECK(0 <= ncvisual_render(ncv, 0, 0, -1, -1));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == notcurses_render(nc_));
|
2020-05-06 09:49:22 +00:00
|
|
|
CHECK(0 == ncvisual_rotate(ncv, M_PI/2));
|
2020-05-07 16:57:34 +00:00
|
|
|
CHECK(0 <= ncvisual_render(ncv, 0, 0, -1, -1));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == notcurses_render(nc_));
|
|
|
|
ncvisual_destroy(ncv);
|
|
|
|
CHECK(0 == notcurses_render(nc_));
|
|
|
|
}
|
|
|
|
|
|
|
|
SUBCASE("RotateRGBACCW") {
|
2020-05-07 03:16:00 +00:00
|
|
|
int height = dimy / 2;
|
|
|
|
int width = dimx / 2;
|
|
|
|
std::vector<uint32_t> rgba(width * height, 0xffbbccff);
|
|
|
|
auto ncv = ncvisual_from_rgba(nc_, rgba.data(), height, width * 4, width);
|
2020-05-04 15:05:52 +00:00
|
|
|
REQUIRE(ncv);
|
2020-05-07 03:16:00 +00:00
|
|
|
int rendered = ncvisual_render(ncv, 0, 0, -1, -1);
|
2020-05-11 02:19:34 +00:00
|
|
|
CHECK(0 < rendered);
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == notcurses_render(nc_));
|
2020-05-07 03:16:00 +00:00
|
|
|
uint32_t* rgbaret = ncplane_rgba(ncvisual_plane(ncv), 0, 0, -1, -1);
|
|
|
|
REQUIRE(rgbaret);
|
|
|
|
for(int i = 0 ; i < rendered ; ++i){
|
|
|
|
CHECK(rgbaret[i] == rgba[i]);
|
|
|
|
}
|
|
|
|
free(rgbaret);
|
2020-05-07 03:50:24 +00:00
|
|
|
for(int x = 0 ; x < width ; ++x){
|
|
|
|
uint32_t attrword;
|
|
|
|
uint64_t channels;
|
|
|
|
char* c = notcurses_at_yx(nc_, 0, x, &attrword, &channels);
|
|
|
|
REQUIRE(c);
|
|
|
|
CHECK(0 == strcmp(c, " "));
|
|
|
|
CHECK(0xffccbb == (channels_fg(channels) & CELL_BG_MASK));
|
|
|
|
CHECK(0xffccbb == (channels_bg(channels) & CELL_BG_MASK));
|
|
|
|
free(c);
|
|
|
|
}
|
2020-05-06 09:49:22 +00:00
|
|
|
CHECK(0 == ncvisual_rotate(ncv, -M_PI/2));
|
2020-05-07 16:57:34 +00:00
|
|
|
CHECK(0 <= ncvisual_render(ncv, 0, 0, -1, -1));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == notcurses_render(nc_));
|
2020-05-06 09:49:22 +00:00
|
|
|
CHECK(0 == ncvisual_rotate(ncv, -M_PI/2));
|
2020-05-07 16:57:34 +00:00
|
|
|
CHECK(0 <= ncvisual_render(ncv, 0, 0, -1, -1));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == notcurses_render(nc_));
|
2020-05-06 09:49:22 +00:00
|
|
|
CHECK(0 == ncvisual_rotate(ncv, -M_PI/2));
|
2020-05-07 16:57:34 +00:00
|
|
|
CHECK(0 <= ncvisual_render(ncv, 0, 0, -1, -1));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == notcurses_render(nc_));
|
2020-05-06 09:49:22 +00:00
|
|
|
CHECK(0 == ncvisual_rotate(ncv, -M_PI/2));
|
2020-05-07 16:57:34 +00:00
|
|
|
CHECK(0 <= ncvisual_render(ncv, 0, 0, -1, -1));
|
2020-05-04 15:05:52 +00:00
|
|
|
CHECK(0 == notcurses_render(nc_));
|
|
|
|
ncvisual_destroy(ncv);
|
|
|
|
CHECK(0 == notcurses_render(nc_));
|
|
|
|
}
|
|
|
|
|
2020-03-07 23:36:49 +00:00
|
|
|
CHECK(0 == notcurses_stop(nc_));
|
|
|
|
CHECK(0 == fclose(outfp_));
|
|
|
|
|
|
|
|
}
|