2001-10-04 23:12:57 +08:00
|
|
|
//C++ header - Open Scene Graph - Copyright (C) 1998-2001 Robert Osfield
|
|
|
|
//Distributed under the terms of the GNU Library General Public License (LGPL)
|
|
|
|
//as published by the Free Software Foundation.
|
|
|
|
|
2001-10-23 06:02:47 +08:00
|
|
|
#ifndef OSGUTIL_STATISTICS
|
|
|
|
#define OSGUTIL_STATISTICS 1
|
2001-09-20 05:19:47 +08:00
|
|
|
|
2001-10-23 06:02:47 +08:00
|
|
|
#include <osg/Object>
|
2001-09-20 05:19:47 +08:00
|
|
|
|
2001-10-07 04:29:42 +08:00
|
|
|
namespace osg {
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Statistics base class. Used to extract primitive information from
|
2001-10-23 06:02:47 +08:00
|
|
|
* the renderBin(s). Add a case of getStats(osgUtil::Statistics *stat)
|
|
|
|
* for any new drawable (or drawable derived class) that you generate
|
|
|
|
* (eg see GeoSet.cpp). There are 20 types of drawable counted - actually only
|
|
|
|
* 14 cases can occur in reality. these represent sets of GL_POINTS, GL_LINES
|
|
|
|
* GL_LINESTRIPS, LOOPS, TRIANGLES, TRI-fans, tristrips, quads, quadstrips etc
|
|
|
|
* The number of triangles rendered is inferred:
|
|
|
|
* each triangle = 1 triangle (number of vertices/3)
|
|
|
|
* each quad = 2 triangles (nverts/2)
|
|
|
|
* each trifan or tristrip = (length-2) triangles and so on.
|
2001-09-20 05:19:47 +08:00
|
|
|
*/
|
2001-10-23 06:02:47 +08:00
|
|
|
|
|
|
|
class SG_EXPORT Statistics : public osg::Object
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
Statistics() {
|
|
|
|
numOpaque=0, nummat=0;
|
2001-10-23 06:02:47 +08:00
|
|
|
nprims=0, nlights=0; nbins=0; nimpostor=0;
|
2001-09-20 05:19:47 +08:00
|
|
|
reset();
|
|
|
|
};
|
2001-10-23 06:02:47 +08:00
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
~Statistics() {}; // no dynamic allocations, so no need to free
|
|
|
|
virtual osg::Object* clone() const { return new Statistics(); }
|
|
|
|
virtual bool isSameKindAs(const osg::Object* obj) const { return dynamic_cast<const Statistics*>(obj)!=0L; }
|
|
|
|
virtual const char* className() const { return "Statistics"; }
|
|
|
|
|
2001-10-23 06:02:47 +08:00
|
|
|
enum statsType {
|
|
|
|
STAT_NONE, // default
|
|
|
|
STAT_FRAMERATE, STAT_GRAPHS,
|
|
|
|
STAT_PRIMS, STAT_PRIMSPERVIEW,
|
|
|
|
STAT_DC,
|
|
|
|
STAT_RESTART // hint to restart the stats
|
|
|
|
};
|
|
|
|
void reset() {
|
|
|
|
for (int i=0; i<20; i++) primverts[i]=numprimtypes[i]=primlens[i]=primtypes[i]=0;
|
2001-09-20 05:19:47 +08:00
|
|
|
}
|
|
|
|
|
2001-10-23 06:02:47 +08:00
|
|
|
public:
|
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
int numOpaque, nummat, nbins;
|
|
|
|
int nprims, nlights;
|
2001-10-23 06:02:47 +08:00
|
|
|
int nimpostor; // number of impostors rendered
|
2001-09-20 05:19:47 +08:00
|
|
|
int numprimtypes[20]; // histogram of number of each type of prim
|
|
|
|
int primtypes[20]; // histogram of number of each type of prim
|
|
|
|
int primlens[20]; // histogram of lengths of each type of prim
|
|
|
|
int primverts[20]; // histogram of number of vertices to be transformed
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2001-10-23 06:02:47 +08:00
|
|
|
}
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
#endif
|