mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
4.5 KiB
117 lines
4.5 KiB
|
15 years ago
|
/*
|
||
|
15 years ago
|
Copyright © 2010, 2011, 2012 Vladimír Vondruš <mosra@centrum.cz>
|
||
|
15 years ago
|
|
||
|
|
This file is part of Magnum.
|
||
|
|
|
||
|
|
Magnum is free software: you can redistribute it and/or modify
|
||
|
|
it under the terms of the GNU Lesser General Public License version 3
|
||
|
|
only, as published by the Free Software Foundation.
|
||
|
|
|
||
|
|
Magnum is distributed in the hope that it will be useful,
|
||
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
|
GNU Lesser General Public License version 3 for more details.
|
||
|
|
*/
|
||
|
|
|
||
|
14 years ago
|
#include <TestSuite/Tester.h>
|
||
|
15 years ago
|
|
||
|
14 years ago
|
#include "Math/Functions.h"
|
||
|
15 years ago
|
|
||
|
|
namespace Magnum { namespace Math { namespace Test {
|
||
|
|
|
||
|
14 years ago
|
class FunctionsTest: public Corrade::TestSuite::Tester {
|
||
|
14 years ago
|
public:
|
||
|
14 years ago
|
FunctionsTest();
|
||
|
14 years ago
|
|
||
|
|
void normalize();
|
||
|
|
void denormalize();
|
||
|
|
void clamp();
|
||
|
|
void pow();
|
||
|
|
void log();
|
||
|
14 years ago
|
void log2();
|
||
|
14 years ago
|
};
|
||
|
|
|
||
|
14 years ago
|
FunctionsTest::FunctionsTest() {
|
||
|
|
addTests(&FunctionsTest::normalize,
|
||
|
|
&FunctionsTest::denormalize,
|
||
|
|
&FunctionsTest::clamp,
|
||
|
|
&FunctionsTest::pow,
|
||
|
|
&FunctionsTest::log,
|
||
|
|
&FunctionsTest::log2);
|
||
|
14 years ago
|
}
|
||
|
|
|
||
|
14 years ago
|
void FunctionsTest::normalize() {
|
||
|
14 years ago
|
/* Range for signed and unsigned */
|
||
|
14 years ago
|
CORRADE_COMPARE((Math::normalize<float, std::int8_t>(-128)), 0.0f);
|
||
|
|
CORRADE_COMPARE((Math::normalize<float, std::int8_t>(127)), 1.0f);
|
||
|
|
CORRADE_COMPARE((Math::normalize<float, std::uint8_t>(0)), 0.0f);
|
||
|
|
CORRADE_COMPARE((Math::normalize<float, std::uint8_t>(255)), 1.0f);
|
||
|
14 years ago
|
|
||
|
|
/* Between */
|
||
|
14 years ago
|
CORRADE_COMPARE((Math::normalize<float, std::int16_t>(16384)), 0.750011f);
|
||
|
|
CORRADE_COMPARE((Math::normalize<float, std::int16_t>(-16384)), 0.250004f);
|
||
|
14 years ago
|
|
||
|
|
/* Test overflow for large types */
|
||
|
14 years ago
|
CORRADE_COMPARE((Math::normalize<float, std::int32_t>(std::numeric_limits<std::int32_t>::min())), 0.0f);
|
||
|
|
CORRADE_COMPARE((Math::normalize<float, std::int32_t>(std::numeric_limits<std::int32_t>::max())), 1.0f);
|
||
|
|
CORRADE_COMPARE((Math::normalize<float, std::uint32_t>(0)), 0.0f);
|
||
|
|
CORRADE_COMPARE((Math::normalize<float, std::uint32_t>(std::numeric_limits<std::uint32_t>::max())), 1.0f);
|
||
|
|
|
||
|
|
CORRADE_COMPARE((Math::normalize<double, std::int64_t>(std::numeric_limits<std::int64_t>::min())), 0.0);
|
||
|
|
CORRADE_COMPARE((Math::normalize<double, std::int64_t>(std::numeric_limits<std::int64_t>::max())), 1.0);
|
||
|
|
CORRADE_COMPARE((Math::normalize<double, std::uint64_t>(0)), 0.0);
|
||
|
|
CORRADE_COMPARE((Math::normalize<double, std::uint64_t>(std::numeric_limits<std::uint64_t>::max())), 1.0);
|
||
|
14 years ago
|
}
|
||
|
|
|
||
|
14 years ago
|
void FunctionsTest::denormalize() {
|
||
|
14 years ago
|
/* Range for signed and unsigned */
|
||
|
14 years ago
|
CORRADE_COMPARE(Math::denormalize<std::int8_t>(0.0f), -128);
|
||
|
|
CORRADE_COMPARE(Math::denormalize<std::int8_t>(1.0f), 127);
|
||
|
|
CORRADE_COMPARE(Math::denormalize<std::uint8_t>(0.0f), 0);
|
||
|
|
CORRADE_COMPARE(Math::denormalize<std::uint8_t>(1.0f), 255);
|
||
|
14 years ago
|
|
||
|
|
/* Between */
|
||
|
14 years ago
|
CORRADE_COMPARE(Math::denormalize<std::int16_t>(0.33f), -11141);
|
||
|
|
CORRADE_COMPARE(Math::denormalize<std::int16_t>(0.66f), 10485);
|
||
|
14 years ago
|
|
||
|
|
/* Test overflow for large types */
|
||
|
14 years ago
|
CORRADE_COMPARE(Math::denormalize<std::int32_t>(0.0f), std::numeric_limits<std::int32_t>::min());
|
||
|
|
CORRADE_COMPARE(Math::denormalize<std::uint32_t>(0.0f), 0);
|
||
|
|
CORRADE_COMPARE(Math::denormalize<std::int64_t>(0.0), std::numeric_limits<std::int64_t>::min());
|
||
|
|
CORRADE_COMPARE(Math::denormalize<std::uint64_t>(0.0), 0);
|
||
|
14 years ago
|
|
||
|
14 years ago
|
CORRADE_COMPARE(Math::denormalize<std::int32_t>(1.0), std::numeric_limits<std::int32_t>::max());
|
||
|
|
CORRADE_COMPARE(Math::denormalize<std::uint32_t>(1.0), std::numeric_limits<std::uint32_t>::max());
|
||
|
14 years ago
|
|
||
|
14 years ago
|
// {
|
||
|
|
// CORRADE_EXPECT_FAIL("Denormalize doesn't work for large types well");
|
||
|
|
// CORRADE_COMPARE((Math::denormalize<long long, long double>(1.0)), numeric_limits<long long>::max());
|
||
|
|
// CORRADE_COMPARE((Math::denormalize<unsigned long long, long double>(1.0)), numeric_limits<unsigned long long>::max());
|
||
|
|
// }
|
||
|
14 years ago
|
}
|
||
|
|
|
||
|
14 years ago
|
void FunctionsTest::clamp() {
|
||
|
14 years ago
|
CORRADE_COMPARE(Math::clamp(0.5f, -1.0f, 5.0f), 0.5f);
|
||
|
|
CORRADE_COMPARE(Math::clamp(-1.6f, -1.0f, 5.0f), -1.0f);
|
||
|
|
CORRADE_COMPARE(Math::clamp(9.5f, -1.0f, 5.0f), 5.0f);
|
||
|
|
}
|
||
|
|
|
||
|
14 years ago
|
void FunctionsTest::pow() {
|
||
|
14 years ago
|
CORRADE_COMPARE(Math::pow<10>(2ul), 1024ul);
|
||
|
|
CORRADE_COMPARE(Math::pow<0>(3ul), 1ul);
|
||
|
|
CORRADE_COMPARE(Math::pow<2>(2.0f), 4.0f);
|
||
|
15 years ago
|
}
|
||
|
|
|
||
|
14 years ago
|
void FunctionsTest::log() {
|
||
|
14 years ago
|
CORRADE_COMPARE(Math::log(2, 256), 8ul);
|
||
|
|
CORRADE_COMPARE(Math::log(256, 2), 0ul);
|
||
|
15 years ago
|
}
|
||
|
|
|
||
|
14 years ago
|
void FunctionsTest::log2() {
|
||
|
14 years ago
|
CORRADE_COMPARE(Math::log2(2153), 11);
|
||
|
|
}
|
||
|
|
|
||
|
15 years ago
|
}}}
|
||
|
14 years ago
|
|
||
|
14 years ago
|
CORRADE_TEST_MAIN(Magnum::Math::Test::FunctionsTest)
|