2020-05-12 22:16:18 +00:00
|
|
|
#include "main.h"
|
2020-05-13 02:57:28 +00:00
|
|
|
#include "internal.h"
|
2020-05-12 22:16:18 +00:00
|
|
|
|
|
|
|
TEST_CASE("Geometry") {
|
2020-06-16 03:58:43 +00:00
|
|
|
auto nc_ = testing_notcurses();
|
2020-05-17 11:57:21 +00:00
|
|
|
if(!nc_){
|
|
|
|
return;
|
|
|
|
}
|
2020-05-12 22:16:18 +00:00
|
|
|
ncplane* ncp_ = notcurses_stdplane(nc_);
|
|
|
|
REQUIRE(ncp_);
|
|
|
|
|
|
|
|
SUBCASE("Center") {
|
|
|
|
const struct test {
|
|
|
|
int leny, lenx; // geometries
|
|
|
|
int centy, centx; // pre-calculated centers
|
|
|
|
} tests[] = {
|
|
|
|
{ 1, 1, 0, 0, },
|
|
|
|
{ 1, 2, 0, 0, },
|
|
|
|
{ 3, 1, 1, 0, }, { 1, 3, 0, 1, }, { 2, 3, 0, 1, }, { 3, 2, 1, 0, }, { 3, 3, 1, 1, },
|
|
|
|
{ 4, 1, 1, 0, }, { 1, 4, 0, 1, }, { 2, 4, 0, 1, }, { 4, 2, 0, 1, }, { 3, 4, 1, 1, },
|
|
|
|
{ 4, 3, 1, 1, }, { 4, 4, 1, 1, }, { 4, 4, 1, 1, },
|
|
|
|
{ 5, 1, 2, 0, }, { 1, 5, 0, 2, }, { 2, 5, 0, 2, }, { 5, 2, 2, 1, }, { 3, 5, 1, 2, },
|
|
|
|
{ 5, 3, 2, 1, }, { 4, 5, 1, 2, }, { 5, 4, 2, 1, }, { 5, 5, 2, 2, },
|
|
|
|
{ 0, 0, 0, 0, }
|
|
|
|
}, *t;
|
|
|
|
for(t = tests ; !t->leny ; ++t){
|
|
|
|
auto n = ncplane_new(nc_, t->leny, t->lenx, 0, 0, nullptr);
|
|
|
|
REQUIRE(n);
|
|
|
|
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(0 == cells_double_box(n, 0, 0, &tl, &tr, &bl, &br, &hl, &vl));
|
|
|
|
CHECK(0 <= ncplane_perimeter(n, &tl, &tr, &bl, &br, &hl, &vl, 0));
|
|
|
|
CHECK(0 == notcurses_render(nc_));
|
2020-05-13 02:57:28 +00:00
|
|
|
int y, x;
|
|
|
|
ncplane_center(n, &y, &x);
|
|
|
|
CHECK(y == t->centy);
|
|
|
|
CHECK(x == t->centx);
|
|
|
|
CHECK(0 == ncplane_destroy(n));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SUBCASE("CenterAbs") {
|
|
|
|
const struct test {
|
|
|
|
int leny, lenx; // geometries
|
|
|
|
int absy, absx; // location of the origin
|
|
|
|
int centy, centx; // pre-calculated centers
|
|
|
|
} tests[] = {
|
|
|
|
{ 1, 1, 10, 20, 0, 0, },
|
|
|
|
{ 1, 2, 10, 20, 0, 0, },
|
|
|
|
{ 3, 1, 10, 20, 1, 0, }, { 1, 3, 10, 20, 0, 1, }, { 2, 3, 10, 20, 0, 1, },
|
|
|
|
{ 3, 2, 10, 20, 1, 0, }, { 3, 3, 10, 20, 1, 1, },
|
|
|
|
{ 4, 1, 10, 20, 1, 0, }, { 1, 4, 10, 20, 0, 1, }, { 2, 4, 10, 20, 0, 1, },
|
|
|
|
{ 4, 2, 10, 20, 0, 1, }, { 3, 4, 10, 20, 1, 1, },
|
|
|
|
{ 4, 3, 10, 20, 1, 1, }, { 4, 4, 10, 20, 1, 1, }, { 4, 4, 10, 20, 1, 1, },
|
|
|
|
{ 5, 1, 10, 20, 2, 0, }, { 1, 5, 10, 20, 0, 2, }, { 2, 5, 10, 20, 0, 2, },
|
|
|
|
{ 5, 2, 10, 20, 2, 1, }, { 3, 5, 10, 20, 1, 2, },
|
|
|
|
{ 5, 3, 10, 20, 2, 1, }, { 4, 5, 10, 20, 1, 2, }, { 5, 4, 10, 20, 2, 1, },
|
|
|
|
{ 5, 5, 10, 20, 2, 2, },
|
|
|
|
{ 0, 0, 10, 20, 0, 0, }
|
|
|
|
}, *t;
|
|
|
|
for(t = tests ; !t->leny ; ++t){
|
|
|
|
auto n = ncplane_new(nc_, t->leny, t->lenx, t->absy, t->absx, nullptr);
|
|
|
|
REQUIRE(n);
|
|
|
|
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(0 == cells_double_box(n, 0, 0, &tl, &tr, &bl, &br, &hl, &vl));
|
|
|
|
CHECK(0 <= ncplane_perimeter(n, &tl, &tr, &bl, &br, &hl, &vl, 0));
|
|
|
|
CHECK(0 == notcurses_render(nc_));
|
|
|
|
int y, x;
|
|
|
|
ncplane_center_abs(n, &y, &x);
|
|
|
|
CHECK(y == t->centy + t->absy);
|
|
|
|
CHECK(x == t->centx + t->absx);
|
|
|
|
ncplane_center(n, &y, &x);
|
|
|
|
CHECK(y == t->centy);
|
|
|
|
CHECK(x == t->centx);
|
2020-05-12 22:16:18 +00:00
|
|
|
CHECK(0 == ncplane_destroy(n));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-12 22:40:14 +00:00
|
|
|
CHECK(0 == notcurses_stop(nc_));
|
|
|
|
|
2020-05-12 22:16:18 +00:00
|
|
|
}
|