Panda3D
|
A handy class that can scrub over a scene graph and collect interesting statistics on it. More...
#include "sceneGraphAnalyzer.h"
Classes | |
class | VDataTracker |
Public Types | |
enum | LodMode { LM_lowest, LM_highest, LM_all, LM_none } |
Public Member Functions | |
void | add_node (PandaNode *node) |
Adds a new node to the set of data for analysis. | |
void | clear () |
Resets all of the data in the analyzer in preparation for a new run. | |
LodMode | get_lod_mode (LodMode lod_mode) const |
Returns the mode in which LODNodes are analyzed. | |
int | get_num_colors () const |
int | get_num_geom_nodes () const |
int | get_num_geom_vertex_datas () const |
int | get_num_geom_vertex_formats () const |
int | get_num_geoms () const |
int | get_num_individual_tris () const |
int | get_num_instances () const |
int | get_num_lines () const |
int | get_num_lod_nodes () const |
int | get_num_long_normals () const |
int | get_num_nodes () const |
int | get_num_nodes_with_attribs () const |
int | get_num_normals () const |
int | get_num_points () const |
int | get_num_short_normals () const |
int | get_num_texcoords () const |
int | get_num_transforms () const |
int | get_num_triangles_in_fans () const |
int | get_num_triangles_in_strips () const |
int | get_num_trifans () const |
int | get_num_tris () const |
int | get_num_tristrips () const |
int | get_num_vertices () const |
int | get_texture_bytes () const |
PN_stdfloat | get_total_normal_length () const |
int | get_vertex_data_size () const |
void | set_lod_mode (LodMode lod_mode) |
Specifies the mode in which LODNodes are analyzed. | |
void | write (ostream &out, int indent_level=0) const |
Describes all the data collected. |
A handy class that can scrub over a scene graph and collect interesting statistics on it.
Definition at line 39 of file sceneGraphAnalyzer.h.
void SceneGraphAnalyzer::add_node | ( | PandaNode * | node | ) |
Adds a new node to the set of data for analysis.
Normally, this would only be called once, and passed the top of the scene graph, but it's possible to repeatedly pass in subgraphs to get an analysis of all the graphs together.
Definition at line 115 of file sceneGraphAnalyzer.cxx.
Referenced by PandaFramework::event_A().
void SceneGraphAnalyzer::clear | ( | ) |
Resets all of the data in the analyzer in preparation for a new run.
Definition at line 62 of file sceneGraphAnalyzer.cxx.
SceneGraphAnalyzer::LodMode SceneGraphAnalyzer::get_lod_mode | ( | LodMode | lod_mode | ) | const [inline] |
Returns the mode in which LODNodes are analyzed.
Definition at line 32 of file sceneGraphAnalyzer.I.
void SceneGraphAnalyzer::set_lod_mode | ( | LodMode | lod_mode | ) | [inline] |
Specifies the mode in which LODNodes are analyzed.
Definition at line 22 of file sceneGraphAnalyzer.I.
void SceneGraphAnalyzer::write | ( | ostream & | out, |
int | indent_level = 0 |
||
) | const |
Describes all the data collected.
Definition at line 125 of file sceneGraphAnalyzer.cxx.
References GeomVertexArrayData::get_data_size_bytes().
Referenced by PandaFramework::event_A().