1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
//------------------------------------------------------------------------
//
// Eureka DOOM Editor
//
// Copyright (C) 2022 Ioan Chera
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
//------------------------------------------------------------------------
#include "FixedPoint.h"
#include "gtest/gtest.h"
TEST(FixedPoint, FracUnitConsistency)
{
ASSERT_EQ(kFracUnit, static_cast<int>(kFracUnitD));
}
TEST(FixedPoint, FracUnitIsPowerOf2)
{
ASSERT_GT(kFracUnit, 0);
ASSERT_FALSE(kFracUnit & (kFracUnit - 1));
}
TEST(FixedPoint, FromCoord)
{
auto number = FFixedPoint(123.25);
ASSERT_EQ(static_cast<double>(number), 123.25);
// now try negative
number = FFixedPoint(-67.75);
ASSERT_EQ(static_cast<double>(number), -67.75);
}
TEST(FixedPoint, ToCoordRaw)
{
double number = 123.25;
ASSERT_EQ(FFixedPoint(number).raw(), static_cast<int>(123.25 * kFracUnit));
number = -67.75;
ASSERT_EQ(FFixedPoint(number).raw(), static_cast<int>(-67.75 * kFracUnit));
}
TEST(FixedPoint, IntToCoord)
{
int number = 123;
ASSERT_EQ(FFixedPoint(number).raw(), 123 * kFracUnit);
number = -67;
ASSERT_EQ(FFixedPoint(number).raw(), -67 * kFracUnit);
}
TEST(FixedPoint, CoordToInt)
{
auto number = FFixedPoint(123);
ASSERT_EQ(static_cast<int>(number), 123);
// now try negative
number = FFixedPoint(-67);
ASSERT_EQ(static_cast<int>(number), -67);
}
TEST(FixedPoint, ZeroInit)
{
FFixedPoint point = {};
ASSERT_EQ(point.raw(), 0);
ASSERT_EQ(FFixedPoint{}.raw(), 0);
}
|