2003-03-15 04:35:45 +08:00
|
|
|
#include <osg/UnitTestFramework>
|
|
|
|
#include <osg/ArgumentParser>
|
|
|
|
#include <osg/ApplicationUsage>
|
|
|
|
|
2004-05-20 18:15:48 +08:00
|
|
|
#include <osg/Vec3>
|
2003-07-17 04:14:48 +08:00
|
|
|
#include <osg/Matrix>
|
|
|
|
|
2004-03-03 21:27:21 +08:00
|
|
|
#include <iostream>
|
2003-07-17 04:14:48 +08:00
|
|
|
|
|
|
|
void testFrustum(double left,double right,double bottom,double top,double zNear,double zFar)
|
|
|
|
{
|
|
|
|
osg::Matrix f;
|
|
|
|
f.makeFrustum(left,right,bottom,top,zNear,zFar);
|
|
|
|
|
2003-09-29 21:14:34 +08:00
|
|
|
double c_left=0;
|
|
|
|
double c_right=0;
|
|
|
|
double c_top=0;
|
|
|
|
double c_bottom=0;
|
|
|
|
double c_zNear=0;
|
|
|
|
double c_zFar=0;
|
2003-07-17 04:14:48 +08:00
|
|
|
|
|
|
|
|
2003-09-29 21:14:34 +08:00
|
|
|
std::cout << "testFrustum"<<f.getFrustum(c_left,c_right,c_bottom,c_top,c_zNear,c_zFar)<<std::endl;
|
2003-07-17 04:14:48 +08:00
|
|
|
std::cout << " left = "<<left<<" compute "<<c_left<<std::endl;
|
|
|
|
std::cout << " right = "<<right<<" compute "<<c_right<<std::endl;
|
|
|
|
|
|
|
|
std::cout << " bottom = "<<bottom<<" compute "<<c_bottom<<std::endl;
|
|
|
|
std::cout << " top = "<<top<<" compute "<<c_top<<std::endl;
|
|
|
|
|
|
|
|
std::cout << " zNear = "<<zNear<<" compute "<<c_zNear<<std::endl;
|
|
|
|
std::cout << " zFar = "<<zFar<<" compute "<<c_zFar<<std::endl;
|
|
|
|
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void testOrtho(double left,double right,double bottom,double top,double zNear,double zFar)
|
|
|
|
{
|
|
|
|
osg::Matrix f;
|
|
|
|
f.makeOrtho(left,right,bottom,top,zNear,zFar);
|
|
|
|
|
2003-09-29 21:14:34 +08:00
|
|
|
double c_left=0;
|
|
|
|
double c_right=0;
|
|
|
|
double c_top=0;
|
|
|
|
double c_bottom=0;
|
|
|
|
double c_zNear=0;
|
|
|
|
double c_zFar=0;
|
2003-07-17 04:14:48 +08:00
|
|
|
|
2003-09-29 21:14:34 +08:00
|
|
|
std::cout << "testOrtho "<< f.getOrtho(c_left,c_right,c_bottom,c_top,c_zNear,c_zFar) << std::endl;
|
2003-07-17 04:14:48 +08:00
|
|
|
std::cout << " left = "<<left<<" compute "<<c_left<<std::endl;
|
|
|
|
std::cout << " right = "<<right<<" compute "<<c_right<<std::endl;
|
|
|
|
|
|
|
|
std::cout << " bottom = "<<bottom<<" compute "<<c_bottom<<std::endl;
|
|
|
|
std::cout << " top = "<<top<<" compute "<<c_top<<std::endl;
|
|
|
|
|
|
|
|
std::cout << " zNear = "<<zNear<<" compute "<<c_zNear<<std::endl;
|
|
|
|
std::cout << " zFar = "<<zFar<<" compute "<<c_zFar<<std::endl;
|
|
|
|
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
|
|
|
|
2003-09-29 21:14:34 +08:00
|
|
|
void testPerspective(double fovy,double aspect,double zNear,double zFar)
|
|
|
|
{
|
|
|
|
osg::Matrix f;
|
|
|
|
f.makePerspective(fovy,aspect,zNear,zFar);
|
|
|
|
|
|
|
|
double c_fovy=0;
|
|
|
|
double c_aspect=0;
|
|
|
|
double c_zNear=0;
|
|
|
|
double c_zFar=0;
|
|
|
|
|
|
|
|
std::cout << "testPerspective "<< f.getPerspective(c_fovy,c_aspect,c_zNear,c_zFar) << std::endl;
|
|
|
|
std::cout << " fovy = "<<fovy<<" compute "<<c_fovy<<std::endl;
|
|
|
|
std::cout << " aspect = "<<aspect<<" compute "<<c_aspect<<std::endl;
|
|
|
|
|
|
|
|
std::cout << " zNear = "<<zNear<<" compute "<<c_zNear<<std::endl;
|
|
|
|
std::cout << " zFar = "<<zFar<<" compute "<<c_zFar<<std::endl;
|
|
|
|
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
|
|
|
|
2003-07-17 04:14:48 +08:00
|
|
|
void testLookAt(const osg::Vec3& eye,const osg::Vec3& center,const osg::Vec3& up)
|
|
|
|
{
|
|
|
|
osg::Matrix mv;
|
|
|
|
mv.makeLookAt(eye,center,up);
|
|
|
|
|
|
|
|
osg::Vec3 c_eye,c_center,c_up;
|
|
|
|
mv.getLookAt(c_eye,c_center,c_up);
|
|
|
|
|
|
|
|
std::cout << "testLookAt"<<std::endl;
|
|
|
|
std::cout << " eye "<<eye<< " compute "<<c_eye<<std::endl;
|
|
|
|
std::cout << " eye "<<center<< " compute "<<c_center<<std::endl;
|
|
|
|
std::cout << " eye "<<up<< " compute "<<c_up<<std::endl;
|
|
|
|
|
|
|
|
std::cout << std::endl;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-09-03 04:03:01 +08:00
|
|
|
void sizeOfTest()
|
|
|
|
{
|
|
|
|
std::cout<<"sizeof(bool)=="<<sizeof(bool)<<std::endl;
|
|
|
|
std::cout<<"sizeof(char)=="<<sizeof(char)<<std::endl;
|
|
|
|
std::cout<<"sizeof(short)=="<<sizeof(short)<<std::endl;
|
|
|
|
std::cout<<"sizeof(int)=="<<sizeof(int)<<std::endl;
|
|
|
|
std::cout<<"sizeof(long)=="<<sizeof(long)<<std::endl;
|
|
|
|
std::cout<<"sizeof(long int)=="<<sizeof(long int)<<std::endl;
|
|
|
|
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
// long long isn't supported on VS6.0...
|
|
|
|
std::cout<<"sizeof(__int64)=="<<sizeof(__int64)<<std::endl;
|
|
|
|
#else
|
|
|
|
std::cout<<"sizeof(long long)=="<<sizeof(long long)<<std::endl;
|
|
|
|
#endif
|
|
|
|
std::cout<<"sizeof(float)=="<<sizeof(float)<<std::endl;
|
|
|
|
std::cout<<"sizeof(double)=="<<sizeof(double)<<std::endl;
|
2004-11-11 05:28:06 +08:00
|
|
|
|
|
|
|
std::cout<<"sizeof(std::istream::pos_type)=="<<sizeof(std::istream::pos_type)<<std::endl;
|
|
|
|
std::cout<<"sizeof(std::istream::off_type)=="<<sizeof(std::istream::off_type)<<std::endl;
|
2005-02-22 22:42:14 +08:00
|
|
|
std::cout<<"sizeof(OpenThreads::Mutex)=="<<sizeof(OpenThreads::Mutex)<<std::endl;
|
2004-11-11 05:28:06 +08:00
|
|
|
|
2003-09-03 04:03:01 +08:00
|
|
|
}
|
|
|
|
|
2004-08-04 03:00:33 +08:00
|
|
|
|
2005-01-27 22:39:58 +08:00
|
|
|
void testQuatRotate(const osg::Vec3d& from, const osg::Vec3d& to)
|
|
|
|
{
|
|
|
|
osg::Quat q_nicolas;
|
|
|
|
q_nicolas.makeRotate(from,to);
|
|
|
|
|
|
|
|
osg::Quat q_original;
|
|
|
|
q_original.makeRotate_original(from,to);
|
|
|
|
|
|
|
|
std::cout<<"osg::Quat::makeRotate("<<from<<", "<<to<<")"<<std::endl;
|
|
|
|
std::cout<<" q_nicolas = "<<q_nicolas<<std::endl;
|
|
|
|
std::cout<<" q_original = "<<q_original<<std::endl;
|
|
|
|
std::cout<<" from * M4x4(q_nicolas) = "<<from * osg::Matrixd::rotate(q_nicolas)<<std::endl;
|
|
|
|
std::cout<<" from * M4x4(q_original) = "<<from * osg::Matrixd::rotate(q_original)<<std::endl;
|
|
|
|
}
|
|
|
|
|
2004-08-04 03:00:33 +08:00
|
|
|
void testQuat()
|
|
|
|
{
|
|
|
|
osg::Quat q1;
|
|
|
|
q1.makeRotate(osg::DegreesToRadians(30.0),0.0f,0.0f,1.0f);
|
|
|
|
|
|
|
|
osg::Quat q2;
|
|
|
|
q2.makeRotate(osg::DegreesToRadians(133.0),0.0f,1.0f,1.0f);
|
|
|
|
|
|
|
|
osg::Quat q1_2 = q1*q2;
|
|
|
|
osg::Quat q2_1 = q2*q1;
|
|
|
|
|
|
|
|
osg::Matrix m1 = osg::Matrix::rotate(q1);
|
|
|
|
osg::Matrix m2 = osg::Matrix::rotate(q2);
|
|
|
|
|
|
|
|
osg::Matrix m1_2 = m1*m2;
|
|
|
|
osg::Matrix m2_1 = m2*m1;
|
|
|
|
|
|
|
|
osg::Quat qm1_2;
|
|
|
|
qm1_2.set(m1_2);
|
|
|
|
|
|
|
|
osg::Quat qm2_1;
|
|
|
|
qm2_1.set(m2_1);
|
|
|
|
|
|
|
|
std::cout<<"q1*q2 = "<<q1_2<<std::endl;
|
|
|
|
std::cout<<"q2*q1 = "<<q2_1<<std::endl;
|
|
|
|
std::cout<<"m1*m2 = "<<qm1_2<<std::endl;
|
|
|
|
std::cout<<"m2*m1 = "<<qm2_1<<std::endl;
|
|
|
|
|
2005-01-27 22:39:58 +08:00
|
|
|
|
|
|
|
testQuatRotate(osg::Vec3d(1.0,0.0,0.0),osg::Vec3d(0.0,1.0,0.0));
|
|
|
|
testQuatRotate(osg::Vec3d(0.0,1.0,0.0),osg::Vec3d(1.0,0.0,0.0));
|
|
|
|
testQuatRotate(osg::Vec3d(0.0,0.0,1.0),osg::Vec3d(0.0,1.0,0.0));
|
|
|
|
testQuatRotate(osg::Vec3d(1.0,1.0,1.0),osg::Vec3d(1.0,0.0,0.0));
|
|
|
|
testQuatRotate(osg::Vec3d(1.0,0.0,0.0),osg::Vec3d(1.0,0.0,0.0));
|
|
|
|
testQuatRotate(osg::Vec3d(1.0,0.0,0.0),osg::Vec3d(-1.0,0.0,0.0));
|
|
|
|
testQuatRotate(osg::Vec3d(-1.0,0.0,0.0),osg::Vec3d(1.0,0.0,0.0));
|
|
|
|
testQuatRotate(osg::Vec3d(0.0,1.0,0.0),osg::Vec3d(0.0,-1.0,0.0));
|
|
|
|
testQuatRotate(osg::Vec3d(0.0,-1.0,0.0),osg::Vec3d(0.0,1.0,0.0));
|
|
|
|
testQuatRotate(osg::Vec3d(0.0,0.0,1.0),osg::Vec3d(0.0,0.0,-1.0));
|
|
|
|
testQuatRotate(osg::Vec3d(0.0,0.0,-1.0),osg::Vec3d(0.0,0.0,1.0));
|
2004-08-04 03:00:33 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-03-15 04:35:45 +08:00
|
|
|
int main( int argc, char** argv )
|
|
|
|
{
|
|
|
|
osg::ArgumentParser arguments(&argc,argv);
|
|
|
|
|
|
|
|
// set up the usage document, in case we need to print out how to use this program.
|
2003-04-09 19:44:32 +08:00
|
|
|
arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" is the example which runs units tests.");
|
2003-04-07 05:32:44 +08:00
|
|
|
arguments.getApplicationUsage()->setCommandLineUsage(arguments.getApplicationName()+" [options]");
|
2003-03-15 04:35:45 +08:00
|
|
|
arguments.getApplicationUsage()->addCommandLineOption("-h or --help","Display this information");
|
|
|
|
arguments.getApplicationUsage()->addCommandLineOption("qt","Display qualified tests.");
|
2003-09-03 04:03:01 +08:00
|
|
|
arguments.getApplicationUsage()->addCommandLineOption("sizeof","Display sizeof tests.");
|
2003-07-17 04:14:48 +08:00
|
|
|
arguments.getApplicationUsage()->addCommandLineOption("matrix","Display qualified tests.");
|
2003-03-15 04:35:45 +08:00
|
|
|
|
|
|
|
|
2003-07-17 04:14:48 +08:00
|
|
|
if (arguments.argc()<=1)
|
|
|
|
{
|
|
|
|
arguments.getApplicationUsage()->write(std::cout,osg::ApplicationUsage::COMMAND_LINE_OPTION);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-03-15 04:35:45 +08:00
|
|
|
bool printQualifiedTest = false;
|
|
|
|
while (arguments.read("qt")) printQualifiedTest = true;
|
|
|
|
|
2003-09-03 04:03:01 +08:00
|
|
|
bool printMatrixTest = false;
|
|
|
|
while (arguments.read("matrix")) printMatrixTest = true;
|
|
|
|
|
|
|
|
bool printSizeOfTest = false;
|
|
|
|
while (arguments.read("sizeof")) printSizeOfTest = true;
|
2003-07-17 04:14:48 +08:00
|
|
|
|
2004-08-04 03:00:33 +08:00
|
|
|
bool printQuatTest = false;
|
|
|
|
while (arguments.read("quat")) printQuatTest = true;
|
|
|
|
|
2003-03-15 04:35:45 +08:00
|
|
|
// if user request help write it out to cout.
|
|
|
|
if (arguments.read("-h") || arguments.read("--help"))
|
|
|
|
{
|
|
|
|
std::cout<<arguments.getApplicationUsage()->getCommandLineUsage()<<std::endl;
|
|
|
|
arguments.getApplicationUsage()->write(std::cout,arguments.getApplicationUsage()->getCommandLineOptions());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// any option left unread are converted into errors to write out later.
|
|
|
|
arguments.reportRemainingOptionsAsUnrecognized();
|
|
|
|
|
|
|
|
// report any errors if they have occured when parsing the program aguments.
|
|
|
|
if (arguments.errors())
|
|
|
|
{
|
|
|
|
arguments.writeErrorMessages(std::cout);
|
|
|
|
return 1;
|
|
|
|
}
|
2003-04-07 05:32:44 +08:00
|
|
|
|
2004-08-04 03:00:33 +08:00
|
|
|
if (printQuatTest)
|
|
|
|
{
|
|
|
|
testQuat();
|
|
|
|
}
|
|
|
|
|
2003-07-17 04:14:48 +08:00
|
|
|
|
2003-09-03 04:03:01 +08:00
|
|
|
if (printMatrixTest)
|
2003-04-07 05:32:44 +08:00
|
|
|
{
|
2003-07-17 04:14:48 +08:00
|
|
|
std::cout<<"****** Running matrix tests ******"<<std::endl;
|
|
|
|
|
|
|
|
testFrustum(-1,1,-1,1,1,1000);
|
|
|
|
testFrustum(0,1,1,2,2.5,100000);
|
|
|
|
|
|
|
|
testOrtho(0,1,1,2,2.1,1000);
|
|
|
|
testOrtho(-1,10,1,20,2.5,100000);
|
|
|
|
|
2003-09-29 21:14:34 +08:00
|
|
|
testPerspective(20,1,1,1000);
|
|
|
|
testPerspective(90,2,1,1000);
|
|
|
|
|
2003-07-17 04:14:48 +08:00
|
|
|
testLookAt(osg::Vec3(10.0,4.0,2.0),osg::Vec3(10.0,4.0,2.0)+osg::Vec3(0.0,1.0,0.0),osg::Vec3(0.0,0.0,1.0));
|
|
|
|
testLookAt(osg::Vec3(10.0,4.0,2.0),osg::Vec3(10.0,4.0,2.0)+osg::Vec3(1.0,1.0,0.0),osg::Vec3(0.0,0.0,1.0));
|
|
|
|
|
2003-04-07 05:32:44 +08:00
|
|
|
}
|
2003-09-03 04:03:01 +08:00
|
|
|
|
|
|
|
if (printSizeOfTest)
|
|
|
|
{
|
|
|
|
std::cout<<"**** sizeof() tests ******"<<std::endl;
|
|
|
|
|
|
|
|
sizeOfTest();
|
|
|
|
|
|
|
|
std::cout<<std::endl;
|
|
|
|
}
|
2003-03-15 04:35:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
if (printQualifiedTest)
|
|
|
|
{
|
|
|
|
std::cout<<"***** Qualified Tests ******"<<std::endl;
|
|
|
|
|
|
|
|
osgUtx::QualifiedTestPrinter printer;
|
|
|
|
osgUtx::TestGraph::instance().root()->accept( printer );
|
2003-03-15 16:01:41 +08:00
|
|
|
std::cout<<std::endl;
|
2003-03-15 04:35:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::cout<<"****** Running tests ******"<<std::endl;
|
|
|
|
|
|
|
|
// Global Data or Context
|
|
|
|
osgUtx::TestContext ctx;
|
|
|
|
osgUtx::TestRunner runner( ctx );
|
|
|
|
runner.specify("root");
|
|
|
|
|
|
|
|
osgUtx::TestGraph::instance().root()->accept( runner );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|