mirror of
https://github.com/glest/glest-source.git
synced 2025-08-23 08:22:50 +02:00
attempt to speed up float truncation and add some unit tests
This commit is contained in:
@@ -14,9 +14,11 @@
|
|||||||
|
|
||||||
#include "math_wrapper.h"
|
#include "math_wrapper.h"
|
||||||
#include "vec.h"
|
#include "vec.h"
|
||||||
|
#include "data_types.h"
|
||||||
#include "leak_dumper.h"
|
#include "leak_dumper.h"
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
using namespace Shared::Platform;
|
||||||
|
|
||||||
namespace Shared{ namespace Graphics{
|
namespace Shared{ namespace Graphics{
|
||||||
|
|
||||||
@@ -276,8 +278,46 @@ inline T radToDeg(T rad){
|
|||||||
return (rad*360)/(2*pi);
|
return (rad*360)/(2*pi);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ====================================================================================================================
|
||||||
|
// ====================================================================================================================
|
||||||
|
// Inline implementation
|
||||||
|
// ====================================================================================================================
|
||||||
|
// ====================================================================================================================
|
||||||
|
#if _xs_BigEndian_
|
||||||
|
#define _xs_iexp_ 0
|
||||||
|
#define _xs_iman_ 1
|
||||||
|
#else
|
||||||
|
#define _xs_iexp_ 1 //intel is little endian
|
||||||
|
#define _xs_iman_ 0
|
||||||
|
#endif //BigEndian_
|
||||||
|
|
||||||
|
//#define finline __forceinline
|
||||||
|
#define finline inline
|
||||||
|
|
||||||
|
#ifndef _xs_DEFAULT_CONVERSION
|
||||||
|
#define _xs_DEFAULT_CONVERSION 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//typedef long int32;
|
||||||
|
typedef double real64;
|
||||||
|
const real64 _xs_doublemagic = real64 (6755399441055744.0); //2^52 * 1.5, uses limited precisicion to floor
|
||||||
|
|
||||||
|
finline int32 xs_CRoundToInt(real64 val, real64 dmr = _xs_doublemagic) {
|
||||||
|
#if _xs_DEFAULT_CONVERSION==0
|
||||||
|
val = val + dmr;
|
||||||
|
return ((int32*)&val)[_xs_iman_];
|
||||||
|
//return 0;
|
||||||
|
#else
|
||||||
|
return int32(floor(val+.5));
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
inline T truncateDecimal(const T &value, int precision=6) {
|
inline T truncateDecimal(const T &value, int precision=6) {
|
||||||
|
|
||||||
|
/*
|
||||||
int iSigned = value >= 0 ? 1: -1;
|
int iSigned = value >= 0 ? 1: -1;
|
||||||
|
|
||||||
#ifdef USE_STREFLOP
|
#ifdef USE_STREFLOP
|
||||||
@@ -288,6 +328,12 @@ inline T truncateDecimal(const T &value, int precision=6) {
|
|||||||
T result = (((double)uiTemp) / pow((T)10,precision) * iSigned);
|
T result = (((double)uiTemp) / pow((T)10,precision) * iSigned);
|
||||||
#endif
|
#endif
|
||||||
return result;
|
return result;
|
||||||
|
*/
|
||||||
|
|
||||||
|
T precNum = pow(10, precision);
|
||||||
|
T result = xs_CRoundToInt(value * precNum);
|
||||||
|
result /= precNum;
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -26,6 +26,7 @@ IF(BUILD_MEGAGLEST_TESTS)
|
|||||||
|
|
||||||
SET(DIRS_WITH_SRC
|
SET(DIRS_WITH_SRC
|
||||||
./
|
./
|
||||||
|
shared_lib/graphics
|
||||||
shared_lib/xml)
|
shared_lib/xml)
|
||||||
|
|
||||||
SET(MG_INCLUDES_ROOT "./")
|
SET(MG_INCLUDES_ROOT "./")
|
||||||
|
68
source/tests/shared_lib/graphics/math_util_test.cpp
Normal file
68
source/tests/shared_lib/graphics/math_util_test.cpp
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
// ==============================================================
|
||||||
|
// This file is part of MegaGlest Unit Tests (www.megaglest.org)
|
||||||
|
//
|
||||||
|
// Copyright (C) 2013 Mark Vejvoda
|
||||||
|
//
|
||||||
|
// You can redistribute this code 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
|
||||||
|
// ==============================================================
|
||||||
|
|
||||||
|
#include <cppunit/extensions/HelperMacros.h>
|
||||||
|
#include <memory>
|
||||||
|
#include "math_util.h"
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
#include <io.h>
|
||||||
|
#else
|
||||||
|
#include <unistd.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
using namespace Shared::Graphics;
|
||||||
|
|
||||||
|
//
|
||||||
|
// Tests for XmlIo
|
||||||
|
//
|
||||||
|
class MathUtilTest : public CppUnit::TestFixture {
|
||||||
|
// Register the suite of tests for this fixture
|
||||||
|
CPPUNIT_TEST_SUITE( MathUtilTest );
|
||||||
|
|
||||||
|
CPPUNIT_TEST( test_RoundFloat );
|
||||||
|
|
||||||
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
// End of Fixture registration
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
void test_RoundFloat() {
|
||||||
|
float value1 = truncateDecimal<float>(1.123456f, 6);
|
||||||
|
CPPUNIT_ASSERT_EQUAL( 1.123456f, value1 );
|
||||||
|
|
||||||
|
value1 = truncateDecimal<float>(1.123456f, 5);
|
||||||
|
CPPUNIT_ASSERT_EQUAL( 1.12346f, value1 );
|
||||||
|
|
||||||
|
value1 = truncateDecimal<float>(1.123456f, 4);
|
||||||
|
CPPUNIT_ASSERT_EQUAL( 1.1235f, value1 );
|
||||||
|
|
||||||
|
value1 = truncateDecimal<float>(1.123456f, 3);
|
||||||
|
CPPUNIT_ASSERT_EQUAL( 1.123f, value1 );
|
||||||
|
|
||||||
|
value1 = truncateDecimal<float>(1.123456f, 2);
|
||||||
|
CPPUNIT_ASSERT_EQUAL( 1.12f, value1 );
|
||||||
|
|
||||||
|
value1 = truncateDecimal<float>(1.123456f, 1);
|
||||||
|
CPPUNIT_ASSERT_EQUAL( 1.1f, value1 );
|
||||||
|
|
||||||
|
int32 value2 = xs_CRoundToInt(1.123456f);
|
||||||
|
CPPUNIT_ASSERT_EQUAL( (int32)1, value2 );
|
||||||
|
|
||||||
|
value2 = xs_CRoundToInt(1.523456f);
|
||||||
|
CPPUNIT_ASSERT_EQUAL( (int32)2, value2 );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// Test Suite Registrations
|
||||||
|
CPPUNIT_TEST_SUITE_REGISTRATION( MathUtilTest );
|
||||||
|
//
|
Reference in New Issue
Block a user