mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
102 lines
3.0 KiB
C++
102 lines
3.0 KiB
C++
// Filename: sceneGraphAnalyzerMeter.h
|
|
// Created by: pratt (14Feb07)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef SCENEGRAPHANALYZERMETER_H
|
|
#define SCENEGRAPHANALYZERMETER_H
|
|
|
|
#include "pandabase.h"
|
|
#include "textNode.h"
|
|
#include "nodePath.h"
|
|
#include "graphicsOutput.h"
|
|
#include "displayRegion.h"
|
|
#include "pointerTo.h"
|
|
#include "sceneGraphAnalyzer.h"
|
|
#include "pStatCollector.h"
|
|
|
|
class PandaNode;
|
|
class GraphicsChannel;
|
|
class ClockObject;
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : SceneGraphAnalyzerMeter
|
|
// Description : This is a special TextNode that automatically updates
|
|
// itself with output from a SceneGraphAnalyzer instance.
|
|
// It can be placed anywhere in the world where you'd like
|
|
// to see the output from SceneGraphAnalyzer.
|
|
//
|
|
// It also has a special mode in which it may be
|
|
// attached directly to a channel or window. If this is
|
|
// done, it creates a DisplayRegion for itself and renders
|
|
// itself in the upper-right-hand corner.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDA SceneGraphAnalyzerMeter : public TextNode {
|
|
PUBLISHED:
|
|
SceneGraphAnalyzerMeter(const string &name, PandaNode *node);
|
|
virtual ~SceneGraphAnalyzerMeter();
|
|
|
|
void setup_window(GraphicsOutput *window);
|
|
void clear_window();
|
|
|
|
INLINE GraphicsOutput *get_window() const;
|
|
INLINE DisplayRegion *get_display_region() const;
|
|
|
|
INLINE void set_update_interval(double update_interval);
|
|
INLINE double get_update_interval() const;
|
|
|
|
INLINE void set_node(PandaNode *node);
|
|
INLINE PandaNode *get_node() const;
|
|
|
|
INLINE void update();
|
|
|
|
protected:
|
|
virtual bool cull_callback(CullTraverser *trav, CullTraverserData &data);
|
|
|
|
private:
|
|
void do_update(Thread *current_thread);
|
|
|
|
private:
|
|
PT(GraphicsOutput) _window;
|
|
PT(DisplayRegion) _display_region;
|
|
NodePath _root;
|
|
SceneGraphAnalyzer _scene_graph_analyzer;
|
|
|
|
double _update_interval;
|
|
double _last_update;
|
|
PandaNode *_node;
|
|
ClockObject *_clock_object;
|
|
|
|
static PStatCollector _show_analyzer_pcollector;
|
|
|
|
public:
|
|
static TypeHandle get_class_type() {
|
|
return _type_handle;
|
|
}
|
|
static void init_type() {
|
|
TextNode::init_type();
|
|
register_type(_type_handle, "SceneGraphAnalyzerMeter",
|
|
TextNode::get_class_type());
|
|
}
|
|
virtual TypeHandle get_type() const {
|
|
return get_class_type();
|
|
}
|
|
virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
|
|
|
|
private:
|
|
static TypeHandle _type_handle;
|
|
};
|
|
|
|
#include "sceneGraphAnalyzerMeter.I"
|
|
|
|
#endif
|