Files
enduro2d/untests/sources/untests_utils/shape.cpp
2020-02-06 17:04:35 +07:00

48 lines
1.4 KiB
C++

/*******************************************************************************
* This file is part of the "Enduro2D"
* For conditions of distribution and use, see copyright notice in LICENSE.md
* Copyright (C) 2018-2020, by Matvey Cherevko (blackmatov@gmail.com)
******************************************************************************/
#include "_utils.hpp"
using namespace e2d;
TEST_CASE("shape") {
str resources;
REQUIRE(filesystem::extract_predef_path(
resources,
filesystem::predef_path::resources));
{
shape s;
REQUIRE(shapes::try_load_shape(
s,
make_read_file(path::combine(resources, "bin/gnome/gnome.obj.gnome.e2d_shape"))));
REQUIRE(s.vertices().size() == 397);
REQUIRE(s.indices_subshape_count() == 1);
REQUIRE(s.indices(0).size() == 2028);
REQUIRE(s.uvs_channel_count() == 1);
REQUIRE(s.uvs(0).size() == 397);
REQUIRE(s.colors_channel_count() == 0);
}
{
shape s;
REQUIRE(shapes::try_load_shape(
s,
make_read_file(path::combine(resources, "bin/gnome/gnome.obj.yad.e2d_shape"))));
REQUIRE(s.vertices().size() == 46);
REQUIRE(s.indices_subshape_count() == 1);
REQUIRE(s.indices(0).size() == 264);
REQUIRE(s.uvs_channel_count() == 1);
REQUIRE(s.uvs(0).size() == 46);
REQUIRE(s.colors_channel_count() == 0);
}
}